From 7769d7857035bbcec416fd7ddabc8d9f95ef830a Mon Sep 17 00:00:00 2001 From: IrkallaEpsilon <42441793+IrkallaEpsilon@users.noreply.github.com> Date: Wed, 11 Sep 2024 06:29:42 +0200 Subject: [PATCH 01/20] Soldiers are made, not born -- Introduces Enigmas P4 Wraith unit and Banshee unit (#6732) Needs testing in thunderdome, cutely. ## About The Pull Request This PR adds code for this jackass unit ![image](https://github.com/user-attachments/assets/48d9a415-94a4-49f3-9dce-3111c868a215) Wraith units are basically squad leads in Enigmas army. They utilize a dark energy rifle (deals brute and very slightly irradiates), have innate dodge (15% chance) but less max HP. Their armor is somewhat better than what the usual P3 get. They are pretty agile too thanks to being nanotech. Ideally these are either deployed for boarding actions or as squad leads of P3 units (the infantry looking troops). Though they could also be used in squads guarding or assaulting important locations. Comes with a really old firing sound that I ran from soundmixer for the primary. Now also changes the sound of the troopers particle weapon to something more meaty :3 Next up: ![image](https://github.com/user-attachments/assets/2fa1b431-8eac-4bc0-abc9-8c9397db3186) Banshees. Fast combat proteans outfitted with every bit of bluespace tech Enigma could find. Expensive to produce and usually tasked with assassinations, asset recovery and abduction. ## Why It's Good For The Game ~~Its not~~ First of the 3 P4 units. Adds Banshee and Wraith. Both have their own gimmick and roles. ## Changelog :cl: add: Do you feel in charge, proselyte?!?!??! Adds P4 Wraith units to Enigmas troops, squad leads add: Hope and Despair... - Adds P4 Banshee units to Enigmas Army, dedicated assassins, asset recovery and abduction units add: New sound for P3 Trooper beam weapon /:cl: --------- Co-authored-by: BlueWildrose <57083662+BlueWildrose@users.noreply.github.com> --- .../mechanical/hivebot/enigma_hivebot.dm | 139 ++++++++++++++++++ .../projectile/subtypes/beam/beams.dm | 15 +- sound/weapons/Dissolverray.ogg | Bin 0 -> 12694 bytes sound/weapons/Phasecoilengage.ogg | Bin 0 -> 14739 bytes sound/weapons/SuperHeavyLaser.ogg | Bin 0 -> 19263 bytes 5 files changed, 153 insertions(+), 1 deletion(-) create mode 100644 sound/weapons/Dissolverray.ogg create mode 100644 sound/weapons/Phasecoilengage.ogg create mode 100644 sound/weapons/SuperHeavyLaser.ogg diff --git a/code/modules/mob/living/simple_mob/subtypes/mechanical/hivebot/enigma_hivebot.dm b/code/modules/mob/living/simple_mob/subtypes/mechanical/hivebot/enigma_hivebot.dm index 3b4b35fd9261..44cb1dc1a6eb 100644 --- a/code/modules/mob/living/simple_mob/subtypes/mechanical/hivebot/enigma_hivebot.dm +++ b/code/modules/mob/living/simple_mob/subtypes/mechanical/hivebot/enigma_hivebot.dm @@ -352,6 +352,145 @@ ai_holder_type = /datum/ai_holder/polaris/simple_mob/ranged/kiting projectiletype = /obj/projectile/ion base_attack_cooldown = 25 + +//P4 units - Anything nanotechnology paired with abductor tech - Elite units + +/mob/living/simple_mob/mechanical/hivebot/enigma/P4/Wraith + name = "wraith" + icon = 'icons/mob/enigma.dmi' + desc = "A sleek, black bipedal combat unit with an unsettling, advanced nanotech design. Its chassis being an amalgamation of various prosthetic and synthetic components or at least mimicking such. The unit is constantly shifting and is surrounded by a thin trail of metallic dust as it moves. Spines emitting an antigrav field protrude from its arms, shoulders, and back, while its featureless faceplate displays an alien magenta glow under constant shifting and warping. The unit shudders and vibrates with uncanny precision. It wields a modified particle weapon vaguely resembling a Hephaestus G40. A capital Sigma symbol is etched on its chest, and a circular power pack on its back hums with gravity-defying particles." + icon_living = "wraith" + icon_state = "wraith" + maxHealth = 200 //More armored but less max HP and also has a shield + health = 200 + evasion = 15 //Superior reflexes due to nanotech and being build for combat + armor_legacy_mob = list( + "melee" = 5, + "bullet" = 20, + "laser" = 30, + "energy" = 30, + "bomb" = 20, + "bio" = 100, + "rad" = 100 + ) + + legacy_melee_damage_lower = 18 + legacy_melee_damage_upper = 18 //It hits you with a hardened nanite fist. Thats supposed to hurt + movement_cooldown = 1 //again faster than standard grunts + movement_sound = 'sound/enigma/enigma_move.ogg' + ai_holder_type = /datum/ai_holder/polaris/simple_mob/ranged/kiting //Made to draw fire hence kiting + projectiletype = /obj/projectile/beam/antigravbeamwraith + base_attack_cooldown = 10 //1 attacks per second + +/mob/living/simple_mob/mechanical/hivebot/enigma/P4/Wraith/Initialize(mapload) //Gives the unit a weak overshield since it would be very unfun to fight kiting AI with actual proper health regen as initially intended + var/shield_type = /obj/item/shield_projector/rectangle{ + shield_health = 50; + max_shield_health = 50; + shield_regen_delay = 10 SECONDS; + shield_regen_amount = 10; + size_x = 1; + size_y = 1; + always_on = TRUE; + } + var/obj/item/shield_projector/shield_projector = new shield_type(src) + shield_projector.create_shields() + return ..() + +/mob/living/simple_mob/mechanical/hivebot/enigma/P4/Banshee + name = "banshee" + icon = 'icons/mob/enigma.dmi' + desc = "A horrific inorganic nanite abomination. This unit possess a jet black nanite frame with typical abductor technology augmentation. Armed with two strange humming blades it is well capable of both lethal takedowns and less lethal takedowns. The head tendrilled monstrosity is lightning fast and to make matters worse has some sort of short range teleportation pack installed on its back allowing it to effectively 'blink' out if needed to disengage. Additionally the entire body is covered in thin, purple colored phase coils allowing it to effectively leap. A capital greek Sigma is etched onto its nanite chest. Embedded in its right armblade is some sort of injector loaded with strange bits of electronics. The entire thing screams in agony in an ultrasonic frequency only audible to synthetics as it constantly shifts in and out of phase." + icon_living = "banshee" + icon_state = "banshee" + maxHealth = 100 //Glass Cannon + health = 100 + evasion = 50 //Phase coils and bluespace blink device. Hard to hit. Trash hitpoints and armor + armor_legacy_mob = list( + "melee" = 5, + "bullet" = 10, + "laser" = 15, + "energy" = 15, + "bomb" = 20, + "bio" = 100, + "rad" = 100 + ) + + legacy_melee_damage_lower = 35 //armed with two arm mounted phase blades + legacy_melee_damage_upper = 35 //I hate damage variance + attack_armor_pen = 25 + base_attack_cooldown = 7 //1.3 attacks per second + movement_cooldown = 0 //MUCH faster + movement_sound = 'sound/enigma/enigma_move.ogg' + ai_holder_type = /datum/ai_holder/polaris/simple_mob/hivebot //hit and Run Melee is broken for when more than 1 player is visible + + player_msg = "You are very fast, and can perform a leaping attack by clicking on someone from a short distance away.
\ + If the leap succeeds, the target will be knocked down briefly and you will be on top of them.
\ + Note that there is a short delay before you leap!
\ + In addition, you will do more damage to incapacitated opponents." + + // Leaping is a special attack, so these values determine when leap can happen, also ripped from spiders + // Leaping won't occur if its on cooldown. + special_attack_min_range = 2 + special_attack_max_range = 8 + special_attack_cooldown = 15 SECONDS //Phase coils are not trivial to miniaturize + + var/leap_warmup = 1 SECOND // How long the leap telegraphing is. + var/leap_sound = 'sound/weapons/Phasecoilengage.ogg' + +// Multiplies damage if the victim is stunned in some form, including a successful leap. +/mob/living/simple_mob/mechanical/hivebot/enigma/P4/Banshee/apply_bonus_melee_damage(atom/A, damage_amount) + if(isliving(A)) + var/mob/living/L = A + if(L.incapacitated(INCAPACITATION_DISABLED)) + return damage_amount * 1.2 //lets not make it oneshot + return ..() + + +// The actual leaping attack. +/mob/living/simple_mob/mechanical/hivebot/enigma/P4/Banshee/do_special_attack(atom/A) + set waitfor = FALSE + set_AI_busy(TRUE) + + // Telegraph, since getting stunned suddenly feels bad. + do_windup_animation(A, leap_warmup) + sleep(leap_warmup) // Telegraphing + + // Do the actual leap. + status_flags |= STATUS_LEAPING // Lets us pass over everything. + visible_message(SPAN_DANGER("\The [src] engages its phasecoils and initializes a phaseleap at \the [A]!")) + throw_at_old(get_step(get_turf(A), get_turf(src)), special_attack_max_range+1, 1, src) + playsound(src, leap_sound, 75, 1) + + sleep(5) // For the throw to complete. It won't hold up the AI SSticker due to waitfor being false. + + if(status_flags & STATUS_LEAPING) + status_flags &= ~STATUS_LEAPING // Revert special passage ability. + + var/turf/T = get_turf(src) // Where we landed. This might be different than A's turf. + + . = FALSE + + // Now for the stun. + var/mob/living/victim = null + for(var/mob/living/L in T) // So player-controlled BANSHEES only need to click the tile to stun them. + if(L == src) + continue + + var/list/shieldcall_result = L.atom_shieldcall(40, DAMAGE_TYPE_BRUTE, MELEE_TIER_MEDIUM, ARMOR_MELEE, NONE, ATTACK_TYPE_MELEE) //NEEDS LIFE TESTING + if(shieldcall_result[SHIELDCALL_ARG_FLAGS] & SHIELDCALL_FLAGS_BLOCK_ATTACK) + continue + + victim = L + break + + if(victim) + victim.afflict_paralyze(20 * 2) + victim.visible_message(SPAN_DANGER("\The [src] phases back in and knocks down \the [victim]!")) + to_chat(victim, SPAN_CRITICAL("\The [src] disengages its phase coils right ontop you and knocks you to the ground!")) + . = TRUE + + set_AI_busy(FALSE) + // Boss diff --git a/code/modules/projectiles/projectile/subtypes/beam/beams.dm b/code/modules/projectiles/projectile/subtypes/beam/beams.dm index e005a675ee5a..b08394520360 100644 --- a/code/modules/projectiles/projectile/subtypes/beam/beams.dm +++ b/code/modules/projectiles/projectile/subtypes/beam/beams.dm @@ -119,7 +119,7 @@ /obj/projectile/beam/weak name = "weak cyan beam" icon_state = "cyan" - fire_sound = 'sound/weapons/Taser.ogg' + fire_sound = 'sound/weapons/Dissolverray.ogg' damage_force = 20 light_color = "#74b1c2" @@ -127,6 +127,19 @@ tracer_type = /obj/effect/projectile/tracer/laser_omni impact_type = /obj/effect/projectile/impact/laser_omni +/obj/projectile/beam/antigravbeamwraith + name = "dark energy beam" + icon_state = "darkb" + fire_sound = 'sound/weapons/SuperHeavyLaser.ogg' //Knowers will recognize it + damage_force = 30 //Targets energy armor which is kinda rare + damage_type = DAMAGE_TYPE_BRUTE //Dark energy displaces instead of burning + damage_flag = ARMOR_ENERGY + irradiate= 5 //Scifi Antigrav bullshit side effect + light_color = "#8902f0" //Purple + + muzzle_type = /obj/effect/projectile/muzzle/darkmatter + tracer_type = /obj/effect/projectile/tracer/darkmatter + impact_type = /obj/effect/projectile/impact/darkmatter /obj/projectile/beam/emitter name = "emitter beam" diff --git a/sound/weapons/Dissolverray.ogg b/sound/weapons/Dissolverray.ogg new file mode 100644 index 0000000000000000000000000000000000000000..7af50708cd339dbef13fdcfb2a93d25215bc4153 GIT binary patch literal 12694 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 Xg9t$QcOP30H^0Zqi~2W8JOTY5itR`9 literal 0 HcmV?d00001 diff --git a/sound/weapons/Phasecoilengage.ogg b/sound/weapons/Phasecoilengage.ogg new file mode 100644 index 0000000000000000000000000000000000000000..a988dc23785fc008144a45449366fe864c0a69dd GIT binary patch literal 14739 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 BAJzZ> literal 0 HcmV?d00001 diff --git a/sound/weapons/SuperHeavyLaser.ogg b/sound/weapons/SuperHeavyLaser.ogg new file mode 100644 index 0000000000000000000000000000000000000000..8f8753e7027567a8029cbc02776b5dd1cb583303 GIT binary patch literal 19263 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 Date: Wed, 11 Sep 2024 00:30:17 -0400 Subject: [PATCH 02/20] Fixes cost of some Mecha weapons in the Exosuit Fab (#6745) ## About The Pull Request Ups fab costs for the AC/10 and the Gauss Rifle ## Why It's Good For The Game Makes the material costs non-trivial. ## Changelog :cl: tweak: tweaked a few things /:cl: --- code/modules/research/designs/mechfab_designs.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/modules/research/designs/mechfab_designs.dm b/code/modules/research/designs/mechfab_designs.dm index 7ae1195b9106..d38be97cb29c 100644 --- a/code/modules/research/designs/mechfab_designs.dm +++ b/code/modules/research/designs/mechfab_designs.dm @@ -518,11 +518,13 @@ design_name = "AC 10" id = "mech_lmg_heavy" build_path = /obj/item/mecha_parts/mecha_equipment/weapon/ballistic/lmg_heavy + materials_base = list(MAT_STEEL = 12000, MAT_GLASS = 4000, MAT_PLASTIC = 3000, MAT_SILVER = 1500, MAT_COPPER = 4000) /datum/design/science/mecha/gauss_rifle design_name = "Gauss Rifle" id = "mech_gauss_rifle" build_path = /obj/item/mecha_parts/mecha_equipment/weapon/ballistic/gauss_rifle + materials_base = list(MAT_STEEL = 16000, MAT_GLASS = 8000, MAT_PLASTIC = 4000, MAT_SILVER = 3500, MAT_COPPER = 8000) /datum/design/science/mecha/rigged_lmg design_name = "Jury-Rigged Machinegun" From 1d9590a25b4b5affd7f9359dd80ca9329fbe038e Mon Sep 17 00:00:00 2001 From: Niezan Date: Tue, 10 Sep 2024 21:30:34 -0700 Subject: [PATCH 03/20] fixes a cam dir in engineering of triumph (#6744) ## About The Pull Request it floated off the wall, now it don't. ## Why It's Good For The Game no more floating camera :D ## Changelog :cl: fix: makes a camera not float in triumph's engineering. /:cl: --- maps/triumph/levels/deck1.dmm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/maps/triumph/levels/deck1.dmm b/maps/triumph/levels/deck1.dmm index 86cc2abe3f1f..ce0e70bf05a9 100644 --- a/maps/triumph/levels/deck1.dmm +++ b/maps/triumph/levels/deck1.dmm @@ -15217,7 +15217,7 @@ dir = 4 }, /obj/machinery/camera/network/outside{ - dir = 10 + dir = 1 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 From 87083b17b0d01391df4fd6668eb001916e2ce4e0 Mon Sep 17 00:00:00 2001 From: LordME <58342752+TheLordME@users.noreply.github.com> Date: Wed, 11 Sep 2024 06:31:32 +0200 Subject: [PATCH 04/20] moves the broken xeno domes from ears to hair, and fixes them (#6743) ## About The Pull Request ## Why It's Good For The Game ## Changelog :cl: fix: fixed 4 xenohybrid domes and moved them to hair (where they belong) /:cl: --- citadel.dme | 1 - .../sprite_accessories/ears/xenomorph.dm | 22 ------------------- .../hair/species/xenomorph.dm | 22 +++++++++++++++++++ 3 files changed, 22 insertions(+), 23 deletions(-) delete mode 100644 code/modules/sprite_accessories/ears/xenomorph.dm diff --git a/citadel.dme b/citadel.dme index 15d9dad0a07d..31f46e8f17eb 100644 --- a/citadel.dme +++ b/citadel.dme @@ -4805,7 +4805,6 @@ #include "code\modules\sprite_accessories\ears\antenna.dm" #include "code\modules\sprite_accessories\ears\horns.dm" #include "code\modules\sprite_accessories\ears\misc.dm" -#include "code\modules\sprite_accessories\ears\xenomorph.dm" #include "code\modules\sprite_accessories\ears\animal\avian.dm" #include "code\modules\sprite_accessories\ears\animal\bee.dm" #include "code\modules\sprite_accessories\ears\animal\bovine.dm" diff --git a/code/modules/sprite_accessories/ears/xenomorph.dm b/code/modules/sprite_accessories/ears/xenomorph.dm deleted file mode 100644 index bc2bdec00515..000000000000 --- a/code/modules/sprite_accessories/ears/xenomorph.dm +++ /dev/null @@ -1,22 +0,0 @@ -/datum/sprite_accessory/ears/xenohead - name = "Xenomorph Drone dome" - id = "ears_xeno_drone" - icon = "icons/mob/sprite_accessories/xeno_parts.dmi" - icon_state = "xenohead_standard" - do_colouration = 1 - legacy_use_additive_color_matrix = FALSE - -/datum/sprite_accessory/ears/xenohead/royal - name = "Xenomorph Royal dome" - id = "ears_xeno_royal" - icon_state = "xenohead_royal" - -/datum/sprite_accessory/ears/xenohead/warrior - name = "Xenomorph Warrior dome" - id = "ears_xeno_warrior" - icon_state = "xenohead_warrior" - -/datum/sprite_accessory/ears/xenohead/net - name = "Xenomorph Net dome" - id = "ears_xeno_net" - icon_state = "xenohead_net" diff --git a/code/modules/sprite_accessories/hair/species/xenomorph.dm b/code/modules/sprite_accessories/hair/species/xenomorph.dm index 78f3c71cf7a3..d46ec41edfec 100644 --- a/code/modules/sprite_accessories/hair/species/xenomorph.dm +++ b/code/modules/sprite_accessories/hair/species/xenomorph.dm @@ -56,3 +56,25 @@ species_allowed = list(SPECIES_XENOHYBRID) random_generation_gender = null +/datum/sprite_accessory/hair/xenohead + name = "Xenomorph Drone dome" + id = "ears_xeno_drone" + icon = 'icons/mob/sprite_accessories/xeno_parts.dmi' + icon_state = "xenohead_standard" + do_colouration = 1 + legacy_use_additive_color_matrix = FALSE + +/datum/sprite_accessory/hair/xenohead/royal + name = "Xenomorph Royal dome" + id = "ears_xeno_royal" + icon_state = "xenohead_royal" + +/datum/sprite_accessory/hair/xenohead/warrior + name = "Xenomorph Warrior dome" + id = "ears_xeno_warrior" + icon_state = "xenohead_warrior" + +/datum/sprite_accessory/hair/xenohead/net + name = "Xenomorph Net dome" + id = "ears_xeno_net" + icon_state = "xenohead_net" From e3b936fbbc49c880eda8518c16258dc746635476 Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Wed, 11 Sep 2024 01:16:50 -0400 Subject: [PATCH 05/20] Damtype regex (#6742) Atomized codebase reorganization --- code/game/atoms/atom-defense.dm | 22 +++++++++---------- code/game/click/items.dm | 8 +++---- code/game/objects/items.dm | 5 ++++- code/game/objects/items/devices/flashlight.dm | 6 ++--- code/game/objects/items/melee/types/misc.dm | 8 +++---- .../objects/items/melee/types/transforming.dm | 4 ++-- code/game/objects/items/storage/boxes.dm | 2 +- code/game/objects/items/tools/weldingtool.dm | 4 ++-- .../objects/items/weapons/cigs_lighters.dm | 4 ++-- code/game/objects/items/weapons/nullrod.dm | 2 +- .../objects/items/weapons/surgery_tools.dm | 8 +++---- .../objects/items/weapons/swords_axes_etc.dm | 10 ++++----- code/game/objects/obj-defense.dm | 6 ++--- code/game/objects/obj.dm | 1 - .../structures/props/projectile_lock.dm | 2 +- .../objects/structures/props/puzzledoor.dm | 2 +- .../game/turfs/simulated/wall/wall-defense.dm | 2 +- code/modules/blob2/blobs/base_blob.dm | 4 ++-- code/modules/clothing/head/misc_special.dm | 4 ++-- code/modules/holodeck/HolodeckControl.dm | 4 ++-- code/modules/holodeck/HolodeckObjects.dm | 2 +- code/modules/mining/tools/mine_items.dm | 2 +- .../mob/living/carbon/carbon_defense.dm | 12 +++++----- .../carbon/human/human-defense-legacy.dm | 16 +++++++++----- .../mob/living/living-defense-legacy.dm | 9 +++++--- code/modules/mob/living/simple_mob/defense.dm | 2 +- .../subtypes/slime/xenobio/subtypes.dm | 4 ++-- code/modules/paperwork/pen.dm | 4 ++-- .../projectiles/projectile/projectile.dm | 4 ++-- code/modules/shieldgen/energy_shield.dm | 4 ++-- code/modules/spells/artifacts.dm | 2 +- .../sealed/mecha/equipment/tools/drill.dm | 2 +- code/modules/vehicles/sealed/mecha/mecha.dm | 5 ++++- code/modules/vehicles_legacy/vehicle.dm | 4 ++-- code/modules/vore/fluffstuff/custom_items.dm | 6 ++--- 35 files changed, 99 insertions(+), 87 deletions(-) diff --git a/code/game/atoms/atom-defense.dm b/code/game/atoms/atom-defense.dm index 0ee92140df2c..b12756c9b08d 100644 --- a/code/game/atoms/atom-defense.dm +++ b/code/game/atoms/atom-defense.dm @@ -157,13 +157,13 @@ . = I.attacksound_override(src, ATTACK_TYPE_MELEE) if(!isnull(.)) return - . = hitsound_override(I.damtype, I.damage_mode, ATTACK_TYPE_MELEE, I) + . = hitsound_override(I.damage_type, I.damage_mode, ATTACK_TYPE_MELEE, I) if(.) return - . = (I.damtype == DAMAGE_TYPE_BURN? hit_sound_burn : hit_sound_brute) || I.attack_sound + . = (I.damage_type == DAMAGE_TYPE_BURN? hit_sound_burn : hit_sound_brute) || I.attack_sound if(.) return - switch(I.damtype) + switch(I.damage_type) if(DAMAGE_TYPE_BRUTE) return "swing_hit" if(DAMAGE_TYPE_BURN) @@ -173,7 +173,7 @@ /atom/proc/hitsound_projectile(obj/projectile/P) //? todo: projectile gets final say - . = hitsound_override(P.damtype, P.damage_mode, ATTACK_TYPE_PROJECTILE, P) + . = hitsound_override(P.damage_type, P.damage_mode, ATTACK_TYPE_PROJECTILE, P) if(.) return return islist(P.impact_sounds)? pick(P.impact_sounds) : P.impact_sounds @@ -182,13 +182,13 @@ . = I.attacksound_override(src, ATTACK_TYPE_THROWN) if(!isnull(.)) return - . = hitsound_override(I.damtype, I.damage_mode, ATTACK_TYPE_THROWN, I) + . = hitsound_override(I.damage_type, I.damage_mode, ATTACK_TYPE_THROWN, I) if(.) return - . = (I.damtype == DAMAGE_TYPE_BURN? hit_sound_burn : hit_sound_brute) || I.attack_sound + . = (I.damage_type == DAMAGE_TYPE_BURN? hit_sound_burn : hit_sound_brute) || I.attack_sound if(.) return - switch(I.damtype) + switch(I.damage_type) if(DAMAGE_TYPE_BRUTE) return "swing_hit" if(DAMAGE_TYPE_BURN) @@ -248,7 +248,7 @@ * * @params * * damage - raw damage - * * damtype - damage type + * * damage_type - damage type * * tier - penetration / attack tier * * flag - armor flag as seen in [code/__DEFINES/combat/armor.dm] * * mode - damage_mode @@ -278,7 +278,7 @@ * * @params * * damage - raw damage - * * damtype - damage type + * * damage_type - damage type * * tier - penetration / attack tier * * flag - armor flag as seen in [code/__DEFINES/combat/armor.dm] * * mode - damage_mode @@ -315,7 +315,7 @@ * * @params * * damage - raw damage - * * damtype - damage type + * * damage_type - damage type * * damage_tier - penetration / attack tier * * damage_flag - armor flag as seen in [code/__DEFINES/combat/armor.dm] * * damage_mode - damage_mode @@ -350,7 +350,7 @@ * * @params * * damage - raw damage - * * damtype - damage type + * * damage_type - damage type * * damage_tier - penetration / attack tier * * damage_flag - armor flag as seen in [code/__DEFINES/combat/armor.dm] * * damage_mode - damage_mode diff --git a/code/game/click/items.dm b/code/game/click/items.dm index 2e3111c6c0e3..598a10344357 100644 --- a/code/game/click/items.dm +++ b/code/game/click/items.dm @@ -216,10 +216,10 @@ if(!hit_zone) // missed // log - add_attack_logs(user, L, "missed with [src] DT [damtype] F [damage_force] I [user.a_intent]") + add_attack_logs(user, L, "missed with [src] DT [damage_type] F [damage_force] I [user.a_intent]") return melee_mob_miss(L, user, clickchain_flags, params, mult, target_zone, intent) // log - add_attack_logs(user, L, "attacked with [src] DT [damtype] F [damage_force] I [user.a_intent]") + add_attack_logs(user, L, "attacked with [src] DT [damage_type] F [damage_force] I [user.a_intent]") // hit return melee_mob_hit(L, user, clickchain_flags, params, mult, target_zone, intent) @@ -298,7 +298,7 @@ if(isliving(target)) var/mob/living/casted = target newhp = casted.health - log_attack(key_name(src), key_name(target), "attacked with [src] [src.damtype]-[src.damage_force]=[src.damage_tier] newhp ~[newhp || "unknown"]") + log_attack(key_name(src), key_name(target), "attacked with [src] [src.damage_type]-[src.damage_force]=[src.damage_tier] newhp ~[newhp || "unknown"]") return NONE @@ -430,7 +430,7 @@ // todo: better logging // todo: entity ids? var/newhp = target.integrity - log_attack(key_name(src), "[target] ([ref(target)])", "attacked with [src] [src.damtype]-[src.damage_force]=[src.damage_tier] newhp ~[newhp || "unknown"]") + log_attack(key_name(src), "[target] ([ref(target)])", "attacked with [src] [src.damage_type]-[src.damage_force]=[src.damage_tier] newhp ~[newhp || "unknown"]") return NONE diff --git a/code/game/objects/items.dm b/code/game/objects/items.dm index e61d13a64890..4239cb4f9034 100644 --- a/code/game/objects/items.dm +++ b/code/game/objects/items.dm @@ -111,7 +111,10 @@ var/damage_tier = MELEE_TIER_MEDIUM /// damage_mode bitfield - see [code/__DEFINES/combat/damage.dm] var/damage_mode = NONE - // todo: port over damtype + /// DAMAGE_TYPE_* enum + /// + /// * This is the primary damage type this object does on usage as a melee / thrown weapon. + var/damage_type = DAMAGE_TYPE_BRUTE //* Storage *// /// storage cost for volumetric storage diff --git a/code/game/objects/items/devices/flashlight.dm b/code/game/objects/items/devices/flashlight.dm index 0e34f154c131..dcaf2099f39b 100644 --- a/code/game/objects/items/devices/flashlight.dm +++ b/code/game/objects/items/devices/flashlight.dm @@ -351,7 +351,7 @@ /obj/item/flashlight/flare/proc/turn_off() on = FALSE src.damage_force = initial(src.damage_force) - src.damtype = initial(src.damtype) + src.damage_type = initial(src.damage_type) update_appearance() /obj/item/flashlight/flare/attack_self(mob/user) @@ -368,14 +368,14 @@ if(.) user.visible_message(SPAN_NOTICE("[user] activates the flare."), SPAN_NOTICE("You pull the cord on the flare, activating it!")) src.damage_force = on_damage - src.damtype = "fire" + src.damage_type = DAMAGE_TYPE_BURN START_PROCESSING(SSobj, src) /obj/item/flashlight/flare/proc/ignite() //Used for flare launchers. on = !on update_appearance() damage_force = on_damage - damtype = "fire" + damage_type = DAMAGE_TYPE_BURN START_PROCESSING(SSobj, src) return TRUE diff --git a/code/game/objects/items/melee/types/misc.dm b/code/game/objects/items/melee/types/misc.dm index ec2cf5250f4c..1b5cacd7ce1b 100644 --- a/code/game/objects/items/melee/types/misc.dm +++ b/code/game/objects/items/melee/types/misc.dm @@ -281,7 +281,7 @@ to_chat(user, "You ignite the [src]'s sacred flame.") playsound(loc, 'sound/weapons/gun_flamethrower3.ogg', 50, 1) src.damage_force = 20 - src.damtype = "fire" + src.damage_type = DAMAGE_TYPE_BURN src.set_weight_class(WEIGHT_CLASS_BULKY) src.attack_sound = 'sound/weapons/gun_flamethrower2.ogg' active = 1 @@ -291,7 +291,7 @@ to_chat(user, "You douse \the [src]'s sacred flame.") playsound(loc, 'sound/weapons/gun_flamethrower1.ogg', 50, 1) src.damage_force = 20 - src.damtype = "brute" + src.damage_type = DAMAGE_TYPE_BRUTE src.set_weight_class(initial(src.w_class)) src.attack_sound = initial(src.attack_sound) src.active = 0 @@ -526,7 +526,7 @@ T.visible_message("\The [src] turns on.") playsound(loc, acti_sound, 50, 1) src.damage_force = 15 - src.damtype = "fire" + src.damage_type = DAMAGE_TYPE_BURN src.set_weight_class(WEIGHT_CLASS_BULKY) src.attack_sound = 'sound/items/welder.ogg' src.sharp = 1 @@ -545,7 +545,7 @@ T.visible_message("\The [src] turns off.") playsound(loc, deac_sound, 50, 1) src.damage_force = 3 - src.damtype = "brute" + src.damage_type = DAMAGE_TYPE_BRUTE src.set_weight_class(initial(src.w_class)) src.active = 0 src.sharp = 0 diff --git a/code/game/objects/items/melee/types/transforming.dm b/code/game/objects/items/melee/types/transforming.dm index fe7f4160f939..837f697309d9 100644 --- a/code/game/objects/items/melee/types/transforming.dm +++ b/code/game/objects/items/melee/types/transforming.dm @@ -133,7 +133,7 @@ damage_force = VALUE_OR_DEFAULT(active_damage_force, initial(damage_force)) damage_tier = VALUE_OR_DEFAULT(active_damage_tier, initial(damage_tier)) damage_mode = VALUE_OR_DEFAULT(active_damage_mode, initial(damage_mode)) - damtype = VALUE_OR_DEFAULT(active_damage_type, initial(damtype)) + damage_type = VALUE_OR_DEFAULT(active_damage_type, initial(damage_type)) throw_force = VALUE_OR_DEFAULT(active_throw_force, initial(throw_force)) throw_resist = VALUE_OR_DEFAULT(active_throw_resist, initial(throw_resist)) @@ -159,7 +159,7 @@ damage_force = VALUE_OR_DEFAULT(inactive_damage_force, initial(damage_force)) damage_tier = VALUE_OR_DEFAULT(inactive_damage_tier, initial(damage_tier)) damage_mode = VALUE_OR_DEFAULT(inactive_damage_mode, initial(damage_mode)) - damtype = VALUE_OR_DEFAULT(inactive_damage_type, initial(damtype)) + damage_type = VALUE_OR_DEFAULT(inactive_damage_type, initial(damage_type)) throw_force = VALUE_OR_DEFAULT(inactive_throw_force, initial(throw_force)) throw_resist = VALUE_OR_DEFAULT(inactive_throw_resist, initial(throw_resist)) diff --git a/code/game/objects/items/storage/boxes.dm b/code/game/objects/items/storage/boxes.dm index a8d3e994287a..7f22e5e14750 100644 --- a/code/game/objects/items/storage/boxes.dm +++ b/code/game/objects/items/storage/boxes.dm @@ -449,7 +449,7 @@ /obj/item/storage/box/matches/attackby(obj/item/flame/match/W as obj, mob/user as mob) if(istype(W) && !W.lit && !W.burnt) W.lit = 1 - W.damtype = "burn" + W.damage_type = "burn" W.icon_state = "match_lit" START_PROCESSING(SSobj, W) W.update_icon() diff --git a/code/game/objects/items/tools/weldingtool.dm b/code/game/objects/items/tools/weldingtool.dm index adf07cc03b87..751956b1c58d 100644 --- a/code/game/objects/items/tools/weldingtool.dm +++ b/code/game/objects/items/tools/weldingtool.dm @@ -253,7 +253,7 @@ T.visible_message("\The [src] turns on.") playsound(loc, acti_sound, 50, 1) src.damage_force = 15 - src.damtype = "fire" + src.damage_type = DAMAGE_TYPE_BURN src.set_weight_class(WEIGHT_CLASS_BULKY) src.attack_sound = 'sound/items/welder.ogg' welding = 1 @@ -275,7 +275,7 @@ T.visible_message("\The [src] turns off.") playsound(loc, deac_sound, 50, 1) src.damage_force = 3 - src.damtype = "brute" + src.damage_type = DAMAGE_TYPE_BRUTE src.set_weight_class(initial(src.w_class)) src.welding = 0 src.attack_sound = initial(src.attack_sound) diff --git a/code/game/objects/items/weapons/cigs_lighters.dm b/code/game/objects/items/weapons/cigs_lighters.dm index b2f43649dee3..fda7029206aa 100644 --- a/code/game/objects/items/weapons/cigs_lighters.dm +++ b/code/game/objects/items/weapons/cigs_lighters.dm @@ -64,7 +64,7 @@ CIGARETTE PACKETS ARE IN FANCY.DM /obj/item/flame/match/proc/burn_out() lit = 0 burnt = 1 - damtype = "brute" + damage_type = DAMAGE_TYPE_BRUTE icon_state = "match_burnt" item_state = "cigoff" name = "burnt match" @@ -160,7 +160,7 @@ CIGARETTE PACKETS ARE IN FANCY.DM /obj/item/clothing/mask/smokable/proc/light(var/flavor_text = "[usr] lights the [name].") if(!src.lit) src.lit = 1 - damtype = "fire" + damage_type = DAMAGE_TYPE_BURN if(reagents.get_reagent_amount("phoron")) // the phoron explodes when exposed to fire var/datum/effect_system/reagents_explosion/e = new() e.set_up(round(reagents.get_reagent_amount("phoron") / 2.5, 1), get_turf(src), 0, 0) diff --git a/code/game/objects/items/weapons/nullrod.dm b/code/game/objects/items/weapons/nullrod.dm index 97a0eb0fd077..2e836696ca4c 100644 --- a/code/game/objects/items/weapons/nullrod.dm +++ b/code/game/objects/items/weapons/nullrod.dm @@ -109,7 +109,7 @@ item_state = "disintegrate" name = "god hand" desc = "This hand of yours glows with an awesome power!" - damtype = DAMAGE_TYPE_BURN + damage_type = DAMAGE_TYPE_BURN attack_verb = list("punched", "cross countered", "pummeled") /obj/item/nullrod/godhand/Initialize(mapload) diff --git a/code/game/objects/items/weapons/surgery_tools.dm b/code/game/objects/items/weapons/surgery_tools.dm index fb75f705c9a6..8877442b964b 100644 --- a/code/game/objects/items/weapons/surgery_tools.dm +++ b/code/game/objects/items/weapons/surgery_tools.dm @@ -106,20 +106,20 @@ name = "laser scalpel" desc = "A scalpel augmented with a directed laser, for more precise cutting without blood entering the field. This one looks basic and could be improved." icon_state = "scalpel_laser1_on" - damtype = "fire" + damage_type = DAMAGE_TYPE_BURN /obj/item/surgical/scalpel/laser2 name = "laser scalpel" desc = "A scalpel augmented with a directed laser, for more precise cutting without blood entering the field. This one looks somewhat advanced." icon_state = "scalpel_laser2_on" - damtype = "fire" + damage_type = DAMAGE_TYPE_BURN damage_force = 12.0 /obj/item/surgical/scalpel/laser3 name = "laser scalpel" desc = "A scalpel augmented with a directed laser, for more precise cutting without blood entering the field. This one looks to be the pinnacle of precision energy cutlery!" icon_state = "scalpel_laser3_on" - damtype = "fire" + damage_type = DAMAGE_TYPE_BURN damage_force = 15.0 /obj/item/surgical/scalpel/manager @@ -162,7 +162,7 @@ icon_state = "adv_saw" item_state = "saw3" attack_sound = 'sound/weapons/emitter2.ogg' - damtype = DAMAGE_TYPE_SEARING + damage_type = DAMAGE_TYPE_SEARING w_class = WEIGHT_CLASS_BULKY origin_tech = list(TECH_BIO = 4, TECH_MATERIAL = 6, TECH_MAGNET = 6) materials_base = list(MAT_STEEL = 12500) diff --git a/code/game/objects/items/weapons/swords_axes_etc.dm b/code/game/objects/items/weapons/swords_axes_etc.dm index c04b902bdcdd..63b12ff5d9c0 100644 --- a/code/game/objects/items/weapons/swords_axes_etc.dm +++ b/code/game/objects/items/weapons/swords_axes_etc.dm @@ -110,15 +110,15 @@ var/mob/living/L = user L.take_random_targeted_damage(brute = 2*damage_force) return - var/old_damtype = damtype + var/old_damage_type = damage_type var/old_attack_verb = attack_verb var/old_force = damage_force if(user.a_intent != INTENT_HARM) - damtype = DAMAGE_TYPE_HALLOSS + damage_type = DAMAGE_TYPE_HALLOSS attack_verb = list("suppressed") damage_force = on_pain_force . = ..() - damtype = old_damtype + damage_type = old_damage_type attack_verb = old_attack_verb damage_force = old_force else @@ -221,7 +221,7 @@ desc = "A training sword made of wood and shaped like a katana." icon_state = "bokken" slot_flags = SLOT_BELT | SLOT_BACK - damtype = DAMAGE_TYPE_HALLOSS + damage_type = DAMAGE_TYPE_HALLOSS damage_force = 5 throw_force = 5 attack_verb = list("whacked", "smacked", "struck") @@ -351,7 +351,7 @@ desc = "A heavy wooden club reinforced with metal studs. Ancient Terran Oni were often depicted carrying this weapon." icon_state = "kanabo" slot_flags = SLOT_BACK - damtype = DAMAGE_TYPE_BRUTE + damage_type = DAMAGE_TYPE_BRUTE damage_force = 15 throw_force = 5 attack_verb = list("battered", "hammered", "struck") diff --git a/code/game/objects/obj-defense.dm b/code/game/objects/obj-defense.dm index d8046405874a..c6882bfe39b4 100644 --- a/code/game/objects/obj-defense.dm +++ b/code/game/objects/obj-defense.dm @@ -20,7 +20,7 @@ // todo: maybe the item side should handle this? run_damage_instance( weapon.damage_force * (clickchain ? clickchain.damage_multiplier : 1), - weapon.damtype, + weapon.damage_type, weapon.damage_tier, weapon.damage_flag, weapon.damage_mode, @@ -96,7 +96,7 @@ /obj/hitsound_melee(obj/item/I) if(!isnull(material_primary)) var/datum/material/primary = get_primary_material() - . = I.damtype == DAMAGE_TYPE_BURN? primary.sound_melee_burn : primary.sound_melee_brute + . = I.damage_type == DAMAGE_TYPE_BURN? primary.sound_melee_burn : primary.sound_melee_brute if(!isnull(.)) return return ..() @@ -104,7 +104,7 @@ /obj/hitsound_throwhit(obj/item/I) if(!isnull(material_primary)) var/datum/material/primary = get_primary_material() - . = I.damtype == DAMAGE_TYPE_BURN? primary.sound_melee_burn : primary.sound_melee_brute + . = I.damage_type == DAMAGE_TYPE_BURN? primary.sound_melee_burn : primary.sound_melee_brute if(!isnull(.)) return return ..() diff --git a/code/game/objects/obj.dm b/code/game/objects/obj.dm index f58e08f536e6..8784f12371f3 100644 --- a/code/game/objects/obj.dm +++ b/code/game/objects/obj.dm @@ -211,7 +211,6 @@ var/pry = 0 //Used in attackby() to open doors //! LEGACY: DO NOT USE var/in_use = 0 // If we have a user using us, this will be set on. We will check if the user has stopped using us, and thus stop updating and LAGGING EVERYTHING! - var/damtype = "brute" // todo: /obj/item level, /obj/projectile level, how to deal with armor? var/armor_penetration = 0 var/show_messages diff --git a/code/game/objects/structures/props/projectile_lock.dm b/code/game/objects/structures/props/projectile_lock.dm index 505cc3b263b2..a0257faf72db 100644 --- a/code/game/objects/structures/props/projectile_lock.dm +++ b/code/game/objects/structures/props/projectile_lock.dm @@ -48,7 +48,7 @@ if(timing) return PROJECTILE_IMPACT_DELETE - if(istype(proj, /obj/projectile/beam/heavylaser/cannon) || istype(proj, /obj/projectile/beam/emitter) || (proj.damage_force >= 80 && proj.damtype == DAMAGE_TYPE_BURN)) + if(istype(proj, /obj/projectile/beam/heavylaser/cannon) || istype(proj, /obj/projectile/beam/emitter) || (proj.damage_force >= 80 && proj.damage_type == DAMAGE_TYPE_BURN)) toggle_lock() visible_message("\The [src] [enabled ? "disengages" : "engages"] its locking mechanism.") diff --git a/code/game/objects/structures/props/puzzledoor.dm b/code/game/objects/structures/props/puzzledoor.dm index 951eb64f86dc..861ed2074b4f 100644 --- a/code/game/objects/structures/props/puzzledoor.dm +++ b/code/game/objects/structures/props/puzzledoor.dm @@ -77,7 +77,7 @@ else if(src.density && (user.a_intent == INTENT_HARM)) var/obj/item/W = C user.setClickCooldown(user.get_attack_speed(W)) - if(W.damtype == DAMAGE_TYPE_BRUTE || W.damtype == DAMAGE_TYPE_BURN) + if(W.damage_type == DAMAGE_TYPE_BRUTE || W.damage_type == DAMAGE_TYPE_BURN) user.do_attack_animation(src) user.visible_message("\The [user] hits \the [src] with \the [W] with no visible effect.") diff --git a/code/game/turfs/simulated/wall/wall-defense.dm b/code/game/turfs/simulated/wall/wall-defense.dm index 98c80c6ec0dd..e1d7eec2bbd8 100644 --- a/code/game/turfs/simulated/wall/wall-defense.dm +++ b/code/game/turfs/simulated/wall/wall-defense.dm @@ -47,7 +47,7 @@ // todo: maybe the item side should handle this? run_damage_instance( weapon.damage_force * (clickchain ? clickchain.damage_multiplier : 1), - weapon.damtype, + weapon.damage_type, weapon.damage_tier, weapon.damage_flag, weapon.damage_mode, diff --git a/code/modules/blob2/blobs/base_blob.dm b/code/modules/blob2/blobs/base_blob.dm index 40d129452082..505d6c155dab 100644 --- a/code/modules/blob2/blobs/base_blob.dm +++ b/code/modules/blob2/blobs/base_blob.dm @@ -226,7 +226,7 @@ var/list/blobs = list() playsound(loc, 'sound/effects/attackblob.ogg', 50, 1) visible_message("\The [src] has been attacked with \the [W][(user ? " by [user]." : ".")]") var/damage = W.damage_force - switch(W.damtype) + switch(W.damage_type) if(DAMAGE_TYPE_BURN) if(overmind) damage *= overmind.blob_type.burn_multiplier @@ -248,7 +248,7 @@ var/list/blobs = list() else playsound(src, 'sound/weapons/tap.ogg', 50, 1) if(overmind) - damage = overmind.blob_type.on_received_damage(src, damage, W.damtype, user) + damage = overmind.blob_type.on_received_damage(src, damage, W.damage_type, user) adjust_integrity_blob(-damage) return diff --git a/code/modules/clothing/head/misc_special.dm b/code/modules/clothing/head/misc_special.dm index dec04a45a3c4..f6b34b2f2729 100644 --- a/code/modules/clothing/head/misc_special.dm +++ b/code/modules/clothing/head/misc_special.dm @@ -150,12 +150,12 @@ onfire = !(onfire) if (onfire) damage_force = 3 - damtype = "fire" + damage_type = DAMAGE_TYPE_BURN icon_state = "cake1" START_PROCESSING(SSobj, src) else damage_force = 0 - damtype = "brute" + damage_type = DAMAGE_TYPE_BRUTE icon_state = "cake0" return diff --git a/code/modules/holodeck/HolodeckControl.dm b/code/modules/holodeck/HolodeckControl.dm index 60f78010bae2..5e3ddcefea06 100644 --- a/code/modules/holodeck/HolodeckControl.dm +++ b/code/modules/holodeck/HolodeckControl.dm @@ -173,11 +173,11 @@ if (safety_disabled) item_power_usage = 2500 for(var/obj/item/holo/esword/H in linkedholodeck) - H.damtype = DAMAGE_TYPE_BRUTE + H.damage_type = DAMAGE_TYPE_BRUTE else item_power_usage = initial(item_power_usage) for(var/obj/item/holo/esword/H in linkedholodeck) - H.damtype = initial(H.damtype) + H.damage_type = initial(H.damage_type) for(var/mob/living/simple_mob/animal/space/carp/holodeck/C in holographic_mobs) C.set_safety(!safety_disabled) diff --git a/code/modules/holodeck/HolodeckObjects.dm b/code/modules/holodeck/HolodeckObjects.dm index 493c9a42ddfd..9160f19cc590 100644 --- a/code/modules/holodeck/HolodeckObjects.dm +++ b/code/modules/holodeck/HolodeckObjects.dm @@ -213,7 +213,7 @@ return /obj/item/holo - damtype = DAMAGE_TYPE_HALLOSS + damage_type = DAMAGE_TYPE_HALLOSS /obj/item/holo/esword desc = "May the force be within you. Sorta." diff --git a/code/modules/mining/tools/mine_items.dm b/code/modules/mining/tools/mine_items.dm index 8b8f630d436a..0f5ad496300e 100644 --- a/code/modules/mining/tools/mine_items.dm +++ b/code/modules/mining/tools/mine_items.dm @@ -94,7 +94,7 @@ icon_state = "plasmacutter" item_state = "gun" w_class = WEIGHT_CLASS_NORMAL //it is smaller than the pickaxe - damtype = "fire" + damage_type = DAMAGE_TYPE_BURN digspeed = 20 //Can slice though normal walls, all girders, or be used in reinforced wall deconstruction/ light thermite on fire origin_tech = list(TECH_MATERIAL = 4, TECH_PHORON = 3, TECH_ENGINEERING = 3) desc = "A rock cutter that uses bursts of hot plasma. You could use it to cut limbs off of xenos! Or, you know, mine stuff." diff --git a/code/modules/mob/living/carbon/carbon_defense.dm b/code/modules/mob/living/carbon/carbon_defense.dm index 5cf584d5efe3..039154fa083a 100644 --- a/code/modules/mob/living/carbon/carbon_defense.dm +++ b/code/modules/mob/living/carbon/carbon_defense.dm @@ -27,10 +27,10 @@ weapon_edge = 0 hit_embed_chance = I.damage_force/(I.w_class*3) - apply_damage(effective_force, I.damtype, hit_zone, blocked, soaked, sharp=weapon_sharp, edge=weapon_edge, used_weapon=I) + apply_damage(effective_force, I.damage_type, hit_zone, blocked, soaked, sharp=weapon_sharp, edge=weapon_edge, used_weapon=I) //Melee weapon embedded object code. - if (I && I.damtype == DAMAGE_TYPE_BRUTE && !I.anchored && !is_robot_module(I) && I.embed_chance > 0) + if (I && I.damage_type == DAMAGE_TYPE_BRUTE && !I.anchored && !is_robot_module(I) && I.embed_chance > 0) var/damage = effective_force if (blocked) damage *= (100 - blocked)/100 @@ -102,7 +102,7 @@ // Knifing /mob/living/carbon/proc/attack_throat(obj/item/W, obj/item/grab/G, mob/user) - if(!((W.damage_mode & DAMAGE_MODE_EDGE) || W.edge) || !W.damage_force || W.damtype != DAMAGE_TYPE_BRUTE) + if(!((W.damage_mode & DAMAGE_MODE_EDGE) || W.edge) || !W.damage_force || W.damage_type != DAMAGE_TYPE_BRUTE) return 0 //unsuitable weapon user.visible_message("\The [user] begins to slit [src]'s throat with \the [W]!") @@ -123,7 +123,7 @@ var/total_damage = 0 for(var/i in 1 to 3) var/damage = min(W.damage_force*1.5, 20)*damage_mod - apply_damage(damage, W.damtype, "head", 0, sharp=W.sharp||(W.damage_mode & DAMAGE_MODE_EDGE), edge=W.edge||(W.damage_mode & DAMAGE_MODE_EDGE)) + apply_damage(damage, W.damage_type, "head", 0, sharp=W.sharp||(W.damage_mode & DAMAGE_MODE_EDGE), edge=W.edge||(W.damage_mode & DAMAGE_MODE_EDGE)) total_damage += damage var/oxyloss = total_damage @@ -150,13 +150,13 @@ /mob/living/carbon/proc/shank_attack(obj/item/W, obj/item/grab/G, mob/user, hit_zone) - if(!(W.sharp || (W.damage_mode & DAMAGE_MODE_SHARP)) || !W.damage_force || W.damtype != DAMAGE_TYPE_BRUTE) + if(!(W.sharp || (W.damage_mode & DAMAGE_MODE_SHARP)) || !W.damage_force || W.damage_type != DAMAGE_TYPE_BRUTE) return 0 //unsuitable weapon user.visible_message("\The [user] plunges \the [W] into \the [src]!") var/damage = shank_armor_helper(W, G, user) - apply_damage(damage, W.damtype, "torso", 0, sharp=W.sharp||(W.damage_mode & DAMAGE_MODE_EDGE), edge=W.edge||(W.damage_mode & DAMAGE_MODE_EDGE)) + apply_damage(damage, W.damage_type, "torso", 0, sharp=W.sharp||(W.damage_mode & DAMAGE_MODE_EDGE), edge=W.edge||(W.damage_mode & DAMAGE_MODE_EDGE)) if(W.attack_sound) playsound(loc, W.attack_sound, 50, 1, -1) diff --git a/code/modules/mob/living/carbon/human/human-defense-legacy.dm b/code/modules/mob/living/carbon/human/human-defense-legacy.dm index 7438b3dc2cf4..cc719d39f3cf 100644 --- a/code/modules/mob/living/carbon/human/human-defense-legacy.dm +++ b/code/modules/mob/living/carbon/human/human-defense-legacy.dm @@ -227,7 +227,7 @@ forcesay(hit_appends) //forcesay checks stat already if(prob(25 + (effective_force * 2))) - if(!((I.damtype == DAMAGE_TYPE_BRUTE) || (I.damtype == DAMAGE_TYPE_HALLOSS))) + if(!((I.damage_type == DAMAGE_TYPE_BRUTE) || (I.damage_type == DAMAGE_TYPE_HALLOSS))) return if(!(I.atom_flags & NOBLOODY)) @@ -274,7 +274,7 @@ if(!organ || (organ.dislocated == 2) || (organ.dislocated == -1) || blocked >= 100) return 0 - if(W.damtype != DAMAGE_TYPE_BRUTE) + if(W.damage_type != DAMAGE_TYPE_BRUTE) return 0 if(soaked >= round(effective_force*0.8)) @@ -317,7 +317,11 @@ throw_mode_off() return - var/dtype = O.damtype + var/dtype = DAMAGE_TYPE_BRUTE + if(isitem(AM)) + var/obj/item/impacting_item = AM + dtype = impacting_item.damage_type + var/throw_damage = O.throw_force * TT.get_damage_multiplier(src) var/zone @@ -473,10 +477,10 @@ w_uniform.add_blood(source) update_inv_w_uniform(0) -/mob/living/carbon/human/proc/handle_suit_punctures(var/damtype, var/damage, var/def_zone) +/mob/living/carbon/human/proc/handle_suit_punctures(var/damage_type, var/damage, var/def_zone) // Tox and oxy don't matter to suits. - if(damtype != DAMAGE_TYPE_BURN && damtype != DAMAGE_TYPE_BRUTE) return + if(damage_type != DAMAGE_TYPE_BURN && damage_type != DAMAGE_TYPE_BRUTE) return // The hardsuit might soak this hit, if we're wearing one. if(back && istype(back,/obj/item/hardsuit)) @@ -488,7 +492,7 @@ if(!istype(wear_suit,/obj/item/clothing/suit/space)) return var/obj/item/clothing/suit/space/SS = wear_suit var/penetrated_dam = max(0,(damage - SS.breach_threshold)) - if(penetrated_dam) SS.create_breaches(damtype, penetrated_dam) + if(penetrated_dam) SS.create_breaches(damage_type, penetrated_dam) /mob/living/carbon/human/reagent_permeability() var/perm = 0 diff --git a/code/modules/mob/living/living-defense-legacy.dm b/code/modules/mob/living/living-defense-legacy.dm index 008761bdc1c4..f6e64eaed3a5 100644 --- a/code/modules/mob/living/living-defense-legacy.dm +++ b/code/modules/mob/living/living-defense-legacy.dm @@ -192,7 +192,7 @@ standard_weapon_hit_effects(I, user, effective_force, blocked, soaked, hit_zone) - if(I.damtype == DAMAGE_TYPE_BRUTE && prob(33)) // Added blood for whacking non-humans too + if(I.damage_type == DAMAGE_TYPE_BRUTE && prob(33)) // Added blood for whacking non-humans too var/turf/simulated/location = get_turf(src) if(istype(location)) location.add_blood_floor(src) @@ -214,7 +214,7 @@ weapon_sharp = 0 weapon_edge = 0 - apply_damage(effective_force, I.damtype, hit_zone, blocked, soaked, sharp=weapon_sharp, edge=weapon_edge, used_weapon=I) + apply_damage(effective_force, I.damage_type, hit_zone, blocked, soaked, sharp=weapon_sharp, edge=weapon_edge, used_weapon=I) return 1 @@ -222,7 +222,10 @@ /mob/living/throw_impacted(atom/movable/AM, datum/thrownthing/TT) if(istype(AM, /obj)) var/obj/O = AM - var/dtype = O.damtype + var/dtype = DAMAGE_TYPE_BRUTE + if(isitem(AM)) + var/obj/item/impacting_item = AM + dtype = impacting_item.damage_type var/throw_damage = O.throw_force * TT.get_damage_multiplier(src) var/miss_chance = 15 diff --git a/code/modules/mob/living/simple_mob/defense.dm b/code/modules/mob/living/simple_mob/defense.dm index cc18761c9935..3ea0519d6c51 100644 --- a/code/modules/mob/living/simple_mob/defense.dm +++ b/code/modules/mob/living/simple_mob/defense.dm @@ -75,7 +75,7 @@ effective_force = O.damage_force //Animals can't be stunned(?) - if(O.damtype == DAMAGE_TYPE_HALLOSS) + if(O.damage_type == DAMAGE_TYPE_HALLOSS) effective_force = 0 if(supernatural && istype(O,/obj/item/nullrod)) effective_force *= 2 diff --git a/code/modules/mob/living/simple_mob/subtypes/slime/xenobio/subtypes.dm b/code/modules/mob/living/simple_mob/subtypes/slime/xenobio/subtypes.dm index c8e5ab414ba7..4f6526c96aa0 100644 --- a/code/modules/mob/living/simple_mob/subtypes/slime/xenobio/subtypes.dm +++ b/code/modules/mob/living/simple_mob/subtypes/slime/xenobio/subtypes.dm @@ -207,7 +207,7 @@ ignite() /mob/living/simple_mob/slime/xenobio/dark_purple/attackby(var/obj/item/W, var/mob/user) - if(istype(W) && W.damage_force && W.damtype == DAMAGE_TYPE_BURN) + if(istype(W) && W.damage_force && W.damage_type == DAMAGE_TYPE_BURN) log_and_message_admins("[src] ignited due to being hit with a burning weapon ([W]) by [key_name(user)].") ignite() else @@ -661,7 +661,7 @@ explode() /mob/living/simple_mob/slime/xenobio/oil/attackby(obj/item/W, mob/living/user) - if(istype(W) && W.damage_force && W.damtype == DAMAGE_TYPE_BURN) + if(istype(W) && W.damage_force && W.damage_type == DAMAGE_TYPE_BURN) log_and_message_admins("[src] exploded due to being hit with a burning weapon ([W]) by [key_name(user)].") explode() else diff --git a/code/modules/paperwork/pen.dm b/code/modules/paperwork/pen.dm index 21443c6f6e00..7315a0a90a86 100644 --- a/code/modules/paperwork/pen.dm +++ b/code/modules/paperwork/pen.dm @@ -192,7 +192,7 @@ edge = 1 set_weight_class(active_w_class) playsound(src, 'sound/weapons/saberon.ogg', 15, 1) - damtype = DAMAGE_TYPE_SEARING + damage_type = DAMAGE_TYPE_SEARING item_flags |= ITEM_THROW_UNCATCHABLE attack_verb |= list(\ @@ -214,7 +214,7 @@ sharp = initial(sharp) edge = initial(edge) set_weight_class(initial(w_class)) - damtype = DAMAGE_TYPE_BRUTE + damage_type = DAMAGE_TYPE_BRUTE item_flags &= ~ITEM_THROW_UNCATCHABLE /obj/item/pen/blade/blue diff --git a/code/modules/projectiles/projectile/projectile.dm b/code/modules/projectiles/projectile/projectile.dm index 184778fbc77f..29762896baad 100644 --- a/code/modules/projectiles/projectile/projectile.dm +++ b/code/modules/projectiles/projectile/projectile.dm @@ -289,7 +289,7 @@ var/damage_force = 10 /// damage tier - goes hand in hand with [damage_armor] var/damage_tier = BULLET_TIER_DEFAULT - /// todo: legacy - BRUTE, BURN, TOX, OXY, CLONE, HALLOSS, ELECTROCUTE, BIOACID are the only things that should be in here + /// damage type - DAMAGE_TYPE_* define var/damage_type = DAMAGE_TYPE_BRUTE /// armor flag for damage - goes hand in hand with [damage_tier] var/damage_flag = ARMOR_BULLET @@ -604,7 +604,7 @@ return fire(angle_override, direct_target) /** - * Standard proc to determine damage when impacting something. This does not affect the special damage variables/effect variables, only damage and damtype. + * Standard proc to determine damage when impacting something. This does not affect the special damage variables/effect variables, only damage and damage_type. * May or may not be called before/after armor calculations. * * @params diff --git a/code/modules/shieldgen/energy_shield.dm b/code/modules/shieldgen/energy_shield.dm index 4416de28d33b..1b6748953484 100644 --- a/code/modules/shieldgen/energy_shield.dm +++ b/code/modules/shieldgen/energy_shield.dm @@ -254,9 +254,9 @@ if(gen.check_flag(MODEFLAG_HYPERKINETIC)) user.visible_message("\The [user] hits \the [src] with \the [I]!") - if(I.damtype == DAMAGE_TYPE_BURN) + if(I.damage_type == DAMAGE_TYPE_BURN) take_damage_legacy(I.damage_force, SHIELD_DAMTYPE_HEAT) - else if (I.damtype == DAMAGE_TYPE_BRUTE) + else if (I.damage_type == DAMAGE_TYPE_BRUTE) take_damage_legacy(I.damage_force, SHIELD_DAMTYPE_PHYSICAL) else take_damage_legacy(I.damage_force, SHIELD_DAMTYPE_EM) diff --git a/code/modules/spells/artifacts.dm b/code/modules/spells/artifacts.dm index d906ee6de3cf..6f636dcf872d 100644 --- a/code/modules/spells/artifacts.dm +++ b/code/modules/spells/artifacts.dm @@ -8,7 +8,7 @@ throw_speed = 3 throw_range = 7 throw_force = 10 - damtype = DAMAGE_TYPE_BURN + damage_type = DAMAGE_TYPE_BURN damage_force = 10 attack_sound = 'sound/items/welder2.ogg' diff --git a/code/modules/vehicles/sealed/mecha/equipment/tools/drill.dm b/code/modules/vehicles/sealed/mecha/equipment/tools/drill.dm index b71d64411122..f0b3e4b7cb38 100644 --- a/code/modules/vehicles/sealed/mecha/equipment/tools/drill.dm +++ b/code/modules/vehicles/sealed/mecha/equipment/tools/drill.dm @@ -56,7 +56,7 @@ return 1 /obj/item/mecha_parts/mecha_equipment/tool/drill/proc/drill_mob(mob/living/target, mob/user) - add_attack_logs(user, target, "attacked", "[name]", "(INTENT: [uppertext(user.a_intent)]) (DAMTYPE: [uppertext(damtype)])") + add_attack_logs(user, target, "attacked", "[name]", "(INTENT: [uppertext(user.a_intent)]) (DAMTYPE: [uppertext(DAMAGE_TYPE_BRUTE)])") var/drill_force = damage_force //Couldn't manage it otherwise. if(ishuman(target)) target.apply_damage(drill_force, DAMAGE_TYPE_BRUTE) diff --git a/code/modules/vehicles/sealed/mecha/mecha.dm b/code/modules/vehicles/sealed/mecha/mecha.dm index 07953a03cb30..8af15004add4 100644 --- a/code/modules/vehicles/sealed/mecha/mecha.dm +++ b/code/modules/vehicles/sealed/mecha/mecha.dm @@ -144,6 +144,9 @@ var/max_equip = 2 var/datum/events/events + /// outgoing melee damage (legacy var) + var/damtype + //mechaequipt2 stuffs var/list/hull_equipment = new var/list/weapon_equipment = new @@ -1351,7 +1354,7 @@ pass_damage = (pass_damage*pass_damage_reduc_mod) //Apply the reduction of damage from not having enough armor penetration. This is not regular armor values at play. for(var/obj/item/mecha_parts/mecha_equipment/ME in equipment) pass_damage = ME.handle_projectile_contact(W, user, pass_damage) - src.take_damage_legacy(pass_damage,W.damtype) //The take_damage_legacy() proc handles armor values + src.take_damage_legacy(pass_damage, W.damage_type) //The take_damage_legacy() proc handles armor values if(pass_damage > internal_damage_minimum) //Only decently painful attacks trigger a chance of mech damage. src.check_for_internal_damage(list(MECHA_INT_TEMP_CONTROL,MECHA_INT_TANK_BREACH,MECHA_INT_CONTROL_LOST)) return diff --git a/code/modules/vehicles_legacy/vehicle.dm b/code/modules/vehicles_legacy/vehicle.dm index 80de4b285178..d6878ded82be 100644 --- a/code/modules/vehicles_legacy/vehicle.dm +++ b/code/modules/vehicles_legacy/vehicle.dm @@ -111,9 +111,9 @@ else to_chat(user, "Unable to repair while [src] is off.") - else if(hasvar(W,"damage_force") && hasvar(W,"damtype")) + else if(hasvar(W,"damage_force") && hasvar(W,"damage_type")) user.setClickCooldown(user.get_attack_speed(W)) - switch(W.damtype) + switch(W.damage_type) if("fire") health -= W.damage_force * fire_dam_coeff if("brute") diff --git a/code/modules/vore/fluffstuff/custom_items.dm b/code/modules/vore/fluffstuff/custom_items.dm index 44bf48d4b155..efcccd152050 100644 --- a/code/modules/vore/fluffstuff/custom_items.dm +++ b/code/modules/vore/fluffstuff/custom_items.dm @@ -169,7 +169,7 @@ damage_force = 10 throw_force = 3 w_class = WEIGHT_CLASS_NORMAL - damtype = DAMAGE_TYPE_HALLOSS + damage_type = DAMAGE_TYPE_HALLOSS attack_verb = list("flogged", "whipped", "lashed", "disciplined", "chastised", "flayed") //General use @@ -1308,7 +1308,7 @@ item_icons = list(SLOT_ID_LEFT_HAND = 'icons/mob/items/lefthand_melee.dmi', SLOT_ID_RIGHT_HAND = 'icons/mob/items/righthand_melee.dmi', SLOT_ID_BACK = 'icons/vore/custom_items_vr.dmi', SLOT_ID_SUIT = 'icons/vore/custom_items_vr.dmi') var/active_state = "wolfgirlsword" allowed = list(/obj/item/shield/fluff/wolfgirlshield) - damtype = DAMAGE_TYPE_HALLOSS + damage_type = DAMAGE_TYPE_HALLOSS /obj/item/melee/fluffstuff/wolfgirlsword/dropped(mob/user, flags, atom/newLoc) ..() @@ -1324,7 +1324,7 @@ sharp = 1 edge = 1 icon_state = "[active_state]_sharp" - damtype = DAMAGE_TYPE_BRUTE + damage_type = DAMAGE_TYPE_BRUTE /obj/item/melee/fluffstuff/wolfgirlsword/deactivate(mob/living/user) From efb1c57bb8d754ea0bb362087626c618c67a52a3 Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Fri, 13 Sep 2024 10:50:11 -0400 Subject: [PATCH 06/20] sharp / edge / damage mode regex (#6747) last regex before #6575 , probably deprecated sharp and edge --- code/__DEFINES/combat/damage.dm | 4 ++- code/__HELPERS/unsorted.dm | 22 +++++++------- .../gamemodes/changeling/powers/armblade.dm | 6 ++-- code/game/gamemodes/cult/cult_items.dm | 3 +- .../technomancer/devices/shield_armor.dm | 3 +- code/game/objects/items.dm | 6 ++-- code/game/objects/items/devices/gps.dm | 3 +- code/game/objects/items/melee/types/misc.dm | 21 +++++-------- .../items/melee/types/ninja_energy_blade.dm | 3 +- .../melee/types/transforming/energy/axe.dm | 3 +- .../types/transforming/energy/ionic_rapier.dm | 3 +- .../objects/items/storage/misc_legacy/misc.dm | 3 +- code/game/objects/items/tools/screwdriver.dm | 2 +- code/game/objects/items/tools/wirecutters.dm | 3 +- .../items/weapons/material/chainsaw.dm | 15 ++++------ .../objects/items/weapons/material/misc.dm | 3 +- .../objects/items/weapons/material/shards.dm | 4 +-- code/game/objects/items/weapons/stunbaton.dm | 2 -- .../objects/items/weapons/surgery_tools.dm | 18 ++++------- .../objects/items/weapons/swords_axes_etc.dm | 7 ++--- code/game/objects/obj.dm | 5 ---- code/modules/blob2/overmind/types.dm | 2 +- code/modules/food/drinks/bottle.dm | 3 +- code/modules/materials/material_sheets.dm | 4 +-- code/modules/mining/tools/kinetic_crusher.dm | 4 +-- code/modules/mining/tools/mine_items.dm | 15 +++------- .../mob/living/carbon/carbon_defense.dm | 10 +++---- .../carbon/human/human-defense-legacy.dm | 8 ++--- .../mob/living/living-defense-legacy.dm | 2 +- .../silicon/robot/dogborg/dog_modules_vr.dm | 3 +- .../subtypes/mechanical/hivebot/hivebot.dm | 3 +- .../simple_mob/subtypes/slime/feral/feral.dm | 2 +- code/modules/paperwork/pen.dm | 9 ++---- code/modules/power/cable.dm | 5 ---- code/modules/power/lighting/lights.dm | 2 +- .../ballistic/microbattery/revolver_cells.dm | 4 +-- .../projectiles/guns/launcher/crossbow.dm | 6 ++-- .../projectiles/guns/launcher/syringe_gun.dm | 4 +-- .../guns/legacy_vr_guns/gunsword.dm | 8 ++--- .../projectiles/guns/projectile/revolver.dm | 3 +- .../projectiles/guns/projectile/shotgun.dm | 3 +- .../projectile/subtypes/beam/beams.dm | 3 +- .../projectile/subtypes/bullets.dm | 30 +++++++++---------- .../projectile/subtypes/bullets_vr.dm | 1 - .../projectiles/projectile/subtypes/hook.dm | 2 +- .../projectiles/projectile/subtypes/pellet.dm | 3 +- .../projectile/subtypes/special.dm | 3 -- code/modules/projectiles/unsorted/magic.dm | 2 +- .../reagents/reagent_containers/syringes.dm | 2 +- code/modules/vore/fluffstuff/custom_items.dm | 11 +------ code/modules/xenoarcheaology/sampling.dm | 2 +- 51 files changed, 107 insertions(+), 191 deletions(-) diff --git a/code/__DEFINES/combat/damage.dm b/code/__DEFINES/combat/damage.dm index f2c4aa85ff6d..4c8bab21d089 100644 --- a/code/__DEFINES/combat/damage.dm +++ b/code/__DEFINES/combat/damage.dm @@ -1,7 +1,7 @@ //* This file is explicitly licensed under the MIT license. *// //* Copyright (c) 2024 Citadel Station Developers *// -//? damage types +//? damage types //* direct damage types; maps to most systems in the game *// @@ -42,6 +42,8 @@ /// pulse lasers, etc, basically blows a crater #define DAMAGE_MODE_ABLATING (1<<2) /// specifically highly-piercing weapons like bullets, even worse than sharp. +/// +/// * for pierce-ness checks, 'sharp withot edge' is fine. having this flag is pretty much second tier of piercing. #define DAMAGE_MODE_PIERCE (1<<3) /// messy, shredded wounds instead of a clean cut / pierce. strong. #define DAMAGE_MODE_SHRED (1<<4) diff --git a/code/__HELPERS/unsorted.dm b/code/__HELPERS/unsorted.dm index 20b933d326dc..e927cff55b24 100644 --- a/code/__HELPERS/unsorted.dm +++ b/code/__HELPERS/unsorted.dm @@ -1003,36 +1003,36 @@ return FALSE /// Whether or not the given item counts as sharp in terms of dealing damage. +// todo: deprecrated /proc/is_sharp(obj/O as obj) if(!O) return FALSE - if(O.sharp) - return TRUE - if(O.edge) - return TRUE if(isitem(O)) var/obj/item/I = O - if(I.damage_mode & DAMAGE_MODE_SHARP) - return TRUE + return I.damage_mode & (DAMAGE_MODE_SHARP | DAMAGE_MODE_EDGE) + else if(istype(O, /obj/projectile)) + var/obj/projectile/proj = O + return proj.damage_mode & (DAMAGE_MODE_SHARP | DAMAGE_MODE_EDGE) return FALSE /// Whether or not the given item counts as cutting with an edge in terms of removing limbs. +// todo: deprecrated /proc/has_edge(obj/O as obj) if(!O) return FALSE - if(O.edge) - return TRUE if(isitem(O)) var/obj/item/I = O - if(I.damage_mode & DAMAGE_MODE_EDGE) - return TRUE + return I.damage_mode & (DAMAGE_MODE_EDGE) + else if(istype(O, /obj/projectile)) + var/obj/projectile/proj = O + return proj.damage_mode & (DAMAGE_MODE_EDGE) return FALSE /// Returns 1 if the given item is capable of popping things like balloons, inflatable barriers, or cutting police tape. /proc/can_puncture(obj/item/W as obj) //For the record, WHAT THE HELL IS THIS METHOD OF DOING IT? if(!W) return FALSE - if(W.sharp) + if(W.damage_mode & DAMAGE_MODE_SHARP) return TRUE return ( \ W.is_screwdriver() || \ diff --git a/code/game/gamemodes/changeling/powers/armblade.dm b/code/game/gamemodes/changeling/powers/armblade.dm index bc89f0efdeff..9946b4d9d0b9 100644 --- a/code/game/gamemodes/changeling/powers/armblade.dm +++ b/code/game/gamemodes/changeling/powers/armblade.dm @@ -123,8 +123,7 @@ icon_state = "arm_blade" damage_force = 40 armor_penetration = 15 - sharp = 1 - edge = 1 + damage_mode = DAMAGE_MODE_SHARP | DAMAGE_MODE_EDGE pry = 1 attack_verb = list("attacked", "slashed", "stabbed", "sliced", "torn", "ripped", "diced", "cut") @@ -150,8 +149,7 @@ desc = "A grotesque claw made out of bone and flesh that cleaves through people as a hot knife through butter." icon_state = "ling_claw" damage_force = 15 - sharp = 1 - edge = 1 + damage_mode = DAMAGE_MODE_SHARP | DAMAGE_MODE_EDGE attack_verb = list("attacked", "slashed", "stabbed", "sliced", "torn", "ripped", "diced", "cut") passive_parry = /datum/passive_parry/melee{ diff --git a/code/game/gamemodes/cult/cult_items.dm b/code/game/gamemodes/cult/cult_items.dm index ca3ed22aa694..13fc46b27a09 100644 --- a/code/game/gamemodes/cult/cult_items.dm +++ b/code/game/gamemodes/cult/cult_items.dm @@ -10,8 +10,7 @@ drop_sound = 'sound/items/drop/sword.ogg' pickup_sound = 'sound/items/pickup/sword.ogg' attack_verb = list("attacked", "slashed", "stabbed", "sliced", "torn", "ripped", "diced", "cut") - edge = 1 - sharp = 1 + damage_mode = DAMAGE_MODE_EDGE | DAMAGE_MODE_SHARP /obj/item/melee/cultblade/cultify() return diff --git a/code/game/gamemodes/technomancer/devices/shield_armor.dm b/code/game/gamemodes/technomancer/devices/shield_armor.dm index c02a431c540c..24a751530f73 100644 --- a/code/game/gamemodes/technomancer/devices/shield_armor.dm +++ b/code/game/gamemodes/technomancer/devices/shield_armor.dm @@ -76,8 +76,7 @@ if(istype(damage_source, /obj/projectile)) var/obj/projectile/P = damage_source - P.sharp = 0 - P.edge = 0 + P.damage_mode &= ~(DAMAGE_MODE_EDGE | DAMAGE_MODE_SHARP | DAMAGE_MODE_SHRED | DAMAGE_MODE_PIERCE) P.embed_chance = 0 if(P.agony) var/agony_blocked = P.agony * (modified_block_percentage / 100) diff --git a/code/game/objects/items.dm b/code/game/objects/items.dm index 4239cb4f9034..903c76c91745 100644 --- a/code/game/objects/items.dm +++ b/code/game/objects/items.dm @@ -194,7 +194,7 @@ origin_tech = typelist(NAMEOF(src, origin_tech), origin_tech) //Potential memory optimization: Making embed chance a getter if unset. if(embed_chance == EMBED_CHANCE_UNSET) - if(sharp) + if(damage_mode & DAMAGE_MODE_SHARP) embed_chance = max(5, round(damage_force/w_class)) else embed_chance = max(5, round(damage_force/(w_class*3))) @@ -786,7 +786,7 @@ modules/mob/living/carbon/human/life.dm if you die, you will be zoomed out. * * strict - require us to be toggled to sharp mode if there's multiple modes of attacking. */ /obj/item/proc/is_sharp(strict) - return sharp || (damage_mode & DAMAGE_MODE_SHARP) + return (damage_mode & DAMAGE_MODE_SHARP) /** * can be edged; even if not being used as such @@ -795,7 +795,7 @@ modules/mob/living/carbon/human/life.dm if you die, you will be zoomed out. * * strict - require us to be toggled to sharp mode if there's multiple modes of attacking. */ /obj/item/proc/is_edge(strict) - return sharp || (damage_mode & DAMAGE_MODE_EDGE) + return (damage_mode & DAMAGE_MODE_EDGE) /** * can be piercing; even if not being used as such diff --git a/code/game/objects/items/devices/gps.dm b/code/game/objects/items/devices/gps.dm index 009374244b8b..a3630e0ebfc6 100644 --- a/code/game/objects/items/devices/gps.dm +++ b/code/game/objects/items/devices/gps.dm @@ -600,8 +600,7 @@ item_state = "knife" damage_force = 15 throw_force = 10 - sharp = 1 - edge = 1 + damage_mode = DAMAGE_MODE_SHARP | DAMAGE_MODE_EDGE w_class = WEIGHT_CLASS_NORMAL origin_tech = list(TECH_COMBAT = 4, TECH_ILLEGAL = 4) attack_verb = list("sliced", "chopped", "stabbed", "pierced") diff --git a/code/game/objects/items/melee/types/misc.dm b/code/game/objects/items/melee/types/misc.dm index 1b5cacd7ce1b..8661f1716890 100644 --- a/code/game/objects/items/melee/types/misc.dm +++ b/code/game/objects/items/melee/types/misc.dm @@ -61,8 +61,7 @@ damage_force = 30 throw_force = 10 w_class = WEIGHT_CLASS_NORMAL - sharp = 1 - edge = 1 + damage_mode = DAMAGE_MODE_SHARP | DAMAGE_MODE_EDGE attack_verb = list("attacked", "slashed", "stabbed", "sliced", "torn", "ripped", "diced", "cut") attack_sound = 'sound/weapons/bladeslice.ogg' can_speak = 1 @@ -155,8 +154,7 @@ damage_force = 30 throw_force = 10 w_class = WEIGHT_CLASS_NORMAL - sharp = 1 - edge = 1 + damage_mode = DAMAGE_MODE_SHARP | DAMAGE_MODE_EDGE reach = 2 attack_verb = list("attacked", "slashed", "stabbed", "sliced", "torn", "ripped", "diced", "cut") attack_sound = 'sound/items/bikehorn.ogg' @@ -182,8 +180,7 @@ damage_force = 30 throw_force = 10 w_class = WEIGHT_CLASS_NORMAL - sharp = 1 - edge = 1 + damage_mode = DAMAGE_MODE_SHARP | DAMAGE_MODE_EDGE attack_verb = list("grasped", "torn", "cut", "pierced", "lashed") attack_sound = 'sound/weapons/bladeslice.ogg' armor_penetration = 10 @@ -227,8 +224,7 @@ w_class = WEIGHT_CLASS_NORMAL slot_flags = SLOT_BELT attack_verb = list("attacked", "slashed", "stabbed", "sliced", "torn", "ripped", "diced", "cut", "chopped") - sharp = 1 - edge = 1 + damage_mode = DAMAGE_MODE_SHARP | DAMAGE_MODE_EDGE /obj/item/melee/ashlander/elder name = "elder bone sword" @@ -313,7 +309,7 @@ damage_force = 8 throw_force = 5 w_class = WEIGHT_CLASS_SMALL - sharp = 1 + damage_mode = DAMAGE_MODE_SHARP //I would like two-handed weapons that don't use our annoying material system, resulting in a "Steel Mjollnir". Drives me crazy. /obj/item/melee/twohanded @@ -359,7 +355,6 @@ force_wielded = 75 force_unwielded = 50 w_class = WEIGHT_CLASS_HUGE - edge = 1 attack_verb = list("attacked", "smashed", "crushed", "wacked", "pounded") armor_penetration = 50 weight = ITEM_WEIGHT_BASELINE @@ -529,8 +524,7 @@ src.damage_type = DAMAGE_TYPE_BURN src.set_weight_class(WEIGHT_CLASS_BULKY) src.attack_sound = 'sound/items/welder.ogg' - src.sharp = 1 - src.edge = 1 + damage_mode = DAMAGE_MODE_SHARP | DAMAGE_MODE_EDGE active = 1 update_icon() else @@ -546,10 +540,9 @@ playsound(loc, deac_sound, 50, 1) src.damage_force = 3 src.damage_type = DAMAGE_TYPE_BRUTE + damage_mode = NONE src.set_weight_class(initial(src.w_class)) src.active = 0 - src.sharp = 0 - src.edge = 0 src.attack_sound = initial(src.attack_sound) update_icon() diff --git a/code/game/objects/items/melee/types/ninja_energy_blade.dm b/code/game/objects/items/melee/types/ninja_energy_blade.dm index c7d110bc483e..24ce9eb2ed1f 100644 --- a/code/game/objects/items/melee/types/ninja_energy_blade.dm +++ b/code/game/objects/items/melee/types/ninja_energy_blade.dm @@ -5,8 +5,7 @@ item_state = "ninja_energy_blade" damage_force = 40 //Normal attacks deal very high damage - about the same as wielded fire axe armor_penetration = 100 - sharp = 1 - edge = 1 + damage_mode = DAMAGE_MODE_SHARP | DAMAGE_MODE_EDGE anchored = 1 // Never spawned outside of inventory, should be fine. throw_force = 1 //Throwing or dropping the item deletes it. throw_speed = 1 diff --git a/code/game/objects/items/melee/types/transforming/energy/axe.dm b/code/game/objects/items/melee/types/transforming/energy/axe.dm index 1bbb22023857..175015f0ab01 100644 --- a/code/game/objects/items/melee/types/transforming/energy/axe.dm +++ b/code/game/objects/items/melee/types/transforming/energy/axe.dm @@ -11,8 +11,7 @@ w_class = WEIGHT_CLASS_NORMAL origin_tech = list(TECH_MAGNET = 3, TECH_COMBAT = 4) attack_verb = list("attacked", "chopped", "cleaved", "torn", "cut") - sharp = 1 - edge = 1 + damage_mode = DAMAGE_MODE_SHARP | DAMAGE_MODE_EDGE can_cleave = TRUE active_damage_force = 60 diff --git a/code/game/objects/items/melee/types/transforming/energy/ionic_rapier.dm b/code/game/objects/items/melee/types/transforming/energy/ionic_rapier.dm index 16c15a514bbe..401b8bae11ab 100644 --- a/code/game/objects/items/melee/types/transforming/energy/ionic_rapier.dm +++ b/code/game/objects/items/melee/types/transforming/energy/ionic_rapier.dm @@ -8,8 +8,7 @@ item_state = "ionrapier" active_damage_force = 10 active_throw_force = 3 - sharp = 1 - edge = 1 + damage_mode = DAMAGE_MODE_SHARP | DAMAGE_MODE_EDGE armor_penetration = 0 atom_flags = NOBLOODY lrange = 2 diff --git a/code/game/objects/items/storage/misc_legacy/misc.dm b/code/game/objects/items/storage/misc_legacy/misc.dm index 4aa010e76c43..7301f5f5281a 100644 --- a/code/game/objects/items/storage/misc_legacy/misc.dm +++ b/code/game/objects/items/storage/misc_legacy/misc.dm @@ -84,8 +84,7 @@ icon_state = "survivalknife" item_state = "knife" max_combined_volume = WEIGHT_VOLUME_TINY * 3 - sharp = 1 - edge = 1 + damage_mode = DAMAGE_MODE_SHARP | DAMAGE_MODE_EDGE damage_force = 15 throw_force = 15 attack_verb = list("stabbed", "chopped", "cut") diff --git a/code/game/objects/items/tools/screwdriver.dm b/code/game/objects/items/tools/screwdriver.dm index 6a063c62cb89..41e66bd2f0a8 100644 --- a/code/game/objects/items/tools/screwdriver.dm +++ b/code/game/objects/items/tools/screwdriver.dm @@ -20,7 +20,7 @@ pickup_sound = 'sound/items/pickup/screwdriver.ogg' materials_base = list(MAT_STEEL = 75) attack_verb = list("stabbed") - sharp = 1 + damage_mode = DAMAGE_MODE_SHARP tool_speed = 1 var/random_color = TRUE diff --git a/code/game/objects/items/tools/wirecutters.dm b/code/game/objects/items/tools/wirecutters.dm index 6378a9be3235..964b6a65cd84 100644 --- a/code/game/objects/items/tools/wirecutters.dm +++ b/code/game/objects/items/tools/wirecutters.dm @@ -20,8 +20,7 @@ tool_sound = 'sound/items/wirecutter.ogg' drop_sound = 'sound/items/drop/wirecutter.ogg' pickup_sound = 'sound/items/pickup/wirecutter.ogg' - sharp = 1 - edge = 1 + damage_mode = DAMAGE_MODE_SHARP | DAMAGE_MODE_EDGE tool_speed = 1 var/random_color = TRUE diff --git a/code/game/objects/items/weapons/material/chainsaw.dm b/code/game/objects/items/weapons/material/chainsaw.dm index 477c05edf2ec..7eb988599536 100644 --- a/code/game/objects/items/weapons/material/chainsaw.dm +++ b/code/game/objects/items/weapons/material/chainsaw.dm @@ -41,8 +41,7 @@ attack_verb = list("shredded", "ripped", "torn") playsound(src, 'sound/weapons/chainsaw_startup.ogg',40,1) damage_force = active_force - edge = 1 - sharp = 1 + damage_mode = DAMAGE_MODE_EDGE | DAMAGE_MODE_SHARP on = 1 update_icon() else @@ -53,8 +52,7 @@ attack_verb = list("bluntly hit", "beat", "knocked") playsound(user, 'sound/weapons/chainsaw_turnoff.ogg',40,1) damage_force = inactive_force - edge = 0 - sharp = 0 + damage_mode = initial(damage_mode) on = 0 update_icon() @@ -125,8 +123,7 @@ damage_force = 30 throw_force = 10 w_class = WEIGHT_CLASS_NORMAL - sharp = 1 - edge = 1 + damage_mode = DAMAGE_MODE_SHARP | DAMAGE_MODE_EDGE attack_verb = list("sawed", "torn", "cut", "chopped", "diced") attack_sound = 'sound/weapons/chainsaw_attack.ogg' armor_penetration = 30 @@ -147,8 +144,7 @@ attack_verb = list("shredded", "ripped", "torn") playsound(src, 'sound/weapons/chainsaw_startup.ogg',40,1) damage_force = active_force - edge = 1 - sharp = 1 + damage_mode = DAMAGE_MODE_EDGE | DAMAGE_MODE_SHARP on = 1 update_icon() else @@ -159,8 +155,7 @@ attack_verb = list("bluntly hit", "beat", "knocked") playsound(user, 'sound/weapons/chainsaw_turnoff.ogg',40,1) damage_force = inactive_force - edge = 0 - sharp = 0 + damage_mode = initial(damage_mode) on = 0 update_icon() diff --git a/code/game/objects/items/weapons/material/misc.dm b/code/game/objects/items/weapons/material/misc.dm index 83e4e728a9d2..fb12e25c4247 100644 --- a/code/game/objects/items/weapons/material/misc.dm +++ b/code/game/objects/items/weapons/material/misc.dm @@ -1,7 +1,6 @@ /obj/item/material/harpoon name = "harpoon" - sharp = 1 - edge = 0 + damage_mode = DAMAGE_MODE_SHARP desc = "A common design throughout the galaxy, this is a metal spear used for hunting fish (or people in voidsuits, to devestating effect)." icon_state = "harpoon" item_state = "harpoon" diff --git a/code/game/objects/items/weapons/material/shards.dm b/code/game/objects/items/weapons/material/shards.dm index 2ef03eb8add6..dac7280dfc0d 100644 --- a/code/game/objects/items/weapons/material/shards.dm +++ b/code/game/objects/items/weapons/material/shards.dm @@ -89,11 +89,11 @@ if(gloves && !protected_hands) to_chat(user, "\The [src] partially cuts into your hand through your gloves as you hit \the [target]!") - user.apply_damage(light_glove_d + will_break ? break_damage : 0, DAMAGE_TYPE_BRUTE, active_hand, 0, 0, src, src.sharp || (damage_mode & DAMAGE_MODE_SHARP), src.edge || (damage_mode & DAMAGE_MODE_EDGE)) // Ternary to include break damage + user.apply_damage(light_glove_d + will_break ? break_damage : 0, DAMAGE_TYPE_BRUTE, active_hand, 0, 0, src, (damage_mode & DAMAGE_MODE_SHARP), (damage_mode & DAMAGE_MODE_EDGE)) // Ternary to include break damage else if(!gloves) to_chat(user, "\The [src] cuts into your hand as you hit \the [target]!") - user.apply_damage(no_glove_d + will_break ? break_damage : 0, DAMAGE_TYPE_BRUTE, active_hand, 0, 0, src, src.sharp || (damage_mode & DAMAGE_MODE_SHARP), src.edge || (damage_mode & DAMAGE_MODE_EDGE)) + user.apply_damage(no_glove_d + will_break ? break_damage : 0, DAMAGE_TYPE_BRUTE, active_hand, 0, 0, src, (damage_mode & DAMAGE_MODE_SHARP), (damage_mode & DAMAGE_MODE_EDGE)) if(will_break && src.loc == user) // If it's not in our hand anymore user.visible_message("[user] hit \the [target] with \the [src], shattering it!", "You shatter \the [src] in your hand!") diff --git a/code/game/objects/items/weapons/stunbaton.dm b/code/game/objects/items/weapons/stunbaton.dm index add625fde68d..843dbb53e749 100644 --- a/code/game/objects/items/weapons/stunbaton.dm +++ b/code/game/objects/items/weapons/stunbaton.dm @@ -8,8 +8,6 @@ rad_flags = RAD_BLOCK_CONTENTS slot_flags = SLOT_BELT damage_force = 15 - sharp = 0 - edge = 0 throw_force = 7 atom_flags = NOCONDUCT w_class = WEIGHT_CLASS_NORMAL diff --git a/code/game/objects/items/weapons/surgery_tools.dm b/code/game/objects/items/weapons/surgery_tools.dm index 8877442b964b..800244bff4ca 100644 --- a/code/game/objects/items/weapons/surgery_tools.dm +++ b/code/game/objects/items/weapons/surgery_tools.dm @@ -81,8 +81,7 @@ desc = "Cut, cut, and once more cut." icon_state = "scalpel" damage_force = 10.0 - sharp = 1 - edge = 1 + damage_mode = DAMAGE_MODE_SHARP | DAMAGE_MODE_EDGE w_class = WEIGHT_CLASS_TINY slot_flags = SLOT_EARS throw_force = 5.0 @@ -153,8 +152,7 @@ origin_tech = list(TECH_MATERIAL = 1, TECH_BIO = 1) materials_base = list(MAT_STEEL = 20000, MAT_GLASS = 10000) attack_verb = list("attacked", "slashed", "sawed", "cut") - sharp = 1 - edge = 1 + damage_mode = DAMAGE_MODE_SHARP | DAMAGE_MODE_EDGE /obj/item/surgical/circular_saw/manager name = "energetic bone diverter" @@ -318,8 +316,7 @@ desc = "Finely knapped glass attached to a carved bone by sinew. It seems like it'd be good at cutting." icon_state = "scalpel_bone" damage_force = 10.0 - sharp = 1 - edge = 1 + damage_mode = DAMAGE_MODE_SHARP | DAMAGE_MODE_EDGE w_class = WEIGHT_CLASS_TINY slot_flags = SLOT_EARS throw_force = 5.0 @@ -342,8 +339,7 @@ icon = 'icons/obj/lavaland.dmi' icon_state = "scalpel_bronze" damage_force = 10.0 - sharp = 1 - edge = 1 + damage_mode = DAMAGE_MODE_SHARP | DAMAGE_MODE_EDGE w_class = WEIGHT_CLASS_TINY slot_flags = SLOT_EARS throw_force = 5.0 @@ -373,8 +369,7 @@ origin_tech = list(TECH_MATERIAL = 1, TECH_BIO = 1) materials_base = list("bone" = 6000, MAT_GLASS = 4000) attack_verb = list("attacked", "slashed", "sawed", "cut") - sharp = 1 - edge = 1 + damage_mode = DAMAGE_MODE_SHARP | DAMAGE_MODE_EDGE /obj/item/surgical/saw_bronze name = "bronze saw" @@ -389,8 +384,7 @@ origin_tech = list(TECH_MATERIAL = 1) materials_base = list("bone" = 6000, MAT_BRONZE = 4000) attack_verb = list("attacked", "slashed", "sawed", "cut") - sharp = 1 - edge = 1 + damage_mode = DAMAGE_MODE_SHARP | DAMAGE_MODE_EDGE /obj/item/surgical/bonesetter_primitive name = "primitive bone setter" diff --git a/code/game/objects/items/weapons/swords_axes_etc.dm b/code/game/objects/items/weapons/swords_axes_etc.dm index 63b12ff5d9c0..c1bb323054fb 100644 --- a/code/game/objects/items/weapons/swords_axes_etc.dm +++ b/code/game/objects/items/weapons/swords_axes_etc.dm @@ -147,8 +147,7 @@ ) item_state = "armblade" damage_force = 15 // same damage_force as a drill - sharp = TRUE - edge = TRUE + damage_mode = DAMAGE_MODE_SHARP | DAMAGE_MODE_EDGE var/SA_bonus_damage = 35 // 50 total against animals and aberrations. var/SA_vulnerability = MOB_CLASS_ANIMAL | MOB_CLASS_ABERRATION @@ -173,8 +172,7 @@ damage_force = 5 // HAVING A STICK JAMMED INTO YOU IS LIKELY BAD FOR YOUR HEALTH // well to be fair most of the damage comes from the embed not the stab w_class = WEIGHT_CLASS_SMALL materials_base = list(MAT_STEEL = 2500) - sharp = TRUE - edge = TRUE + damage_mode = DAMAGE_MODE_EDGE | DAMAGE_MODE_SHARP icon_state = "embed_spike" item_icons = list( SLOT_ID_LEFT_HAND = 'icons/mob/items/lefthand_material.dmi', @@ -312,7 +310,6 @@ damage_force = 15 damage_tier = MELEE_TIER_MEDIUM slot_flags = SLOT_BACK - sharp = 1 attack_sound = "swing_hit" attack_verb = list("smashed", "slammed", "whacked", "thwacked") icon_state = "bostaff0" diff --git a/code/game/objects/obj.dm b/code/game/objects/obj.dm index 8784f12371f3..848001c470c9 100644 --- a/code/game/objects/obj.dm +++ b/code/game/objects/obj.dm @@ -203,11 +203,6 @@ /// Set when a player renames a renamable object. var/renamed_by_player = FALSE var/w_class // Size of the object. - //! LEGACY: DO NOT USE - var/sharp = 0 // whether this object cuts - //! LEGACY: DO NOT USE - var/edge = 0 // whether this object is more likely to dismember - //! LEGACY: DO NOT USE var/pry = 0 //Used in attackby() to open doors //! LEGACY: DO NOT USE var/in_use = 0 // If we have a user using us, this will be set on. We will check if the user has stopped using us, and thus stop updating and LAGGING EVERYTHING! diff --git a/code/modules/blob2/overmind/types.dm b/code/modules/blob2/overmind/types.dm index ec8ba27683b6..58a1fec48681 100644 --- a/code/modules/blob2/overmind/types.dm +++ b/code/modules/blob2/overmind/types.dm @@ -629,7 +629,7 @@ if(!H.drop_item_to_ground(I)) B.visible_message(SPAN_DANGER("[name] heaves and pulls at [H]'s [I], struggling to pull it from their grip!")) return ..() - if((I.sharp || I.edge || (I.damage_mode & (DAMAGE_MODE_SHARP | DAMAGE_MODE_EDGE))) && !istype(I, /obj/item/gun)) + if(((I.damage_mode & (DAMAGE_MODE_SHARP | DAMAGE_MODE_EDGE))) && !istype(I, /obj/item/gun)) I.forceMove(get_turf(B)) // Disarmed entirely. B.visible_message("The [name] heaves, \the [attacker]'s weapon becoming stuck in the churning mass!") else diff --git a/code/modules/food/drinks/bottle.dm b/code/modules/food/drinks/bottle.dm index 606531dcaec3..de52e6a5082d 100644 --- a/code/modules/food/drinks/bottle.dm +++ b/code/modules/food/drinks/bottle.dm @@ -189,8 +189,7 @@ item_state = "beer" atom_flags = NOCONDUCT attack_verb = list("stabbed", "slashed", "attacked") - sharp = 1 - edge = 0 + damage_mode = DAMAGE_MODE_SHARP var/icon/broken_outline = icon('icons/obj/drinks.dmi', "broken") /obj/item/reagent_containers/food/drinks/bottle/redeemersbrew diff --git a/code/modules/materials/material_sheets.dm b/code/modules/materials/material_sheets.dm index 4eab8536f577..8fb9f06f477c 100644 --- a/code/modules/materials/material_sheets.dm +++ b/code/modules/materials/material_sheets.dm @@ -393,7 +393,7 @@ /obj/item/stack/material/log/attackby(obj/item/I, mob/living/user, list/params, clickchain_flags, damage_multiplier) if(!istype(I) || I.damage_force <= 0) return ..() - if(CHECK_MULTIPLE_BITFIELDS(I.damage_mode, DAMAGE_MODE_EDGE | DAMAGE_MODE_SHARP) || (I.edge && I.sharp)) + if(CHECK_MULTIPLE_BITFIELDS(I.damage_mode, DAMAGE_MODE_EDGE | DAMAGE_MODE_SHARP)) var/time = (3 SECONDS / max(I.damage_force / 10, 1)) * I.tool_speed user.setClickCooldown(time) if(do_after(user, time, src) && use(1)) @@ -424,7 +424,7 @@ /obj/item/stack/material/log/ironwood/attackby(obj/item/I, mob/living/user, list/params, clickchain_flags, damage_multiplier) if(!istype(I) || I.damage_force <= 20) //You will need at least PLASTEEL Tools to cut this. return ..() - if(CHECK_MULTIPLE_BITFIELDS(I.damage_mode, DAMAGE_MODE_EDGE | DAMAGE_MODE_SHARP) || (I.edge && I.sharp)) + if(CHECK_MULTIPLE_BITFIELDS(I.damage_mode, DAMAGE_MODE_EDGE | DAMAGE_MODE_SHARP)) var/time = (3 SECONDS / max(I.damage_force / 10, 1)) * I.tool_speed user.setClickCooldown(time) if(do_after(user, time, src) && use(1)) diff --git a/code/modules/mining/tools/kinetic_crusher.dm b/code/modules/mining/tools/kinetic_crusher.dm index 149841982a7c..1986137c3c76 100644 --- a/code/modules/mining/tools/kinetic_crusher.dm +++ b/code/modules/mining/tools/kinetic_crusher.dm @@ -21,9 +21,7 @@ */ attack_sound = 'sound/weapons/bladeslice.ogg' attack_verb = list("smashed", "crushed", "cleaved", "chopped", "pulped") - sharp = TRUE - edge = TRUE - // sharpness = SHARP_EDGED + damage_mode = DAMAGE_MODE_SHARP | DAMAGE_MODE_EDGE item_action_name = "Toggle Light" light_wedge = LIGHT_WIDE // actions_types = list(/datum/action/item_action/toggle_light) diff --git a/code/modules/mining/tools/mine_items.dm b/code/modules/mining/tools/mine_items.dm index 0f5ad496300e..499d2e7f9276 100644 --- a/code/modules/mining/tools/mine_items.dm +++ b/code/modules/mining/tools/mine_items.dm @@ -29,7 +29,7 @@ attack_verb = list("hit", "pierced", "sliced", "attacked") var/drill_sound = 'sound/weapons/Genhit.ogg' var/drill_verb = "drilling" - sharp = 1 + damage_mode = DAMAGE_MODE_SHARP var/active = 1 var/excavation_amount = 200 @@ -100,8 +100,7 @@ desc = "A rock cutter that uses bursts of hot plasma. You could use it to cut limbs off of xenos! Or, you know, mine stuff." drill_verb = "cutting" drill_sound = 'sound/items/Welder.ogg' - sharp = 1 - edge = 1 + damage_mode = DAMAGE_MODE_SHARP | DAMAGE_MODE_EDGE worth_intrinsic = 175 /obj/item/pickaxe/diamond @@ -147,7 +146,6 @@ origin_tech = list(TECH_MATERIAL = 1, TECH_ENGINEERING = 1) attack_verb = list("mined", "pierced", "stabbed", "attacked") drill_verb = "picking" - sharp = 1 worth_intrinsic = 75 //Snowflake drill that works like a chainsaw! How fun. Honestly they should probably all work like this or something. I dunno. Might be a fun mining overhaul later. @@ -194,8 +192,6 @@ playsound(src, 'sound/weapons/chainsaw_startup.ogg',40,1) damage_force = 15 damage_mode |= DAMAGE_MODE_SHARP | DAMAGE_MODE_EDGE - edge = TRUE - sharp = TRUE active = TRUE update_icon() else @@ -208,8 +204,6 @@ playsound(user, 'sound/weapons/chainsaw_turnoff.ogg',40,1) damage_force = 3 damage_mode = initial(damage_mode) - edge = FALSE - sharp = FALSE active = FALSE update_icon() @@ -290,8 +284,7 @@ origin_tech = list(TECH_MATERIAL = 1, TECH_ENGINEERING = 1) materials_base = list(MAT_STEEL = 50) attack_verb = list("bashed", "bludgeoned", "thrashed", "whacked") - sharp = 0 - edge = 1 + damage_mode = DAMAGE_MODE_EDGE worth_intrinsic = 50 var/digspeed = 40 @@ -304,7 +297,7 @@ throw_force = 12 tool_speed = 0.7 attack_verb = list("slashed", "impaled", "stabbed", "sliced") - sharp = 1 + damage_mode = DAMAGE_MODE_SHARP | DAMAGE_MODE_EDGE /obj/item/shovel/bronze name = "bronze shovel" diff --git a/code/modules/mob/living/carbon/carbon_defense.dm b/code/modules/mob/living/carbon/carbon_defense.dm index 039154fa083a..847c11bb9ea3 100644 --- a/code/modules/mob/living/carbon/carbon_defense.dm +++ b/code/modules/mob/living/carbon/carbon_defense.dm @@ -102,7 +102,7 @@ // Knifing /mob/living/carbon/proc/attack_throat(obj/item/W, obj/item/grab/G, mob/user) - if(!((W.damage_mode & DAMAGE_MODE_EDGE) || W.edge) || !W.damage_force || W.damage_type != DAMAGE_TYPE_BRUTE) + if(!(W.damage_mode & DAMAGE_MODE_EDGE) || !W.damage_force || W.damage_type != DAMAGE_TYPE_BRUTE) return 0 //unsuitable weapon user.visible_message("\The [user] begins to slit [src]'s throat with \the [W]!") @@ -123,7 +123,7 @@ var/total_damage = 0 for(var/i in 1 to 3) var/damage = min(W.damage_force*1.5, 20)*damage_mod - apply_damage(damage, W.damage_type, "head", 0, sharp=W.sharp||(W.damage_mode & DAMAGE_MODE_EDGE), edge=W.edge||(W.damage_mode & DAMAGE_MODE_EDGE)) + apply_damage(damage, W.damage_type, "head", 0, sharp = (W.damage_mode & DAMAGE_MODE_EDGE), edge = (W.damage_mode & DAMAGE_MODE_EDGE)) total_damage += damage var/oxyloss = total_damage @@ -150,13 +150,13 @@ /mob/living/carbon/proc/shank_attack(obj/item/W, obj/item/grab/G, mob/user, hit_zone) - if(!(W.sharp || (W.damage_mode & DAMAGE_MODE_SHARP)) || !W.damage_force || W.damage_type != DAMAGE_TYPE_BRUTE) + if(!(W.damage_mode & DAMAGE_MODE_SHARP) || !W.damage_force || W.damage_type != DAMAGE_TYPE_BRUTE) return 0 //unsuitable weapon user.visible_message("\The [user] plunges \the [W] into \the [src]!") var/damage = shank_armor_helper(W, G, user) - apply_damage(damage, W.damage_type, "torso", 0, sharp=W.sharp||(W.damage_mode & DAMAGE_MODE_EDGE), edge=W.edge||(W.damage_mode & DAMAGE_MODE_EDGE)) + apply_damage(damage, W.damage_type, "torso", 0, sharp = (W.damage_mode & DAMAGE_MODE_EDGE), edge = (W.damage_mode & DAMAGE_MODE_EDGE)) if(W.attack_sound) playsound(loc, W.attack_sound, 50, 1, -1) @@ -168,7 +168,7 @@ /mob/living/carbon/proc/shank_armor_helper(obj/item/W, obj/item/grab/G, mob/user) var/damage = W.damage_force var/damage_mod = 1 - if(W.edge || (W.damage_mode & DAMAGE_MODE_EDGE)) + if(W.damage_mode & DAMAGE_MODE_EDGE) damage = damage * 1.25 //small damage bonus for having sharp and edge var/obj/item/clothing/suit/worn_suit diff --git a/code/modules/mob/living/carbon/human/human-defense-legacy.dm b/code/modules/mob/living/carbon/human/human-defense-legacy.dm index cc719d39f3cf..5e0f68cf84ea 100644 --- a/code/modules/mob/living/carbon/human/human-defense-legacy.dm +++ b/code/modules/mob/living/carbon/human/human-defense-legacy.dm @@ -321,7 +321,7 @@ if(isitem(AM)) var/obj/item/impacting_item = AM dtype = impacting_item.damage_type - + var/throw_damage = O.throw_force * TT.get_damage_multiplier(src) var/zone @@ -412,7 +412,7 @@ if(!O || !src) return - if(O.loc == src && O.sharp) //Projectile is embedded and suitable for pinning. + if(O.loc == src && is_sharp(O)) //Projectile is embedded and suitable for pinning. var/turf/T = near_wall(dir,2) if(T) forceMove(T) @@ -439,7 +439,7 @@ // Alright, our hand works? Time to try the catching. var/catch_chance = 90 // Default 90% catch rate - if(O.sharp) + if(is_sharp(O)) catch_chance -= 50 // Catching knives is hard catch_chance -= get_accuracy_penalty() // Same issues with shooting a gun, or swinging a weapon @@ -553,7 +553,7 @@ var/damage = shank_armor_helper(W, G, user) var/obj/item/organ/external/chest = get_organ(hit_zone) - if(W.edge || (W.damage_mode & DAMAGE_MODE_EDGE)) + if(W.damage_mode & DAMAGE_MODE_EDGE) organ_chance = 75 user.next_move = world.time + 20 user.visible_message("\The [user] begins to twist \the [W] around inside [src]'s [chest]!") diff --git a/code/modules/mob/living/living-defense-legacy.dm b/code/modules/mob/living/living-defense-legacy.dm index f6e64eaed3a5..fa82ae3cf12c 100644 --- a/code/modules/mob/living/living-defense-legacy.dm +++ b/code/modules/mob/living/living-defense-legacy.dm @@ -293,7 +293,7 @@ if(!O || !src) return - if(O.sharp) //Projectile is suitable for pinning. + if(is_sharp(O)) //Projectile is suitable for pinning. if(soaked >= round(throw_damage*0.8)) return diff --git a/code/modules/mob/living/silicon/robot/dogborg/dog_modules_vr.dm b/code/modules/mob/living/silicon/robot/dogborg/dog_modules_vr.dm index 30f9696a3088..c061d3a0c495 100644 --- a/code/modules/mob/living/silicon/robot/dogborg/dog_modules_vr.dm +++ b/code/modules/mob/living/silicon/robot/dogborg/dog_modules_vr.dm @@ -335,8 +335,7 @@ icon_state = "swordtail" desc = "A glowing pink dagger normally attached to the end of a cyborg's tail. It appears to be extremely sharp." damage_force = 20 //Takes 5 hits to 100-0 - sharp = 1 - edge = 1 + damage_mode = DAMAGE_MODE_SHARP | DAMAGE_MODE_EDGE throw_force = 0 //This shouldn't be thrown in the first place. attack_sound = 'sound/weapons/blade1.ogg' attack_verb = list("slashed", "stabbed", "jabbed", "mauled", "sliced") diff --git a/code/modules/mob/living/simple_mob/subtypes/mechanical/hivebot/hivebot.dm b/code/modules/mob/living/simple_mob/subtypes/mechanical/hivebot/hivebot.dm index dc0d7a6f28be..bb7d0526eeec 100644 --- a/code/modules/mob/living/simple_mob/subtypes/mechanical/hivebot/hivebot.dm +++ b/code/modules/mob/living/simple_mob/subtypes/mechanical/hivebot/hivebot.dm @@ -56,8 +56,7 @@ /obj/projectile/bullet/hivebot damage_force = 10 damage_type = DAMAGE_TYPE_BRUTE - sharp = FALSE - edge = FALSE + damage_mode = NONE /mob/living/simple_mob/mechanical/hivebot/swarm name = "swarm hivebot" diff --git a/code/modules/mob/living/simple_mob/subtypes/slime/feral/feral.dm b/code/modules/mob/living/simple_mob/subtypes/slime/feral/feral.dm index f96303e4280c..394c54caed3a 100644 --- a/code/modules/mob/living/simple_mob/subtypes/slime/feral/feral.dm +++ b/code/modules/mob/living/simple_mob/subtypes/slime/feral/feral.dm @@ -71,7 +71,7 @@ speed = 7.5 * WORLD_ICON_SIZE icon_scale_x = 2 // It hits like a truck. icon_scale_y = 2 - sharp = TRUE + damage_mode = DAMAGE_MODE_SHARP | DAMAGE_MODE_PIERCE /obj/projectile/icicle/on_impact(atom/target, impact_flags, def_zone, efficiency) . = ..() diff --git a/code/modules/paperwork/pen.dm b/code/modules/paperwork/pen.dm index 7315a0a90a86..4c69cc9342f4 100644 --- a/code/modules/paperwork/pen.dm +++ b/code/modules/paperwork/pen.dm @@ -185,11 +185,7 @@ embed_chance = active_embed_chance damage_force = active_force throw_force = active_throwforce - - - - sharp = 1 - edge = 1 + damage_mode = DAMAGE_MODE_SHARP | DAMAGE_MODE_EDGE set_weight_class(active_w_class) playsound(src, 'sound/weapons/saberon.ogg', 15, 1) damage_type = DAMAGE_TYPE_SEARING @@ -211,8 +207,7 @@ embed_chance = initial(embed_chance) damage_force = initial(damage_force) throw_force = initial(throw_force) - sharp = initial(sharp) - edge = initial(edge) + damage_mode = initial(damage_mode) set_weight_class(initial(w_class)) damage_type = DAMAGE_TYPE_BRUTE item_flags &= ~ITEM_THROW_UNCATCHABLE diff --git a/code/modules/power/cable.dm b/code/modules/power/cable.dm index e0d015625a91..079aaea6ac96 100644 --- a/code/modules/power/cable.dm +++ b/code/modules/power/cable.dm @@ -979,11 +979,6 @@ GLOBAL_LIST_INIT(possible_cable_coil_colours, list( /obj/item/stack/cable_coil/alien/Initialize(mapload, new_amount, merge, param_color) . = ..() - if(embed_chance == -1) //From /obj/item, don't want to do what the normal cable_coil does - if(sharp) - embed_chance = damage_force/w_class - else - embed_chance = damage_force/(w_class*3) update_icon() remove_obj_verb(src, /obj/item/stack/cable_coil/verb/make_restraint) diff --git a/code/modules/power/lighting/lights.dm b/code/modules/power/lighting/lights.dm index cd1dddcda2ff..1e5992b37e1a 100644 --- a/code/modules/power/lighting/lights.dm +++ b/code/modules/power/lighting/lights.dm @@ -279,7 +279,7 @@ ) status = LIGHT_BROKEN damage_force = 5 - sharp = 1 + damage_mode |= DAMAGE_MODE_SHARP playsound(src.loc, 'sound/effects/Glasshit.ogg', 75, TRUE) update_icon() diff --git a/code/modules/projectiles/guns/ballistic/microbattery/revolver_cells.dm b/code/modules/projectiles/guns/ballistic/microbattery/revolver_cells.dm index dd98d6edcfec..6eaa9bab62c1 100644 --- a/code/modules/projectiles/guns/ballistic/microbattery/revolver_cells.dm +++ b/code/modules/projectiles/guns/ballistic/microbattery/revolver_cells.dm @@ -41,7 +41,7 @@ agony = 20 pellets = 6 //number of pellets embed_chance = 0 - sharp = 0 + damage_mode = NONE damage_flag = ARMOR_MELEE /obj/item/ammo_casing/microbattery/combat/ion @@ -61,7 +61,7 @@ nodamage = 1 agony = 5 embed_chance = 0 - sharp = 0 + damage_mode = NONE damage_flag = ARMOR_MELEE /obj/projectile/bullet/stripper/on_impact(atom/target, impact_flags, def_zone, efficiency) diff --git a/code/modules/projectiles/guns/launcher/crossbow.dm b/code/modules/projectiles/guns/launcher/crossbow.dm index 6738cc275a10..87f550386acb 100644 --- a/code/modules/projectiles/guns/launcher/crossbow.dm +++ b/code/modules/projectiles/guns/launcher/crossbow.dm @@ -10,8 +10,7 @@ pickup_sound = 'sound/items/pickup/sword.ogg' throw_force = 8 w_class = WEIGHT_CLASS_NORMAL - sharp = 1 - edge = 0 + damage_mode = DAMAGE_MODE_SHARP /obj/item/arrow/proc/removed() //Helper for metal rods falling apart. return @@ -19,8 +18,7 @@ /obj/item/spike name = "alloy spike" desc = "It's about a foot of weird silver metal with a wicked point." - sharp = 1 - edge = 0 + damage_mode = DAMAGE_MODE_SHARP throw_force = 5 w_class = WEIGHT_CLASS_SMALL icon = 'icons/obj/weapons.dmi' diff --git a/code/modules/projectiles/guns/launcher/syringe_gun.dm b/code/modules/projectiles/guns/launcher/syringe_gun.dm index 4461b6a2c85e..53d2e8aee2dc 100644 --- a/code/modules/projectiles/guns/launcher/syringe_gun.dm +++ b/code/modules/projectiles/guns/launcher/syringe_gun.dm @@ -23,7 +23,7 @@ return syringe = I to_chat(user, "You carefully insert [syringe] into [src].") - sharp = 1 + damage_mode |= DAMAGE_MODE_SHARP name = "syringe dart" update_icon() @@ -36,7 +36,7 @@ playsound(src, 'sound/weapons/empty.ogg', 50, 1) user.grab_item_from_interacted_with(syringe, src) syringe = null - sharp = initial(sharp) + damage_mode &= ~DAMAGE_MODE_SHARP name = initial(name) update_icon() diff --git a/code/modules/projectiles/guns/legacy_vr_guns/gunsword.dm b/code/modules/projectiles/guns/legacy_vr_guns/gunsword.dm index 602c2d9913cd..359c891654a6 100644 --- a/code/modules/projectiles/guns/legacy_vr_guns/gunsword.dm +++ b/code/modules/projectiles/guns/legacy_vr_guns/gunsword.dm @@ -49,8 +49,6 @@ var/active_throwforce = 20 var/active_w_class = WEIGHT_CLASS_BULKY var/active_embed_chance = 0 //In the off chance one of these is supposed to embed, you can just tweak this var - sharp = 0 - edge = 0 armor_penetration = 50 atom_flags = NOBLOODY var/lrange = 2 @@ -67,8 +65,7 @@ embed_chance = active_embed_chance damage_force = active_force throw_force = active_throwforce - sharp = 1 - edge = 1 + damage_mode = DAMAGE_MODE_SHARP | DAMAGE_MODE_EDGE set_weight_class(active_w_class) playsound(user, 'sound/weapons/saberon.ogg', 50, 1) set_light(lrange, lpower, lcolor) @@ -86,8 +83,7 @@ embed_chance = initial(embed_chance) damage_force = initial(damage_force) throw_force = initial(throw_force) - sharp = initial(sharp) - edge = initial(edge) + damage_mode = initial(damage_mode) set_weight_class(initial(w_class)) set_light(0,0) attack_verb = list() diff --git a/code/modules/projectiles/guns/projectile/revolver.dm b/code/modules/projectiles/guns/projectile/revolver.dm index 66e7d6bf471d..73c2d28eb987 100644 --- a/code/modules/projectiles/guns/projectile/revolver.dm +++ b/code/modules/projectiles/guns/projectile/revolver.dm @@ -58,8 +58,7 @@ caliber = /datum/ammo_caliber/a38 ammo_type = /obj/item/ammo_casing/a38 damage_force = 15 - sharp = 1 - edge = 1 + damage_mode = DAMAGE_MODE_SHARP | DAMAGE_MODE_EDGE /obj/item/gun/ballistic/revolver/detective name = "revolver" diff --git a/code/modules/projectiles/guns/projectile/shotgun.dm b/code/modules/projectiles/guns/projectile/shotgun.dm index 96bd6b3fbd2f..f2c8a944a3eb 100644 --- a/code/modules/projectiles/guns/projectile/shotgun.dm +++ b/code/modules/projectiles/guns/projectile/shotgun.dm @@ -318,8 +318,7 @@ damage_force = 25 slot_flags = SLOT_BACK origin_tech = list(TECH_COMBAT = 4, TECH_MATERIAL = 2, TECH_OCCULT = 1) - sharp = 1 - edge = 1 + damage_mode = DAMAGE_MODE_SHARP | DAMAGE_MODE_EDGE holy = TRUE /obj/item/gun/ballistic/shotgun/underslung diff --git a/code/modules/projectiles/projectile/subtypes/beam/beams.dm b/code/modules/projectiles/projectile/subtypes/beam/beams.dm index b08394520360..7a95311c1a2c 100644 --- a/code/modules/projectiles/projectile/subtypes/beam/beams.dm +++ b/code/modules/projectiles/projectile/subtypes/beam/beams.dm @@ -139,7 +139,7 @@ muzzle_type = /obj/effect/projectile/muzzle/darkmatter tracer_type = /obj/effect/projectile/tracer/darkmatter - impact_type = /obj/effect/projectile/impact/darkmatter + impact_type = /obj/effect/projectile/impact/darkmatter /obj/projectile/beam/emitter name = "emitter beam" @@ -330,7 +330,6 @@ icon_state = "laser" damage_force = 15 damage_type = DAMAGE_TYPE_ELECTROCUTE //You should be safe inside a voidsuit - sharp = FALSE //"Wide" spectrum beam light_color = "#A9980A" excavation_amount = 200 // Good at shooting rocks diff --git a/code/modules/projectiles/projectile/subtypes/bullets.dm b/code/modules/projectiles/projectile/subtypes/bullets.dm index 69ca1e19592b..9e0667d73268 100644 --- a/code/modules/projectiles/projectile/subtypes/bullets.dm +++ b/code/modules/projectiles/projectile/subtypes/bullets.dm @@ -7,7 +7,7 @@ nodamage = 0 damage_flag = ARMOR_BULLET embed_chance = 20 //Modified in the actual embed process, but this should keep embed chance about the same - sharp = 1 + damage_mode = DAMAGE_MODE_SHARP | DAMAGE_MODE_PIERCE projectile_type = PROJECTILE_TYPE_KINETIC muzzle_type = /obj/effect/projectile/muzzle/bullet @@ -123,23 +123,22 @@ embed_chance = -1 holy = TRUE -/obj/projectile/bullet/pistol/rubber/strong // "Rubber" bullets for high power pistols. - fire_sound = 'sound/weapons/weaponsounds_heavypistolshot.ogg' // Rubber shots have less powder, but these still have more punch than normal rubber shot. - damage_force = 10 - agony = 60 - embed_chance = 0 - sharp = 0 - damage_flag = ARMOR_MELEE - /obj/projectile/bullet/pistol/rubber // "Rubber" bullets for all other pistols. name = "rubber bullet" damage_force = 5 agony = 40 embed_chance = 0 - sharp = 0 + damage_mode = NONE damage_flag = ARMOR_MELEE fire_sound ='sound/weapons/weaponsounds_smallpistolshot.ogg' // It may be rubber shots but it's still a gun homie it shouldn't be as pathetic as it was +/obj/projectile/bullet/pistol/rubber/strong // "Rubber" bullets for high power pistols. + fire_sound = 'sound/weapons/weaponsounds_heavypistolshot.ogg' // Rubber shots have less powder, but these still have more punch than normal rubber shot. + damage_force = 10 + agony = 60 + embed_chance = 0 + damage_flag = ARMOR_MELEE + /obj/projectile/bullet/pistol/spin // Special weak ammo for Service Spin mode. fire_sound = 'sound/weapons/weaponsounds_smallpistolshot.ogg' damage_force = 5 @@ -160,7 +159,7 @@ damage_force = 20 agony = 60 embed_chance = 0 - sharp = 0 + damage_mode = NONE damage_flag = ARMOR_MELEE //Should do about 80 damage at 1 tile distance (adjacent), and 50 damage at 3 tiles distance. @@ -207,7 +206,7 @@ fire_sound = 'sound/weapons/gunshot/gunshot_tech_huge.ogg' damage_force = 15 embed_chance = 0 - sharp = 0 + damage_mode = NONE damage_flag = ARMOR_MELEE combustion = FALSE @@ -339,7 +338,7 @@ fire_sound = 'sound/soundbytes/effects/explosion/explosion1.ogg' damage_force = 20 embed_chance = 0 - edge = 1 + damage_mode = DAMAGE_MODE_EDGE /obj/projectile/bullet/burstbullet/on_impact(atom/target, impact_flags, def_zone, efficiency) . = ..() @@ -353,7 +352,6 @@ fire_sound = 'sound/soundbytes/effects/explosion/explosion1.ogg' damage_force = 20 embed_chance = 0 - edge = 1 SA_bonus_damage = 40 // 60 total damage against demons. SA_vulnerability = MOB_CLASS_DEMONIC | MOB_CLASS_ABERRATION holy = TRUE @@ -522,7 +520,7 @@ damage_force = 0 nodamage = 1 embed_chance = 0 - sharp = 0 + damage_mode = NONE incendiary = 1 flammability = 4 @@ -539,7 +537,7 @@ damage_force = 0 nodamage = 1 embed_chance = 0 - sharp = 0 + damage_mode = NONE /obj/projectile/bullet/blank/cap/process(delta_time) loc = null diff --git a/code/modules/projectiles/projectile/subtypes/bullets_vr.dm b/code/modules/projectiles/projectile/subtypes/bullets_vr.dm index d0fbfd4ed022..72a7e83da266 100644 --- a/code/modules/projectiles/projectile/subtypes/bullets_vr.dm +++ b/code/modules/projectiles/projectile/subtypes/bullets_vr.dm @@ -2,7 +2,6 @@ damage_force = 10 agony = 60 embed_chance = 0 - sharp = 0 damage_flag = ARMOR_MELEE /obj/projectile/energy/flash/strong diff --git a/code/modules/projectiles/projectile/subtypes/hook.dm b/code/modules/projectiles/projectile/subtypes/hook.dm index 0929b49a84da..65eeec07a86e 100644 --- a/code/modules/projectiles/projectile/subtypes/hook.dm +++ b/code/modules/projectiles/projectile/subtypes/hook.dm @@ -40,7 +40,7 @@ if(INTENT_HARM) damage_flag = ARMOR_BULLET damage_force *= 3 - sharp = 1 + damage_mode |= DAMAGE_MODE_SHARP agony = 20 if(INTENT_GRAB) damage_flag = ARMOR_MELEE diff --git a/code/modules/projectiles/projectile/subtypes/pellet.dm b/code/modules/projectiles/projectile/subtypes/pellet.dm index 5be41a1006ae..3335b3859ba1 100644 --- a/code/modules/projectiles/projectile/subtypes/pellet.dm +++ b/code/modules/projectiles/projectile/subtypes/pellet.dm @@ -120,8 +120,7 @@ name = "stingball shrapnel" damage_force = 3 agony = 8 - sharp = FALSE - edge = FALSE + damage_mode = NONE damage_flag = ARMOR_MELEE /obj/projectile/bullet/pellet/fragment/rubber/strong diff --git a/code/modules/projectiles/projectile/subtypes/special.dm b/code/modules/projectiles/projectile/subtypes/special.dm index 7eef692d2f94..4b12b1b70855 100644 --- a/code/modules/projectiles/projectile/subtypes/special.dm +++ b/code/modules/projectiles/projectile/subtypes/special.dm @@ -41,9 +41,6 @@ icon_state= "bolter" damage_force = 50 damage_flag = ARMOR_BULLET - sharp = 1 - edge = 1 - /obj/projectile/bullet/gyro/on_impact(atom/target, impact_flags, def_zone, efficiency) . = ..() if(. & PROJECTILE_IMPACT_FLAGS_UNCONDITIONAL_ABORT) diff --git a/code/modules/projectiles/unsorted/magic.dm b/code/modules/projectiles/unsorted/magic.dm index 2783e38b19d5..591456b22987 100644 --- a/code/modules/projectiles/unsorted/magic.dm +++ b/code/modules/projectiles/unsorted/magic.dm @@ -309,7 +309,7 @@ icon_state = "lavastaff" damage_force = 15 damage_type = DAMAGE_TYPE_BURN - sharp = TRUE + damage_mode = DAMAGE_MODE_SHARP | DAMAGE_MODE_EDGE magic = TRUE /obj/projectile/magic/spellblade/on_impact(atom/target, impact_flags, def_zone, efficiency) diff --git a/code/modules/reagents/reagent_containers/syringes.dm b/code/modules/reagents/reagent_containers/syringes.dm index 0d68bfa56c6f..7e3e8033072b 100644 --- a/code/modules/reagents/reagent_containers/syringes.dm +++ b/code/modules/reagents/reagent_containers/syringes.dm @@ -14,7 +14,7 @@ volume = 15 w_class = WEIGHT_CLASS_TINY slot_flags = SLOT_EARS - sharp = 1 + damage_mode = DAMAGE_MODE_SHARP integrity_flags = INTEGRITY_ACIDPROOF rad_flags = RAD_NO_CONTAMINATE item_flags = ITEM_NOBLUDGEON | ITEM_ENCUMBERS_WHILE_HELD | ITEM_EASY_LATHE_DECONSTRUCT diff --git a/code/modules/vore/fluffstuff/custom_items.dm b/code/modules/vore/fluffstuff/custom_items.dm index efcccd152050..692171b3e864 100644 --- a/code/modules/vore/fluffstuff/custom_items.dm +++ b/code/modules/vore/fluffstuff/custom_items.dm @@ -1138,8 +1138,6 @@ icon_state = "stunstaff00" var/base_icon = "stunstaff" damage_force = 5 - sharp = 0 - edge = 0 throw_force = 7 w_class = WEIGHT_CLASS_HUGE origin_tech = list(TECH_COMBAT = 2) @@ -1234,8 +1232,6 @@ var/active_throwforce var/active_w_class var/active_embed_chance = 0 - sharp = 0 - edge = 0 /obj/item/melee/fluffstuff/proc/activate(mob/living/user) if(active) @@ -1244,8 +1240,6 @@ embed_chance = active_embed_chance damage_force = active_force throw_force = active_throwforce - sharp = 1 - edge = 1 set_weight_class(active_w_class) playsound(user, 'sound/weapons/sparkle.ogg', 50, 1) @@ -1257,8 +1251,6 @@ embed_chance = initial(embed_chance) damage_force = initial(damage_force) throw_force = initial(throw_force) - sharp = initial(sharp) - edge = initial(edge) set_weight_class(initial(w_class)) /obj/item/melee/fluffstuff/attack_self(mob/user) @@ -1321,8 +1313,7 @@ ..() attack_verb = list("attacked", "slashed", "stabbed", "sliced", "torn", "ripped", "diced", "cut") - sharp = 1 - edge = 1 + damage_mode = DAMAGE_MODE_SHARP | DAMAGE_MODE_EDGE icon_state = "[active_state]_sharp" damage_type = DAMAGE_TYPE_BRUTE diff --git a/code/modules/xenoarcheaology/sampling.dm b/code/modules/xenoarcheaology/sampling.dm index be7e5bce0a54..39f201dd381e 100644 --- a/code/modules/xenoarcheaology/sampling.dm +++ b/code/modules/xenoarcheaology/sampling.dm @@ -4,7 +4,7 @@ icon = 'icons/obj/xenoarchaeology.dmi' icon_state = "sliver1" w_class = WEIGHT_CLASS_TINY - sharp = 1 + damage_mode = DAMAGE_MODE_SHARP var/datum/geosample/geological_data /obj/item/rocksliver/Initialize(mapload) From 6a181e804aee0575a82d2cb97e9005d7321b9c54 Mon Sep 17 00:00:00 2001 From: Niezan Date: Fri, 13 Sep 2024 08:47:09 -0700 Subject: [PATCH 07/20] electrochromatic linker fix (#6749) ## About The Pull Request electrochromatic linkers got wiped from atlas due to a merge issue ## Why It's Good For The Game yeah ## Changelog :cl: fix: electrochromatic linkers placed back on Atlas. /:cl: --- maps/rift/levels/rift-05-surface2.dmm | 177 +++++++++++++++++++++++--- maps/rift/levels/rift-06-surface3.dmm | 72 ++++++++--- 2 files changed, 209 insertions(+), 40 deletions(-) diff --git a/maps/rift/levels/rift-05-surface2.dmm b/maps/rift/levels/rift-05-surface2.dmm index d93ab4ae539f..79817ca2fd08 100644 --- a/maps/rift/levels/rift-05-surface2.dmm +++ b/maps/rift/levels/rift-05-surface2.dmm @@ -2211,6 +2211,9 @@ opacity = 0 }, /obj/effect/paint/purplegray, +/obj/map_helper/electrochromatic_linker{ + id = "robotics-inner" + }, /turf/simulated/floor/plating, /area/assembly/robotics) "biH" = ( @@ -3098,7 +3101,7 @@ pixel_y = -6 }, /obj/machinery/button/windowtint{ - id = "rd_office"; + id = "rd-office"; pixel_x = -32; pixel_y = -6 }, @@ -5897,6 +5900,9 @@ "dDP" = ( /obj/spawner/window/low_wall/reinforced/electrochromic/full/firelocks, /obj/effect/paint/darkred, +/obj/map_helper/electrochromatic_linker{ + id = "warden-office" + }, /turf/simulated/floor/plating, /area/security/warden) "dEc" = ( @@ -6762,7 +6768,7 @@ }, /obj/effect/floor_decal/corner/paleblue/border, /obj/machinery/button/windowtint/multitint{ - id = "operating_theatre_1"; + id = "operating-theatre-1"; pixel_x = -24; pixel_y = 7 }, @@ -6861,6 +6867,9 @@ "eke" = ( /obj/spawner/window/low_wall/reinforced/electrochromic/full/firelocks, /obj/effect/paint/darkred, +/obj/map_helper/electrochromatic_linker{ + id = "sec-locker" + }, /turf/simulated/floor/plating, /area/security/security_lockerroom) "eko" = ( @@ -7005,6 +7014,9 @@ }, /obj/spawner/window/low_wall/reinforced/electrochromic/full/firelocks, /obj/effect/paint/darkred, +/obj/map_helper/electrochromatic_linker{ + id = "warden-office" + }, /turf/simulated/floor/plating, /area/security/warden) "eoA" = ( @@ -9410,6 +9422,9 @@ /obj/structure/cable/green{ icon_state = "0-2" }, +/obj/map_helper/electrochromatic_linker{ + id = "Interr" + }, /turf/simulated/floor/plating, /area/security/interrogation) "fZv" = ( @@ -12317,7 +12332,7 @@ }, /obj/effect/floor_decal/corner/paleblue/border, /obj/machinery/button/windowtint/multitint{ - id = "operating_theatre_2"; + id = "operating-theatre-2"; pixel_x = -24; pixel_y = 7 }, @@ -13278,6 +13293,11 @@ }, /turf/simulated/floor/tiled/steel, /area/security/hallway) +"inb" = ( +/obj/effect/paint/babyblue, +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/turf/simulated/floor/plating, +/area/medical/resleeving) "inj" = ( /obj/structure/sign/department/medbay{ pixel_x = -32 @@ -13285,6 +13305,9 @@ /obj/structure/disposalpipe/segment, /obj/spawner/window/low_wall/reinforced/electrochromic/full/firelocks, /obj/effect/paint/babyblue, +/obj/map_helper/electrochromatic_linker{ + id = "medbay-outer" + }, /turf/simulated/floor/plating, /area/medical/reception) "inX" = ( @@ -14217,6 +14240,9 @@ /obj/spawner/window/low_wall/reinforced/electrochromic/full/firelocks, /obj/effect/paint/darkred, /obj/structure/cable/green, +/obj/map_helper/electrochromatic_linker{ + id = "Interr" + }, /turf/simulated/floor/plating, /area/security/interrogation) "iXc" = ( @@ -14459,12 +14485,12 @@ pixel_y = 24 }, /obj/machinery/button/windowtint{ - id = "research_outer"; + id = "research-outer"; pixel_x = 22; pixel_y = 32 }, /obj/machinery/button/windowtint{ - id = "research_inner"; + id = "research-inner"; pixel_x = 22; pixel_y = 24 }, @@ -14733,17 +14759,34 @@ dir = 1 }, /obj/machinery/button/windowtint{ - id = "robotics_inner"; + id = "robotics-inner"; pixel_x = -22; pixel_y = 24 }, /obj/machinery/button/windowtint{ - id = "robotics_outer"; + id = "robotics-outer"; pixel_x = -22; pixel_y = 32 }, /turf/simulated/floor/tiled/steel, /area/assembly/robotics) +"jmT" = ( +/obj/spawner/window/low_wall/reinforced/electrochromic/full/firelocks, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "hos"; + layer = 3.1; + name = "Head of Security's Office Shutters"; + opacity = 0 + }, +/obj/effect/paint/darkred, +/obj/map_helper/electrochromatic_linker{ + id = "warden-office" + }, +/turf/simulated/floor/plating, +/area/crew_quarters/heads/hos) "jnl" = ( /obj/structure/bed/chair{ dir = 4 @@ -16049,6 +16092,9 @@ "keC" = ( /obj/spawner/window/low_wall/reinforced/electrochromic/full/firelocks, /obj/effect/paint/darkred, +/obj/map_helper/electrochromatic_linker{ + id = "sec-processing-l" + }, /turf/simulated/floor/plating, /area/security/security_processing) "keH" = ( @@ -17233,6 +17279,9 @@ opacity = 0 }, /obj/effect/paint/purplegray, +/obj/map_helper/electrochromatic_linker{ + id = "rd-office" + }, /turf/simulated/floor/plating, /area/crew_quarters/heads/hor) "kPS" = ( @@ -20930,6 +20979,9 @@ "mQt" = ( /obj/spawner/window/low_wall/reinforced/electrochromic/full/firelocks, /obj/effect/paint/babyblue, +/obj/map_helper/electrochromatic_linker{ + id = "medbay-outer" + }, /turf/simulated/floor/plating, /area/medical/reception) "mRj" = ( @@ -22423,7 +22475,7 @@ }, /obj/machinery/atmospherics/component/unary/vent_scrubber/on, /obj/machinery/button/windowtint{ - id = "seclocker"; + id = "sec-locker"; pixel_x = 26; pixel_y = 4; req_access = list(2) @@ -23656,6 +23708,9 @@ "oFb" = ( /obj/spawner/window/low_wall/reinforced/electrochromic/full/firelocks, /obj/effect/paint/babyblue, +/obj/map_helper/electrochromatic_linker{ + id = "resleeving-tint" + }, /turf/simulated/floor/plating, /area/medical/resleeving) "oFt" = ( @@ -24686,6 +24741,14 @@ }, /turf/simulated/floor/tiled/steel, /area/hallway/primary/surfacetwo) +"phz" = ( +/obj/spawner/window/low_wall/reinforced/electrochromic/full/firelocks, +/obj/effect/paint/babyblue, +/obj/map_helper/electrochromatic_linker{ + id = "medbay-outer" + }, +/turf/simulated/floor/plating, +/area/medical/resleeving) "pic" = ( /obj/effect/floor_decal/rust, /obj/structure/catwalk, @@ -24699,6 +24762,23 @@ /obj/structure/catwalk, /turf/simulated/floor/plating, /area/maintenance/asmaint2) +"piB" = ( +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "warden"; + layer = 3.1; + name = "Warden's Office Shutters"; + opacity = 0 + }, +/obj/spawner/window/low_wall/reinforced/electrochromic/full/firelocks, +/obj/effect/paint/darkred, +/obj/map_helper/electrochromatic_linker{ + id = "hos-office" + }, +/turf/simulated/floor/plating, +/area/security/warden) "pjd" = ( /obj/item/radio/intercom/department/security{ dir = 8; @@ -25925,6 +26005,9 @@ /obj/structure/cable/green{ icon_state = "2-8" }, +/obj/map_helper/electrochromatic_linker{ + id = "Interr" + }, /turf/simulated/floor/plating, /area/security/interrogation) "qgp" = ( @@ -27811,7 +27894,7 @@ req_access = list(2) }, /obj/machinery/button/windowtint{ - id = "hos_office"; + id = "hos-office"; pixel_x = -18; pixel_y = -26; req_access = list(58) @@ -28610,6 +28693,9 @@ opacity = 0 }, /obj/effect/paint/purplegray, +/obj/map_helper/electrochromatic_linker{ + id = "robotics-outer" + }, /turf/simulated/floor/plating, /area/assembly/robotics) "rJG" = ( @@ -28826,6 +28912,9 @@ spawn_grille = 0 }, /obj/effect/paint/babyblue, +/obj/map_helper/electrochromatic_linker{ + id = "operating-theatre-2" + }, /turf/simulated/floor/plating, /area/medical/surgery) "rPk" = ( @@ -29503,6 +29592,9 @@ spawn_grille = 0 }, /obj/effect/paint/babyblue, +/obj/map_helper/electrochromatic_linker{ + id = "operating-theatre-2" + }, /turf/simulated/floor/plating, /area/medical/surgery2) "soJ" = ( @@ -32687,8 +32779,19 @@ opacity = 0 }, /obj/effect/paint/darkred, +/obj/map_helper/electrochromatic_linker{ + id = "hos-office" + }, /turf/simulated/floor/plating, /area/crew_quarters/heads/hos) +"uEt" = ( +/obj/spawner/window/low_wall/reinforced/electrochromic/full/firelocks, +/obj/effect/paint/babyblue, +/obj/map_helper/electrochromatic_linker{ + id = "resleeving-tint" + }, +/turf/simulated/floor/plating, +/area/medical/reception) "uEv" = ( /obj/structure/bed/chair/office/dark{ dir = 4 @@ -34354,6 +34457,9 @@ /area/rift/surfacebase/outside/outside2) "vxB" = ( /obj/spawner/window/low_wall/reinforced/electrochromic/full/firelocks, +/obj/map_helper/electrochromatic_linker{ + id = "research-inner" + }, /turf/simulated/floor/plating, /area/rnd/research) "vyj" = ( @@ -34391,6 +34497,23 @@ /obj/item/handcuffs/fuzzy, /turf/simulated/floor/plating, /area/maintenance/dormitory) +"vzm" = ( +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "warden"; + layer = 3.1; + name = "Warden's Office Shutters"; + opacity = 0 + }, +/obj/spawner/window/low_wall/reinforced/electrochromic/full/firelocks, +/obj/effect/paint/darkred, +/obj/map_helper/electrochromatic_linker{ + id = "sec-locker" + }, +/turf/simulated/floor/plating, +/area/security/warden) "vzn" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 1 @@ -34665,6 +34788,9 @@ }, /obj/spawner/window/low_wall/reinforced/electrochromic/full/firelocks, /obj/effect/paint/darkred, +/obj/map_helper/electrochromatic_linker{ + id = "warden-office" + }, /turf/simulated/floor/plating, /area/security/warden) "vKo" = ( @@ -36156,6 +36282,14 @@ }, /turf/simulated/floor/tiled/steel, /area/crew_quarters/sleep/Dorm_6) +"wQz" = ( +/obj/spawner/window/low_wall/reinforced/electrochromic/full/firelocks, +/obj/effect/paint/darkred, +/obj/map_helper/electrochromatic_linker{ + id = "warden-office" + }, +/turf/simulated/floor/plating, +/area/security/security_lockerroom) "wQJ" = ( /obj/effect/floor_decal/industrial/outline/red, /obj/structure/table/rack/shelf/steel, @@ -36690,7 +36824,7 @@ pixel_y = -26 }, /obj/machinery/button/windowtint/multitint{ - id = "medbay_outer"; + id = "medbay-outer"; pixel_x = 2; pixel_y = -24 }, @@ -37853,7 +37987,7 @@ dir = 4 }, /obj/machinery/button/windowtint/multitint{ - id = "sec_processing_l"; + id = "sec-processing-l"; pixel_x = -24; pixel_y = 26; req_access = list(1) @@ -38150,6 +38284,9 @@ opacity = 0 }, /obj/effect/paint/purplegray, +/obj/map_helper/electrochromatic_linker{ + id = "research-outer" + }, /turf/simulated/floor/plating, /area/rnd/research) "xYb" = ( @@ -38318,7 +38455,7 @@ /area/security/security_processing) "yem" = ( /obj/machinery/button/windowtint{ - id = "warden_office"; + id = "warden-office"; pixel_x = -18; pixel_y = 6; req_access = list(3) @@ -48972,8 +49109,8 @@ oFb kid kid kid -oFb -oFb +inb +inb kid oRV oRV @@ -49940,7 +50077,7 @@ oUw dTk bor lto -oFb +phz epz tQp xkt @@ -52854,7 +52991,7 @@ mGl aaA vwR vYO -mQt +uEt rYY jMc rRs @@ -56335,7 +56472,7 @@ ryQ ryQ ryQ mWB -eke +wQz rNb rVb rNb @@ -57500,7 +57637,7 @@ uKa bFQ oeO wsa -vKj +vzm tiu bhS kxd @@ -57888,7 +58025,7 @@ rAw rdE kAI fxc -vKj +piB tiu bhS rrl @@ -59052,7 +59189,7 @@ nzt woR bxf nyI -uDC +jmT tiu bhS nuH diff --git a/maps/rift/levels/rift-06-surface3.dmm b/maps/rift/levels/rift-06-surface3.dmm index ede520d7dc8d..88c724cb19d7 100644 --- a/maps/rift/levels/rift-06-surface3.dmm +++ b/maps/rift/levels/rift-06-surface3.dmm @@ -2018,7 +2018,7 @@ "agQ" = ( /obj/machinery/computer/card, /obj/machinery/button/windowtint{ - id = "hop_office"; + id = "hop-office"; pixel_x = 8; pixel_y = 26 }, @@ -3909,22 +3909,6 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/captain) -"amx" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/obj/machinery/button/windowtint/multitint{ - id = "meeting_tint"; - pixel_x = -24; - pixel_y = -6 - }, -/obj/machinery/light_switch{ - dir = 8; - pixel_x = -26; - pixel_y = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/meeting_room) "amz" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, @@ -5483,7 +5467,7 @@ dir = 4 }, /obj/machinery/button/windowtint/multitint{ - id = "meeting_tint"; + id = "meeting-tint"; pixel_x = -24; pixel_y = 6 }, @@ -8380,6 +8364,11 @@ "azz" = ( /obj/structure/bed/chair/office/dark, /obj/landmark/spawnpoint/job/pathfinder, +/obj/machinery/button/windowtint/multitint{ + id = "pathfinder-office"; + pixel_x = 38; + pixel_y = 28 + }, /turf/simulated/floor/tiled/monotile, /area/exploration/pathfinder_office) "azB" = ( @@ -9637,6 +9626,11 @@ /obj/machinery/light{ dir = 8 }, +/obj/machinery/button/windowtint/multitint{ + id = "bunker-tint"; + pixel_x = -24; + pixel_y = 6 + }, /turf/simulated/floor/tiled/steel_grid, /area/bridge/bunker) "aEd" = ( @@ -15583,7 +15577,7 @@ dir = 1 }, /obj/machinery/button/windowtint/multitint{ - id = "bridge_tint"; + id = "bridge-tint"; pixel_x = 38; pixel_y = 28 }, @@ -17826,6 +17820,9 @@ opacity = 0 }, /obj/effect/paint/commandblue, +/obj/map_helper/electrochromatic_linker{ + id = "hop-office" + }, /turf/simulated/floor/plating, /area/crew_quarters/heads/hop) "dha" = ( @@ -18143,6 +18140,9 @@ "dRg" = ( /obj/spawner/window/low_wall/reinforced/electrochromic/full/firelocks, /obj/effect/paint/commandblue, +/obj/map_helper/electrochromatic_linker{ + id = "blueshield-office" + }, /turf/simulated/floor/plating, /area/crew_quarters/heads/blueshield) "dRq" = ( @@ -19200,6 +19200,9 @@ opacity = 0 }, /obj/effect/paint/commandblue, +/obj/map_helper/electrochromatic_linker{ + id = "bridge-tint" + }, /turf/simulated/floor/plating, /area/bridge) "fAb" = ( @@ -20035,6 +20038,9 @@ "gQu" = ( /obj/spawner/window/low_wall/reinforced/electrochromic/full/firelocks, /obj/effect/paint/commandblue, +/obj/map_helper/electrochromatic_linker{ + id = "meeting-tint" + }, /turf/simulated/floor/plating, /area/bridge/bridge_hallway) "gTy" = ( @@ -20745,6 +20751,9 @@ opacity = 0 }, /obj/effect/paint/commandblue, +/obj/map_helper/electrochromatic_linker{ + id = "bridge-tint" + }, /turf/simulated/floor/plating, /area/bridge) "iio" = ( @@ -23066,6 +23075,9 @@ id = "hop_office" }, /obj/effect/paint/commandblue, +/obj/map_helper/electrochromatic_linker{ + id = "hop-office" + }, /turf/simulated/floor/plating, /area/crew_quarters/heads/hop) "mpP" = ( @@ -24734,6 +24746,9 @@ /obj/structure/cable/green{ icon_state = "1-2" }, +/obj/map_helper/electrochromatic_linker{ + id = "bunker-tint" + }, /turf/simulated/floor/plating, /area/bridge/bunker) "pxd" = ( @@ -25774,6 +25789,11 @@ dir = 8 }, /obj/landmark/spawnpoint/job/blueshield, +/obj/machinery/button/windowtint/multitint{ + id = "blueshield-office"; + pixel_y = 32; + pixel_x = -8 + }, /turf/simulated/floor/carpet/blue, /area/crew_quarters/heads/blueshield) "rKd" = ( @@ -26021,6 +26041,9 @@ "siB" = ( /obj/spawner/window/low_wall/reinforced/electrochromic/full/firelocks, /obj/effect/paint/violet, +/obj/map_helper/electrochromatic_linker{ + id = "pathfinder-office" + }, /turf/simulated/floor/plating, /area/exploration/pathfinder_office) "sja" = ( @@ -27537,6 +27560,9 @@ }, /obj/spawner/window/low_wall/reinforced/electrochromic/full/firelocks, /obj/effect/paint/commandblue, +/obj/map_helper/electrochromatic_linker{ + id = "bridge-tint" + }, /turf/simulated/floor/plating, /area/bridge) "vlu" = ( @@ -27693,6 +27719,9 @@ "vwG" = ( /obj/spawner/window/low_wall/reinforced/electrochromic/full/firelocks, /obj/effect/paint/commandblue, +/obj/map_helper/electrochromatic_linker{ + id = "meeting-tint" + }, /turf/simulated/floor/plating, /area/bridge/meeting_room) "vwM" = ( @@ -28316,6 +28345,9 @@ opacity = 0 }, /obj/effect/paint/commandblue, +/obj/map_helper/electrochromatic_linker{ + id = "bunker-tint" + }, /turf/simulated/floor/plating, /area/bridge/bunker) "wmp" = ( @@ -50492,7 +50524,7 @@ adh aTY sHK asz -amx +aUt aUt aUt aUt From 6ce528642d01dc76d36ca3d52c5d201bdde39ade Mon Sep 17 00:00:00 2001 From: Niezan Date: Fri, 13 Sep 2024 08:47:27 -0700 Subject: [PATCH 08/20] lets security access genpop doors (#6748) ## About The Pull Request genpop brig doors were missing access helpers ## Why It's Good For The Game fixes doors ## Changelog :cl: fix: Security can now access genpop doors. /:cl: --- maps/rift/levels/rift-04-surface1.dmm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/maps/rift/levels/rift-04-surface1.dmm b/maps/rift/levels/rift-04-surface1.dmm index 398b8f248a79..04604690f760 100644 --- a/maps/rift/levels/rift-04-surface1.dmm +++ b/maps/rift/levels/rift-04-surface1.dmm @@ -13554,6 +13554,7 @@ name = "Cell 1"; req_one_access = null }, +/obj/map_helper/access_helper/airlock/station/security/department, /turf/simulated/floor/tiled/monodark, /area/security/prison/upper) "iFN" = ( @@ -16472,6 +16473,7 @@ name = "Cell 2"; req_one_access = null }, +/obj/map_helper/access_helper/airlock/station/security/department, /turf/simulated/floor/tiled/monodark, /area/security/prison/upper) "kwz" = ( @@ -36659,6 +36661,7 @@ name = "Cell 1"; req_one_access = null }, +/obj/map_helper/access_helper/airlock/station/security/department, /turf/simulated/floor/tiled/monodark, /area/security/prison/upper) "vYf" = ( From 9056fbd30b8f9bf578b37ccec441672be5501315 Mon Sep 17 00:00:00 2001 From: Niezan Date: Fri, 13 Sep 2024 08:47:46 -0700 Subject: [PATCH 09/20] bioprinter circuit in circuit imprinter (#6746) ## About The Pull Request makes bioprinter creatable through circuit imprinter. I don't see much reason why not, since we can make whole resleeving consoles. ## Why It's Good For The Game makes bioprinters makeable ## Changelog :cl: add: Bioprinter circuit is now makeable through circuit imprinter at 5 biological, 2 data. /:cl: --- code/modules/research/designs/circuits/machines/misc.dm | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/code/modules/research/designs/circuits/machines/misc.dm b/code/modules/research/designs/circuits/machines/misc.dm index 6c4483ba4b3d..c2306bd17a40 100644 --- a/code/modules/research/designs/circuits/machines/misc.dm +++ b/code/modules/research/designs/circuits/machines/misc.dm @@ -3,3 +3,9 @@ build_path = /obj/item/circuitboard/machine/bioscan id = "machine_bioscan" req_tech = list(TECH_DATA = 1) + +/datum/design/circuit/machine/bioprinter + design_name = "Bioprinter" + build_path = /obj/item/circuitboard/bioprinter + id = "machine_bioprinter" + req_tech = list(TECH_BIO = 5, TECH_DATA = 2) From ef28c6abb62acc37906e94a9cb551bc024e9b0e9 Mon Sep 17 00:00:00 2001 From: Niezan Date: Fri, 13 Sep 2024 08:48:12 -0700 Subject: [PATCH 10/20] Adds size standardization bracelets to protolathe (#6751) ## About The Pull Request Adds size standardization bracelets to the protolathe, giving them an in-game method of being made, instead of requiring admin spawn or loadout equip. I made the recipe kinda cheap because it's mostly a fluff item / makes life less of a living hell. ## Why It's Good For The Game seems useful for events and / or just general purpose. ## Changelog :cl: add: Size standardization bracelets can now be made in the protolathe. /:cl: --- code/modules/research/designs/misc.dm | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/code/modules/research/designs/misc.dm b/code/modules/research/designs/misc.dm index ce337c04d6cd..a1dfe223dabb 100644 --- a/code/modules/research/designs/misc.dm +++ b/code/modules/research/designs/misc.dm @@ -136,3 +136,11 @@ req_tech = list(TECH_BLUESPACE = 5, TECH_MATERIAL = 6, TECH_BIO = 5) materials_base = list(MAT_STEEL = 4000, MAT_GLASS = 2000, MAT_URANIUM = 500, MAT_GOLD = 500, MAT_SILVER = 500) build_path = /obj/item/reagent_synth/chemistry + +/datum/design/science/size_standardization + design_name = "Size Standardization Bracelet" + desc = "A bracelet that changes the size of the wearer to the galactic standard." + id = "sizestandardbracelet" + req_tech = list(TECH_BLUESPACE = 5, TECH_MATERIAL = 3, TECH_BIO = 4) + materials_base = list(MAT_STEEL = 1000) + build_path = /obj/item/clothing/gloves/size From a61ad42b18cf0bd530f499109d833584baeef486 Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Fri, 13 Sep 2024 11:48:38 -0400 Subject: [PATCH 11/20] fix paper logos (#6750) oops --- citadel.dme | 1 + code/modules/asset_cache/assets/logos.dm | 9 +++++++ code/modules/paperwork/paper/paper.dm | 22 ++++++++++-------- html/images/loading.gif | Bin 0 -> 1633 bytes html/images/paper_bg.png | Bin 0 -> 4035 bytes html/images/talisman.png | Bin 0 -> 62153 bytes icons/interface/logos/nanotrasen-blue.png | Bin 0 -> 9990 bytes .../interface/logos/nanotrasen-red.png | Bin icons/interface/logos/solgov.png | Bin 0 -> 19257 bytes 9 files changed, 22 insertions(+), 10 deletions(-) create mode 100644 code/modules/asset_cache/assets/logos.dm create mode 100644 html/images/loading.gif create mode 100644 html/images/paper_bg.png create mode 100644 html/images/talisman.png create mode 100644 icons/interface/logos/nanotrasen-blue.png rename html/images/redntlogo.png => icons/interface/logos/nanotrasen-red.png (100%) create mode 100644 icons/interface/logos/solgov.png diff --git a/citadel.dme b/citadel.dme index 31f46e8f17eb..7c26dfbdffc7 100644 --- a/citadel.dme +++ b/citadel.dme @@ -2273,6 +2273,7 @@ #include "code\modules\asset_cache\assets\legacy_nanomaps.dm" #include "code\modules\asset_cache\assets\legacy_nanoui.dm" #include "code\modules\asset_cache\assets\loadout.dm" +#include "code\modules\asset_cache\assets\logos.dm" #include "code\modules\asset_cache\assets\materials.dm" #include "code\modules\asset_cache\assets\moods.dm" #include "code\modules\asset_cache\assets\notes.dm" diff --git a/code/modules/asset_cache/assets/logos.dm b/code/modules/asset_cache/assets/logos.dm new file mode 100644 index 000000000000..45965c0e4340 --- /dev/null +++ b/code/modules/asset_cache/assets/logos.dm @@ -0,0 +1,9 @@ +/datum/asset_pack/simple/logos + assets = list( + "nanotrasen-blue.png" = 'icons/interface/logos/nanotrasen-blue.png', + "nanotrasen-red.png" = 'icons/interface/logos/nanotrasen-red.png', + "solgov-logo.png" = 'icons/interface/logos/solgov.png', + ) + do_not_separate = TRUE + absolute = TRUE + do_not_mangle = TRUE diff --git a/code/modules/paperwork/paper/paper.dm b/code/modules/paperwork/paper/paper.dm index dc438275981d..a3bc621743eb 100644 --- a/code/modules/paperwork/paper/paper.dm +++ b/code/modules/paperwork/paper/paper.dm @@ -9,14 +9,6 @@ #define MODE_WRITING 1 #define MODE_STAMPING 2 -/** - * Paper is now using markdown (like in github pull notes) for ALL rendering - * so we do loose a bit of functionality but we gain in easy of use of - * paper and getting rid of that crashing bug - */ -/obj/item/paper - - /obj/item/paper name = "sheet of paper" gender = NEUTER @@ -104,6 +96,10 @@ return /obj/item/paper/proc/show_content(var/mob/user, var/forceshow=0) + if(!user.client) + return + SSassets.send_asset_pack(user.client, /datum/asset_pack/simple/logos) + user.client.asset_cache_flush_browse_queue() if(!(istype(user, /mob/living/carbon/human) || istype(user, /mob/observer/dead) || istype(user, /mob/living/silicon)) && !forceshow) user << browse("[name][stars(info)][stamps]", "window=[name]") onclose(user, "[name]") @@ -158,6 +154,8 @@ dist = get_dist(src, user.camera) else //cyborg or AI not seeing through a camera dist = get_dist(src, user) + SSassets.send_asset_pack(user.client, /datum/asset_pack/simple/logos) + user.client.asset_cache_flush_browse_queue() if(dist < 2) usr << browse("[name][info][stamps]", "window=[name]") onclose(usr, "[name]") @@ -296,8 +294,8 @@ t = replacetext(t, "\[/grid\]", "") t = replacetext(t, "\[row\]", "") t = replacetext(t, "\[cell\]", "") - t = replacetext(t, "\[logo\]", "") - t = replacetext(t, "\[sglogo\]", "") + t = replacetext(t, "\[logo\]", "") + t = replacetext(t, "\[sglogo\]", "") t = "[t]" else // If it is a crayon, and he still tries to use these, make them empty! @@ -424,6 +422,8 @@ update_space(t) + SSassets.send_asset_pack(usr.client, /datum/asset_pack/simple/logos) + usr.client.asset_cache_flush_browse_queue() usr << browse("[name][info_links][stamps]", "window=[name]") // Update the window update_icon() @@ -474,6 +474,8 @@ if ( istype(RP) && RP.mode == 2 ) RP.RenamePaper(user,src) else + SSassets.send_asset_pack(user.client, /datum/asset_pack/simple/logos) + user.client.asset_cache_flush_browse_queue() user << browse("[name][info_links][stamps]", "window=[name]") return diff --git a/html/images/loading.gif b/html/images/loading.gif new file mode 100644 index 0000000000000000000000000000000000000000..6ec34d41709c2bde01c2b8825798073d67ec6ad6 GIT binary patch literal 1633 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 literal 0 HcmV?d00001 diff --git a/html/images/talisman.png b/html/images/talisman.png new file mode 100644 index 0000000000000000000000000000000000000000..0ece637314a0112efd87927c1d65953707b4221a GIT binary patch literal 62153 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 D^Z3ue literal 0 HcmV?d00001 diff --git a/html/images/redntlogo.png b/icons/interface/logos/nanotrasen-red.png similarity index 100% rename from html/images/redntlogo.png rename to icons/interface/logos/nanotrasen-red.png diff --git a/icons/interface/logos/solgov.png b/icons/interface/logos/solgov.png new file mode 100644 index 0000000000000000000000000000000000000000..930a0c4a5e0a628dec5c2486bdfca1522240cb56 GIT binary patch literal 19257 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 literal 0 HcmV?d00001 From 16c07e9e6154174e05588f024247775ef791a929 Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Fri, 13 Sep 2024 12:09:49 -0400 Subject: [PATCH 12/20] Projectiles reorganization and cleanup, impact effects, subtle EMP tweaks (#6741) No gameplay changes except for EMP rebalancing. Emps are now deterministic Ion rifles now always hit for strength 2 instead of a probability tree of strengths EMP damage slightly lessened as this makes a lot of things guaranteed to hit with strength 2 instead of 3 --- citadel.dme | 29 +- code/game/atoms/defense_old.dm | 3 +- .../machinery/turrets/subtypes/lasertag.dm | 3 - .../machinery/turrets/turret-ai_holder.dm | 3 +- .../machinery/virtual_reality/vr_console.dm | 2 +- code/game/objects/empulse.dm | 51 +- code/game/objects/explosion.dm | 2 +- .../objects/items/weapons/implants/implant.dm | 58 +- .../items/weapons/implants/neuralbasic.dm | 65 +-- .../ai/holders/polaris/ai_holder_combat.dm | 8 +- .../modules/mob/living/silicon/pai/defense.dm | 12 +- .../computers/modular_computer/damage.dm | 3 +- code/modules/organs/external/external.dm | 7 +- code/modules/projectiles/gun.dm | 10 +- code/modules/projectiles/guns/launcher.dm | 4 - code/modules/projectiles/guns/magic.dm | 36 +- code/modules/projectiles/guns/magic/staff.dm | 6 +- code/modules/projectiles/guns/magic/wand.dm | 11 +- code/modules/projectiles/projectile/arc.dm | 105 ---- .../projectile/projectile-tracing.dm | 31 +- .../projectiles/projectile/projectile.dm | 37 +- .../projectile_effect/detonation.dm | 50 ++ .../detonation/legacy_emp.dm | 11 + .../detonation/legacy_explosion.dm | 10 + .../projectile/subtypes/animate.dm | 3 + .../projectiles/projectile/subtypes/arc.dm | 182 ++++--- .../projectile/subtypes/arc/arc.dm | 82 +++ .../projectiles/projectile/subtypes/beam.dm | 25 + .../projectile/subtypes/beam/beams.dm | 21 - .../projectile/subtypes/bullet/bullets.dm | 498 +++++++++++++++++ .../subtypes/{ => bullet}/bullets_vr.dm | 0 .../subtypes/{ => bullet}/magnetic.dm | 0 .../subtypes/{ => bullet}/reusable.dm | 0 .../{explosive.dm => bullet/srmrocket.dm} | 0 .../projectile/subtypes/bullets.dm | 507 +----------------- .../projectiles/projectile/subtypes/energy.dm | 247 +-------- .../projectile/subtypes/{ => energy}/blob.dm | 0 .../projectile/subtypes/energy/energy.dm | 240 +++++++++ .../subtypes/{ => energy}/energy_vr.dm | 0 .../projectile/subtypes/{ => energy}/hook.dm | 0 .../subtypes/{force.dm => forcebolt.dm} | 0 .../projectiles/projectile/subtypes/ion.dm | 31 ++ .../projectiles/projectile/subtypes/magic.dm | 53 -- .../projectiles/projectile/subtypes/pellet.dm | 1 + .../projectile/subtypes/scatter.dm | 1 - .../projectiles/projectile/subtypes/trace.dm | 33 -- .../subtypes/{special.dm => unsorted.dm} | 38 -- .../mecha/equipment/tools/armor_ranged.dm | 2 - code/modules/vehicles/sealed/mecha/mecha.dm | 11 +- 49 files changed, 1259 insertions(+), 1273 deletions(-) delete mode 100644 code/modules/projectiles/projectile/arc.dm create mode 100644 code/modules/projectiles/projectile/projectile_effect/detonation.dm create mode 100644 code/modules/projectiles/projectile/projectile_effect/detonation/legacy_emp.dm create mode 100644 code/modules/projectiles/projectile/projectile_effect/detonation/legacy_explosion.dm create mode 100644 code/modules/projectiles/projectile/subtypes/arc/arc.dm create mode 100644 code/modules/projectiles/projectile/subtypes/beam.dm create mode 100644 code/modules/projectiles/projectile/subtypes/bullet/bullets.dm rename code/modules/projectiles/projectile/subtypes/{ => bullet}/bullets_vr.dm (100%) rename code/modules/projectiles/projectile/subtypes/{ => bullet}/magnetic.dm (100%) rename code/modules/projectiles/projectile/subtypes/{ => bullet}/reusable.dm (100%) rename code/modules/projectiles/projectile/subtypes/{explosive.dm => bullet/srmrocket.dm} (100%) rename code/modules/projectiles/projectile/subtypes/{ => energy}/blob.dm (100%) create mode 100644 code/modules/projectiles/projectile/subtypes/energy/energy.dm rename code/modules/projectiles/projectile/subtypes/{ => energy}/energy_vr.dm (100%) rename code/modules/projectiles/projectile/subtypes/{ => energy}/hook.dm (100%) rename code/modules/projectiles/projectile/subtypes/{force.dm => forcebolt.dm} (100%) create mode 100644 code/modules/projectiles/projectile/subtypes/ion.dm delete mode 100644 code/modules/projectiles/projectile/subtypes/magic.dm delete mode 100644 code/modules/projectiles/projectile/subtypes/trace.dm rename code/modules/projectiles/projectile/subtypes/{special.dm => unsorted.dm} (93%) diff --git a/citadel.dme b/citadel.dme index 7c26dfbdffc7..0da2380ea275 100644 --- a/citadel.dme +++ b/citadel.dme @@ -4485,33 +4485,38 @@ #include "code\modules\projectiles\guns\projectile\sniper.dm" #include "code\modules\projectiles\guns\projectile\caseless\pellet.dm" #include "code\modules\projectiles\guns\projectile\sniper\collapsible_sniper.dm" -#include "code\modules\projectiles\projectile\arc.dm" #include "code\modules\projectiles\projectile\helpers.dm" #include "code\modules\projectiles\projectile\projectile-hitscan_visuals.dm" #include "code\modules\projectiles\projectile\projectile-physics.dm" #include "code\modules\projectiles\projectile\projectile-tracing.dm" #include "code\modules\projectiles\projectile\projectile.dm" #include "code\modules\projectiles\projectile\projectile_effect.dm" +#include "code\modules\projectiles\projectile\projectile_effect\detonation.dm" +#include "code\modules\projectiles\projectile\projectile_effect\detonation\legacy_emp.dm" +#include "code\modules\projectiles\projectile\projectile_effect\detonation\legacy_explosion.dm" #include "code\modules\projectiles\projectile\subtypes\arc.dm" -#include "code\modules\projectiles\projectile\subtypes\blob.dm" +#include "code\modules\projectiles\projectile\subtypes\beam.dm" #include "code\modules\projectiles\projectile\subtypes\bullets.dm" -#include "code\modules\projectiles\projectile\subtypes\bullets_vr.dm" #include "code\modules\projectiles\projectile\subtypes\change.dm" #include "code\modules\projectiles\projectile\subtypes\energy.dm" -#include "code\modules\projectiles\projectile\subtypes\energy_vr.dm" -#include "code\modules\projectiles\projectile\subtypes\explosive.dm" -#include "code\modules\projectiles\projectile\subtypes\force.dm" -#include "code\modules\projectiles\projectile\subtypes\hook.dm" -#include "code\modules\projectiles\projectile\subtypes\magic.dm" -#include "code\modules\projectiles\projectile\subtypes\magnetic.dm" +#include "code\modules\projectiles\projectile\subtypes\forcebolt.dm" +#include "code\modules\projectiles\projectile\subtypes\ion.dm" #include "code\modules\projectiles\projectile\subtypes\pellet.dm" -#include "code\modules\projectiles\projectile\subtypes\reusable.dm" #include "code\modules\projectiles\projectile\subtypes\scatter.dm" -#include "code\modules\projectiles\projectile\subtypes\special.dm" -#include "code\modules\projectiles\projectile\subtypes\trace.dm" +#include "code\modules\projectiles\projectile\subtypes\unsorted.dm" +#include "code\modules\projectiles\projectile\subtypes\arc\arc.dm" #include "code\modules\projectiles\projectile\subtypes\beam\beams.dm" #include "code\modules\projectiles\projectile\subtypes\beam\beams_vr.dm" #include "code\modules\projectiles\projectile\subtypes\beam\blaster.dm" +#include "code\modules\projectiles\projectile\subtypes\bullet\bullets.dm" +#include "code\modules\projectiles\projectile\subtypes\bullet\bullets_vr.dm" +#include "code\modules\projectiles\projectile\subtypes\bullet\magnetic.dm" +#include "code\modules\projectiles\projectile\subtypes\bullet\reusable.dm" +#include "code\modules\projectiles\projectile\subtypes\bullet\srmrocket.dm" +#include "code\modules\projectiles\projectile\subtypes\energy\blob.dm" +#include "code\modules\projectiles\projectile\subtypes\energy\energy.dm" +#include "code\modules\projectiles\projectile\subtypes\energy\energy_vr.dm" +#include "code\modules\projectiles\projectile\subtypes\energy\hook.dm" #include "code\modules\projectiles\targeting\targeting_client.dm" #include "code\modules\projectiles\targeting\targeting_gun.dm" #include "code\modules\projectiles\targeting\targeting_mob.dm" diff --git a/code/game/atoms/defense_old.dm b/code/game/atoms/defense_old.dm index d162a947cbfd..64cecb72a1bd 100644 --- a/code/game/atoms/defense_old.dm +++ b/code/game/atoms/defense_old.dm @@ -8,7 +8,8 @@ /atom/proc/legacy_ex_act(severity, target) set waitfor = FALSE -/atom/proc/emp_act(var/severity) +/atom/proc/emp_act(severity) + SHOULD_NOT_SLEEP(TRUE) // todo: SHOULD_CALL_PARENT(TRUE) SEND_SIGNAL(src, COMSIG_ATOM_EMP_ACT, severity) diff --git a/code/game/machinery/turrets/subtypes/lasertag.dm b/code/game/machinery/turrets/subtypes/lasertag.dm index afb2812a1f7b..5c19bc4303ac 100644 --- a/code/game/machinery/turrets/subtypes/lasertag.dm +++ b/code/game/machinery/turrets/subtypes/lasertag.dm @@ -29,9 +29,6 @@ if(get_dist(src, L) > 7) //if it's too far away, why bother? return TURRET_NOT_TARGET - if(!(L in check_trajectory(L, src))) //check if we have true line of sight - return TURRET_NOT_TARGET - if(L.lying) //Don't need to stun-lock the players return TURRET_NOT_TARGET diff --git a/code/game/machinery/turrets/turret-ai_holder.dm b/code/game/machinery/turrets/turret-ai_holder.dm index 01590029a9e9..b1a664338b16 100644 --- a/code/game/machinery/turrets/turret-ai_holder.dm +++ b/code/game/machinery/turrets/turret-ai_holder.dm @@ -162,7 +162,8 @@ /datum/ai_holder/turret/proc/trace_trajectory(atom/target, angle) var/obj/projectile/trace/trace = new(agent.loc) trace.only_opacity = TRUE - trace.prepare_trace(target) + if(!trace.prepare_trace(target)) + return FALSE trace.fire(angle) return trace.could_hit_target diff --git a/code/game/machinery/virtual_reality/vr_console.dm b/code/game/machinery/virtual_reality/vr_console.dm index aacdf43c5474..92f25b7bb879 100644 --- a/code/game/machinery/virtual_reality/vr_console.dm +++ b/code/game/machinery/virtual_reality/vr_console.dm @@ -114,7 +114,7 @@ visible_message("\The [src]'s internal lighting flashes rapidly, before the hatch swings open with a cloud of smoke.") smoke.set_up(severity, 0, src) smoke.start("#202020") - go_out() + INVOKE_ASYNC(src, PROC_REF(go_out)) ..(severity) diff --git a/code/game/objects/empulse.dm b/code/game/objects/empulse.dm index 658996692ba8..340a1466e02a 100644 --- a/code/game/objects/empulse.dm +++ b/code/game/objects/empulse.dm @@ -1,19 +1,18 @@ -// Uncomment this define to check for possible lengthy processing of emp_act()s. -// If emp_act() takes more than defined deciseconds (1/10 seconds) an admin message and log is created. -// I do not recommend having this uncommented on main server, it probably causes a bit more lag, espicially with larger EMPs. - -// #define EMPDEBUG 10 - -/proc/empulse(turf/epicenter, first_range, second_range, third_range, fourth_range, log = FALSE) +/** + * Legacy EMP pulses + * + * Ranges are starting at 1 for 1x1, so 0 = don't affect. + */ +/proc/empulse(turf/epicenter, first_range, second_range, third_range, fourth_range, log = TRUE, message_admins = FALSE) if(!epicenter) return if(!istype(epicenter, /turf)) epicenter = get_turf(epicenter.loc) - if(log) + if(message_admins) message_admins("EMP with size ([first_range], [second_range], [third_range], [fourth_range]) in area [epicenter.loc.name] ") - log_game("EMP with size ([first_range], [second_range], [third_range], [fourth_range]) in area [epicenter.loc.name] ") + log_game("EMP with size ([first_range], [second_range], [third_range], [fourth_range]) in area [epicenter.loc.name] ") if(first_range > 1) var/obj/effect/overlay/pulse = new /obj/effect/overlay(epicenter) @@ -24,6 +23,7 @@ spawn(20) qdel(pulse) + // expand ranges if(first_range > second_range) second_range = first_range if(second_range > third_range) @@ -31,45 +31,24 @@ if(third_range > fourth_range) fourth_range = third_range - for(var/mob/M in range(first_range, epicenter)) + // this is dumb but whatever + for(var/mob/M in range(fourth_range - 1, epicenter)) SEND_SOUND(M, sound('sound/effects/EMPulse.ogg')) - for(var/atom/T in range(fourth_range, epicenter)) - #ifdef EMPDEBUG - var/time = world.timeofday - #endif + for(var/atom/T in range(fourth_range - 1, epicenter)) var/distance = get_dist(epicenter, T) if(distance < 0) distance = 0 //Worst effects, really hurts if(distance < first_range) T.emp_act(1) - else if(distance == first_range) - if(prob(50)) - T.emp_act(1) - else - T.emp_act(2) //Slightly less painful - else if(distance <= second_range) + else if(distance < second_range) T.emp_act(2) - else if(distance == second_range) - if(prob(50)) - T.emp_act(2) - else - T.emp_act(3) //Even less slightly less painful - else if(distance <= third_range) + else if(distance < third_range) T.emp_act(3) - else if(distance == third_range) - if(prob(50)) - T.emp_act(2) - else - T.emp_act(3) //This should be more or less harmless - else if(distance <= fourth_range) + else if(distance < fourth_range) T.emp_act(4) - #ifdef EMPDEBUG - if((world.timeofday - time) >= EMPDEBUG) - log_and_message_admins("EMPDEBUG: [T.name] - [T.type] - took [world.timeofday - time]ds to process emp_act()!") - #endif return 1 diff --git a/code/game/objects/explosion.dm b/code/game/objects/explosion.dm index 037af3ccda1a..ad70f1b30b03 100644 --- a/code/game/objects/explosion.dm +++ b/code/game/objects/explosion.dm @@ -69,7 +69,7 @@ addtimer(CALLBACK(M, TYPE_PROC_REF(/mob, playsound_local), epicenter, null, rand(25, 40), 1, frequency, null, null, FALSE, 'sound/effects/creak1.ogg', null, null, null, null, 0), 5 SECONDS) if(adminlog) message_admins("Explosion with [shaped ? "shaped" : "non-shaped"] size ([devastation_range], [heavy_impact_range], [light_impact_range]) in area [epicenter.loc.name] ([epicenter.x],[epicenter.y],[epicenter.z]) (JMP)") - log_game("Explosion with [shaped ? "shaped" : "non-shaped"] size ([devastation_range], [heavy_impact_range], [light_impact_range]) in area [epicenter.loc.name] ") + log_game("Explosion with [shaped ? "shaped" : "non-shaped"] size ([devastation_range], [heavy_impact_range], [light_impact_range]) in area [epicenter.loc.name] ") var/approximate_intensity = (devastation_range * 3) + (heavy_impact_range * 2) + light_impact_range var/powernet_rebuild_was_deferred_already = defer_powernet_rebuild diff --git a/code/game/objects/items/weapons/implants/implant.dm b/code/game/objects/items/weapons/implants/implant.dm index 91df076469df..81d985e3017f 100644 --- a/code/game/objects/items/weapons/implants/implant.dm +++ b/code/game/objects/items/weapons/implants/implant.dm @@ -160,7 +160,7 @@ Implant Specifics:
"} switch(severity) if(1) if(prob(60)) - meltdown() + INVOKE_ASYNC(src, TYPE_PROC_REF(/obj/item/implant, meltdown)) if(2) delay = rand(5*60*10,15*60*10) //from 5 to 15 minutes of free time if(3) @@ -294,31 +294,32 @@ Implant Specifics:
"} if (malfunction) return malfunction = MALFUNCTION_TEMPORARY - switch (severity) - if (4) //Weak EMP will make implant tear limbs off. - if (prob(25)) - small_boom() - if (3) //Weak EMP will make implant tear limbs off. - if (prob(50)) - small_boom() - if (2) //strong EMP will melt implant either making it go off, or disarming it - if (prob(70)) - if (prob(75)) + spawn(-1) + switch (severity) + if (4) //Weak EMP will make implant tear limbs off. + if (prob(25)) small_boom() - else - if (prob(13)) - activate() //chance of bye bye - else - meltdown() //chance of implant disarming - if (1) //strong EMP will melt implant either making it go off, or disarming it - if (prob(70)) + if (3) //Weak EMP will make implant tear limbs off. if (prob(50)) small_boom() - else + if (2) //strong EMP will melt implant either making it go off, or disarming it + if (prob(70)) + if (prob(75)) + small_boom() + else + if (prob(13)) + activate() //chance of bye bye + else + meltdown() //chance of implant disarming + if (1) //strong EMP will melt implant either making it go off, or disarming it + if (prob(70)) if (prob(50)) - activate() //50% chance of bye bye + small_boom() else - meltdown() //50% chance of implant disarming + if (prob(50)) + activate() //50% chance of bye bye + else + meltdown() //50% chance of implant disarming spawn (20) malfunction-- @@ -538,13 +539,14 @@ the implant may become unstable and either pre-maturely inject the subject or si return malfunction = MALFUNCTION_TEMPORARY - activate("emp") //let's shout that this dude is dead - if(severity == 1) - if(prob(40)) //small chance of obvious meltdown - meltdown() - else if (prob(60)) //but more likely it will just quietly die - malfunction = MALFUNCTION_PERMANENT - STOP_PROCESSING(SSobj, src) + spawn(-1) + activate("emp") //let's shout that this dude is dead + if(severity == 1) + if(prob(40)) //small chance of obvious meltdown + meltdown() + else if (prob(60)) //but more likely it will just quietly die + malfunction = MALFUNCTION_PERMANENT + STOP_PROCESSING(SSobj, src) spawn(20) malfunction-- diff --git a/code/game/objects/items/weapons/implants/neuralbasic.dm b/code/game/objects/items/weapons/implants/neuralbasic.dm index 027603b600db..30d050a315c2 100644 --- a/code/game/objects/items/weapons/implants/neuralbasic.dm +++ b/code/game/objects/items/weapons/implants/neuralbasic.dm @@ -57,39 +57,40 @@ Implant Specifics:
"} return malfunction = MALFUNCTION_TEMPORARY - var/delay = 10 //Don't let it just get emped twice in a second to kill someone. - var/brain_location = my_brain.owner.organs_by_name[my_brain.parent_organ] - var/mob/living/L = my_brain.owner - switch(severity) - if(1) - if(prob(10)) - meltdown() - else if(prob(80)) - my_brain.take_damage(5) - if(!robotic_brain) - to_chat(L, "Something in your [brain_location] burns!") - else - to_chat(L, "Severe fault detected in [brain_location].") - if(2) - if(prob(80)) - my_brain.take_damage(3) - if(!robotic_brain) - to_chat(L, "It feels like something is digging into your [brain_location]!") - else - to_chat(L, "Fault detected in [brain_location].") - if(3) - if(prob(60)) - my_brain.take_damage(2) - if(!robotic_brain) - to_chat(L, "There is a stabbing pain in your [brain_location]!") - if(4) - if(prob(40)) - my_brain.take_damage(1) - if(!robotic_brain) - to_chat(L, "Your [brain_location] aches.") + spawn(-1) + var/delay = 10 //Don't let it just get emped twice in a second to kill someone. + var/brain_location = my_brain.owner.organs_by_name[my_brain.parent_organ] + var/mob/living/L = my_brain.owner + switch(severity) + if(1) + if(prob(10)) + meltdown() + else if(prob(80)) + my_brain.take_damage(5) + if(!robotic_brain) + to_chat(L, "Something in your [brain_location] burns!") + else + to_chat(L, "Severe fault detected in [brain_location].") + if(2) + if(prob(80)) + my_brain.take_damage(3) + if(!robotic_brain) + to_chat(L, "It feels like something is digging into your [brain_location]!") + else + to_chat(L, "Fault detected in [brain_location].") + if(3) + if(prob(60)) + my_brain.take_damage(2) + if(!robotic_brain) + to_chat(L, "There is a stabbing pain in your [brain_location]!") + if(4) + if(prob(40)) + my_brain.take_damage(1) + if(!robotic_brain) + to_chat(L, "Your [brain_location] aches.") - spawn(delay) - malfunction-- + spawn(delay) + malfunction-- /obj/item/implant/neural/meltdown() ..() diff --git a/code/modules/ai/holders/polaris/ai_holder_combat.dm b/code/modules/ai/holders/polaris/ai_holder_combat.dm index 699fd764cc9b..766640dac0c3 100644 --- a/code/modules/ai/holders/polaris/ai_holder_combat.dm +++ b/code/modules/ai/holders/polaris/ai_holder_combat.dm @@ -146,7 +146,13 @@ // This will hold a list of all mobs in a line, even those behind the target, and possibly the wall. // By default the test projectile goes through things like glass and grilles, which is desirable as otherwise the AI won't try to shoot through windows. - var/list/hit_things = check_trajectory(AM, holder) // This isn't always reliable but its better than the previous method. + var/list/hit_things + + if(isturf(holder.loc)) + var/obj/projectile/trace/trace_projectile = new(holder.loc) + trace_projectile.prepare_trace(AM, TRUE) + trace_projectile.fire() + hit_things = trace_projectile.scanned_atoms // Test to see if the primary target actually has a chance to get hit. // We'll fire anyways if not, if we have conserve_ammo turned off. diff --git a/code/modules/mob/living/silicon/pai/defense.dm b/code/modules/mob/living/silicon/pai/defense.dm index d6faec813e36..0f2fdba52a16 100644 --- a/code/modules/mob/living/silicon/pai/defense.dm +++ b/code/modules/mob/living/silicon/pai/defense.dm @@ -64,18 +64,12 @@ /mob/living/silicon/pai/emp_act(severity) // Silence for 2 minutes - // 20% chance to kill - // 33% chance to unbind - // 33% chance to change prime directive (based on severity) - // 33% chance of no additional effect + // 33% chance to unbind + // 33% chance to change prime directive (based on severity) + // 33% chance of no additional effect src.silence_time = world.timeofday + 120 * 10 // Silence for 2 minutes to_chat(src, "Communication circuit overload. Shutting down and reloading communication circuits - speech and messaging functionality will be unavailable until the reboot is complete.") - if(prob(20)) - var/turf/T = get_turf_or_move(src.loc) - for (var/mob/M in viewers(T)) - M.show_message("A shower of sparks spray from [src]'s inner workings.", 3, "You hear and smell the ozone hiss of electrical sparks being expelled violently.", 2) - return src.death(0) switch(pick(1,2,3)) if(1) diff --git a/code/modules/modular_computers/computers/modular_computer/damage.dm b/code/modules/modular_computers/computers/modular_computer/damage.dm index 147ee701b526..a1649bbbf747 100644 --- a/code/modules/modular_computers/computers/modular_computer/damage.dm +++ b/code/modules/modular_computers/computers/modular_computer/damage.dm @@ -44,7 +44,8 @@ /// EMPs are similar to explosions, but don't cause physical damage to the casing. Instead they screw up the components /obj/item/modular_computer/emp_act(severity) . = ..() - take_damage_legacy(rand(100,200) / severity, 50 / severity, 0) + spawn(-1) + take_damage_legacy(rand(100,200) / severity, 50 / severity, 0) /** * "Stun" weapons can cause minor damage to components (short-circuits?) diff --git a/code/modules/organs/external/external.dm b/code/modules/organs/external/external.dm index e1bed09a1c9f..b81da0040b6c 100644 --- a/code/modules/organs/external/external.dm +++ b/code/modules/organs/external/external.dm @@ -186,9 +186,9 @@ var/burn_damage = 0 switch(severity) if (1) - burn_damage += rand(10, 14) + burn_damage += rand(10, 12) if (2) - burn_damage += rand(7, 8.5) + burn_damage += rand(6.5, 8) if(3) burn_damage += rand(4, 8) if(4) @@ -379,7 +379,8 @@ if(is_broken() && brute && !(damage_mode & DAMAGE_MODE_GRADUAL)) jostle_bone(brute) if(organ_can_feel_pain() && IS_CONSCIOUS(owner) && prob(40)) - owner.emote("scream") //getting hit on broken hand hurts + spawn(-1) + owner.emote("scream") //getting hit on broken hand hurts // todo: optimization // legacy: autopsy data diff --git a/code/modules/projectiles/gun.dm b/code/modules/projectiles/gun.dm index 0f214b043d92..8cc87df0ac60 100644 --- a/code/modules/projectiles/gun.dm +++ b/code/modules/projectiles/gun.dm @@ -81,6 +81,7 @@ var/list/burst_accuracy = list(0) //allows for different accuracies for each shot in a burst. Applied on top of accuracy var/list/dispersion = list(0) var/mode_name = null + // todo: purge with fire var/projectile_type = /obj/projectile //On ballistics, only used to check for the cham gun var/holy = FALSE //For Divinely blessed guns // todo: this should be on /ballistic, and be `internal_chambered`. @@ -564,15 +565,6 @@ /obj/item/gun/proc/consume_next_projectile() return null -//used by aiming code -/obj/item/gun/proc/can_hit(atom/target as mob, var/mob/living/user as mob) - if(!special_check(user)) - return 2 - //just assume we can shoot through glass and stuff. No big deal, the player can just choose to not target someone - //on the other side of a window if it makes a difference. Or if they run behind a window, too bad. - if(check_trajectory(target, user)) - return 1 // Magic numbers are fun. - //called if there was no projectile to shoot /obj/item/gun/proc/handle_click_empty(mob/user) if (user) diff --git a/code/modules/projectiles/guns/launcher.dm b/code/modules/projectiles/guns/launcher.dm index a752f382bd73..aa1db93267ba 100644 --- a/code/modules/projectiles/guns/launcher.dm +++ b/code/modules/projectiles/guns/launcher.dm @@ -10,10 +10,6 @@ muzzle_flash = 0 fire_sound_text = "a launcher firing" -//This normally uses a proc on projectiles and our ammo is not strictly speaking a projectile. -/obj/item/gun/launcher/can_hit(var/mob/living/target as mob, var/mob/living/user as mob) - return 1 - /obj/item/gun/launcher/proc/update_release_force(obj/projectile) return 0 diff --git a/code/modules/projectiles/guns/magic.dm b/code/modules/projectiles/guns/magic.dm index cf273441ee98..5e6cd06d99a5 100644 --- a/code/modules/projectiles/guns/magic.dm +++ b/code/modules/projectiles/guns/magic.dm @@ -12,10 +12,13 @@ var/recharge_rate = 4 var/charge_tick = 0 var/can_charge = 1 - var/ammo_type = /obj/projectile/magic var/no_den_usage pin = /obj/item/firing_pin/magic + /// the projectile type we generate + // todo: this should be on /obj/item/gun/magic/basic + projectile_type = /obj/projectile/magic + /obj/item/gun/magic/afterattack(atom/target, mob/user, clickchain_flags, list/params) if(no_den_usage) var/area/A = get_area(user) @@ -29,23 +32,12 @@ return . = ..() -/obj/item/gun/magic/proc/recharge_newshot() - if(charges && chambered && !chambered.get_projectile()) - chambered.newshot() - -/obj/item/gun/magic/proc/process_chamber() - if(chambered && !chambered.get_projectile()) //if BB is null, i.e the shot has been fired... - charges--//... drain a charge - recharge_newshot() - /obj/item/gun/magic/Initialize(mapload) . = ..() charges = max_charges - chambered = new ammo_type(src) if(can_charge) START_PROCESSING(SSobj, src) - /obj/item/gun/magic/Destroy() if(can_charge) STOP_PROCESSING(SSobj, src) @@ -54,26 +46,14 @@ /obj/item/gun/magic/process(delta_time) charge_tick++ if(charge_tick < recharge_rate || charges >= max_charges) - return 0 + return charge_tick = 0 charges++ - if(charges == 1) - recharge_newshot() - return 1 /obj/item/gun/magic/consume_next_projectile() + if(charges <= 0) + return null return chambered?.get_projectile() -/obj/item/gun/magic/proc/shoot_with_empty_chamber(mob/living/user as mob|obj) +/obj/item/gun/magic/handle_click_empty(mob/user) to_chat(user, "The [name] whizzles quietly.") - -/obj/item/gun/magic/suicide_act(mob/user) - user.visible_message("[user] is twisting [src] above their head, releasing a magical blast! It looks like they are trying to commit suicide!") - playsound(loc, fire_sound, 50, 1, -1) - return (FIRELOSS) - -/obj/item/gun/magic/vv_edit_var(var_name, var_value) - . = ..() - switch(var_name) - if(NAMEOF(src, charges)) - recharge_newshot() diff --git a/code/modules/projectiles/guns/magic/staff.dm b/code/modules/projectiles/guns/magic/staff.dm index 2cb005d1b736..d241016b7843 100644 --- a/code/modules/projectiles/guns/magic/staff.dm +++ b/code/modules/projectiles/guns/magic/staff.dm @@ -23,7 +23,7 @@ name = "staff of healing" desc = "An artefact that spits bolts of restoring magic which can remove ailments of all kinds and even raise the dead." fire_sound = 'sound/magic/staff_healing.ogg' - ammo_type = /obj/item/ammo_casing/magic/heal + projectile_type = /obj/projectile/magic/resurrection icon_state = "staffofhealing" item_state = "staffofhealing" @@ -51,7 +51,7 @@ name = "staff of door creation" desc = "An artefact that spits bolts of transformative magic that can create doors in walls." fire_sound = 'sound/magic/staff_door.ogg' - ammo_type = /obj/item/ammo_casing/magic/door + projectile_type = /obj/projectile/magic/door icon_state = "staffofdoor" item_state = "staffofdoor" max_charges = 10 @@ -62,7 +62,7 @@ name = "staff of the honkmother" desc = "Honk." fire_sound = 'sound/items/airhorn.ogg' - ammo_type = /obj/item/ammo_casing/magic/honk + projectile_type = /obj/projectile/bullet/honker/lethal/heavy icon_state = "honker" item_state = "honker" max_charges = 4 diff --git a/code/modules/projectiles/guns/magic/wand.dm b/code/modules/projectiles/guns/magic/wand.dm index e0962e4e9f72..db818d8cc2f8 100644 --- a/code/modules/projectiles/guns/magic/wand.dm +++ b/code/modules/projectiles/guns/magic/wand.dm @@ -1,7 +1,6 @@ /obj/item/gun/magic/wand name = "wand of nothing" desc = "It's not just a stick, it's a MAGIC stick!" - ammo_type = /obj/item/ammo_casing/magic icon_state = "nothingwand" item_state = "wand" w_class = WEIGHT_CLASS_SMALL @@ -59,7 +58,7 @@ name = "wand of death" desc = "This deadly wand overwhelms the victim's body with pure energy, slaying them without fail." fire_sound = 'sound/magic/wandodeath.ogg' - ammo_type = /obj/item/ammo_casing/magic/death + projectile_type = /obj/projectile/magic/death icon_state = "deathwand" max_charges = 3 //3, 2, 2, 1 @@ -134,7 +133,7 @@ /obj/item/gun/magic/wand/teleport name = "wand of teleportation" desc = "This wand will wrench targets through space and time to move them somewhere else." - ammo_type = /obj/item/ammo_casing/magic/teleport + projectile_type = /obj/projectile/magic/teleport fire_sound = 'sound/magic/wand_teleport.ogg' icon_state = "telewand" max_charges = 10 //10, 5, 5, 4 @@ -155,7 +154,7 @@ /obj/item/gun/magic/wand/door name = "wand of door creation" desc = "This particular wand can create doors in any wall for the unscrupulous wizard who shuns teleportation magics." - ammo_type = /obj/item/ammo_casing/magic/door + projectile_type = /obj/projectile/magic/door icon_state = "doorwand" fire_sound = 'sound/magic/staff_door.ogg' max_charges = 20 //20, 10, 10, 7 @@ -174,7 +173,7 @@ name = "wand of fireball" desc = "This wand shoots scorching balls of fire that explode into destructive flames." fire_sound = 'sound/magic/fireball.ogg' - ammo_type = /obj/item/ammo_casing/magic/fireball + projectile_type = /obj/projectile/magic/aoe/fireball icon_state = "firewand" max_charges = 8 //8, 4, 4, 3 @@ -190,7 +189,7 @@ /obj/item/gun/magic/wand/arcane name = "wand of arcane missile" desc = "This wand fires off small bolts of concentrated magic energy, searing any victim." - ammo_type = /obj/item/ammo_casing/magic/arcane_barrage + projectile_type = /obj/projectile/magic/arcane_barrage fire_sound = 'sound/weapons/mmlbuster.ogg' icon_state = "arcanewand" max_charges = 20 //20, 10, 10, 7 diff --git a/code/modules/projectiles/projectile/arc.dm b/code/modules/projectiles/projectile/arc.dm deleted file mode 100644 index 8277bd2bfa5f..000000000000 --- a/code/modules/projectiles/projectile/arc.dm +++ /dev/null @@ -1,105 +0,0 @@ -// These projectiles are somewhat different from the other projectiles in the code. -// First, these have an 'arcing' visual, that is accomplished by having the projectile icon rotate as its flying, and -// moving up, then down as it approaches the target. There is also a small shadow effect that follows the projectile -// as its flying. - -// Besides the visuals, arcing projectiles do not collide with anything until they reach the target, as they fly over them. -// For best effect, use this only when it makes sense to do so, IE on the Surface. The projectiles don't care about ceilings or gravity. - -/obj/projectile/arc - name = "arcing shot" - icon_state = "fireball" // WIP - movement_type = MOVEMENT_UNSTOPPABLE - impact_ground_on_expiry = TRUE - plane = ABOVE_PLANE // Since projectiles are 'in the air', they might visually overlap mobs while in flight, so the projectile needs to be above their plane. - speed = 10 * WORLD_ICON_SIZE - var/fired_dir = null // Which direction was the projectile fired towards. Needed to invert the projectile turning based on if facing left or right. - var/distance_to_fly = null // How far, in pixels, to fly for. Will call on_range() when this is passed. - var/visual_y_offset = -16 // Adjusts how high the projectile and its shadow start, visually. This is so the projectile and shadow align with the center of the tile. - var/obj/effect/projectile_shadow/shadow = null // Visual indicator for the projectile's 'true' position. Needed due to being bound to two dimensions in reality. - - -/obj/projectile/arc/Initialize(mapload) - shadow = new(get_turf(src)) - return ..() - -/obj/projectile/arc/Destroy() - QDEL_NULL(shadow) - return ..() - -/obj/projectile/arc/proc/calculate_initial_pixel_distance(atom/user, atom/target) - var/datum/point/A = new(user) - var/datum/point/B = new(target) - - // Set the pixel offsets if they exist. - A.x += (p_x - 16) - A.y += (p_y - 16) - - return pixel_length_between_points(A, B) - -/obj/projectile/arc/proc/distance_flown() - var/datum/point/current_point = new(src) - var/datum/point/starting_point = new(starting) - return pixel_length_between_points(current_point, starting_point) - -/obj/projectile/arc/launch_projectile(atom/target, target_zone, mob/user, params, angle_override, forced_spread = 0) - fired_dir = get_dir(user, target) // Used to determine if the projectile should turn in the air. - distance_to_fly = calculate_initial_pixel_distance(user, target) // Calculates how many pixels to travel before hitting the ground. - ..() // Does the actual launching. The projectile will be out after this. - -// For legacy. -/obj/projectile/arc/old_style_target(atom/target, atom/source) - ..() - fired_dir = get_dir(source, target) - distance_to_fly = calculate_initial_pixel_distance(source, target) - -/obj/projectile/arc/physics_iteration(pixels) - // Do the other important stuff first. - . = ..() - - // Test to see if its time to 'hit the ground'. - var/pixels_flown = distance_flown() - - if(pixels_flown >= distance_to_fly) - legacy_on_range() // This will also cause the projectile to be deleted. - - else - // Handle visual projectile turning in flight. - var/arc_progress = clamp( pixels_flown / distance_to_fly, 0, 1) - var/new_visual_degree = LERP(45, 135, arc_progress) - - if(fired_dir & EAST) - adjust_rotation(new_visual_degree) - else if(fired_dir & WEST) - adjust_rotation(-new_visual_degree) - - // Now for the fake height. - var/arc_max_pixel_height = distance_to_fly / 2 - var/sine_position = arc_progress * 180 - var/pixel_z_position = (arc_max_pixel_height * sin(sine_position)) + visual_y_offset - animate(src, pixel_z = pixel_z_position, time = 1, flags = ANIMATION_END_NOW) - - // Update our shadow. - if(shadow) - shadow.forceMove(loc) - shadow.pixel_x = pixel_x - shadow.pixel_y = pixel_y + visual_y_offset - -/obj/effect/projectile_shadow - name = "shadow" - desc = "You better avoid the thing coming down!" - icon = 'icons/obj/projectiles.dmi' - icon_state = "arc_shadow" - anchored = TRUE - animate_movement = 0 // Just like the projectile it's following. - -//* We do not hit normally. *// - -/obj/projectile/arc/scan_crossed_atom(atom/movable/target) - return - -/obj/projectile/arc/scan_moved_turf(turf/tile) - return - -/obj/projectile/arc/impact_loop(turf/was_moving_onto, atom/bumped) - return diff --git a/code/modules/projectiles/projectile/projectile-tracing.dm b/code/modules/projectiles/projectile/projectile-tracing.dm index e156e6af477d..03bc955feebf 100644 --- a/code/modules/projectiles/projectile/projectile-tracing.dm +++ b/code/modules/projectiles/projectile/projectile-tracing.dm @@ -20,9 +20,20 @@ var/only_opacity = FALSE /// do we only need to reach their turf? var/require_turf_only = FALSE + /// go through everything until hitting target + var/bypass_everything_until_target = FALSE /// target turf, if we only require reaching their turf var/turf/require_turf_cached + /// things that were hit + var/list/atom/scanned_atoms = list() + +/obj/projectile/trace/Destroy() + // you get until the end of the call stack to access the entities hit. + spawn(0) + scanned_atoms = null + return ..() + /obj/projectile/trace/CanPassThrough(atom/blocker, turf/target, blocker_opinion) if(only_opacity && !blocker.opacity) return TRUE @@ -33,10 +44,13 @@ could_hit_target = TRUE if(del_on_success) return PROJECTILE_IMPACT_DELETE + else if(bypass_everything_until_target) + impact_flags |= PROJECTILE_IMPACT_PASSTHROUGH if(get_turf(target) == require_turf_cached) could_hit_target = TRUE if(del_on_success) return PROJECTILE_IMPACT_DELETE + scanned_atoms += target . = ..() // tracers only count as 'can move across' if pre_impact() says we should phase/pierce. if(. & PROJECTILE_IMPACT_FLAGS_SHOULD_GO_THROUGH) @@ -61,8 +75,23 @@ /** * always call this before firing. + * + * * this should be called when we're on turf + * * this'll set angle if auto_set_angle is set + * + * @return TRUE / FALSE; FALSE if we failed */ -/obj/projectile/trace/proc/prepare_trace(atom/target) +/obj/projectile/trace/proc/prepare_trace(atom/target, auto_set_angle) + if(!z) + return FALSE + var/turf/target_turf = get_turf(target) + if(!target_turf) + return FALSE + src.original_target = target + if(auto_set_angle) + src.set_angle(arctan(target_turf.y - loc.y, target_turf.x - loc.x)) if(require_turf_only) src.require_turf_cached = get_turf(target) + + return TRUE diff --git a/code/modules/projectiles/projectile/projectile.dm b/code/modules/projectiles/projectile/projectile.dm index 29762896baad..489ec2c9828c 100644 --- a/code/modules/projectiles/projectile/projectile.dm +++ b/code/modules/projectiles/projectile/projectile.dm @@ -105,6 +105,8 @@ /// /// * this is configured at runtime and can be edited /// * this is non /tmp because this is infact serializable + /// * you must set this to a list of instances to use it; this is an advanced feature, and there's no guard-rails! + /// * the projectile will never modify the instances in here. VAR_PROTECTED/list/additional_projectile_effects //* Configuration *// @@ -339,7 +341,22 @@ /obj/projectile/Initialize(mapload) if(islist(base_projectile_effects)) - base_projectile_effects = typelist(NAMEOF(src, base_projectile_effects), base_projectile_effects) + var/list/existing_typelist = get_typelist(NAMEOF(src, base_projectile_effects)) + if(existing_typelist) + base_projectile_effects = existing_typelist + else + // generate, and process one + for(var/i in 1 to length(base_projectile_effects)) + var/datum/projectile_effect/effectlike = base_projectile_effects[i] + if(ispath(effectlike)) + effectlike = new effectlike + else if(IS_ANONYMOUS_TYPEPATH(effectlike)) + effectlike = new effectlike + else if(istype(effectlike)) + else + stack_trace("tried to make a projectile with an invalid effect in base_projectile_effects") + base_projectile_effects[i] = effectlike + base_projectile_effects = typelist(NAMEOF(src, base_projectile_effects), base_projectile_effects) return ..() /obj/projectile/Destroy() @@ -375,6 +392,13 @@ // setup impact checking impacted = list() + // handle direct hit + if(direct_target) + // todo: this should make a muzzle flash + impact(direct_target, PROJECTILE_IMPACT_POINT_BLANK, def_zone) + // todo: janky but whatever it works + if(QDELETED(src)) + return // make sure firer is in it if(firer && !no_source_check) impacted[firer] = TRUE @@ -392,14 +416,6 @@ // set angle if needed if(isnum(set_angle_to)) set_angle(set_angle_to) - // handle direct hit - if(direct_target) - if(direct_target.bullet_act(src, PROJECTILE_IMPACT_POINT_BLANK, def_zone) & PROJECTILE_IMPACT_FLAGS_SHOULD_GO_THROUGH) - impacted[direct_target] = TRUE - else - // todo: this should make a muzzle flash - qdel(src) - return // setup physics setup_physics() @@ -521,9 +537,6 @@ return damage_force return 0 -/obj/projectile/proc/check_fire(atom/target as mob, mob/living/user as mob) //Checks if you can hit them or not. - check_trajectory(target, user, pass_flags, atom_flags) - /** * i hate everything * diff --git a/code/modules/projectiles/projectile/projectile_effect/detonation.dm b/code/modules/projectiles/projectile/projectile_effect/detonation.dm new file mode 100644 index 000000000000..71a53325d68f --- /dev/null +++ b/code/modules/projectiles/projectile/projectile_effect/detonation.dm @@ -0,0 +1,50 @@ +//* This file is explicitly licensed under the MIT license. *// +//* Copyright (c) 2024 Citadel Station Developers *// + +/** + * projectile effects that detonate + * + * * has default handling for piercing + */ +/datum/projectile_effect/detonation + hook_impact = TRUE + + /// detonate on end + var/detonate_on_lifetime = FALSE + /// trigger even while piercing + /// + /// * extremely dangerous to set, hence why detonate_delete_self needs to be changed too for it to work. + var/detonate_on_pierce = FALSE + /// if we would otherwise pierce, just detonate and delete anyways + /// + /// * otherwise, detonation just won't trigger if we pierce + var/detonate_prevent_pierce = TRUE + +/datum/projectile_effect/detonation/on_impact(obj/projectile/proj, atom/target, impact_flags, def_zone) + // if we're not hitting don't do anything + if(impact_flags & PROJECTILE_IMPACT_FLAGS_SHOULD_NOT_HIT) + return + // don't do anything if we're not hitting a turf + // moving_to just makes sure we still go off if target is deleted + var/turf/target_turf = get_turf(target) || proj.trajectory_moving_to + if(!isturf(target_turf)) + return + // prevent_pierce forces detonation + deletion on impact always + if(detonate_prevent_pierce) + detonation(target_turf) + return impact_flags | PROJECTILE_IMPACT_DELETE + // if we're piercing, we will return + // pierce means going through, even if it's not piercing. + if((impact_flags & PROJECTILE_IMPACT_FLAGS_SHOULD_GO_THROUGH) && !detonate_on_pierce) + return + detonation(target_turf) + +/datum/projectile_effect/detonation/on_lifetime(obj/projectile/proj, impact_ground_on_expiry) + if(!detonate_on_lifetime || impact_ground_on_expiry) // if impacting ground that'll handle it + return + if(!isturf(proj.loc)) + return + detonation(proj.loc) + +/datum/projectile_effect/detonation/proc/detonation(turf/where) + return diff --git a/code/modules/projectiles/projectile/projectile_effect/detonation/legacy_emp.dm b/code/modules/projectiles/projectile/projectile_effect/detonation/legacy_emp.dm new file mode 100644 index 000000000000..12bd589c7289 --- /dev/null +++ b/code/modules/projectiles/projectile/projectile_effect/detonation/legacy_emp.dm @@ -0,0 +1,11 @@ +//* This file is explicitly licensed under the MIT license. *// +//* Copyright (c) 2024 Citadel Station Developers *// + +/datum/projectile_effect/detonation/legacy_emp + var/sev_1 + var/sev_2 + var/sev_3 + var/sev_4 + +/datum/projectile_effect/detonation/legacy_emp/detonation(turf/where) + empulse(where, sev_1, sev_2, sev_3, sev_4) diff --git a/code/modules/projectiles/projectile/projectile_effect/detonation/legacy_explosion.dm b/code/modules/projectiles/projectile/projectile_effect/detonation/legacy_explosion.dm new file mode 100644 index 000000000000..fe75ccc6dd6a --- /dev/null +++ b/code/modules/projectiles/projectile/projectile_effect/detonation/legacy_explosion.dm @@ -0,0 +1,10 @@ +//* This file is explicitly licensed under the MIT license. *// +//* Copyright (c) 2024 Citadel Station Developers *// + +/datum/projectile_effect/detonation/legacy_explosion + var/sev_1 + var/sev_2 + var/sev_3 + +/datum/projectile_effect/detonation/legacy_explosion/detonation(turf/where) + explosion(where, sev_1, sev_2, sev_3) diff --git a/code/modules/projectiles/projectile/subtypes/animate.dm b/code/modules/projectiles/projectile/subtypes/animate.dm index 885253b8cf7a..5bf6129a23cf 100644 --- a/code/modules/projectiles/projectile/subtypes/animate.dm +++ b/code/modules/projectiles/projectile/subtypes/animate.dm @@ -1,3 +1,6 @@ +/** + * todo: refactor this maybe? + */ /obj/projectile/animate name = "bolt of animation" icon_state = "ice_1" diff --git a/code/modules/projectiles/projectile/subtypes/arc.dm b/code/modules/projectiles/projectile/subtypes/arc.dm index 805b9fd726cf..908c8e0553b5 100644 --- a/code/modules/projectiles/projectile/subtypes/arc.dm +++ b/code/modules/projectiles/projectile/subtypes/arc.dm @@ -1,82 +1,106 @@ +// These projectiles are somewhat different from the other projectiles in the code. +// First, these have an 'arcing' visual, that is accomplished by having the projectile icon rotate as its flying, and +// moving up, then down as it approaches the target. There is also a small shadow effect that follows the projectile +// as its flying. -////////////// -// Subtypes -////////////// +// Besides the visuals, arcing projectiles do not collide with anything until they reach the target, as they fly over them. +// For best effect, use this only when it makes sense to do so, IE on the Surface. The projectiles don't care about ceilings or gravity. -// This is a test projectile in the sense that its testing the code to make sure it works, -// as opposed to a 'can I hit this thing' projectile. -/obj/projectile/arc/test/on_impact(atom/target, impact_flags, def_zone, efficiency) - . = ..() - if(!isturf(target)) - return - var/turf/T = target - new /obj/effect/explosion(T) - T.color = "#FF0000" - -// Generic, Hivebot related -/obj/projectile/arc/blue_energy - name = "energy missile" - icon_state = "force_missile" - damage_force = 15 - damage_type = DAMAGE_TYPE_BURN - -/obj/projectile/arc/blue_energy/on_impact(atom/target, impact_flags, def_zone, efficiency) - . = ..() - if(!isturf(target)) - return - var/turf/T = target - for(var/mob/living/L in T) - impact(L) - -// Fragmentation arc shot -/obj/projectile/arc/fragmentation - name = "fragmentation shot" - icon_state = "shell" - var/list/fragment_types = list( - /obj/projectile/bullet/pellet/fragment, /obj/projectile/bullet/pellet/fragment, \ - /obj/projectile/bullet/pellet/fragment, /obj/projectile/bullet/pellet/fragment/strong - ) - var/fragment_amount = 63 // Same as a grenade. - var/spread_range = 7 - -/obj/projectile/arc/fragmentation/on_impact(atom/target, impact_flags, def_zone, efficiency) - . = ..() - if(!isturf(target)) - return - var/turf/T = target - T.shrapnel_explosion(fragment_amount, spread_range, fragment_types, src, name, firer) - -/obj/projectile/arc/fragmentation/mortar - icon_state = "mortar" - fragment_amount = 10 - spread_range = 3 - -// EMP arc shot -/obj/projectile/arc/emp_blast - name = "emp blast" - icon_state = "bluespace" - -/obj/projectile/arc/emp_blast/on_impact(atom/target, impact_flags, def_zone, efficiency) - var/turf/T = target - empulse(T, 2, 4, 7, 10) // Normal EMP grenade. - return impact_flags - -/obj/projectile/arc/emp_blast/weak/on_impact(atom/target, impact_flags, def_zone, efficiency) - var/turf/T = target - empulse(T, 1, 2, 3, 4) // Sec EMP grenade. - return impact_flags - -// Radiation arc shot -/obj/projectile/arc/radioactive - name = "radiation blast" - icon_state = "green_pellet" - icon_scale_x = 2 - icon_scale_y = 2 - var/rad_power = RAD_INTENSITY_PROJ_ARC - -/obj/projectile/arc/radioactive/on_impact(atom/target, impact_flags, def_zone, efficiency) +// todo: better description; this type does have an excuse to have special behavior. +/obj/projectile/arc + name = "arcing shot" + icon_state = "fireball" // WIP + movement_type = MOVEMENT_UNSTOPPABLE + impact_ground_on_expiry = TRUE + plane = ABOVE_PLANE // Since projectiles are 'in the air', they might visually overlap mobs while in flight, so the projectile needs to be above their plane. + speed = 10 * WORLD_ICON_SIZE + var/fired_dir = null // Which direction was the projectile fired towards. Needed to invert the projectile turning based on if facing left or right. + var/distance_to_fly = null // How far, in pixels, to fly for. Will call on_range() when this is passed. + var/visual_y_offset = -16 // Adjusts how high the projectile and its shadow start, visually. This is so the projectile and shadow align with the center of the tile. + var/obj/effect/projectile_shadow/shadow = null // Visual indicator for the projectile's 'true' position. Needed due to being bound to two dimensions in reality. + + +/obj/projectile/arc/Initialize(mapload) + shadow = new(get_turf(src)) + return ..() + +/obj/projectile/arc/Destroy() + QDEL_NULL(shadow) + return ..() + +/obj/projectile/arc/proc/calculate_initial_pixel_distance(atom/user, atom/target) + var/datum/point/A = new(user) + var/datum/point/B = new(target) + + // Set the pixel offsets if they exist. + A.x += (p_x - 16) + A.y += (p_y - 16) + + return pixel_length_between_points(A, B) + +/obj/projectile/arc/proc/distance_flown() + var/datum/point/current_point = new(src) + var/datum/point/starting_point = new(starting) + return pixel_length_between_points(current_point, starting_point) + +/obj/projectile/arc/launch_projectile(atom/target, target_zone, mob/user, params, angle_override, forced_spread = 0) + fired_dir = get_dir(user, target) // Used to determine if the projectile should turn in the air. + distance_to_fly = calculate_initial_pixel_distance(user, target) // Calculates how many pixels to travel before hitting the ground. + ..() // Does the actual launching. The projectile will be out after this. + +// For legacy. +/obj/projectile/arc/old_style_target(atom/target, atom/source) + ..() + fired_dir = get_dir(source, target) + distance_to_fly = calculate_initial_pixel_distance(source, target) + +/obj/projectile/arc/physics_iteration(pixels) + // Do the other important stuff first. . = ..() - if(!isturf(target)) - return - var/turf/T = target - radiation_pulse(T, rad_power) + + // Test to see if its time to 'hit the ground'. + var/pixels_flown = distance_flown() + + if(pixels_flown >= distance_to_fly) + legacy_on_range() // This will also cause the projectile to be deleted. + + else + // Handle visual projectile turning in flight. + var/arc_progress = clamp( pixels_flown / distance_to_fly, 0, 1) + var/new_visual_degree = LERP(45, 135, arc_progress) + + if(fired_dir & EAST) + adjust_rotation(new_visual_degree) + else if(fired_dir & WEST) + adjust_rotation(-new_visual_degree) + + // Now for the fake height. + var/arc_max_pixel_height = distance_to_fly / 2 + var/sine_position = arc_progress * 180 + var/pixel_z_position = (arc_max_pixel_height * sin(sine_position)) + visual_y_offset + animate(src, pixel_z = pixel_z_position, time = 1, flags = ANIMATION_END_NOW) + + // Update our shadow. + if(shadow) + shadow.forceMove(loc) + shadow.pixel_x = pixel_x + shadow.pixel_y = pixel_y + visual_y_offset + +/obj/effect/projectile_shadow + name = "shadow" + desc = "You better avoid the thing coming down!" + icon = 'icons/obj/projectiles.dmi' + icon_state = "arc_shadow" + anchored = TRUE + animate_movement = 0 // Just like the projectile it's following. + +//* We do not hit normally. *// + +/obj/projectile/arc/scan_crossed_atom(atom/movable/target) + return + +/obj/projectile/arc/scan_moved_turf(turf/tile) + return + +/obj/projectile/arc/impact_loop(turf/was_moving_onto, atom/bumped) + return diff --git a/code/modules/projectiles/projectile/subtypes/arc/arc.dm b/code/modules/projectiles/projectile/subtypes/arc/arc.dm new file mode 100644 index 000000000000..805b9fd726cf --- /dev/null +++ b/code/modules/projectiles/projectile/subtypes/arc/arc.dm @@ -0,0 +1,82 @@ + +////////////// +// Subtypes +////////////// + +// This is a test projectile in the sense that its testing the code to make sure it works, +// as opposed to a 'can I hit this thing' projectile. +/obj/projectile/arc/test/on_impact(atom/target, impact_flags, def_zone, efficiency) + . = ..() + if(!isturf(target)) + return + var/turf/T = target + new /obj/effect/explosion(T) + T.color = "#FF0000" + +// Generic, Hivebot related +/obj/projectile/arc/blue_energy + name = "energy missile" + icon_state = "force_missile" + damage_force = 15 + damage_type = DAMAGE_TYPE_BURN + +/obj/projectile/arc/blue_energy/on_impact(atom/target, impact_flags, def_zone, efficiency) + . = ..() + if(!isturf(target)) + return + var/turf/T = target + for(var/mob/living/L in T) + impact(L) + +// Fragmentation arc shot +/obj/projectile/arc/fragmentation + name = "fragmentation shot" + icon_state = "shell" + var/list/fragment_types = list( + /obj/projectile/bullet/pellet/fragment, /obj/projectile/bullet/pellet/fragment, \ + /obj/projectile/bullet/pellet/fragment, /obj/projectile/bullet/pellet/fragment/strong + ) + var/fragment_amount = 63 // Same as a grenade. + var/spread_range = 7 + +/obj/projectile/arc/fragmentation/on_impact(atom/target, impact_flags, def_zone, efficiency) + . = ..() + if(!isturf(target)) + return + var/turf/T = target + T.shrapnel_explosion(fragment_amount, spread_range, fragment_types, src, name, firer) + +/obj/projectile/arc/fragmentation/mortar + icon_state = "mortar" + fragment_amount = 10 + spread_range = 3 + +// EMP arc shot +/obj/projectile/arc/emp_blast + name = "emp blast" + icon_state = "bluespace" + +/obj/projectile/arc/emp_blast/on_impact(atom/target, impact_flags, def_zone, efficiency) + var/turf/T = target + empulse(T, 2, 4, 7, 10) // Normal EMP grenade. + return impact_flags + +/obj/projectile/arc/emp_blast/weak/on_impact(atom/target, impact_flags, def_zone, efficiency) + var/turf/T = target + empulse(T, 1, 2, 3, 4) // Sec EMP grenade. + return impact_flags + +// Radiation arc shot +/obj/projectile/arc/radioactive + name = "radiation blast" + icon_state = "green_pellet" + icon_scale_x = 2 + icon_scale_y = 2 + var/rad_power = RAD_INTENSITY_PROJ_ARC + +/obj/projectile/arc/radioactive/on_impact(atom/target, impact_flags, def_zone, efficiency) + . = ..() + if(!isturf(target)) + return + var/turf/T = target + radiation_pulse(T, rad_power) diff --git a/code/modules/projectiles/projectile/subtypes/beam.dm b/code/modules/projectiles/projectile/subtypes/beam.dm new file mode 100644 index 000000000000..eeb52bfd1a56 --- /dev/null +++ b/code/modules/projectiles/projectile/subtypes/beam.dm @@ -0,0 +1,25 @@ +/** + * Supertype of many different types of beams. + * + * * This is a type that should have no special behavior! + */ +/obj/projectile/beam + name = "laser" + icon_state = "laser" + fire_sound = 'sound/weapons/weaponsounds_laserstrong.ogg' + pass_flags = ATOM_PASS_TABLE | ATOM_PASS_GLASS | ATOM_PASS_GRILLE + damage_force = 40 + damage_type = DAMAGE_TYPE_BURN + damage_flag = ARMOR_LASER + projectile_type = PROJECTILE_TYPE_BEAM | PROJECTILE_TYPE_PHOTONIC + eyeblur = 4 + hitscan = TRUE + embed_chance = 0 + light_range = 2 + light_power = 0.5 + light_color = "#FF0D00" + impact_sounds = list(BULLET_IMPACT_MEAT = SOUNDS_LASER_MEAT, BULLET_IMPACT_METAL = SOUNDS_LASER_METAL) + + muzzle_type = /obj/effect/projectile/muzzle/laser + tracer_type = /obj/effect/projectile/tracer/laser + impact_type = /obj/effect/projectile/impact/laser diff --git a/code/modules/projectiles/projectile/subtypes/beam/beams.dm b/code/modules/projectiles/projectile/subtypes/beam/beams.dm index 7a95311c1a2c..d83d27afc40f 100644 --- a/code/modules/projectiles/projectile/subtypes/beam/beams.dm +++ b/code/modules/projectiles/projectile/subtypes/beam/beams.dm @@ -1,24 +1,3 @@ -/obj/projectile/beam - name = "laser" - icon_state = "laser" - fire_sound = 'sound/weapons/weaponsounds_laserstrong.ogg' - pass_flags = ATOM_PASS_TABLE | ATOM_PASS_GLASS | ATOM_PASS_GRILLE - damage_force = 40 - damage_type = DAMAGE_TYPE_BURN - damage_flag = ARMOR_LASER - projectile_type = PROJECTILE_TYPE_BEAM | PROJECTILE_TYPE_PHOTONIC - eyeblur = 4 - var/frequency = 1 - hitscan = TRUE - embed_chance = 0 - light_range = 2 - light_power = 0.5 - light_color = "#FF0D00" - impact_sounds = list(BULLET_IMPACT_MEAT = SOUNDS_LASER_MEAT, BULLET_IMPACT_METAL = SOUNDS_LASER_METAL) - - muzzle_type = /obj/effect/projectile/muzzle/laser - tracer_type = /obj/effect/projectile/tracer/laser - impact_type = /obj/effect/projectile/impact/laser /obj/projectile/beam/practice name = "laser" diff --git a/code/modules/projectiles/projectile/subtypes/bullet/bullets.dm b/code/modules/projectiles/projectile/subtypes/bullet/bullets.dm new file mode 100644 index 000000000000..b9d593ca1c79 --- /dev/null +++ b/code/modules/projectiles/projectile/subtypes/bullet/bullets.dm @@ -0,0 +1,498 @@ + +/* short-casing projectiles, like the kind used in pistols or SMGs */ + +/obj/projectile/bullet/pistol // 9mm pistols and most SMGs. Sacrifice power for capacity. + fire_sound = 'sound/weapons/weaponsounds_smallpistolshot.ogg' + damage_force = 20 + +/obj/projectile/bullet/pistol/lap //Light Armor Piercing + damage_force = 20 + armor_penetration = 10 + +/obj/projectile/bullet/pistol/ap + damage_force = 15 + armor_penetration = 30 + +/obj/projectile/bullet/pistol/hp + damage_force = 25 + armor_penetration = -50 + +/obj/projectile/bullet/pistol/hunter + damage_force = 15 + SA_bonus_damage = 25 // 40 total against animals + SA_vulnerability = MOB_CLASS_ANIMAL + embed_chance = -1 + +/obj/projectile/bullet/pistol/silver + damage_force = 15 + SA_bonus_damage = 25 // 40 total against demons + SA_vulnerability = MOB_CLASS_DEMONIC + embed_chance = -1 + holy = TRUE + +/obj/projectile/bullet/pistol/medium // .45 (and maybe .40 if it ever gets added) caliber security pistols. Balance between capacity and power. + fire_sound = 'sound/weapons/weaponsounds_pistolshot.ogg' // Snappier sound. + damage_force = 25 + +/obj/projectile/bullet/pistol/medium/ap + damage_force = 20 + armor_penetration = 15 + +/obj/projectile/bullet/pistol/medium/hp + damage_force = 30 + armor_penetration = -50 + +/obj/projectile/bullet/pistol/medium/hunter + damage_force = 15 + SA_bonus_damage = 45 // 60 total against animals + SA_vulnerability = MOB_CLASS_ANIMAL + embed_chance = -1 + +/obj/projectile/bullet/pistol/medium/silver + damage_force = 15 + SA_bonus_damage = 45 // 60 total against demons + SA_vulnerability = MOB_CLASS_DEMONIC | MOB_CLASS_ABERRATION + embed_chance = -1 + holy = TRUE + +/obj/projectile/bullet/pistol/medium/ap/suppressor // adminspawn only + name = "suppressor bullet" // this guy is Important and also Hates You + fire_sound = 'sound/weapons/doompistol.ogg' // converted from .wavs extracted from doom 2 + damage_force = 10 // high rof kinda fucked up lets be real + agony = 10 // brute easily heals, agony not so much + armor_penetration = 30 // reduces shield blockchance + accuracy_overall_modify = 0.8 // heehoo + speed = 25 * WORLD_ICON_SIZE + +/obj/projectile/bullet/pistol/medium/ap/suppressor/turbo // spicy boys + speed = 50 * WORLD_ICON_SIZE + +/obj/projectile/bullet/pistol/strong // .357 and .44 caliber stuff. High power pistols like the Mateba or Desert Eagle. Sacrifice capacity for power. + fire_sound = 'sound/weapons/weaponsounds_heavypistolshot.ogg' + damage_force = 60 + +/obj/projectile/bullet/pistol/strong/silver //Because all Demons need to die + fire_sound = 'sound/weapons/weaponsounds_heavypistolshot.ogg' + damage_force = 40 + SA_bonus_damage = 80 // 120 total against demons + SA_vulnerability = MOB_CLASS_DEMONIC | MOB_CLASS_ABERRATION + embed_chance = -1 + holy = TRUE + +/obj/projectile/bullet/pistol/rubber // "Rubber" bullets for all other pistols. + name = "rubber bullet" + damage_force = 5 + agony = 40 + embed_chance = 0 + damage_mode = NONE + damage_flag = ARMOR_MELEE + fire_sound ='sound/weapons/weaponsounds_smallpistolshot.ogg' // It may be rubber shots but it's still a gun homie it shouldn't be as pathetic as it was + +/obj/projectile/bullet/pistol/rubber/strong // "Rubber" bullets for high power pistols. + fire_sound = 'sound/weapons/weaponsounds_heavypistolshot.ogg' // Rubber shots have less powder, but these still have more punch than normal rubber shot. + damage_force = 10 + agony = 60 + embed_chance = 0 + damage_flag = ARMOR_MELEE + +/obj/projectile/bullet/pistol/spin // Special weak ammo for Service Spin mode. + fire_sound = 'sound/weapons/weaponsounds_smallpistolshot.ogg' + damage_force = 5 + SA_bonus_damage = 10 // 15 total against demons + SA_vulnerability = MOB_CLASS_DEMONIC | MOB_CLASS_ABERRATION + holy = TRUE + +/* shotgun projectiles */ + +/obj/projectile/bullet/shotgun + name = "slug" + fire_sound = 'sound/weapons/weaponsounds_shotgunshot.ogg' + damage_force = 50 + armor_penetration = 15 + +/obj/projectile/bullet/shotgun/beanbag //because beanbags are not bullets + name = "beanbag" + damage_force = 20 + agony = 60 + embed_chance = 0 + damage_mode = NONE + damage_flag = ARMOR_MELEE + +//Should do about 80 damage at 1 tile distance (adjacent), and 50 damage at 3 tiles distance. +//Overall less damage than slugs in exchange for more damage at very close range and more embedding +/obj/projectile/bullet/pellet/shotgun + name = "shrapnel" + fire_sound = 'sound/weapons/weaponsounds_shotgunshot.ogg' + damage_force = 13 + pellets = 6 + pellet_loss = 0.66 / WORLD_ICON_SIZE + +/obj/projectile/bullet/pellet/shotgun_improvised + name = "shrapnel" + damage_force = 4 + pellets = 10 + +/obj/projectile/bullet/pellet/shotgun/flak + damage_force = 2 //The main weapon using these fires four at a time, usually with different destinations. Usually. + armor_penetration = 10 + +// This is my boomstick, +/obj/projectile/bullet/pellet/shotgun/silver + name = "shrapnel" + fire_sound = 'sound/weapons/weaponsounds_shotgunshot.ogg' + damage_force = 10 + SA_bonus_damage = 16 // Potential 156 Damage against demons at point blank. + SA_vulnerability = MOB_CLASS_DEMONIC | MOB_CLASS_ABERRATION + embed_chance = -1 + pellets = 6 + holy = TRUE + +/obj/projectile/bullet/shotgun/stake + name = "stake" + fire_sound = 'sound/weapons/weaponsounds_shotgunshot.ogg' + damage_force = 50 + armor_penetration = 15 + SA_bonus_damage = 16 // Potential 156 Damage against demons at point blank. + SA_vulnerability = MOB_CLASS_DEMONIC | MOB_CLASS_ABERRATION + holy = TRUE + +//EMP shotgun 'slug', it's basically a beanbag that pops a tiny emp when it hits. +/obj/projectile/bullet/shotgun/ion + name = "ion slug" + fire_sound = 'sound/weapons/gunshot/gunshot_tech_huge.ogg' + damage_force = 15 + embed_chance = 0 + damage_mode = NONE + damage_flag = ARMOR_MELEE + combustion = FALSE + + base_projectile_effects = list( + /datum/projectile_effect/detonation/legacy_emp{ + sev_3 = 2; + } + ) + +//Frag shot +/obj/projectile/bullet/shotgun/frag12 + name ="frag12 slug" + damage_force = 25 + +/obj/projectile/bullet/shotgun/frag12/on_impact(atom/target, impact_flags, def_zone, efficiency) + . = ..() + if(. & PROJECTILE_IMPACT_FLAGS_UNCONDITIONAL_ABORT) + return + explosion(target, -1, 0, 1) + . |= PROJECTILE_IMPACT_DELETE + +/* "Rifle" rounds */ + +/obj/projectile/bullet/rifle + fire_sound = 'sound/weapons/Gunshot_generic_rifle.ogg' + armor_penetration = 15 + legacy_penetrating = 1 + +/obj/projectile/bullet/rifle/a762 + fire_sound = 'sound/weapons/weaponsounds_heavyrifleshot.ogg' + damage_force = 35 + +/obj/projectile/bullet/rifle/a762/sniper // Hitscan specifically for sniper ammo; to be implimented at a later date, probably for the SVD. -Ace + fire_sound = 'sound/weapons/weaponsounds_heavyrifleshot.ogg' + hitscan = 1 //so the ammo isn't useless as a sniper weapon + +/obj/projectile/bullet/rifle/a762/ap + damage_force = 30 + armor_penetration = 50 // At 30 or more armor, this will do more damage than standard rounds. + +/obj/projectile/bullet/rifle/a762/ap/silver + damage_force = 30 + armor_penetration = 50 // At 30 or more armor, this will do more damage than standard rounds. + SA_bonus_damage = 30 // 60 total against demons + SA_vulnerability = MOB_CLASS_DEMONIC | MOB_CLASS_ABERRATION + holy = TRUE + +/obj/projectile/bullet/rifle/a762/hp + damage_force = 40 + armor_penetration = -50 + legacy_penetrating = 0 + +/obj/projectile/bullet/rifle/a762/hunter // Optimized for killing simple animals and not people, because Balance(tm) + damage_force = 25 + SA_bonus_damage = 45 // 70 total on animals. + SA_vulnerability = MOB_CLASS_ANIMAL + embed_chance = -1 + +/obj/projectile/bullet/rifle/a762/sniperhunter + damage_force = 25 + SA_bonus_damage = 45 // 70 total on animals. + SA_vulnerability = MOB_CLASS_ANIMAL + embed_chance = -1 + speed = 25 * WORLD_ICON_SIZE + +/obj/projectile/bullet/rifle/a762/silver // Hunting Demons with bolt action rifles. + damage_force = 20 + SA_bonus_damage = 50 // 70 total on animals. + SA_vulnerability = MOB_CLASS_DEMONIC + holy = TRUE + +/obj/projectile/bullet/rifle/a556 + fire_sound = 'sound/weapons/weaponsounds_rifleshot.ogg' + damage_force = 25 + +/obj/projectile/bullet/rifle/a556/ap + damage_force = 20 + armor_penetration = 50 // At 40 or more armor, this will do more damage than standard rounds. + +/obj/projectile/bullet/rifle/a556/hp + damage_force = 35 + armor_penetration = -50 + legacy_penetrating = 0 + +/obj/projectile/bullet/rifle/a556/hunter + damage_force = 15 + SA_bonus_damage = 35 // 50 total on animals. + SA_vulnerability = MOB_CLASS_ANIMAL + +/obj/projectile/bullet/rifle/a12_7mm + fire_sound = 'sound/weapons/Gunshot_cannon.ogg' // This is literally an anti-tank rifle caliber. It better sound like a fucking cannon. + damage_force = 80 + stun = 3 + weaken = 3 + legacy_penetrating = 5 + armor_penetration = 80 + hitscan = 1 //so the PTR isn't useless as a sniper weapon + +/obj/projectile/bullet/mecha/a12mm_gauss //Mecha gauss rifle round. + fire_sound = 'sound/weapons/Gunshot_cannon.ogg' // This is literally an anti-tank rifle caliber. It better sound like a fucking cannon. + damage_force = 60 + legacy_penetrating = 1 + armor_penetration = 60 + +/* Miscellaneous */ + +/obj/projectile/bullet/suffocationbullet//How does this even work? + name = "co bullet" + damage_force = 20 + damage_type = DAMAGE_TYPE_OXY + +/obj/projectile/bullet/cyanideround + name = "poison bullet" + damage_force = 40 + damage_type = DAMAGE_TYPE_TOX + +/obj/projectile/bullet/cyanideround/jezzail + name = "toxic penetrator shard" + damage_force = 25 + armor_penetration = 20 + agony = 5 + embed_chance = 1 + damage_type = DAMAGE_TYPE_TOX + +/obj/projectile/bullet/burstbullet + name = "exploding bullet" + fire_sound = 'sound/soundbytes/effects/explosion/explosion1.ogg' + damage_force = 20 + embed_chance = 0 + damage_mode = DAMAGE_MODE_EDGE + +/obj/projectile/bullet/burstbullet/on_impact(atom/target, impact_flags, def_zone, efficiency) + . = ..() + if(. & PROJECTILE_IMPACT_FLAGS_UNCONDITIONAL_ABORT) + return + explosion(target, -1, 0, 2) + . |= PROJECTILE_IMPACT_DELETE + +/obj/projectile/bullet/burstbullet/service + name = "charge bullet" + fire_sound = 'sound/soundbytes/effects/explosion/explosion1.ogg' + damage_force = 20 + embed_chance = 0 + SA_bonus_damage = 40 // 60 total damage against demons. + SA_vulnerability = MOB_CLASS_DEMONIC | MOB_CLASS_ABERRATION + holy = TRUE + +/obj/projectile/bullet/burstbullet/service/on_impact(atom/target, impact_flags, def_zone, efficiency) + . = ..() + if(. & PROJECTILE_IMPACT_FLAGS_UNCONDITIONAL_ABORT) + return + if(isturf(target)) + explosion(target, 0, 1, 2) + return . | PROJECTILE_IMPACT_DELETE + +/* Black Powder */ + +/obj/projectile/bullet/musket // Big Slow and bad against armor. + fire_sound = 'sound/weapons/weaponsounds_heavypistolshot.ogg' + damage_force = 60 + speed = 8.3 * WORLD_ICON_SIZE + armor_penetration = -50 + +/obj/projectile/bullet/musket/silver // What its a classic + damage_force = 25 + SA_bonus_damage = 75 + SA_vulnerability = MOB_CLASS_DEMONIC | MOB_CLASS_ABERRATION + embed_chance = -1 + holy = TRUE + +/obj/projectile/bullet/pellet/blunderbuss //More Damage at close range greater falloff + damage_force = 10 + pellets = 8 + pellet_loss = 1.5 / WORLD_ICON_SIZE + +/obj/projectile/bullet/pellet/blunderbuss/silver + damage_force = 5 + SA_bonus_damage = 15 + SA_vulnerability = MOB_CLASS_DEMONIC | MOB_CLASS_ABERRATION + embed_chance = -1 + holy = TRUE + +//10 Gauge Shot +/obj/projectile/bullet/heavy_shotgun + name = "heavy slug" + fire_sound = 'sound/weapons/weaponsounds_shotgunshot.ogg' + damage_force = 60 + armor_penetration = 25 + +/obj/projectile/bullet/pellet/heavy_shotgun //I want this to use similar calcuations to blunderbuss shot for falloff. + damage_force = 3 //Fires five pellets at a time. + armor_penetration = 10 + +/obj/projectile/bullet/pellet/heavy_shotgun/silver + damage_force = 3 + SA_bonus_damage = 3 + SA_vulnerability = MOB_CLASS_DEMONIC | MOB_CLASS_ABERRATION + holy = TRUE + +//Special 10g rounds for Grit, since I don't want ALL 10g to do this: +/obj/projectile/bullet/heavy_shotgun/grit + name = "custom heavy slug" + +/obj/projectile/bullet/heavy_shotgun/grit/on_impact(atom/target, impact_flags, def_zone, efficiency) + . = ..() + if(. & PROJECTILE_IMPACT_FLAGS_UNCONDITIONAL_ABORT) + return + if(isliving(target)) + var/mob/living/L = target + var/throwdir = get_dir(firer,L) + if(prob(10) && (efficiency < 0.95)) + L.afflict_stun(20 * 1) + L.Confuse(1) + L.throw_at_old(get_edge_target_turf(L, throwdir), rand(3,6), 10) + +/obj/projectile/bullet/pellet/heavy_shotgun/grit + name = "heavy buckshot" + +/obj/projectile/bullet/pellet/heavy_shotgun/on_impact(atom/target, impact_flags, def_zone, efficiency) + . = ..() + if(. & PROJECTILE_IMPACT_FLAGS_UNCONDITIONAL_ABORT) + return + if(isliving(target)) + var/mob/living/L = target + var/throwdir = get_dir(firer,L) + if(prob(10) && (efficiency >= 0.9)) + L.afflict_stun(2 SECONDS) + L.Confuse(1) + L.throw_at_old(get_edge_target_turf(L, throwdir), rand(3,6), 10) + +/* Incendiary */ + +/obj/projectile/bullet/incendiary + name = "incendiary bullet" + icon_state = "bullet_alt" + damage_force = 15 + damage_type = DAMAGE_TYPE_BURN + incendiary = 1 + flammability = 2 + +/obj/projectile/bullet/incendiary/shotgun + name = "dragonsbreath pellet" + icon_state = "bullet_alt" + damage_force = 10 + damage_type = DAMAGE_TYPE_BURN + incendiary = 1 + flammability = 2 + +/obj/projectile/bullet/incendiary/flamethrower + name = "ball of fire" + desc = "Don't stand in the fire." + icon_state = "fireball" + damage_force = 10 + embed_chance = 0 + //incendiary = 2 //The Trail of Fire doesn't work. + flammability = 4 + agony = 30 + range = WORLD_ICON_SIZE * 4 + vacuum_traversal = 0 + +/obj/projectile/bullet/incendiary/flamethrower/weak + flammability = 2 + +/obj/projectile/bullet/incendiary/flamethrower/large + damage_force = 15 + range = WORLD_ICON_SIZE * 6 + +/obj/projectile/bullet/incendiary/caseless + name = "12.7mm phoron slug" + icon_state = "bullet_alt" + damage_force = 60 + damage_type = DAMAGE_TYPE_BRUTE + incendiary = 1 + flammability = 4 + armor_penetration = 40 + legacy_penetrating = 5 + combustion = TRUE + +/obj/projectile/bullet/incendiary/caseless/on_impact(atom/target, impact_flags, def_zone, efficiency) + . = ..() + if(. & PROJECTILE_IMPACT_FLAGS_UNCONDITIONAL_ABORT) + return + // todo: burn this to the ground + if(isliving(target)) + var/mob/living/L = target + L.adjustFireLoss(10) + +/obj/projectile/bullet/incendiary/phoronshrap + name = "phoron shrapnel slug" + icon_state = "bullet_alt" + damage_force = 40 + armor_penetration = 30 + damage_type = DAMAGE_TYPE_BRUTE + incendiary = 1 + flammability = 4 + legacy_penetrating = 1 + combustion = TRUE + + +/* Practice rounds and blanks */ + +/obj/projectile/bullet/practice + damage_force = 5 + +/obj/projectile/bullet/pistol/cap // Just the primer, such as a cap gun. + name = "cap" + damage_type = DAMAGE_TYPE_HALLOSS + fire_sound = 'sound/effects/snap.ogg' + damage_force = 0 + nodamage = 1 + embed_chance = 0 + damage_mode = NONE + incendiary = 1 + flammability = 4 + + combustion = FALSE + +/obj/projectile/bullet/pistol/cap/process(delta_time) + loc = null + qdel(src) + +/obj/projectile/bullet/blank + name = "blank" + damage_type = DAMAGE_TYPE_HALLOSS + fire_sound = 'sound/weapons/weaponsounds_rifleshot.ogg' // Blanks still make loud noises. + damage_force = 0 + nodamage = 1 + embed_chance = 0 + damage_mode = NONE + +/obj/projectile/bullet/blank/cap/process(delta_time) + loc = null + qdel(src) diff --git a/code/modules/projectiles/projectile/subtypes/bullets_vr.dm b/code/modules/projectiles/projectile/subtypes/bullet/bullets_vr.dm similarity index 100% rename from code/modules/projectiles/projectile/subtypes/bullets_vr.dm rename to code/modules/projectiles/projectile/subtypes/bullet/bullets_vr.dm diff --git a/code/modules/projectiles/projectile/subtypes/magnetic.dm b/code/modules/projectiles/projectile/subtypes/bullet/magnetic.dm similarity index 100% rename from code/modules/projectiles/projectile/subtypes/magnetic.dm rename to code/modules/projectiles/projectile/subtypes/bullet/magnetic.dm diff --git a/code/modules/projectiles/projectile/subtypes/reusable.dm b/code/modules/projectiles/projectile/subtypes/bullet/reusable.dm similarity index 100% rename from code/modules/projectiles/projectile/subtypes/reusable.dm rename to code/modules/projectiles/projectile/subtypes/bullet/reusable.dm diff --git a/code/modules/projectiles/projectile/subtypes/explosive.dm b/code/modules/projectiles/projectile/subtypes/bullet/srmrocket.dm similarity index 100% rename from code/modules/projectiles/projectile/subtypes/explosive.dm rename to code/modules/projectiles/projectile/subtypes/bullet/srmrocket.dm diff --git a/code/modules/projectiles/projectile/subtypes/bullets.dm b/code/modules/projectiles/projectile/subtypes/bullets.dm index 9e0667d73268..926b90a74ae8 100644 --- a/code/modules/projectiles/projectile/subtypes/bullets.dm +++ b/code/modules/projectiles/projectile/subtypes/bullets.dm @@ -1,3 +1,10 @@ +/** + * Supertype of many different types of beams. + * + * * This is a type that should have no special behavior! + * + * todo: get rid of said special behavior, or just decide it's okay and keep it. + */ /obj/projectile/bullet name = "bullet" icon_state = "bullet" @@ -42,503 +49,3 @@ . = prob(chance) if(.) damage_force *= 0.7 - -/* short-casing projectiles, like the kind used in pistols or SMGs */ - -/obj/projectile/bullet/pistol // 9mm pistols and most SMGs. Sacrifice power for capacity. - fire_sound = 'sound/weapons/weaponsounds_smallpistolshot.ogg' - damage_force = 20 - -/obj/projectile/bullet/pistol/lap //Light Armor Piercing - damage_force = 20 - armor_penetration = 10 - -/obj/projectile/bullet/pistol/ap - damage_force = 15 - armor_penetration = 30 - -/obj/projectile/bullet/pistol/hp - damage_force = 25 - armor_penetration = -50 - -/obj/projectile/bullet/pistol/hunter - damage_force = 15 - SA_bonus_damage = 25 // 40 total against animals - SA_vulnerability = MOB_CLASS_ANIMAL - embed_chance = -1 - -/obj/projectile/bullet/pistol/silver - damage_force = 15 - SA_bonus_damage = 25 // 40 total against demons - SA_vulnerability = MOB_CLASS_DEMONIC - embed_chance = -1 - holy = TRUE - -/obj/projectile/bullet/pistol/medium // .45 (and maybe .40 if it ever gets added) caliber security pistols. Balance between capacity and power. - fire_sound = 'sound/weapons/weaponsounds_pistolshot.ogg' // Snappier sound. - damage_force = 25 - -/obj/projectile/bullet/pistol/medium/ap - damage_force = 20 - armor_penetration = 15 - -/obj/projectile/bullet/pistol/medium/hp - damage_force = 30 - armor_penetration = -50 - -/obj/projectile/bullet/pistol/medium/hunter - damage_force = 15 - SA_bonus_damage = 45 // 60 total against animals - SA_vulnerability = MOB_CLASS_ANIMAL - embed_chance = -1 - -/obj/projectile/bullet/pistol/medium/silver - damage_force = 15 - SA_bonus_damage = 45 // 60 total against demons - SA_vulnerability = MOB_CLASS_DEMONIC | MOB_CLASS_ABERRATION - embed_chance = -1 - holy = TRUE - -/obj/projectile/bullet/pistol/medium/ap/suppressor // adminspawn only - name = "suppressor bullet" // this guy is Important and also Hates You - fire_sound = 'sound/weapons/doompistol.ogg' // converted from .wavs extracted from doom 2 - damage_force = 10 // high rof kinda fucked up lets be real - agony = 10 // brute easily heals, agony not so much - armor_penetration = 30 // reduces shield blockchance - accuracy_overall_modify = 0.8 // heehoo - speed = 25 * WORLD_ICON_SIZE - -/obj/projectile/bullet/pistol/medium/ap/suppressor/turbo // spicy boys - speed = 50 * WORLD_ICON_SIZE - -/obj/projectile/bullet/pistol/strong // .357 and .44 caliber stuff. High power pistols like the Mateba or Desert Eagle. Sacrifice capacity for power. - fire_sound = 'sound/weapons/weaponsounds_heavypistolshot.ogg' - damage_force = 60 - -/obj/projectile/bullet/pistol/strong/silver //Because all Demons need to die - fire_sound = 'sound/weapons/weaponsounds_heavypistolshot.ogg' - damage_force = 40 - SA_bonus_damage = 80 // 120 total against demons - SA_vulnerability = MOB_CLASS_DEMONIC | MOB_CLASS_ABERRATION - embed_chance = -1 - holy = TRUE - -/obj/projectile/bullet/pistol/rubber // "Rubber" bullets for all other pistols. - name = "rubber bullet" - damage_force = 5 - agony = 40 - embed_chance = 0 - damage_mode = NONE - damage_flag = ARMOR_MELEE - fire_sound ='sound/weapons/weaponsounds_smallpistolshot.ogg' // It may be rubber shots but it's still a gun homie it shouldn't be as pathetic as it was - -/obj/projectile/bullet/pistol/rubber/strong // "Rubber" bullets for high power pistols. - fire_sound = 'sound/weapons/weaponsounds_heavypistolshot.ogg' // Rubber shots have less powder, but these still have more punch than normal rubber shot. - damage_force = 10 - agony = 60 - embed_chance = 0 - damage_flag = ARMOR_MELEE - -/obj/projectile/bullet/pistol/spin // Special weak ammo for Service Spin mode. - fire_sound = 'sound/weapons/weaponsounds_smallpistolshot.ogg' - damage_force = 5 - SA_bonus_damage = 10 // 15 total against demons - SA_vulnerability = MOB_CLASS_DEMONIC | MOB_CLASS_ABERRATION - holy = TRUE - -/* shotgun projectiles */ - -/obj/projectile/bullet/shotgun - name = "slug" - fire_sound = 'sound/weapons/weaponsounds_shotgunshot.ogg' - damage_force = 50 - armor_penetration = 15 - -/obj/projectile/bullet/shotgun/beanbag //because beanbags are not bullets - name = "beanbag" - damage_force = 20 - agony = 60 - embed_chance = 0 - damage_mode = NONE - damage_flag = ARMOR_MELEE - -//Should do about 80 damage at 1 tile distance (adjacent), and 50 damage at 3 tiles distance. -//Overall less damage than slugs in exchange for more damage at very close range and more embedding -/obj/projectile/bullet/pellet/shotgun - name = "shrapnel" - fire_sound = 'sound/weapons/weaponsounds_shotgunshot.ogg' - damage_force = 13 - pellets = 6 - pellet_loss = 0.66 / WORLD_ICON_SIZE - -/obj/projectile/bullet/pellet/shotgun_improvised - name = "shrapnel" - damage_force = 4 - pellets = 10 - -/obj/projectile/bullet/pellet/shotgun/flak - damage_force = 2 //The main weapon using these fires four at a time, usually with different destinations. Usually. - armor_penetration = 10 - -// This is my boomstick, -/obj/projectile/bullet/pellet/shotgun/silver - name = "shrapnel" - fire_sound = 'sound/weapons/weaponsounds_shotgunshot.ogg' - damage_force = 10 - SA_bonus_damage = 16 // Potential 156 Damage against demons at point blank. - SA_vulnerability = MOB_CLASS_DEMONIC | MOB_CLASS_ABERRATION - embed_chance = -1 - pellets = 6 - holy = TRUE - -/obj/projectile/bullet/shotgun/stake - name = "stake" - fire_sound = 'sound/weapons/weaponsounds_shotgunshot.ogg' - damage_force = 50 - armor_penetration = 15 - SA_bonus_damage = 16 // Potential 156 Damage against demons at point blank. - SA_vulnerability = MOB_CLASS_DEMONIC | MOB_CLASS_ABERRATION - holy = TRUE - -//EMP shotgun 'slug', it's basically a beanbag that pops a tiny emp when it hits. //Not currently used -/obj/projectile/bullet/shotgun/ion - name = "ion slug" - fire_sound = 'sound/weapons/gunshot/gunshot_tech_huge.ogg' - damage_force = 15 - embed_chance = 0 - damage_mode = NONE - damage_flag = ARMOR_MELEE - - combustion = FALSE - -/obj/projectile/bullet/shotgun/ion/on_impact(atom/target, impact_flags, def_zone, efficiency) - . = ..() - if(. & PROJECTILE_IMPACT_FLAGS_UNCONDITIONAL_ABORT) - return - empulse(target, 0, 0, 2, 0) //Only affects what it hits - . |= PROJECTILE_IMPACT_DELETE - -//Frag shot -/obj/projectile/bullet/shotgun/frag12 - name ="frag12 slug" - damage_force = 25 - -/obj/projectile/bullet/shotgun/frag12/on_impact(atom/target, impact_flags, def_zone, efficiency) - . = ..() - if(. & PROJECTILE_IMPACT_FLAGS_UNCONDITIONAL_ABORT) - return - explosion(target, -1, 0, 1) - . |= PROJECTILE_IMPACT_DELETE - -/* "Rifle" rounds */ - -/obj/projectile/bullet/rifle - fire_sound = 'sound/weapons/Gunshot_generic_rifle.ogg' - armor_penetration = 15 - legacy_penetrating = 1 - -/obj/projectile/bullet/rifle/a762 - fire_sound = 'sound/weapons/weaponsounds_heavyrifleshot.ogg' - damage_force = 35 - -/obj/projectile/bullet/rifle/a762/sniper // Hitscan specifically for sniper ammo; to be implimented at a later date, probably for the SVD. -Ace - fire_sound = 'sound/weapons/weaponsounds_heavyrifleshot.ogg' - hitscan = 1 //so the ammo isn't useless as a sniper weapon - -/obj/projectile/bullet/rifle/a762/ap - damage_force = 30 - armor_penetration = 50 // At 30 or more armor, this will do more damage than standard rounds. - -/obj/projectile/bullet/rifle/a762/ap/silver - damage_force = 30 - armor_penetration = 50 // At 30 or more armor, this will do more damage than standard rounds. - SA_bonus_damage = 30 // 60 total against demons - SA_vulnerability = MOB_CLASS_DEMONIC | MOB_CLASS_ABERRATION - holy = TRUE - -/obj/projectile/bullet/rifle/a762/hp - damage_force = 40 - armor_penetration = -50 - legacy_penetrating = 0 - -/obj/projectile/bullet/rifle/a762/hunter // Optimized for killing simple animals and not people, because Balance(tm) - damage_force = 25 - SA_bonus_damage = 45 // 70 total on animals. - SA_vulnerability = MOB_CLASS_ANIMAL - embed_chance = -1 - -/obj/projectile/bullet/rifle/a762/sniperhunter - damage_force = 25 - SA_bonus_damage = 45 // 70 total on animals. - SA_vulnerability = MOB_CLASS_ANIMAL - embed_chance = -1 - speed = 25 * WORLD_ICON_SIZE - -/obj/projectile/bullet/rifle/a762/silver // Hunting Demons with bolt action rifles. - damage_force = 20 - SA_bonus_damage = 50 // 70 total on animals. - SA_vulnerability = MOB_CLASS_DEMONIC - holy = TRUE - -/obj/projectile/bullet/rifle/a556 - fire_sound = 'sound/weapons/weaponsounds_rifleshot.ogg' - damage_force = 25 - -/obj/projectile/bullet/rifle/a556/ap - damage_force = 20 - armor_penetration = 50 // At 40 or more armor, this will do more damage than standard rounds. - -/obj/projectile/bullet/rifle/a556/hp - damage_force = 35 - armor_penetration = -50 - legacy_penetrating = 0 - -/obj/projectile/bullet/rifle/a556/hunter - damage_force = 15 - SA_bonus_damage = 35 // 50 total on animals. - SA_vulnerability = MOB_CLASS_ANIMAL - -/obj/projectile/bullet/rifle/a12_7mm - fire_sound = 'sound/weapons/Gunshot_cannon.ogg' // This is literally an anti-tank rifle caliber. It better sound like a fucking cannon. - damage_force = 80 - stun = 3 - weaken = 3 - legacy_penetrating = 5 - armor_penetration = 80 - hitscan = 1 //so the PTR isn't useless as a sniper weapon - -/obj/projectile/bullet/mecha/a12mm_gauss //Mecha gauss rifle round. - fire_sound = 'sound/weapons/Gunshot_cannon.ogg' // This is literally an anti-tank rifle caliber. It better sound like a fucking cannon. - damage_force = 60 - legacy_penetrating = 1 - armor_penetration = 60 - -/* Miscellaneous */ - -/obj/projectile/bullet/suffocationbullet//How does this even work? - name = "co bullet" - damage_force = 20 - damage_type = DAMAGE_TYPE_OXY - -/obj/projectile/bullet/cyanideround - name = "poison bullet" - damage_force = 40 - damage_type = DAMAGE_TYPE_TOX - -/obj/projectile/bullet/cyanideround/jezzail - name = "toxic penetrator shard" - damage_force = 25 - armor_penetration = 20 - agony = 5 - embed_chance = 1 - damage_type = DAMAGE_TYPE_TOX - -/obj/projectile/bullet/burstbullet - name = "exploding bullet" - fire_sound = 'sound/soundbytes/effects/explosion/explosion1.ogg' - damage_force = 20 - embed_chance = 0 - damage_mode = DAMAGE_MODE_EDGE - -/obj/projectile/bullet/burstbullet/on_impact(atom/target, impact_flags, def_zone, efficiency) - . = ..() - if(. & PROJECTILE_IMPACT_FLAGS_UNCONDITIONAL_ABORT) - return - explosion(target, -1, 0, 2) - . |= PROJECTILE_IMPACT_DELETE - -/obj/projectile/bullet/burstbullet/service - name = "charge bullet" - fire_sound = 'sound/soundbytes/effects/explosion/explosion1.ogg' - damage_force = 20 - embed_chance = 0 - SA_bonus_damage = 40 // 60 total damage against demons. - SA_vulnerability = MOB_CLASS_DEMONIC | MOB_CLASS_ABERRATION - holy = TRUE - -/obj/projectile/bullet/burstbullet/service/on_impact(atom/target, impact_flags, def_zone, efficiency) - . = ..() - if(. & PROJECTILE_IMPACT_FLAGS_UNCONDITIONAL_ABORT) - return - if(isturf(target)) - explosion(target, 0, 1, 2) - return . | PROJECTILE_IMPACT_DELETE - -/* Black Powder */ - -/obj/projectile/bullet/musket // Big Slow and bad against armor. - fire_sound = 'sound/weapons/weaponsounds_heavypistolshot.ogg' - damage_force = 60 - speed = 8.3 * WORLD_ICON_SIZE - armor_penetration = -50 - -/obj/projectile/bullet/musket/silver // What its a classic - damage_force = 25 - SA_bonus_damage = 75 - SA_vulnerability = MOB_CLASS_DEMONIC | MOB_CLASS_ABERRATION - embed_chance = -1 - holy = TRUE - -/obj/projectile/bullet/pellet/blunderbuss //More Damage at close range greater falloff - damage_force = 10 - pellets = 8 - pellet_loss = 1.5 / WORLD_ICON_SIZE - -/obj/projectile/bullet/pellet/blunderbuss/silver - damage_force = 5 - SA_bonus_damage = 15 - SA_vulnerability = MOB_CLASS_DEMONIC | MOB_CLASS_ABERRATION - embed_chance = -1 - holy = TRUE - -//10 Gauge Shot -/obj/projectile/bullet/heavy_shotgun - name = "heavy slug" - fire_sound = 'sound/weapons/weaponsounds_shotgunshot.ogg' - damage_force = 60 - armor_penetration = 25 - -/obj/projectile/bullet/pellet/heavy_shotgun //I want this to use similar calcuations to blunderbuss shot for falloff. - damage_force = 3 //Fires five pellets at a time. - armor_penetration = 10 - -/obj/projectile/bullet/pellet/heavy_shotgun/silver - damage_force = 3 - SA_bonus_damage = 3 - SA_vulnerability = MOB_CLASS_DEMONIC | MOB_CLASS_ABERRATION - holy = TRUE - -//Special 10g rounds for Grit, since I don't want ALL 10g to do this: -/obj/projectile/bullet/heavy_shotgun/grit - name = "custom heavy slug" - -/obj/projectile/bullet/heavy_shotgun/grit/on_impact(atom/target, impact_flags, def_zone, efficiency) - . = ..() - if(. & PROJECTILE_IMPACT_FLAGS_UNCONDITIONAL_ABORT) - return - if(isliving(target)) - var/mob/living/L = target - var/throwdir = get_dir(firer,L) - if(prob(10) && (efficiency < 0.95)) - L.afflict_stun(20 * 1) - L.Confuse(1) - L.throw_at_old(get_edge_target_turf(L, throwdir), rand(3,6), 10) - -/obj/projectile/bullet/pellet/heavy_shotgun/grit - name = "heavy buckshot" - -/obj/projectile/bullet/pellet/heavy_shotgun/on_impact(atom/target, impact_flags, def_zone, efficiency) - . = ..() - if(. & PROJECTILE_IMPACT_FLAGS_UNCONDITIONAL_ABORT) - return - if(isliving(target)) - var/mob/living/L = target - var/throwdir = get_dir(firer,L) - if(prob(10) && (efficiency >= 0.9)) - L.afflict_stun(2 SECONDS) - L.Confuse(1) - L.throw_at_old(get_edge_target_turf(L, throwdir), rand(3,6), 10) - -/* Incendiary */ - -/obj/projectile/bullet/incendiary - name = "incendiary bullet" - icon_state = "bullet_alt" - damage_force = 15 - damage_type = DAMAGE_TYPE_BURN - incendiary = 1 - flammability = 2 - -/obj/projectile/bullet/incendiary/shotgun - name = "dragonsbreath pellet" - icon_state = "bullet_alt" - damage_force = 10 - damage_type = DAMAGE_TYPE_BURN - incendiary = 1 - flammability = 2 - -/obj/projectile/bullet/incendiary/flamethrower - name = "ball of fire" - desc = "Don't stand in the fire." - icon_state = "fireball" - damage_force = 10 - embed_chance = 0 - //incendiary = 2 //The Trail of Fire doesn't work. - flammability = 4 - agony = 30 - range = WORLD_ICON_SIZE * 4 - vacuum_traversal = 0 - -/obj/projectile/bullet/incendiary/flamethrower/weak - flammability = 2 - -/obj/projectile/bullet/incendiary/flamethrower/large - damage_force = 15 - range = WORLD_ICON_SIZE * 6 - -/obj/projectile/bullet/incendiary/caseless - name = "12.7mm phoron slug" - icon_state = "bullet_alt" - damage_force = 60 - damage_type = DAMAGE_TYPE_BRUTE - incendiary = 1 - flammability = 4 - armor_penetration = 40 - legacy_penetrating = 5 - combustion = TRUE - -/obj/projectile/bullet/incendiary/caseless/on_impact(atom/target, impact_flags, def_zone, efficiency) - . = ..() - if(. & PROJECTILE_IMPACT_FLAGS_UNCONDITIONAL_ABORT) - return - // todo: burn this to the ground - if(isliving(target)) - var/mob/living/L = target - L.adjustFireLoss(10) - -/obj/projectile/bullet/incendiary/phoronshrap - name = "phoron shrapnel slug" - icon_state = "bullet_alt" - damage_force = 40 - armor_penetration = 30 - damage_type = DAMAGE_TYPE_BRUTE - incendiary = 1 - flammability = 4 - legacy_penetrating = 1 - combustion = TRUE - - -/* Practice rounds and blanks */ - -/obj/projectile/bullet/practice - damage_force = 5 - -/obj/projectile/bullet/pistol/cap // Just the primer, such as a cap gun. - name = "cap" - damage_type = DAMAGE_TYPE_HALLOSS - fire_sound = 'sound/effects/snap.ogg' - damage_force = 0 - nodamage = 1 - embed_chance = 0 - damage_mode = NONE - incendiary = 1 - flammability = 4 - - combustion = FALSE - -/obj/projectile/bullet/pistol/cap/process(delta_time) - loc = null - qdel(src) - -/obj/projectile/bullet/blank - name = "blank" - damage_type = DAMAGE_TYPE_HALLOSS - fire_sound = 'sound/weapons/weaponsounds_rifleshot.ogg' // Blanks still make loud noises. - damage_force = 0 - nodamage = 1 - embed_chance = 0 - damage_mode = NONE - -/obj/projectile/bullet/blank/cap/process(delta_time) - loc = null - qdel(src) diff --git a/code/modules/projectiles/projectile/subtypes/energy.dm b/code/modules/projectiles/projectile/subtypes/energy.dm index 77a194b55623..a02386f2feaf 100644 --- a/code/modules/projectiles/projectile/subtypes/energy.dm +++ b/code/modules/projectiles/projectile/subtypes/energy.dm @@ -1,3 +1,10 @@ +/** + * Supertype of many different types of beams. + * + * * This is a type that should have no special behavior! + * + * todo: get rid of said special behavior, or just decide it's okay and keep it. + */ /obj/projectile/energy name = "energy" icon_state = "spark" @@ -5,243 +12,3 @@ damage_type = DAMAGE_TYPE_BURN damage_flag = ARMOR_ENERGY projectile_type = PROJECTILE_TYPE_ENERGY - var/flash_strength = 10 - -//releases a burst of light on impact or after travelling a distance -/obj/projectile/energy/flash - name = "chemical shell" - icon_state = "bullet" - fire_sound = 'sound/weapons/gunshot_pathetic.ogg' - damage_force = 5 - range = WORLD_ICON_SIZE * 15 //if the shell hasn't hit anything after travelling this far it just explodes. - var/flash_range = 0 - var/brightness = 7 - var/light_colour = "#ffffff" - -/obj/projectile/energy/flash/on_impact(atom/target, impact_flags, def_zone, efficiency) - . = ..() - if(!isturf(target)) - return - var/turf/T = get_turf(target) - //blind adjacent people - for (var/mob/living/carbon/M in viewers(T, flash_range)) - if(M.eyecheck() < 1) - M.flash_eyes() - if(ishuman(M)) - var/mob/living/carbon/human/H = M - flash_strength *= H.species.flash_mod - - if(flash_strength > 0) - H.Confuse(flash_strength + 5) - H.apply_status_effect(/datum/status_effect/sight/blindness, flash_strength SECONDS) - H.eye_blurry = max(H.eye_blurry, flash_strength + 5) - H.adjustHalLoss(22 * (flash_strength / 5)) // Five flashes to stun. Bit weaker than melee flashes due to being ranged. - - //snap pop - playsound(src, 'sound/effects/snap.ogg', 50, 1) - src.visible_message("\The [src] explodes in a bright flash!") - - var/datum/effect_system/spark_spread/sparks = new /datum/effect_system/spark_spread() - sparks.set_up(2, 1, T) - sparks.start() - - new /obj/effect/debris/cleanable/ash(src.loc) //always use src.loc so that ash doesn't end up inside windows - new /obj/effect/particle_effect/smoke/illumination(T, 5, brightness, brightness, light_colour) - -//No longer blinds, and flash strength has been greatly lowered but now set's on fire. -/obj/projectile/energy/flash/flare - fire_sound = 'sound/weapons/grenade_launcher.ogg' - damage_force = 20 - flash_range = 1 - brightness = 15 - flash_strength = 10 - incendiary = 1 - flammability = 2 - -/obj/projectile/energy/flash/flare/on_impact(atom/target, impact_flags, def_zone, efficiency) - light_colour = pick("#e58775", "#ffffff", "#90ff90", "#a09030") - . = ..() - //residual illumination - new /obj/effect/particle_effect/smoke/illumination(src.loc, rand(190,240) SECONDS, 8, 3, light_colour) //same lighting power as flare - -/obj/projectile/energy/electrode - name = "electrode" - icon_state = "spark" - fire_sound = 'sound/weapons/Gunshot2.ogg' - taser_effect = 1 - agony = 40 - light_range = 2 - light_power = 0.5 - light_color = "#FFFFFF" - //Damage will be handled on the MOB side, to prevent window shattering. - -/obj/projectile/energy/electrode/strong - agony = 55 - -/obj/projectile/energy/electrode/stunshot - name = "stunshot" - damage_force = 5 - agony = 80 - -/obj/projectile/energy/electrode/goldenbolt // MIGHTY GOLDEN BOLT - name = "taser bolt" - agony = 80 - -/obj/projectile/energy/declone - name = "declone" - icon_state = "declone" - fire_sound = 'sound/weapons/pulse3.ogg' - nodamage = 1 - damage_type = DAMAGE_TYPE_CLONE - irradiate = 40 - light_range = 2 - light_power = 0.5 - light_color = "#33CC00" - - combustion = FALSE - -/obj/projectile/energy/dart - name = "dart" - icon_state = "toxin" - damage_force = 5 - damage_type = DAMAGE_TYPE_TOX - agony = 120 - damage_flag = ARMOR_ENERGY - - combustion = FALSE - -/obj/projectile/energy/bolt - name = "bolt" - icon_state = "cbbolt" - damage_force = 10 - damage_type = DAMAGE_TYPE_TOX - agony = 40 - stutter = 10 - -/obj/projectile/energy/bolt/large - name = "largebolt" - damage_force = 20 - -/obj/projectile/energy/acid //Slightly up-gunned (Read: The thing does agony and checks bio resist) variant of the simple alien mob's projectile, for queens and sentinels. - name = "acidic spit" - icon_state = "neurotoxin" - fire_sound = 'sound/effects/splat.ogg' - damage_force = 40 - damage_type = DAMAGE_TYPE_BURN - agony = 10 - damage_flag = ARMOR_BIO - armor_penetration = 25 // It's acid - - combustion = FALSE - -/obj/projectile/energy/neurotoxin - name = "neurotoxic spit" - icon_state = "neurotoxin" - fire_sound = 'sound/effects/splat.ogg' - damage_force = 5 - damage_type = DAMAGE_TYPE_BIOACID - agony = 23 - damage_flag = ARMOR_BIO - armor_penetration = 25 // It's acid-based - - combustion = FALSE - -/obj/projectile/energy/neurotoxin/toxic //New alien mob projectile to match the player-variant's projectiles. - name = "neurotoxic spit" - icon_state = "neurotoxin" - fire_sound = 'sound/effects/splat.ogg' - damage_force = 20 - damage_type = DAMAGE_TYPE_BIOACID - agony = 30 - damage_flag = ARMOR_BIO - armor_penetration = 25 // It's acid-based - - -/obj/projectile/energy/phoron - name = "phoron bolt" - icon_state = "energy" - fire_sound = 'sound/effects/stealthoff.ogg' - damage_force = 20 - damage_type = DAMAGE_TYPE_TOX - irradiate = 20 - light_range = 2 - light_power = 0.5 - light_color = "#33CC00" - - combustion = FALSE - -/obj/projectile/energy/plasmastun - name = "plasma pulse" - icon_state = "plasma_stun" - fire_sound = 'sound/weapons/blaster.ogg' - armor_penetration = 10 - range = WORLD_ICON_SIZE * 4 - damage_force = 5 - agony = 55 - damage_type = DAMAGE_TYPE_BURN - vacuum_traversal = 0 //Projectile disappears in empty space - -/obj/projectile/energy/plasmastun/proc/bang(var/mob/living/carbon/M) - - to_chat(M, "You hear a loud roar.") - playsound(M.loc, 'sound/effects/bang.ogg', 50, 1) - var/ear_safety = 0 - ear_safety = M.get_ear_protection() - if(ear_safety == 1) - M.Confuse(150) - else if (ear_safety > 1) - M.Confuse(30) - else if (!ear_safety) - M.afflict_stun(20 * 10) - M.afflict_paralyze(20 * 2) - M.ear_damage += rand(1, 10) - M.ear_deaf = max(M.ear_deaf,15) - if (M.ear_damage >= 15) - to_chat(M, "Your ears start to ring badly!") - if (prob(M.ear_damage - 5)) - to_chat(M, "You can't hear anything!") - M.sdisabilities |= SDISABILITY_DEAF - else - if (M.ear_damage >= 5) - to_chat(M, "Your ears start to ring!") - M.update_icons() //Just to apply matrix transform for laying asap - -/obj/projectile/energy/plasmastun/on_impact(atom/target, impact_flags, def_zone, efficiency) - . = ..() - bang(target) - return . | PROJECTILE_IMPACT_DELETE - -/obj/projectile/energy/blue_pellet - name = "suppressive pellet" - icon_state = "blue_pellet" - fire_sound = 'sound/weapons/Laser.ogg' - damage_force = 5 - armor_penetration = 75 - pass_flags = ATOM_PASS_TABLE | ATOM_PASS_GLASS | ATOM_PASS_GRILLE - damage_type = DAMAGE_TYPE_BURN - damage_flag = ARMOR_ENERGY - light_color = "#0000FF" - - embed_chance = 0 - muzzle_type = /obj/effect/projectile/muzzle/pulse - -/obj/projectile/energy/phase - name = "phase wave" - icon_state = "phase" - range = WORLD_ICON_SIZE * 25 - damage_force = 5 - SA_bonus_damage = 45 // 50 total on animals - SA_vulnerability = MOB_CLASS_ANIMAL - -/obj/projectile/energy/phase/light - range = WORLD_ICON_SIZE * 15 - SA_bonus_damage = 35 // 40 total on animals - -/obj/projectile/energy/phase/heavy - range = WORLD_ICON_SIZE * 20 - SA_bonus_damage = 55 // 60 total on animals - -/obj/projectile/energy/phase/heavy/cannon - range = WORLD_ICON_SIZE * 30 - damage_force = 15 - SA_bonus_damage = 60 // 75 total on animals diff --git a/code/modules/projectiles/projectile/subtypes/blob.dm b/code/modules/projectiles/projectile/subtypes/energy/blob.dm similarity index 100% rename from code/modules/projectiles/projectile/subtypes/blob.dm rename to code/modules/projectiles/projectile/subtypes/energy/blob.dm diff --git a/code/modules/projectiles/projectile/subtypes/energy/energy.dm b/code/modules/projectiles/projectile/subtypes/energy/energy.dm new file mode 100644 index 000000000000..4d9acec111be --- /dev/null +++ b/code/modules/projectiles/projectile/subtypes/energy/energy.dm @@ -0,0 +1,240 @@ + +//releases a burst of light on impact or after travelling a distance +/obj/projectile/energy/flash + name = "chemical shell" + icon_state = "bullet" + fire_sound = 'sound/weapons/gunshot_pathetic.ogg' + damage_force = 5 + range = WORLD_ICON_SIZE * 15 //if the shell hasn't hit anything after travelling this far it just explodes. + var/flash_range = 0 + var/brightness = 7 + var/light_colour = "#ffffff" + var/flash_strength = 10 + +/obj/projectile/energy/flash/on_impact(atom/target, impact_flags, def_zone, efficiency) + . = ..() + if(!isturf(target)) + return + var/turf/T = get_turf(target) + //blind adjacent people + for (var/mob/living/carbon/M in viewers(T, flash_range)) + if(M.eyecheck() < 1) + M.flash_eyes() + if(ishuman(M)) + var/mob/living/carbon/human/H = M + flash_strength *= H.species.flash_mod + + if(flash_strength > 0) + H.Confuse(flash_strength + 5) + H.apply_status_effect(/datum/status_effect/sight/blindness, flash_strength SECONDS) + H.eye_blurry = max(H.eye_blurry, flash_strength + 5) + H.adjustHalLoss(22 * (flash_strength / 5)) // Five flashes to stun. Bit weaker than melee flashes due to being ranged. + + //snap pop + playsound(src, 'sound/effects/snap.ogg', 50, 1) + src.visible_message("\The [src] explodes in a bright flash!") + + var/datum/effect_system/spark_spread/sparks = new /datum/effect_system/spark_spread() + sparks.set_up(2, 1, T) + sparks.start() + + new /obj/effect/debris/cleanable/ash(src.loc) //always use src.loc so that ash doesn't end up inside windows + new /obj/effect/particle_effect/smoke/illumination(T, 5, brightness, brightness, light_colour) + +//No longer blinds, and flash strength has been greatly lowered but now set's on fire. +/obj/projectile/energy/flash/flare + fire_sound = 'sound/weapons/grenade_launcher.ogg' + damage_force = 20 + flash_range = 1 + brightness = 15 + flash_strength = 10 + incendiary = 1 + flammability = 2 + +/obj/projectile/energy/flash/flare/on_impact(atom/target, impact_flags, def_zone, efficiency) + light_colour = pick("#e58775", "#ffffff", "#90ff90", "#a09030") + . = ..() + //residual illumination + new /obj/effect/particle_effect/smoke/illumination(src.loc, rand(190,240) SECONDS, 8, 3, light_colour) //same lighting power as flare + +/obj/projectile/energy/electrode + name = "electrode" + icon_state = "spark" + fire_sound = 'sound/weapons/Gunshot2.ogg' + taser_effect = 1 + agony = 40 + light_range = 2 + light_power = 0.5 + light_color = "#FFFFFF" + //Damage will be handled on the MOB side, to prevent window shattering. + +/obj/projectile/energy/electrode/strong + agony = 55 + +/obj/projectile/energy/electrode/stunshot + name = "stunshot" + damage_force = 5 + agony = 80 + +/obj/projectile/energy/electrode/goldenbolt // MIGHTY GOLDEN BOLT + name = "taser bolt" + agony = 80 + +/obj/projectile/energy/declone + name = "declone" + icon_state = "declone" + fire_sound = 'sound/weapons/pulse3.ogg' + nodamage = 1 + damage_type = DAMAGE_TYPE_CLONE + irradiate = 40 + light_range = 2 + light_power = 0.5 + light_color = "#33CC00" + + combustion = FALSE + +/obj/projectile/energy/dart + name = "dart" + icon_state = "toxin" + damage_force = 5 + damage_type = DAMAGE_TYPE_TOX + agony = 120 + damage_flag = ARMOR_ENERGY + + combustion = FALSE + +/obj/projectile/energy/bolt + name = "bolt" + icon_state = "cbbolt" + damage_force = 10 + damage_type = DAMAGE_TYPE_TOX + agony = 40 + stutter = 10 + +/obj/projectile/energy/bolt/large + name = "largebolt" + damage_force = 20 + +/obj/projectile/energy/acid //Slightly up-gunned (Read: The thing does agony and checks bio resist) variant of the simple alien mob's projectile, for queens and sentinels. + name = "acidic spit" + icon_state = "neurotoxin" + fire_sound = 'sound/effects/splat.ogg' + damage_force = 40 + damage_type = DAMAGE_TYPE_BURN + agony = 10 + damage_flag = ARMOR_BIO + armor_penetration = 25 // It's acid + + combustion = FALSE + +/obj/projectile/energy/neurotoxin + name = "neurotoxic spit" + icon_state = "neurotoxin" + fire_sound = 'sound/effects/splat.ogg' + damage_force = 5 + damage_type = DAMAGE_TYPE_BIOACID + agony = 23 + damage_flag = ARMOR_BIO + armor_penetration = 25 // It's acid-based + + combustion = FALSE + +/obj/projectile/energy/neurotoxin/toxic //New alien mob projectile to match the player-variant's projectiles. + name = "neurotoxic spit" + icon_state = "neurotoxin" + fire_sound = 'sound/effects/splat.ogg' + damage_force = 20 + damage_type = DAMAGE_TYPE_BIOACID + agony = 30 + damage_flag = ARMOR_BIO + armor_penetration = 25 // It's acid-based + + +/obj/projectile/energy/phoron + name = "phoron bolt" + icon_state = "energy" + fire_sound = 'sound/effects/stealthoff.ogg' + damage_force = 20 + damage_type = DAMAGE_TYPE_TOX + irradiate = 20 + light_range = 2 + light_power = 0.5 + light_color = "#33CC00" + + combustion = FALSE + +/obj/projectile/energy/plasmastun + name = "plasma pulse" + icon_state = "plasma_stun" + fire_sound = 'sound/weapons/blaster.ogg' + armor_penetration = 10 + range = WORLD_ICON_SIZE * 4 + damage_force = 5 + agony = 55 + damage_type = DAMAGE_TYPE_BURN + vacuum_traversal = 0 //Projectile disappears in empty space + +/obj/projectile/energy/plasmastun/proc/bang(var/mob/living/carbon/M) + + to_chat(M, "You hear a loud roar.") + playsound(M.loc, 'sound/effects/bang.ogg', 50, 1) + var/ear_safety = 0 + ear_safety = M.get_ear_protection() + if(ear_safety == 1) + M.Confuse(150) + else if (ear_safety > 1) + M.Confuse(30) + else if (!ear_safety) + M.afflict_stun(20 * 10) + M.afflict_paralyze(20 * 2) + M.ear_damage += rand(1, 10) + M.ear_deaf = max(M.ear_deaf,15) + if (M.ear_damage >= 15) + to_chat(M, "Your ears start to ring badly!") + if (prob(M.ear_damage - 5)) + to_chat(M, "You can't hear anything!") + M.sdisabilities |= SDISABILITY_DEAF + else + if (M.ear_damage >= 5) + to_chat(M, "Your ears start to ring!") + M.update_icons() //Just to apply matrix transform for laying asap + +/obj/projectile/energy/plasmastun/on_impact(atom/target, impact_flags, def_zone, efficiency) + . = ..() + bang(target) + return . | PROJECTILE_IMPACT_DELETE + +/obj/projectile/energy/blue_pellet + name = "suppressive pellet" + icon_state = "blue_pellet" + fire_sound = 'sound/weapons/Laser.ogg' + damage_force = 5 + armor_penetration = 75 + pass_flags = ATOM_PASS_TABLE | ATOM_PASS_GLASS | ATOM_PASS_GRILLE + damage_type = DAMAGE_TYPE_BURN + damage_flag = ARMOR_ENERGY + light_color = "#0000FF" + + embed_chance = 0 + muzzle_type = /obj/effect/projectile/muzzle/pulse + +/obj/projectile/energy/phase + name = "phase wave" + icon_state = "phase" + range = WORLD_ICON_SIZE * 25 + damage_force = 5 + SA_bonus_damage = 45 // 50 total on animals + SA_vulnerability = MOB_CLASS_ANIMAL + +/obj/projectile/energy/phase/light + range = WORLD_ICON_SIZE * 15 + SA_bonus_damage = 35 // 40 total on animals + +/obj/projectile/energy/phase/heavy + range = WORLD_ICON_SIZE * 20 + SA_bonus_damage = 55 // 60 total on animals + +/obj/projectile/energy/phase/heavy/cannon + range = WORLD_ICON_SIZE * 30 + damage_force = 15 + SA_bonus_damage = 60 // 75 total on animals diff --git a/code/modules/projectiles/projectile/subtypes/energy_vr.dm b/code/modules/projectiles/projectile/subtypes/energy/energy_vr.dm similarity index 100% rename from code/modules/projectiles/projectile/subtypes/energy_vr.dm rename to code/modules/projectiles/projectile/subtypes/energy/energy_vr.dm diff --git a/code/modules/projectiles/projectile/subtypes/hook.dm b/code/modules/projectiles/projectile/subtypes/energy/hook.dm similarity index 100% rename from code/modules/projectiles/projectile/subtypes/hook.dm rename to code/modules/projectiles/projectile/subtypes/energy/hook.dm diff --git a/code/modules/projectiles/projectile/subtypes/force.dm b/code/modules/projectiles/projectile/subtypes/forcebolt.dm similarity index 100% rename from code/modules/projectiles/projectile/subtypes/force.dm rename to code/modules/projectiles/projectile/subtypes/forcebolt.dm diff --git a/code/modules/projectiles/projectile/subtypes/ion.dm b/code/modules/projectiles/projectile/subtypes/ion.dm new file mode 100644 index 000000000000..899b272020bf --- /dev/null +++ b/code/modules/projectiles/projectile/subtypes/ion.dm @@ -0,0 +1,31 @@ +// todo: rework to /obj/projectile/emp + +/obj/projectile/ion + name = "ion bolt" + icon_state = "ion" + fire_sound = 'sound/weapons/Laser.ogg' + damage_force = 0 + damage_type = DAMAGE_TYPE_BURN + nodamage = 1 + damage_flag = ARMOR_ENERGY + light_range = 2 + light_power = 0.5 + light_color = "#55AAFF" + + combustion = FALSE + + base_projectile_effects = list( + /datum/projectile_effect/detonation/legacy_emp{ + sev_2 = 1; + sev_3 = 2; + } + ) + +/obj/projectile/ion/small + base_projectile_effects = list( + /datum/projectile_effect/detonation/legacy_emp{ + sev_3 = 2; + } + ) + +/obj/projectile/ion/pistol diff --git a/code/modules/projectiles/projectile/subtypes/magic.dm b/code/modules/projectiles/projectile/subtypes/magic.dm deleted file mode 100644 index 7a1ae4faa0dd..000000000000 --- a/code/modules/projectiles/projectile/subtypes/magic.dm +++ /dev/null @@ -1,53 +0,0 @@ -/obj/item/ammo_casing/magic - name = "magic casing" - desc = "I didn't even know magic needed ammo..." - projectile_type = /obj/projectile/magic -/* -/obj/item/ammo_casing/magic/change - projectile_type = /obj/projectile/magic/change - -/obj/item/ammo_casing/magic/animate - projectile_type = /obj/projectile/magic/animate -*/ -/obj/item/ammo_casing/magic/heal - projectile_type = /obj/projectile/magic/resurrection - -/obj/item/ammo_casing/magic/death - projectile_type = /obj/projectile/magic/death - -/obj/item/ammo_casing/magic/teleport - projectile_type = /obj/projectile/magic/teleport - -/obj/item/ammo_casing/magic/door - projectile_type = /obj/projectile/magic/door - -/obj/item/ammo_casing/magic/fireball - projectile_type = /obj/projectile/magic/aoe/fireball - -/obj/item/ammo_casing/magic/chaos - projectile_type = /obj/projectile/magic - -/obj/item/ammo_casing/magic/spellblade - projectile_type = /obj/projectile/magic/spellblade - -/obj/item/ammo_casing/magic/arcane_barrage - projectile_type = /obj/projectile/magic/arcane_barrage - -/obj/item/ammo_casing/magic/honk - projectile_type = /obj/projectile/bullet/honker - -// /obj/item/ammo_casing/magic/locker - // projectile_type = /obj/projectile/magic/locker - -//Spell book ammo casing -/obj/item/ammo_casing/magic/book - projectile_type = /obj/projectile/magic/spellcard/book - -/obj/item/ammo_casing/magic/book/spark - projectile_type = /obj/projectile/magic/spellcard/book/spark -/* -/obj/item/ammo_casing/magic/book/heal - projectile_type = /obj/projectile/magic/spellcard/book/heal -*/ -/obj/item/ammo_casing/magic/book/shock - projectile_type = /obj/projectile/magic/spellcard/book/shock diff --git a/code/modules/projectiles/projectile/subtypes/pellet.dm b/code/modules/projectiles/projectile/subtypes/pellet.dm index 3335b3859ba1..50e18691e6e0 100644 --- a/code/modules/projectiles/projectile/subtypes/pellet.dm +++ b/code/modules/projectiles/projectile/subtypes/pellet.dm @@ -2,6 +2,7 @@ // todo: message handling for this type is all over the place // todo: target still makes message of being hit even if they weren't // todo: just handle message in this file lmao +// todo: better description; this type does have an excuse to have special behavior. /obj/projectile/bullet/pellet name = "shrapnel" //'shrapnel' sounds more dangerous (i.e. cooler) than 'pellet' diff --git a/code/modules/projectiles/projectile/subtypes/scatter.dm b/code/modules/projectiles/projectile/subtypes/scatter.dm index 6c3c839c958e..d1eccc7dd578 100644 --- a/code/modules/projectiles/projectile/subtypes/scatter.dm +++ b/code/modules/projectiles/projectile/subtypes/scatter.dm @@ -2,7 +2,6 @@ /* * Home of the purely submunition projectiles. */ - /obj/projectile/scatter name = "scatter projectile" icon = 'icons/obj/projectiles.dmi' diff --git a/code/modules/projectiles/projectile/subtypes/trace.dm b/code/modules/projectiles/projectile/subtypes/trace.dm deleted file mode 100644 index 6d368a865595..000000000000 --- a/code/modules/projectiles/projectile/subtypes/trace.dm +++ /dev/null @@ -1,33 +0,0 @@ -// Helper proc to check if you can hit them or not. -// Will return a list of hit mobs/objects. -/proc/check_trajectory(atom/target, atom/firer, pass_flags=ATOM_PASS_TABLE|ATOM_PASS_GLASS|ATOM_PASS_GRILLE, atom_flags) - if(!istype(target) || !istype(firer)) - return 0 - - var/obj/projectile/test/trace = new /obj/projectile/test(get_turf(firer)) //Making the test.... - - //Set the flags and pass flags to that of the real projectile... - if(!isnull(atom_flags)) - trace.atom_flags = atom_flags - trace.pass_flags = pass_flags - - return trace.launch_projectile(target) //Test it! - -//"Tracing" projectile -/obj/projectile/test //Used to see if you can hit them. - invisibility = 101 //Nope! Can't see me! - hitscan = TRUE - nodamage = TRUE - damage_force = 0 - has_tracer = FALSE - projectile_type = PROJECTILE_TYPE_TRACE - var/list/hit = list() - -/obj/projectile/test/fire(angle, atom/direct_target) - ..() - return hit - -/obj/projectile/test/Bump(atom/A) - if(A != src) - hit |= A - return ..() diff --git a/code/modules/projectiles/projectile/subtypes/special.dm b/code/modules/projectiles/projectile/subtypes/unsorted.dm similarity index 93% rename from code/modules/projectiles/projectile/subtypes/special.dm rename to code/modules/projectiles/projectile/subtypes/unsorted.dm index 4b12b1b70855..d9b5882ed3e2 100644 --- a/code/modules/projectiles/projectile/subtypes/special.dm +++ b/code/modules/projectiles/projectile/subtypes/unsorted.dm @@ -1,41 +1,3 @@ -/obj/projectile/ion - name = "ion bolt" - icon_state = "ion" - fire_sound = 'sound/weapons/Laser.ogg' - damage_force = 0 - damage_type = DAMAGE_TYPE_BURN - nodamage = 1 - damage_flag = ARMOR_ENERGY - light_range = 2 - light_power = 0.5 - light_color = "#55AAFF" - - combustion = FALSE - - var/sev1_range = 0 - var/sev2_range = 1 - var/sev3_range = 1 - var/sev4_range = 1 - -/obj/projectile/ion/on_impact(atom/target, impact_flags, def_zone, efficiency) - . = ..() - if(. & PROJECTILE_IMPACT_FLAGS_UNCONDITIONAL_ABORT) - return - empulse(target, sev1_range, sev2_range, sev3_range, sev4_range) - return . | PROJECTILE_IMPACT_DELETE - -/obj/projectile/ion/small - sev1_range = -1 - sev2_range = 0 - sev3_range = 0 - sev4_range = 1 - -/obj/projectile/ion/pistol - sev1_range = 0 - sev2_range = 0 - sev3_range = 0 - sev4_range = 0 - /obj/projectile/bullet/gyro name ="explosive bolt" icon_state= "bolter" diff --git a/code/modules/vehicles/sealed/mecha/equipment/tools/armor_ranged.dm b/code/modules/vehicles/sealed/mecha/equipment/tools/armor_ranged.dm index 2b2ec4b1a75f..4903213edf8f 100644 --- a/code/modules/vehicles/sealed/mecha/equipment/tools/armor_ranged.dm +++ b/code/modules/vehicles/sealed/mecha/equipment/tools/armor_ranged.dm @@ -14,8 +14,6 @@ equip_type = EQUIP_HULL /obj/item/mecha_parts/mecha_equipment/antiproj_armor_booster/handle_projectile_contact(var/obj/projectile/Proj, var/inc_damage) - if(istype(Proj, /obj/projectile/test)) - return inc_damage// Don't care about test projectiles, just what comes after them if(!action_checks(src)) return inc_damage if(prob(chassis.deflect_chance*deflect_coeff)) diff --git a/code/modules/vehicles/sealed/mecha/mecha.dm b/code/modules/vehicles/sealed/mecha/mecha.dm index 8af15004add4..310906d19b8a 100644 --- a/code/modules/vehicles/sealed/mecha/mecha.dm +++ b/code/modules/vehicles/sealed/mecha/mecha.dm @@ -949,10 +949,10 @@ if(!pr_internal_damage) return internal_damage |= int_dam_flag - pr_internal_damage.start() + spawn(-1) + pr_internal_damage.start() log_append_to_last("Internal damage of type [int_dam_flag].",1) occupant_legacy << sound('sound/mecha/internaldmgalarm.ogg',volume=50) //Better sounding. - return /obj/vehicle/sealed/mecha/proc/clearInternalDamage(int_dam_flag) internal_damage &= ~int_dam_flag @@ -1149,15 +1149,8 @@ src.take_damage_legacy(pass_damage) //The take_damage_legacy() proc handles armor values if(pass_damage > internal_damage_minimum) //Only decently painful attacks trigger a chance of mech damage. src.check_for_internal_damage(list(MECHA_INT_TEMP_CONTROL,MECHA_INT_TANK_BREACH,MECHA_INT_CONTROL_LOST)) - return - /obj/vehicle/sealed/mecha/on_bullet_act(obj/projectile/proj, impact_flags, list/bullet_act_args) - if(istype(proj, /obj/projectile/test)) - var/obj/projectile/test/Test = proj - Test.hit |= occupant_legacy // Register a hit on the occupant, for things like turrets, or in simple-mob cases stopping friendly fire in firing line mode. - return ..() - src.log_message("Hit by projectile. Type: [proj.name]([proj.damage_flag]).",1) impact_flags |= call((proc_res["dynbulletdamage"]||src), "dynbulletdamage")(proj) //calls equipment impact_flags |= PROJECTILE_IMPACT_SKIP_STANDARD_DAMAGE From 12b1f0bb76ac72b8557918cc48ccd614a521cb64 Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Sun, 15 Sep 2024 12:51:45 -0400 Subject: [PATCH 13/20] rwall fix (#6753) title --- code/game/turfs/simulated/wall_types/material.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/turfs/simulated/wall_types/material.dm b/code/game/turfs/simulated/wall_types/material.dm index 1fd3d1cfdd7c..3be6d547ffa3 100644 --- a/code/game/turfs/simulated/wall_types/material.dm +++ b/code/game/turfs/simulated/wall_types/material.dm @@ -19,7 +19,7 @@ BASIC_WALL_DEF(TypeName, GirderMaterial, OuterMaterial){\ /turf/simulated/wall/##TypeName -REINF_WALL_DEF(r_wall, /datum/material/steel, /datum/material/steel, /datum/material/steel) +REINF_WALL_DEF(r_wall, /datum/material/steel, /datum/material/plasteel, /datum/material/plasteel) rad_insulation = RAD_INSULATION_SUPER // Steel hull walls From ac3e0a73a9e62d5f79f5b7acd64f9fe5dbae7b4a Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Mon, 16 Sep 2024 15:09:37 -0400 Subject: [PATCH 14/20] attack_self refactor (#6754) Changes proc header --- code/game/click/telekinesis.dm | 2 +- .../content/enigmas/unsorted/deadringer.dm | 2 +- .../game/gamemodes/changeling/powers/armor.dm | 2 +- code/game/gamemodes/cult/ritual.dm | 4 +-- code/game/gamemodes/cult/soulstone.dm | 2 +- code/game/gamemodes/cult/talisman.dm | 2 +- code/game/gamemodes/nuclear/pinpointer.dm | 8 +++--- code/game/gamemodes/technomancer/catalog.dm | 2 +- .../devices/disposable_teleporter.dm | 2 +- .../technomancer/devices/shield_armor.dm | 2 +- .../technomancer/devices/tesla_armor.dm | 2 +- code/game/gamemodes/technomancer/equipment.dm | 2 +- .../game/gamemodes/technomancer/spell_objs.dm | 2 +- code/game/machinery/cell_charger.dm | 2 +- code/game/machinery/cloning.dm | 2 +- code/game/machinery/computer/arcade/orion.dm | 2 +- code/game/machinery/newscaster.dm | 2 +- code/game/machinery/pipe/construction.dm | 2 +- code/game/machinery/supplybeacon.dm | 2 +- code/game/machinery/wall_frames.dm | 2 +- code/game/objects/effects/mines.dm | 2 +- code/game/objects/items-interaction.dm | 17 +++++++++--- code/game/objects/items/antag_spawners.dm | 4 +-- code/game/objects/items/balls.dm | 2 +- code/game/objects/items/blueprints.dm | 2 +- code/game/objects/items/bodybag.dm | 2 +- code/game/objects/items/contraband.dm | 6 ++--- code/game/objects/items/devices/PDA/PDA.dm | 4 +-- code/game/objects/items/devices/aicard.dm | 2 +- code/game/objects/items/devices/binoculars.dm | 2 +- .../objects/items/devices/body_snatcher_vr.dm | 2 +- .../objects/items/devices/chameleonproj.dm | 2 +- .../devices/communicator/communicator.dm | 2 +- code/game/objects/items/devices/flash.dm | 4 +-- code/game/objects/items/devices/flashlight.dm | 6 ++--- .../objects/items/devices/floor_painter.dm | 2 +- code/game/objects/items/devices/geiger.dm | 2 +- code/game/objects/items/devices/gps.dm | 2 +- .../game/objects/items/devices/holowarrant.dm | 2 +- .../objects/items/devices/lightreplacer.dm | 2 +- code/game/objects/items/devices/megaphone.dm | 2 +- code/game/objects/items/devices/multitool.dm | 2 +- code/game/objects/items/devices/paicard.dm | 2 +- .../objects/items/devices/pipe_painter.dm | 2 +- .../objects/items/devices/radio/beacon.dm | 2 +- .../items/devices/radio/electropack.dm | 2 +- .../objects/items/devices/radio/jammer.dm | 2 +- .../game/objects/items/devices/radio/radio.dm | 2 +- .../game/objects/items/devices/scanners_vr.dm | 2 +- code/game/objects/items/devices/spy_bug.dm | 4 +-- .../objects/items/devices/suit_cooling.dm | 2 +- code/game/objects/items/devices/t_scanner.dm | 2 +- .../devices/tape_recorder/cassette_tape.dm | 2 +- .../devices/tape_recorder/tape_recorder.dm | 2 +- .../objects/items/devices/taperecorder.dm | 4 +-- .../objects/items/devices/text_to_speech.dm | 2 +- .../objects/items/devices/traitordevices.dm | 2 +- .../objects/items/devices/transfer_valve.dm | 2 +- code/game/objects/items/devices/translator.dm | 2 +- code/game/objects/items/devices/tvcamera.dm | 2 +- code/game/objects/items/devices/uplink.dm | 4 +-- code/game/objects/items/devices/whistle.dm | 2 +- code/game/objects/items/gifts.dm | 2 +- code/game/objects/items/glassjar.dm | 2 +- code/game/objects/items/godfigures.dm | 2 +- code/game/objects/items/gunbox.dm | 18 ++++++------- code/game/objects/items/holosign_creator.dm | 4 +-- code/game/objects/items/id_cards/cards.dm | 2 +- code/game/objects/items/id_cards/guest.dm | 2 +- .../objects/items/id_cards/station_ids.dm | 2 +- .../objects/items/id_cards/syndicate_ids.dm | 2 +- code/game/objects/items/inflatables.dm | 2 +- code/game/objects/items/melee/types/misc.dm | 8 +++--- .../items/melee/types/ninja_energy_blade.dm | 2 +- code/game/objects/items/pizza_voucher.dm | 2 +- code/game/objects/items/robot/gripper.dm | 4 +-- .../objects/items/robot/robot_upgrades.dm | 2 +- code/game/objects/items/scanners/atmos.dm | 2 +- code/game/objects/items/scanners/biology.dm | 2 +- code/game/objects/items/scanners/plant.dm | 2 +- .../objects/items/scanners/spectrometer.dm | 2 +- .../items/shield/types/shields_legacy.dm | 2 +- .../shield_projector/shield_projector.dm | 4 +-- code/game/objects/items/signs.dm | 2 +- code/game/objects/items/spritechanger.dm | 2 +- .../objects/items/stacks/marker_beacons.dm | 2 +- .../game/objects/items/stacks/sheets/glass.dm | 2 +- code/game/objects/items/stacks/telecrystal.dm | 2 +- code/game/objects/items/storage/boxes.dm | 2 +- .../objects/items/storage/misc_legacy/misc.dm | 2 +- .../items/storage/misc_legacy/trinket_box.dm | 2 +- code/game/objects/items/storage/secure.dm | 2 +- .../objects/items/theatrical/bike_horn.dm | 4 +-- code/game/objects/items/tools/crowbar.dm | 2 +- code/game/objects/items/tools/screwdriver.dm | 2 +- code/game/objects/items/tools/switchtool.dm | 2 +- code/game/objects/items/tools/weldingtool.dm | 4 +-- code/game/objects/items/tools/wirecutters.dm | 2 +- code/game/objects/items/tools/wrench.dm | 2 +- code/game/objects/items/toys.dm | 26 +++++++++---------- code/game/objects/items/weapons/AI_modules.dm | 10 +++---- code/game/objects/items/weapons/RCD.dm | 4 +-- code/game/objects/items/weapons/RPD.dm | 2 +- code/game/objects/items/weapons/RSF.dm | 2 +- .../objects/items/weapons/barrier_tape.dm | 2 +- code/game/objects/items/weapons/candle.dm | 2 +- .../objects/items/weapons/cigs_lighters.dm | 6 ++--- code/game/objects/items/weapons/cosmetics.dm | 6 ++--- code/game/objects/items/weapons/duct_tape.dm | 4 +-- code/game/objects/items/weapons/explosives.dm | 2 +- .../objects/items/weapons/extinguisher.dm | 2 +- .../objects/items/weapons/flamethrower.dm | 2 +- .../objects/items/weapons/gift_wrappaper.dm | 8 +++--- .../items/weapons/grenades/chem_grenade.dm | 2 +- .../objects/items/weapons/grenades/grenade.dm | 2 +- .../items/weapons/implants/implantcircuits.dm | 2 +- .../items/weapons/implants/implanter.dm | 2 +- .../items/weapons/implants/implantpad.dm | 2 +- .../items/weapons/material/chainsaw.dm | 2 +- .../items/weapons/material/gravemarker.dm | 2 +- .../objects/items/weapons/material/knives.dm | 2 +- .../objects/items/weapons/material/misc.dm | 2 +- code/game/objects/items/weapons/mop.dm | 2 +- code/game/objects/items/weapons/mop_deploy.dm | 2 +- code/game/objects/items/weapons/nullrod.dm | 4 +-- code/game/objects/items/weapons/other.dm | 4 +-- code/game/objects/items/weapons/scrolls.dm | 2 +- code/game/objects/items/weapons/stunbaton.dm | 2 +- .../objects/items/weapons/swords_axes_etc.dm | 4 +-- code/game/objects/items/weapons/syndie.dm | 2 +- code/game/objects/items/weapons/tanks/tank.dm | 2 +- .../objects/items/weapons/teleportation.dm | 4 +-- code/game/objects/items/weapons/towels.dm | 2 +- code/game/objects/items/weapons/traps.dm | 2 +- code/game/objects/structures/bedsheet_bin.dm | 2 +- .../structures/stool_bed_chair_nest/bed.dm | 4 +-- .../stool_bed_chair_nest/wheelchair.dm | 2 +- code/game/objects/structures/watercloset.dm | 2 +- code/modules/assembly/assembly.dm | 2 +- code/modules/assembly/holder.dm | 2 +- code/modules/assembly/igniter.dm | 2 +- code/modules/assembly/mousetrap.dm | 2 +- code/modules/assembly/shock_kit.dm | 2 +- code/modules/assembly/voice.dm | 2 +- code/modules/catalogue/cataloguer.dm | 2 +- code/modules/clothing/glasses/_glasses.dm | 8 +++--- code/modules/clothing/glasses/hud.dm | 6 ++--- code/modules/clothing/gloves/miscellaneous.dm | 2 +- code/modules/clothing/gloves/rings/rings.dm | 6 ++--- code/modules/clothing/head/_head.dm | 2 +- code/modules/clothing/head/helmet.dm | 6 ++--- code/modules/clothing/head/misc.dm | 4 +-- code/modules/clothing/head/misc_special.dm | 6 ++--- code/modules/clothing/head/pilot_helmet.dm | 2 +- code/modules/clothing/head/soft_caps.dm | 2 +- code/modules/clothing/masks/breath.dm | 2 +- code/modules/clothing/masks/gasmask.dm | 4 +-- code/modules/clothing/masks/miscellaneous.dm | 4 +-- code/modules/clothing/shoes/_shoes.dm | 2 +- code/modules/clothing/shoes/boots.dm | 2 +- code/modules/clothing/shoes/colour.dm | 2 +- code/modules/clothing/shoes/magboots.dm | 4 +-- code/modules/clothing/spacesuits/void/void.dm | 2 +- code/modules/clothing/suits/armor.dm | 4 +-- code/modules/clothing/suits/medieval_armor.dm | 4 +-- .../clothing/under/accessories/accessory.dm | 8 +++--- .../clothing/under/accessories/armor.dm | 2 +- .../clothing/under/accessories/badges.dm | 6 ++--- .../clothing/under/accessories/clothing.dm | 2 +- .../clothing/under/accessories/lockets.dm | 2 +- .../clothing/under/accessories/permits.dm | 2 +- .../detectivework/tools/evidencebag.dm | 2 +- code/modules/detectivework/tools/rag.dm | 2 +- .../detectivework/tools/sample_kits.dm | 2 +- code/modules/detectivework/tools/uvlight.dm | 2 +- code/modules/economy/items/EFTPOS.dm | 2 +- code/modules/economy/items/cash.dm | 4 +-- code/modules/economy/items/coins.dm | 2 +- code/modules/economy/items/retail_scanner.dm | 2 +- code/modules/fishing/aquarium/aquarium_kit.dm | 2 +- code/modules/fishing/equipment/bait_can.dm | 2 +- code/modules/food/drinks/bottle.dm | 2 +- code/modules/food/drinks/shaker.dm | 2 +- code/modules/food/food/condiment.dm | 2 +- code/modules/food/food/drinks.dm | 2 +- code/modules/food/food/snacks.dm | 8 +++--- code/modules/games/cards.dm | 6 ++--- code/modules/games/dice.dm | 4 +-- code/modules/hardsuits/suits/ert.dm | 2 +- code/modules/holodeck/HolodeckObjects.dm | 2 +- .../modules/hydroponics/beekeeping/beehive.dm | 2 +- code/modules/hydroponics/grown.dm | 2 +- code/modules/hydroponics/seed_machines.dm | 2 +- code/modules/industry/destination_tagger.dm | 2 +- .../modules/industry/packages/small_parcel.dm | 2 +- code/modules/instruments/instruments/item.dm | 2 +- .../integrated_electronics/core/assemblies.dm | 2 +- .../core/assemblies/clothing.dm | 2 +- .../core/assemblies/device.dm | 2 +- .../integrated_electronics/core/detailer.dm | 2 +- .../integrated_electronics/core/printer.dm | 2 +- .../integrated_electronics/core/tools.dm | 6 ++--- .../subtypes/manipulation.dm | 6 ++--- .../integrated_electronics/subtypes/memory.dm | 2 +- .../subtypes/reagents.dm | 2 +- .../integrated_electronics/subtypes/smart.dm | 4 +-- code/modules/library/book.dm | 2 +- code/modules/library/lib_items.dm | 2 +- code/modules/lore_codex/codex.dm | 2 +- code/modules/materials/material_sheets.dm | 2 +- code/modules/media/walkpod.dm | 2 +- code/modules/mining/drilling/scanner.dm | 2 +- code/modules/mining/tools/fulton.dm | 4 +-- .../mining/tools/kinetic_accelerator.dm | 2 +- code/modules/mining/tools/mine_items.dm | 4 +-- code/modules/mining/tools/resonator.dm | 2 +- code/modules/mining/tools/shelter_atoms.dm | 2 +- code/modules/mining/tools/vertibore.dm | 2 +- code/modules/mob/grab.dm | 2 +- code/modules/mob/living/carbon/brain/MMI.dm | 4 +-- .../mob/living/carbon/brain/posibrain.dm | 2 +- code/modules/mob/living/carbon/brain/robot.dm | 2 +- .../silicon/robot/dogborg/dog_modules_vr.dm | 12 ++++----- .../silicon/robot/dogborg/dog_sleeper_vr.dm | 2 +- .../mob/living/silicon/robot/robot_items.dm | 10 +++---- .../subtypes/animal/passive/mouse.dm | 2 +- .../simple_mob/subtypes/animal/pets/cat.dm | 2 +- .../computers/modular_computer/interaction.dm | 2 +- code/modules/multiz/structures/hoist.dm | 2 +- code/modules/nifsoft/nifsoft.dm | 2 +- code/modules/organs/external/external.dm | 2 +- .../organs/internal/species/adherent.dm | 2 +- code/modules/organs/organ.dm | 2 +- code/modules/paperwork/clipboard.dm | 2 +- code/modules/paperwork/folders.dm | 2 +- code/modules/paperwork/handlabeler.dm | 2 +- code/modules/paperwork/paper/paper.dm | 2 +- code/modules/paperwork/paper_bundle.dm | 2 +- code/modules/paperwork/paperplane.dm | 2 +- code/modules/paperwork/pen.dm | 8 +++--- code/modules/paperwork/stamps.dm | 2 +- code/modules/photography/camera.dm | 2 +- code/modules/photography/photo.dm | 2 +- code/modules/projectiles/gun.dm | 2 +- code/modules/projectiles/guns/ballistic.dm | 2 +- .../ballistic/microbattery/microbattery.dm | 2 +- .../projectiles/guns/energy/sizegun_vr.dm | 2 +- .../projectiles/guns/energy/special.dm | 2 +- .../projectiles/guns/launcher/crossbow.dm | 2 +- .../guns/launcher/grenade_launcher.dm | 4 +-- .../projectiles/guns/launcher/pneumatic.dm | 2 +- .../projectiles/guns/launcher/syringe_gun.dm | 4 +-- .../guns/legacy_vr_guns/bsharpoon.dm | 2 +- .../guns/legacy_vr_guns/gunsword.dm | 2 +- .../projectiles/guns/projectile/automatic.dm | 2 +- .../projectiles/guns/projectile/bow.dm | 2 +- .../projectiles/guns/projectile/contender.dm | 2 +- .../projectiles/guns/projectile/dartgun.dm | 2 +- .../projectiles/guns/projectile/pistol.dm | 2 +- .../projectiles/guns/projectile/rocket.dm | 2 +- .../projectiles/guns/projectile/shotgun.dm | 2 +- .../projectiles/guns/projectile/sniper.dm | 2 +- .../projectile/sniper/collapsible_sniper.dm | 2 +- code/modules/reagents/items/hypospray.dm | 2 +- .../reagents/machinery/dispenser/cartridge.dm | 2 +- code/modules/reagents/reagent_containers.dm | 2 +- .../reagent_containers/blood_pack_vr.dm | 2 +- .../reagents/reagent_containers/borghydro.dm | 2 +- .../reagents/reagent_containers/glass.dm | 2 +- .../reagents/reagent_containers/hard_candy.dm | 2 +- .../reagents/reagent_containers/hypospray.dm | 2 +- .../reagents/reagent_containers/organic.dm | 2 +- .../reagents/reagent_containers/spray.dm | 6 ++--- .../reagents/reagent_containers/syringes.dm | 2 +- .../reagent_containers/syringes_vr.dm | 2 +- code/modules/resleeving/computers.dm | 2 +- code/modules/resleeving/implant.dm | 2 +- code/modules/resleeving/mirror.dm | 2 +- code/modules/resleeving/sleevecard.dm | 2 +- code/modules/shieldgen/handheld_defuser.dm | 2 +- code/modules/shuttles/landmarks.dm | 2 +- code/modules/spells/artifacts.dm | 8 +++--- code/modules/spells/spellbook.dm | 4 +-- code/modules/telesci/bscyrstal.dm | 2 +- code/modules/vehicles/ridden/wheelchair.dm | 2 +- code/modules/vore/eating/leave_remains_vr.dm | 2 +- code/modules/vore/fluffstuff/custom_items.dm | 20 +++++++------- .../vore/fluffstuff/custom_items_cit.dm | 2 +- code/modules/vore/fluffstuff/life_crystals.dm | 2 +- code/modules/vore/resizing/holder_micro_vr.dm | 2 +- code/modules/xenoarcheaology/sampling.dm | 2 +- .../tools/ano_device_battery.dm | 2 +- code/modules/xenoarcheaology/tools/tools.dm | 8 +++--- .../xenoarcheaology/tools/tools_pickaxe.dm | 2 +- code/modules/xenobio/items/slime_objects.dm | 6 ++--- .../xenobio2/machinery/gene_manipulators.dm | 2 +- .../xenobio2/mob/slime/slime_monkey.dm | 2 +- 297 files changed, 441 insertions(+), 430 deletions(-) diff --git a/code/game/click/telekinesis.dm b/code/game/click/telekinesis.dm index c73cbb1d65b2..15aad96ce438 100644 --- a/code/game/click/telekinesis.dm +++ b/code/game/click/telekinesis.dm @@ -80,7 +80,7 @@ var/const/tk_maxrange = 15 if(slot != SLOT_ID_HANDS) qdel(src) -/obj/item/tk_grab/attack_self(mob/user) +/obj/item/tk_grab/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/content/enigmas/unsorted/deadringer.dm b/code/game/content/enigmas/unsorted/deadringer.dm index 1c96ad0b9326..713930a2cb38 100644 --- a/code/game/content/enigmas/unsorted/deadringer.dm +++ b/code/game/content/enigmas/unsorted/deadringer.dm @@ -28,7 +28,7 @@ reveal() watchowner = null -/obj/item/deadringer/attack_self(mob/user) +/obj/item/deadringer/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/gamemodes/changeling/powers/armor.dm b/code/game/gamemodes/changeling/powers/armor.dm index 34fc9bd363d1..2a0bd9d563b8 100644 --- a/code/game/gamemodes/changeling/powers/armor.dm +++ b/code/game/gamemodes/changeling/powers/armor.dm @@ -67,7 +67,7 @@ encumbrance = ITEM_ENCUMBRANCE_CHANGELING_MAGBOOTS encumbrance_on = ITEM_ENCUMBRANCE_CHANGELING_MAGBOOTS_PULSE -/obj/item/clothing/shoes/magboots/changeling/attack_self(mob/user) +/obj/item/clothing/shoes/magboots/changeling/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/gamemodes/cult/ritual.dm b/code/game/gamemodes/cult/ritual.dm index 5f9c08ac0772..ef8947180ebd 100644 --- a/code/game/gamemodes/cult/ritual.dm +++ b/code/game/gamemodes/cult/ritual.dm @@ -308,7 +308,7 @@ var/global/list/rnwords = list("ire","ego","nahlizet","certum","veri","jatkaa"," O.show_message("\The [user] beats \the [L] with \the [src]!", 1) to_chat(target, "You feel searing heat inside!") -/obj/item/book/tome/attack_self(mob/user) +/obj/item/book/tome/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -426,7 +426,7 @@ var/global/list/rnwords = list("ire","ego","nahlizet","certum","veri","jatkaa"," w_class = WEIGHT_CLASS_SMALL var/cultistsonly = 1 -/obj/item/book/tome/imbued/attack_self(mob/user) +/obj/item/book/tome/imbued/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/gamemodes/cult/soulstone.dm b/code/game/gamemodes/cult/soulstone.dm index 961eda8e0533..a7ecb33efbe6 100644 --- a/code/game/gamemodes/cult/soulstone.dm +++ b/code/game/gamemodes/cult/soulstone.dm @@ -36,7 +36,7 @@ ///////////////////Options for using captured souls/////////////////////////////////////// -/obj/item/soulstone/attack_self(mob/user) +/obj/item/soulstone/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/gamemodes/cult/talisman.dm b/code/game/gamemodes/cult/talisman.dm index 2f0c72a15df8..97d5f141afa4 100644 --- a/code/game/gamemodes/cult/talisman.dm +++ b/code/game/gamemodes/cult/talisman.dm @@ -5,7 +5,7 @@ var/uses = 0 info = "


" -/obj/item/paper/talisman/attack_self(mob/user) +/obj/item/paper/talisman/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/gamemodes/nuclear/pinpointer.dm b/code/game/gamemodes/nuclear/pinpointer.dm index e086731d45d5..e69ce927d906 100644 --- a/code/game/gamemodes/nuclear/pinpointer.dm +++ b/code/game/gamemodes/nuclear/pinpointer.dm @@ -13,7 +13,7 @@ var/active = 0 -/obj/item/pinpointer/attack_self(mob/user) +/obj/item/pinpointer/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -64,7 +64,7 @@ var/turf/location = null var/obj/target = null -/obj/item/pinpointer/advpinpointer/attack_self(mob/user) +/obj/item/pinpointer/advpinpointer/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -189,7 +189,7 @@ var/mode = 0 //Mode 0 locates disk, mode 1 locates the shuttle var/obj/machinery/computer/shuttle_control/multi/syndicate/home = null -/obj/item/pinpointer/nukeop/attack_self(mob/user) +/obj/item/pinpointer/nukeop/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -278,7 +278,7 @@ var/shuttle_comp_id = null var/obj/machinery/computer/shuttle_control/our_shuttle = null -/obj/item/pinpointer/shuttle/attack_self(mob/user) +/obj/item/pinpointer/shuttle/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/gamemodes/technomancer/catalog.dm b/code/game/gamemodes/technomancer/catalog.dm index 89323709dae3..08a2db9943dd 100644 --- a/code/game/gamemodes/technomancer/catalog.dm +++ b/code/game/gamemodes/technomancer/catalog.dm @@ -97,7 +97,7 @@ // Proc: attack_self() // Parameters: 1 (user - the mob clicking on the catalog) // Description: Shows an HTML window, to buy equipment and spells, if the user is the legitimate owner. Otherwise it cannot be used. -/obj/item/technomancer_catalog/attack_self(mob/user) +/obj/item/technomancer_catalog/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/gamemodes/technomancer/devices/disposable_teleporter.dm b/code/game/gamemodes/technomancer/devices/disposable_teleporter.dm index 9af0f71b860f..cfa026f3d5d8 100644 --- a/code/game/gamemodes/technomancer/devices/disposable_teleporter.dm +++ b/code/game/gamemodes/technomancer/devices/disposable_teleporter.dm @@ -26,7 +26,7 @@ . = ..() . += "There are [uses] uses remaining." -/obj/item/disposable_teleporter/attack_self(mob/user) +/obj/item/disposable_teleporter/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/gamemodes/technomancer/devices/shield_armor.dm b/code/game/gamemodes/technomancer/devices/shield_armor.dm index 24a751530f73..1a224114ee9b 100644 --- a/code/game/gamemodes/technomancer/devices/shield_armor.dm +++ b/code/game/gamemodes/technomancer/devices/shield_armor.dm @@ -89,7 +89,7 @@ spark_system.start() playsound(user.loc, 'sound/weapons/blade1.ogg', 50, 1) -/obj/item/clothing/suit/armor/shield/attack_self(mob/user) +/obj/item/clothing/suit/armor/shield/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/gamemodes/technomancer/devices/tesla_armor.dm b/code/game/gamemodes/technomancer/devices/tesla_armor.dm index c3fe7f29bc91..e4ec491c7ac6 100644 --- a/code/game/gamemodes/technomancer/devices/tesla_armor.dm +++ b/code/game/gamemodes/technomancer/devices/tesla_armor.dm @@ -72,7 +72,7 @@ return 1 return 0 -/obj/item/clothing/suit/armor/tesla/attack_self(mob/user) +/obj/item/clothing/suit/armor/tesla/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/gamemodes/technomancer/equipment.dm b/code/game/gamemodes/technomancer/equipment.dm index 68d99f052400..b324fbe513ce 100644 --- a/code/game/gamemodes/technomancer/equipment.dm +++ b/code/game/gamemodes/technomancer/equipment.dm @@ -193,7 +193,7 @@ slot_flags = SLOT_BELT attack_verb = list("beaten", "smashed", "struck", "whacked") -/obj/item/scepter/attack_self(mob/user) +/obj/item/scepter/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/gamemodes/technomancer/spell_objs.dm b/code/game/gamemodes/technomancer/spell_objs.dm index e4fc110458b2..436fee7af441 100644 --- a/code/game/gamemodes/technomancer/spell_objs.dm +++ b/code/game/gamemodes/technomancer/spell_objs.dm @@ -197,7 +197,7 @@ // Proc: attack_self() // Parameters: 1 (user - the Technomancer that invoked this proc) // Description: Tries to call on_use_cast() if it is allowed to do so. Don't override this, override on_use_cast() instead. -/obj/item/spell/attack_self(mob/user) +/obj/item/spell/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/machinery/cell_charger.dm b/code/game/machinery/cell_charger.dm index 0beca8c9766c..f014be3d7768 100644 --- a/code/game/machinery/cell_charger.dm +++ b/code/game/machinery/cell_charger.dm @@ -145,7 +145,7 @@ w_class = WEIGHT_CLASS_NORMAL materials_base = list(MAT_STEEL = 4000, MAT_GLASS = 1000) -/obj/item/cell_charger_kit/attack_self(mob/user) +/obj/item/cell_charger_kit/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/machinery/cloning.dm b/code/game/machinery/cloning.dm index 3f04bf3cb143..bef45914d5e7 100644 --- a/code/game/machinery/cloning.dm +++ b/code/game/machinery/cloning.dm @@ -525,7 +525,7 @@ var/diskcolor = pick(0,1,2) icon_state = "datadisk[diskcolor]" -/obj/item/disk/data/attack_self(mob/user) +/obj/item/disk/data/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/machinery/computer/arcade/orion.dm b/code/game/machinery/computer/arcade/orion.dm index 77d2a6c5f98a..dea2864cc62b 100644 --- a/code/game/machinery/computer/arcade/orion.dm +++ b/code/game/machinery/computer/arcade/orion.dm @@ -504,7 +504,7 @@ GLOBAL_LIST_INIT(orion_events, generate_orion_events()) else . += SPAN_NOTICE("There's a little switch on the bottom. It's flipped up.") -/obj/item/orion_ship/attack_self(mob/user) +/obj/item/orion_ship/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/machinery/newscaster.dm b/code/game/machinery/newscaster.dm index 45445346e415..d3b48657543d 100644 --- a/code/game/machinery/newscaster.dm +++ b/code/game/machinery/newscaster.dm @@ -811,7 +811,7 @@ var/list/obj/machinery/newscaster/allCasters = list() //Global list that will co drop_sound = 'sound/items/drop/wrapper.ogg' pickup_sound = 'sound/items/pickup/wrapper.ogg' -/obj/item/newspaper/attack_self(mob/user) +/obj/item/newspaper/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/machinery/pipe/construction.dm b/code/game/machinery/pipe/construction.dm index 478ccd977a13..2f195ab79ff5 100644 --- a/code/game/machinery/pipe/construction.dm +++ b/code/game/machinery/pipe/construction.dm @@ -158,7 +158,7 @@ Buildable meters if(dir in GLOB.cornerdirs) setDir(turn(dir, 45)) -/obj/item/pipe/attack_self(mob/user) +/obj/item/pipe/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/machinery/supplybeacon.dm b/code/game/machinery/supplybeacon.dm index 7b7c5bbf476e..b78e0ec3d3d2 100644 --- a/code/game/machinery/supplybeacon.dm +++ b/code/game/machinery/supplybeacon.dm @@ -11,7 +11,7 @@ name = "inactive supermatter supply beacon" deploy_path = /obj/machinery/power/supply_beacon/supermatter -/obj/item/supply_beacon/attack_self(mob/user) +/obj/item/supply_beacon/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/machinery/wall_frames.dm b/code/game/machinery/wall_frames.dm index 8d70cbc0d2e7..f9d4af3472bf 100644 --- a/code/game/machinery/wall_frames.dm +++ b/code/game/machinery/wall_frames.dm @@ -23,7 +23,7 @@ return ..() -/obj/item/frame/attack_self(mob/user) +/obj/item/frame/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/objects/effects/mines.dm b/code/game/objects/effects/mines.dm index 8338325c57e6..d56dab3c6538 100644 --- a/code/game/objects/effects/mines.dm +++ b/code/game/objects/effects/mines.dm @@ -226,7 +226,7 @@ var/countdown = 10 var/minetype = /obj/effect/mine //This MUST be an /obj/effect/mine type, or it'll runtime. -/obj/item/mine/attack_self(mob/user) +/obj/item/mine/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return // You do not want to move or throw a land mine while priming it... Explosives + Sudden Movement = Bad Times diff --git a/code/game/objects/items-interaction.dm b/code/game/objects/items-interaction.dm index a1b37b7c17c2..6a7ec7d7eec9 100644 --- a/code/game/objects/items-interaction.dm +++ b/code/game/objects/items-interaction.dm @@ -1,6 +1,8 @@ //* This file is explicitly licensed under the MIT license. *// //* Copyright (c) 2024 silicons *// +//* ----- Click Triggers ----- */ + //* Attack Hand *// /obj/item/on_attack_hand(datum/event_args/actor/clickchain/e_args) @@ -160,7 +162,9 @@ /mob/observer/dead/CanSlideItem(obj/item/I, turf/over) return is_spooky -//* Inhand Triggers *// +//* ------ Inhand Triggers ------ *// + +//* Attack Self *// /** * Called when the item is in the active hand, and clicked; alternately, there is an 'activate held object' verb or you can hit pagedown. @@ -170,14 +174,15 @@ * todo: please stop overriding this, use on_attack_self. * todo: nuke mob/user. * todo: rename this to like /activate_inhand, /on_activate_inhand + * todo: actor is not currently always given. * * @params - * * actor - the event_args that spawned this call * * user - The person using us in hand; stop using this, this is deprecated + * * actor - the event_args that spawned this call * * @return TRUE to signal to overrides to stop the chain and do nothing. */ -/obj/item/proc/attack_self(mob/user, datum/event_args/actor/actor = new /datum/event_args/actor(user)) +/obj/item/proc/attack_self(mob/user, datum/event_args/actor/actor) // todo: this should realistically be SHOULD_NOT_OVERRIDE but there's a massive number of overrides (some unnecessary), so this is for a later date // SHOULD_NOT_OVERRIDE(TRUE) // may be re-evaluated later SEND_SIGNAL(src, COMSIG_ITEM_ACTIVATE_INHAND, actor) @@ -213,6 +218,8 @@ return TRUE return FALSE +//* Unique Action *// + /** * Called when a mob uses our unique aciton. * @@ -237,6 +244,8 @@ /obj/item/proc/on_unique_action(datum/event_args/actor/e_args) return FALSE +//* Defensive Toggle *// + /** * Called when a mob uses our defensive toggle action. * @@ -261,6 +270,8 @@ /obj/item/proc/on_defensive_toggle(datum/event_args/actor/e_args) return FALSE +//* Defensive Trigger *// + /** * Called when a mob uses our defensive trigger action. * diff --git a/code/game/objects/items/antag_spawners.dm b/code/game/objects/items/antag_spawners.dm index f6048fbcfd1e..3fb433f2848a 100644 --- a/code/game/objects/items/antag_spawners.dm +++ b/code/game/objects/items/antag_spawners.dm @@ -48,7 +48,7 @@ icon_state = "oldshieldoff" ghost_query_type = /datum/ghost_query/apprentice -/obj/item/antag_spawner/technomancer_apprentice/attack_self(mob/user) +/obj/item/antag_spawner/technomancer_apprentice/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -97,7 +97,7 @@ ghost_query_type = /datum/ghost_query/syndicate_drone var/drone_type = null -/obj/item/antag_spawner/syndicate_drone/attack_self(mob/user) +/obj/item/antag_spawner/syndicate_drone/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/objects/items/balls.dm b/code/game/objects/items/balls.dm index 5532d734bcd1..20184bddbd1d 100644 --- a/code/game/objects/items/balls.dm +++ b/code/game/objects/items/balls.dm @@ -27,7 +27,7 @@ 'sound/items/toysqueak3.ogg' ) -/obj/item/toy/tennis/rainbow/attack_self(mob/user) +/obj/item/toy/tennis/rainbow/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/objects/items/blueprints.dm b/code/game/objects/items/blueprints.dm index 2051c9666909..f950518faeb8 100644 --- a/code/game/objects/items/blueprints.dm +++ b/code/game/objects/items/blueprints.dm @@ -46,7 +46,7 @@ var/can_expand_areas_into = AREA_SPACE // Can expand station areas only into space. var/can_rename_areas_in = AREA_STATION // Only station areas can be reanamed -/obj/item/blueprints/attack_self(mob/user) +/obj/item/blueprints/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/objects/items/bodybag.dm b/code/game/objects/items/bodybag.dm index 6c8fefdcafc6..9e4845a365f0 100644 --- a/code/game/objects/items/bodybag.dm +++ b/code/game/objects/items/bodybag.dm @@ -9,7 +9,7 @@ var/bag_type = /obj/structure/closet/body_bag -/obj/item/bodybag/attack_self(mob/user) +/obj/item/bodybag/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/objects/items/contraband.dm b/code/game/objects/items/contraband.dm index e8e86f7fc15e..8effa07967c4 100644 --- a/code/game/objects/items/contraband.dm +++ b/code/game/objects/items/contraband.dm @@ -50,7 +50,7 @@ worth_intrinsic = 200 w_class = WEIGHT_CLASS_HUGE -/obj/item/stolenpackage/attack_self(mob/user) +/obj/item/stolenpackage/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -179,7 +179,7 @@ worth_intrinsic = 350 w_class = WEIGHT_CLASS_HUGE -/obj/item/stolenpackageplus/attack_self(mob/user) +/obj/item/stolenpackageplus/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -245,7 +245,7 @@ w_class = WEIGHT_CLASS_HUGE worth_intrinsic = 400 -/obj/item/mechasalvage/attack_self(mob/user) +/obj/item/mechasalvage/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/objects/items/devices/PDA/PDA.dm b/code/game/objects/items/devices/PDA/PDA.dm index 20fdc2dde995..f75e992a18f8 100644 --- a/code/game/objects/items/devices/PDA/PDA.dm +++ b/code/game/objects/items/devices/PDA/PDA.dm @@ -322,7 +322,7 @@ GLOBAL_LIST_EMPTY(PDAs) return 1 -/obj/item/pda/ai/attack_self(mob/user) +/obj/item/pda/ai/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -674,7 +674,7 @@ GLOBAL_LIST_EMPTY(PDAs) ui.set_auto_update(auto_update) //NOTE: graphic resources are loaded on client login -/obj/item/pda/attack_self(mob/user) +/obj/item/pda/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/objects/items/devices/aicard.dm b/code/game/objects/items/devices/aicard.dm index 12eeab47952e..f16209aeb0f0 100644 --- a/code/game/objects/items/devices/aicard.dm +++ b/code/game/objects/items/devices/aicard.dm @@ -21,7 +21,7 @@ to_chat(user, "ERROR ERROR ERROR") return CLICKCHAIN_DO_NOT_PROPAGATE -/obj/item/aicard/attack_self(mob/user) +/obj/item/aicard/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/objects/items/devices/binoculars.dm b/code/game/objects/items/devices/binoculars.dm index 6303a72736bd..6ea610cda9ae 100644 --- a/code/game/objects/items/devices/binoculars.dm +++ b/code/game/objects/items/devices/binoculars.dm @@ -12,7 +12,7 @@ //materials_base = list("metal" = 50, MAT_GLASS = 50) -/obj/item/binoculars/attack_self(mob/user) +/obj/item/binoculars/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/objects/items/devices/body_snatcher_vr.dm b/code/game/objects/items/devices/body_snatcher_vr.dm index cc2517090bec..73844bc2a9f3 100644 --- a/code/game/objects/items/devices/body_snatcher_vr.dm +++ b/code/game/objects/items/devices/body_snatcher_vr.dm @@ -67,7 +67,7 @@ else to_chat(user," A warning pops up on the LED display on the side of the device, informing you that the target is not able to have their mind swapped with!") -/obj/item/bodysnatcher/attack_self(mob/user) +/obj/item/bodysnatcher/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/objects/items/devices/chameleonproj.dm b/code/game/objects/items/devices/chameleonproj.dm index 7b0616c46b66..aa7b6be0ac97 100644 --- a/code/game/objects/items/devices/chameleonproj.dm +++ b/code/game/objects/items/devices/chameleonproj.dm @@ -24,7 +24,7 @@ . = ..() disrupt() -/obj/item/chameleon/attack_self(mob/user) +/obj/item/chameleon/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/objects/items/devices/communicator/communicator.dm b/code/game/objects/items/devices/communicator/communicator.dm index 919ac17c7082..c6c4e87324f4 100644 --- a/code/game/objects/items/devices/communicator/communicator.dm +++ b/code/game/objects/items/devices/communicator/communicator.dm @@ -218,7 +218,7 @@ var/global/list/obj/item/communicator/all_communicators = list() // Parameters: 1 (user - the mob that clicked the device in their hand) // Description: Makes an exonet datum if one does not exist, allocates an address for it, maintains the lists of all devies, clears the alert icon, and // finally makes NanoUI appear. -/obj/item/communicator/attack_self(mob/user) +/obj/item/communicator/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/objects/items/devices/flash.dm b/code/game/objects/items/devices/flash.dm index 92c305c88cbd..833e6837bdc1 100644 --- a/code/game/objects/items/devices/flash.dm +++ b/code/game/objects/items/devices/flash.dm @@ -243,7 +243,7 @@ else user.visible_message("[user] fails to blind [M] with the flash!") -/obj/item/flash/attack_self(mob/user) +/obj/item/flash/attack_self(mob/user, datum/event_args/actor/actor) if(!user || !clown_check(user)) return @@ -312,7 +312,7 @@ to_chat(user, "The bulb has burnt out!") update_icon() -/obj/item/flash/synthetic/attack_self(mob/user) +/obj/item/flash/synthetic/attack_self(mob/user, datum/event_args/actor/actor) ..() if(!broken) broken = 1 diff --git a/code/game/objects/items/devices/flashlight.dm b/code/game/objects/items/devices/flashlight.dm index dcaf2099f39b..b697709c0e31 100644 --- a/code/game/objects/items/devices/flashlight.dm +++ b/code/game/objects/items/devices/flashlight.dm @@ -116,7 +116,7 @@ /obj/item/flashlight/AltClick(mob/user) attack_self(user) -/obj/item/flashlight/attack_self(mob/user) +/obj/item/flashlight/attack_self(mob/user, datum/event_args/actor/actor) if(power_use) if(!isturf(user.loc)) to_chat(user, "You cannot turn the light on while in this [user.loc].") //To prevent some lighting anomalities. @@ -354,7 +354,7 @@ src.damage_type = initial(src.damage_type) update_appearance() -/obj/item/flashlight/flare/attack_self(mob/user) +/obj/item/flashlight/flare/attack_self(mob/user, datum/event_args/actor/actor) // Usual checks if(!fuel) @@ -411,7 +411,7 @@ on = FALSE update_appearance() -/obj/item/flashlight/glowstick/attack_self(mob/user) +/obj/item/flashlight/glowstick/attack_self(mob/user, datum/event_args/actor/actor) if(!fuel) to_chat(user, SPAN_NOTICE("The glowstick has already been turned on.")) diff --git a/code/game/objects/items/devices/floor_painter.dm b/code/game/objects/items/devices/floor_painter.dm index 64f772bd0261..888460dc5e9f 100644 --- a/code/game/objects/items/devices/floor_painter.dm +++ b/code/game/objects/items/devices/floor_painter.dm @@ -100,7 +100,7 @@ new painting_decal(F, painting_dir, painting_colour) -/obj/item/floor_painter/attack_self(mob/user) +/obj/item/floor_painter/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/objects/items/devices/geiger.dm b/code/game/objects/items/devices/geiger.dm index 6206e37f3610..d25683a3f128 100644 --- a/code/game/objects/items/devices/geiger.dm +++ b/code/game/objects/items/devices/geiger.dm @@ -131,7 +131,7 @@ current_tick_amount += amount update_appearance() -/obj/item/geiger_counter/attack_self(mob/user) +/obj/item/geiger_counter/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/objects/items/devices/gps.dm b/code/game/objects/items/devices/gps.dm index a3630e0ebfc6..bcc0961b5634 100644 --- a/code/game/objects/items/devices/gps.dm +++ b/code/game/objects/items/devices/gps.dm @@ -162,7 +162,7 @@ update_icon() visible_message(SPAN_WARNING("[src] clicks, resetting itself from the electromagnetic interference.")) -/obj/item/gps/attack_self(mob/user) +/obj/item/gps/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/objects/items/devices/holowarrant.dm b/code/game/objects/items/devices/holowarrant.dm index 6735bd3f2500..38c380ca2101 100644 --- a/code/game/objects/items/devices/holowarrant.dm +++ b/code/game/objects/items/devices/holowarrant.dm @@ -22,7 +22,7 @@ to_chat(user, "You have to go closer if you want to read it.") //hit yourself with it -/obj/item/holowarrant/attack_self(mob/user) +/obj/item/holowarrant/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/objects/items/devices/lightreplacer.dm b/code/game/objects/items/devices/lightreplacer.dm index 6d22f57b8aa0..d5a4b9f7d73f 100644 --- a/code/game/objects/items/devices/lightreplacer.dm +++ b/code/game/objects/items/devices/lightreplacer.dm @@ -135,7 +135,7 @@ return -/obj/item/lightreplacer/attack_self(mob/user) +/obj/item/lightreplacer/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/objects/items/devices/megaphone.dm b/code/game/objects/items/devices/megaphone.dm index 2f477cd51642..718b62e30429 100644 --- a/code/game/objects/items/devices/megaphone.dm +++ b/code/game/objects/items/devices/megaphone.dm @@ -41,7 +41,7 @@ spamcheck = 0 return -/obj/item/megaphone/attack_self(mob/user) +/obj/item/megaphone/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/objects/items/devices/multitool.dm b/code/game/objects/items/devices/multitool.dm index 89e1ccbc3824..3c01a9504645 100755 --- a/code/game/objects/items/devices/multitool.dm +++ b/code/game/objects/items/devices/multitool.dm @@ -46,7 +46,7 @@ return update_icon() -/obj/item/multitool/attack_self(mob/user) +/obj/item/multitool/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/objects/items/devices/paicard.dm b/code/game/objects/items/devices/paicard.dm index 2176aac815a1..02d87183195d 100644 --- a/code/game/objects/items/devices/paicard.dm +++ b/code/game/objects/items/devices/paicard.dm @@ -41,7 +41,7 @@ GLOBAL_LIST_BOILERPLATE(all_pai_cards, /obj/item/paicard) QDEL_NULL(radio) return ..() -/obj/item/paicard/attack_self(mob/user) +/obj/item/paicard/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/objects/items/devices/pipe_painter.dm b/code/game/objects/items/devices/pipe_painter.dm index 03e712d293df..43199a3c2215 100644 --- a/code/game/objects/items/devices/pipe_painter.dm +++ b/code/game/objects/items/devices/pipe_painter.dm @@ -22,7 +22,7 @@ P.change_color(pipe_colors[mode]) -/obj/item/pipe_painter/attack_self(mob/user) +/obj/item/pipe_painter/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/objects/items/devices/radio/beacon.dm b/code/game/objects/items/devices/radio/beacon.dm index 2595a5787303..8ad2c75ccaeb 100644 --- a/code/game/objects/items/devices/radio/beacon.dm +++ b/code/game/objects/items/devices/radio/beacon.dm @@ -82,7 +82,7 @@ GLOBAL_LIST_BOILERPLATE(all_beacons, /obj/item/radio/beacon) desc = "A label on it reads: Activate to have a singularity beacon teleported to your location." origin_tech = list(TECH_BLUESPACE = 1, TECH_ILLEGAL = 7) -/obj/item/radio/beacon/syndicate/attack_self(mob/user) +/obj/item/radio/beacon/syndicate/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/objects/items/devices/radio/electropack.dm b/code/game/objects/items/devices/radio/electropack.dm index f835513866fb..2295f2860899 100644 --- a/code/game/objects/items/devices/radio/electropack.dm +++ b/code/game/objects/items/devices/radio/electropack.dm @@ -104,7 +104,7 @@ master.receive_signal() return -/obj/item/radio/electropack/attack_self(mob/user) +/obj/item/radio/electropack/attack_self(mob/user, datum/event_args/actor/actor) if(!istype(user, /mob/living/carbon/human)) return diff --git a/code/game/objects/items/devices/radio/jammer.dm b/code/game/objects/items/devices/radio/jammer.dm index 80f9f6431053..825855051c91 100644 --- a/code/game/objects/items/devices/radio/jammer.dm +++ b/code/game/objects/items/devices/radio/jammer.dm @@ -78,7 +78,7 @@ var/global/list/active_radio_jammers = list() else return ..() -/obj/item/radio_jammer/attack_self(mob/user) +/obj/item/radio_jammer/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/objects/items/devices/radio/radio.dm b/code/game/objects/items/devices/radio/radio.dm index ef0cea675388..80edb5c6d700 100644 --- a/code/game/objects/items/devices/radio/radio.dm +++ b/code/game/objects/items/devices/radio/radio.dm @@ -138,7 +138,7 @@ GLOBAL_LIST_INIT(default_medbay_channels, list( radio_controller.remove_object(src, radiochannels[ch_name]) return ..() -/obj/item/radio/attack_self(mob/user) +/obj/item/radio/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/objects/items/devices/scanners_vr.dm b/code/game/objects/items/devices/scanners_vr.dm index 8027f4843525..30e29279ffac 100644 --- a/code/game/objects/items/devices/scanners_vr.dm +++ b/code/game/objects/items/devices/scanners_vr.dm @@ -23,7 +23,7 @@ var/global/mob/living/carbon/human/dummy/mannequin/sleevemate_mob scan_mob(target, user) to_chat(user,"Not a compatible subject to work with!") -/obj/item/sleevemate/attack_self(mob/user) +/obj/item/sleevemate/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/objects/items/devices/spy_bug.dm b/code/game/objects/items/devices/spy_bug.dm index fd10b1265039..30ba2d443d84 100644 --- a/code/game/objects/items/devices/spy_bug.dm +++ b/code/game/objects/items/devices/spy_bug.dm @@ -20,7 +20,7 @@ . = ..() camera = new camtype(src) -/obj/item/camerabug/attack_self(mob/user) +/obj/item/camerabug/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -138,7 +138,7 @@ var/obj/machinery/camera/bug/selected_camera var/list/obj/machinery/camera/bug/cameras = new() -/obj/item/bug_monitor/attack_self(mob/user) +/obj/item/bug_monitor/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/objects/items/devices/suit_cooling.dm b/code/game/objects/items/devices/suit_cooling.dm index f33e2f59fff0..f9257f6803cc 100644 --- a/code/game/objects/items/devices/suit_cooling.dm +++ b/code/game/objects/items/devices/suit_cooling.dm @@ -123,7 +123,7 @@ STOP_PROCESSING(SSobj, src) updateicon() -/obj/item/suit_cooling_unit/attack_self(mob/user) +/obj/item/suit_cooling_unit/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/objects/items/devices/t_scanner.dm b/code/game/objects/items/devices/t_scanner.dm index 94d875c003a6..c424401e8159 100644 --- a/code/game/objects/items/devices/t_scanner.dm +++ b/code/game/objects/items/devices/t_scanner.dm @@ -26,7 +26,7 @@ /obj/item/t_scanner/AltClick() set_active(!on) -/obj/item/t_scanner/attack_self(mob/user) +/obj/item/t_scanner/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/objects/items/devices/tape_recorder/cassette_tape.dm b/code/game/objects/items/devices/tape_recorder/cassette_tape.dm index 70ebd1ac3bf9..1331c19b65e3 100644 --- a/code/game/objects/items/devices/tape_recorder/cassette_tape.dm +++ b/code/game/objects/items/devices/tape_recorder/cassette_tape.dm @@ -97,7 +97,7 @@ /obj/item/cassette_tape/fire_act() ruin() -/obj/item/cassette_tape/attack_self(mob/user) +/obj/item/cassette_tape/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/objects/items/devices/tape_recorder/tape_recorder.dm b/code/game/objects/items/devices/tape_recorder/tape_recorder.dm index 7dfd403748f8..9daff09407b4 100644 --- a/code/game/objects/items/devices/tape_recorder/tape_recorder.dm +++ b/code/game/objects/items/devices/tape_recorder/tape_recorder.dm @@ -441,7 +441,7 @@ /obj/item/tape_recorder/proc/print_cooldown() TIMER_COOLDOWN_START(src, CD_INDEX_TAPE_PRINT, 30 SECONDS) -/obj/item/tape_recorder/attack_self(mob/user) +/obj/item/tape_recorder/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/objects/items/devices/taperecorder.dm b/code/game/objects/items/devices/taperecorder.dm index a35e5ec5b34c..fc7594ff2b8c 100644 --- a/code/game/objects/items/devices/taperecorder.dm +++ b/code/game/objects/items/devices/taperecorder.dm @@ -341,7 +341,7 @@ canprint = 1 -/obj/item/tape_recorder/attack_self(mob/user) +/obj/item/tape_recorder/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -389,7 +389,7 @@ /obj/item/cassette_tape/fire_act() ruin() -/obj/item/cassette_tape/attack_self(mob/user) +/obj/item/cassette_tape/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/objects/items/devices/text_to_speech.dm b/code/game/objects/items/devices/text_to_speech.dm index 07aa8e7721a6..6510b9e1ba6a 100644 --- a/code/game/objects/items/devices/text_to_speech.dm +++ b/code/game/objects/items/devices/text_to_speech.dm @@ -8,7 +8,7 @@ var/activated = FALSE var/mob/linked_user -/obj/item/text_to_speech/attack_self(mob/user) +/obj/item/text_to_speech/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/objects/items/devices/traitordevices.dm b/code/game/objects/items/devices/traitordevices.dm index 64de2bf7eb68..e73e129329c2 100644 --- a/code/game/objects/items/devices/traitordevices.dm +++ b/code/game/objects/items/devices/traitordevices.dm @@ -28,7 +28,7 @@ effective or pretty fucking useless. var/times_used = 0 //Number of times it's been used. var/max_uses = 2 -/obj/item/batterer/attack_self(mob/user) +/obj/item/batterer/attack_self(mob/user, datum/event_args/actor/actor) if(!user) return if(times_used >= max_uses) to_chat(user, "The mind batterer has been burnt out!") diff --git a/code/game/objects/items/devices/transfer_valve.dm b/code/game/objects/items/devices/transfer_valve.dm index 83dd062a0ff3..cb699aefe513 100644 --- a/code/game/objects/items/devices/transfer_valve.dm +++ b/code/game/objects/items/devices/transfer_valve.dm @@ -71,7 +71,7 @@ SStgui.update_uis(src) //Update all UIs attached to src return ..() -/obj/item/transfer_valve/attack_self(mob/user) +/obj/item/transfer_valve/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/objects/items/devices/translator.dm b/code/game/objects/items/devices/translator.dm index 3165fa9f3810..c5a34937dc3b 100644 --- a/code/game/objects/items/devices/translator.dm +++ b/code/game/objects/items/devices/translator.dm @@ -88,7 +88,7 @@ var/datum/translation_context/variable/ours = context ours.copy_knowledge(theirs) -/obj/item/universal_translator/attack_self(mob/user) +/obj/item/universal_translator/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/objects/items/devices/tvcamera.dm b/code/game/objects/items/devices/tvcamera.dm index 4dc9e79536bc..4a0b9c694a1a 100644 --- a/code/game/objects/items/devices/tvcamera.dm +++ b/code/game/objects/items/devices/tvcamera.dm @@ -43,7 +43,7 @@ radio.hear_talk(M,msg,verb,speaking) ..() -/obj/item/tvcamera/attack_self(mob/user) +/obj/item/tvcamera/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/objects/items/devices/uplink.dm b/code/game/objects/items/devices/uplink.dm index 67c2d29cc973..c4a3b6e238dc 100644 --- a/code/game/objects/items/devices/uplink.dm +++ b/code/game/objects/items/devices/uplink.dm @@ -224,7 +224,7 @@ hidden_uplink = new(src, target_mind, telecrystals) icon_state = "radio" -/obj/item/radio/uplink/attack_self(mob/user) +/obj/item/radio/uplink/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -235,7 +235,7 @@ . = ..() hidden_uplink = new(src) -/obj/item/multitool/uplink/attack_self(mob/user) +/obj/item/multitool/uplink/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/objects/items/devices/whistle.dm b/code/game/objects/items/devices/whistle.dm index 02331f9744d7..cc6c196f6665 100644 --- a/code/game/objects/items/devices/whistle.dm +++ b/code/game/objects/items/devices/whistle.dm @@ -28,7 +28,7 @@ to_chat(usr, "You configure the hailer to shout \"[use_message]\".") -/obj/item/hailer/attack_self(mob/user) +/obj/item/hailer/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/objects/items/gifts.dm b/code/game/objects/items/gifts.dm index 3e21d1d47211..2c762e45b575 100644 --- a/code/game/objects/items/gifts.dm +++ b/code/game/objects/items/gifts.dm @@ -32,7 +32,7 @@ GLOBAL_LIST_EMPTY(possible_gifts) . = ..() . += SPAN_NOTICE("It contains \a [initial(contains_type.name)].") -/obj/item/a_gift/attack_self(mob/user) +/obj/item/a_gift/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/objects/items/glassjar.dm b/code/game/objects/items/glassjar.dm index 719cf51484a7..f118af45063a 100644 --- a/code/game/objects/items/glassjar.dm +++ b/code/game/objects/items/glassjar.dm @@ -41,7 +41,7 @@ update_icon() return -/obj/item/glass_jar/attack_self(mob/user) +/obj/item/glass_jar/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/objects/items/godfigures.dm b/code/game/objects/items/godfigures.dm index 9bf1714db7cd..d3c3a58615b9 100644 --- a/code/game/objects/items/godfigures.dm +++ b/code/game/objects/items/godfigures.dm @@ -10,7 +10,7 @@ throw_force = 10 w_class = WEIGHT_CLASS_SMALL -/obj/item/godfig/attack_self(mob/user) +/obj/item/godfig/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/objects/items/gunbox.dm b/code/game/objects/items/gunbox.dm index 7744108a0dcf..7e2dee09285b 100644 --- a/code/game/objects/items/gunbox.dm +++ b/code/game/objects/items/gunbox.dm @@ -5,7 +5,7 @@ icon_state = "gunbox" worth_intrinsic = 350 -/obj/item/gunbox/attack_self(mob/user) +/obj/item/gunbox/attack_self(mob/user, datum/event_args/actor/actor) var/list/options = list() options["NT Mk58 (.45)"] = list(/obj/item/gun/ballistic/sec, /obj/item/ammo_magazine/a45/rubber, /obj/item/ammo_magazine/a45/flash) options["SW 625 Revolver (.45)"] = list(/obj/item/gun/ballistic/revolver/detective45, /obj/item/ammo_magazine/a45/speedloader/rubber, /obj/item/ammo_magazine/a45/speedloader/rubber) @@ -26,7 +26,7 @@ icon_state = "gunbox" worth_intrinsic = 450 -/obj/item/gunbox/lethal/attack_self(mob/user) +/obj/item/gunbox/lethal/attack_self(mob/user, datum/event_args/actor/actor) var/list/options = list() options["M1911 Dynamic (.45)"] = list(/obj/item/gun/ballistic/colt, /obj/item/ammo_magazine/a45, /obj/item/ammo_magazine/a45) options["SW 625 Revolver (.45)"] = list(/obj/item/gun/ballistic/revolver/detective45, /obj/item/ammo_magazine/a45/speedloader, /obj/item/ammo_magazine/a45/speedloader) @@ -48,7 +48,7 @@ icon_state = "gunbox" w_class = WEIGHT_CLASS_HUGE -/obj/item/gunbox/attack_self(mob/user) +/obj/item/gunbox/attack_self(mob/user, datum/event_args/actor/actor) var/list/options = list() options[".45 Pistol"] = list(/obj/item/gun/ballistic/colt/detective, /obj/item/ammo_magazine/a45/rubber, /obj/item/ammo_magazine/a45/rubber) options[".45 Revolver"] = list(/obj/item/gun/ballistic/revolver/detective45, /obj/item/ammo_magazine/a45/speedloader/rubber, /obj/item/ammo_magazine/a45/speedloader/rubber) @@ -69,7 +69,7 @@ icon_state = "gunbox" w_class = WEIGHT_CLASS_HUGE -/obj/item/gunbox/marksman/attack_self(mob/user) +/obj/item/gunbox/marksman/attack_self(mob/user, datum/event_args/actor/actor) var/list/options = list() options["Marksman Energy Rifle"] = list(/obj/item/gun/energy/sniperrifle/locked) options["M1A Garand"] = list(/obj/item/gun/ballistic/garand/sniper, /obj/item/storage/belt/security/tactical/bandolier, /obj/item/ammo_magazine/a7_62mm/garand/sniperhunter, /obj/item/ammo_magazine/a7_62mm/garand/sniperhunter, /obj/item/ammo_magazine/a7_62mm/garand/sniperhunter, /obj/item/ammo_magazine/a7_62mm/garand/sniperhunter, /obj/item/ammo_magazine/a7_62mm/garand/sniperhunter, /obj/item/ammo_magazine/a7_62mm/garand/sniperhunter, /obj/item/ammo_magazine/a7_62mm/garand/sniperhunter) // 7 clips, 56 rounds @@ -89,7 +89,7 @@ icon = 'icons/obj/storage.dmi' icon_state = "donkbox" -/obj/item/gunbox/donksoft/attack_self(mob/user) +/obj/item/gunbox/donksoft/attack_self(mob/user, datum/event_args/actor/actor) var/list/options = list() options["Classic DONKsoft Pistol"] = list(/obj/item/gun/ballistic/pistol/foam, /obj/item/ammo_magazine/foam/pistol, /obj/item/ammo_magazine/foam/pistol) options["Blue DONKsoft Pistol"] = list(/obj/item/gun/ballistic/pistol/foam/blue, /obj/item/ammo_magazine/foam/pistol, /obj/item/ammo_magazine/foam/pistol) @@ -109,7 +109,7 @@ icon = 'icons/obj/storage.dmi' icon_state = "donkbox2" -/obj/item/gunbox/donksoft/shotgun/attack_self(mob/user) +/obj/item/gunbox/donksoft/shotgun/attack_self(mob/user, datum/event_args/actor/actor) var/list/options = list() options["Classic DONKsoft Shotgun"] = list(/obj/item/gun/ballistic/shotgun/pump/foam, /obj/item/ammo_magazine/foam/box, /obj/item/ammo_magazine/foam/box) options["Blue DONKsoft Shotgun"] = list(/obj/item/gun/ballistic/shotgun/pump/foam/blue, /obj/item/ammo_magazine/foam/box, /obj/item/ammo_magazine/foam/box) @@ -128,7 +128,7 @@ icon = 'icons/obj/storage.dmi' icon_state = "donkbox3" -/obj/item/gunbox/donksoft/smg/attack_self(mob/user) +/obj/item/gunbox/donksoft/smg/attack_self(mob/user, datum/event_args/actor/actor) var/list/options = list() options["Classic DONKsoft SMG"] = list(/obj/item/gun/ballistic/automatic/advanced_smg/foam, /obj/item/ammo_magazine/foam/smg, /obj/item/ammo_magazine/foam/smg) options["Blue DONKsoft SMG"] = list(/obj/item/gun/ballistic/automatic/advanced_smg/foam/blue, /obj/item/ammo_magazine/foam/smg, /obj/item/ammo_magazine/foam/smg) @@ -147,7 +147,7 @@ icon = 'icons/obj/storage.dmi' icon_state = "gunbox" -/obj/item/gunbox/carrier/blueshield/attack_self(mob/user) +/obj/item/gunbox/carrier/blueshield/attack_self(mob/user, datum/event_args/actor/actor) var/list/options = list() options["\improper Black Carrier"] = list(/obj/item/clothing/suit/storage/hooded/covertcarrier/blueshield) options["\improper Black-Short Carrier"] = list(/obj/item/clothing/suit/storage/hooded/covertcarrier/blueshield/alt) @@ -167,7 +167,7 @@ icon = 'icons/obj/storage.dmi' icon_state = "gunbox" -/obj/item/gunbox/armor/security/attack_self(mob/user) +/obj/item/gunbox/armor/security/attack_self(mob/user, datum/event_args/actor/actor) var/list/options = list() options["\improper Flat Vest"] = list(/obj/item/clothing/suit/armor/vest) options["\improper Security Vest"] = list(/obj/item/clothing/suit/armor/vest/alt) diff --git a/code/game/objects/items/holosign_creator.dm b/code/game/objects/items/holosign_creator.dm index 74fb53fece44..a0150adb782a 100644 --- a/code/game/objects/items/holosign_creator.dm +++ b/code/game/objects/items/holosign_creator.dm @@ -48,7 +48,7 @@ else to_chat(user, "[src] is projecting at max capacity!") -/obj/item/holosign_creator/attack_self(mob/user) +/obj/item/holosign_creator/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -114,7 +114,7 @@ holosign_type = /obj/structure/holosign/barrier/cyborg var/shock = 0 -/obj/item/holosign_creator/cyborg/attack_self(mob/user) +/obj/item/holosign_creator/cyborg/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/objects/items/id_cards/cards.dm b/code/game/objects/items/id_cards/cards.dm index b66854636c46..4af12a1cc5cc 100644 --- a/code/game/objects/items/id_cards/cards.dm +++ b/code/game/objects/items/id_cards/cards.dm @@ -117,7 +117,7 @@ if(I) icon = I -/obj/item/card_fluff/attack_self(mob/user) +/obj/item/card_fluff/attack_self(mob/user, datum/event_args/actor/actor) var/choice = tgui_input_list(usr, "What element would you like to customize?", "Customize Card", list("Band","Stamp","Reset")) if(!choice) return diff --git a/code/game/objects/items/id_cards/guest.dm b/code/game/objects/items/id_cards/guest.dm index e28529260bd7..1a9112850fa3 100644 --- a/code/game/objects/items/id_cards/guest.dm +++ b/code/game/objects/items/id_cards/guest.dm @@ -65,7 +65,7 @@ . += SPAN_NOTICE("Issuer name: [giver_name]") . += SPAN_NOTICE("Issuer rank: [giver_rank]") -/obj/item/card/id/guest/attack_self(mob/user) +/obj/item/card/id/guest/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/objects/items/id_cards/station_ids.dm b/code/game/objects/items/id_cards/station_ids.dm index ccbca7e089f1..df5ef7a9e202 100644 --- a/code/game/objects/items/id_cards/station_ids.dm +++ b/code/game/objects/items/id_cards/station_ids.dm @@ -182,7 +182,7 @@ dat += "The confidential information flap is closed." return dat -/obj/item/card/id/attack_self(mob/user) +/obj/item/card/id/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/objects/items/id_cards/syndicate_ids.dm b/code/game/objects/items/id_cards/syndicate_ids.dm index a8a4dc4e7610..a5ebf6d4076d 100644 --- a/code/game/objects/items/id_cards/syndicate_ids.dm +++ b/code/game/objects/items/id_cards/syndicate_ids.dm @@ -29,7 +29,7 @@ if(player_is_antag(user.mind)) to_chat(user, "The microscanner activates as you pass it over the ID, copying its access.") -/obj/item/card/id/syndicate/attack_self(mob/user) +/obj/item/card/id/syndicate/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/objects/items/inflatables.dm b/code/game/objects/items/inflatables.dm index 0f8f5be29357..f33e6dc1ecaa 100644 --- a/code/game/objects/items/inflatables.dm +++ b/code/game/objects/items/inflatables.dm @@ -7,7 +7,7 @@ worth_intrinsic = 15 var/deploy_path = /obj/structure/inflatable -/obj/item/inflatable/attack_self(mob/user) +/obj/item/inflatable/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/objects/items/melee/types/misc.dm b/code/game/objects/items/melee/types/misc.dm index 8661f1716890..4114d2cbc6fc 100644 --- a/code/game/objects/items/melee/types/misc.dm +++ b/code/game/objects/items/melee/types/misc.dm @@ -31,7 +31,7 @@ . = ..() update_icon() -/obj/item/melee/umbrella/attack_self(mob/user) +/obj/item/melee/umbrella/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -246,7 +246,7 @@ if(SA_vulnerability & tm.mob_class) tm.apply_damage(SA_bonus_damage) // fuck em -/obj/item/melee/ashlander/elder/attack_self(mob/user) +/obj/item/melee/ashlander/elder/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -326,7 +326,7 @@ parry_chance_melee = 15; } -/obj/item/melee/twohanded/attack_self(mob/user) +/obj/item/melee/twohanded/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -460,7 +460,7 @@ if (istype(location, /turf)) location.hotspot_expose(700, 50, 1) -/obj/item/melee/thermalcutter/attack_self(mob/user) +/obj/item/melee/thermalcutter/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/objects/items/melee/types/ninja_energy_blade.dm b/code/game/objects/items/melee/types/ninja_energy_blade.dm index 24ce9eb2ed1f..10e586432e40 100644 --- a/code/game/objects/items/melee/types/ninja_energy_blade.dm +++ b/code/game/objects/items/melee/types/ninja_energy_blade.dm @@ -39,7 +39,7 @@ STOP_PROCESSING(SSobj, src) return ..() -/obj/item/melee/ninja_energy_blade/attack_self(mob/user) +/obj/item/melee/ninja_energy_blade/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/objects/items/pizza_voucher.dm b/code/game/objects/items/pizza_voucher.dm index fc71e9fa4f05..579004328c52 100644 --- a/code/game/objects/items/pizza_voucher.dm +++ b/code/game/objects/items/pizza_voucher.dm @@ -20,7 +20,7 @@ "WE ALWAYS DELIVER! WE ALWAYS DELIVER! WE ALWAYS DELIVER!") desc = "A pocket-sized plastic slip with a button in the middle. \"[pick(descstrings)]\" is written on the back." -/obj/item/pizzavoucher/attack_self(mob/user) +/obj/item/pizzavoucher/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/objects/items/robot/gripper.dm b/code/game/objects/items/robot/gripper.dm index be89a8166c96..e447ad819192 100644 --- a/code/game/objects/items/robot/gripper.dm +++ b/code/game/objects/items/robot/gripper.dm @@ -74,7 +74,7 @@ /obj/item/gripper/CtrlClick(mob/user) drop_item() -/obj/item/gripper/attack_self(mob/user) +/obj/item/gripper/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -313,7 +313,7 @@ /obj/item/gripper/no_use //Used when you want to hold and put items in other things, but not able to 'use' the item -/obj/item/gripper/no_use/attack_self(mob/user) +/obj/item/gripper/no_use/attack_self(mob/user, datum/event_args/actor/actor) return /obj/item/gripper/no_use/organ/robotics diff --git a/code/game/objects/items/robot/robot_upgrades.dm b/code/game/objects/items/robot/robot_upgrades.dm index d625597e1112..8e0ef0137cc4 100644 --- a/code/game/objects/items/robot/robot_upgrades.dm +++ b/code/game/objects/items/robot/robot_upgrades.dm @@ -39,7 +39,7 @@ item_state = "cyborg_upgrade" var/heldname = "default name" -/obj/item/borg/upgrade/rename/attack_self(mob/user) +/obj/item/borg/upgrade/rename/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/objects/items/scanners/atmos.dm b/code/game/objects/items/scanners/atmos.dm index fb10b13e407c..1d048969ca7a 100644 --- a/code/game/objects/items/scanners/atmos.dm +++ b/code/game/objects/items/scanners/atmos.dm @@ -38,7 +38,7 @@ return atmosanalyzer_scan(src, air, user) -/obj/item/atmos_analyzer/attack_self(mob/user) +/obj/item/atmos_analyzer/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/objects/items/scanners/biology.dm b/code/game/objects/items/scanners/biology.dm index 15dfdfbb12b2..6cdcd64f9eda 100644 --- a/code/game/objects/items/scanners/biology.dm +++ b/code/game/objects/items/scanners/biology.dm @@ -31,7 +31,7 @@ user.visible_message("\The [src] spits out a piece of paper.") return -/obj/item/biology_analyzer/attack_self(mob/user) +/obj/item/biology_analyzer/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/objects/items/scanners/plant.dm b/code/game/objects/items/scanners/plant.dm index cfb901f01a5d..be29c14defaa 100644 --- a/code/game/objects/items/scanners/plant.dm +++ b/code/game/objects/items/scanners/plant.dm @@ -6,7 +6,7 @@ var/datum/seed/last_seed var/list/last_reagents -/obj/item/plant_analyzer/attack_self(mob/user) +/obj/item/plant_analyzer/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/objects/items/scanners/spectrometer.dm b/code/game/objects/items/scanners/spectrometer.dm index c104792376b4..67e498b7d00a 100644 --- a/code/game/objects/items/scanners/spectrometer.dm +++ b/code/game/objects/items/scanners/spectrometer.dm @@ -28,7 +28,7 @@ else icon_state = initial(icon_state) -/obj/item/mass_spectrometer/attack_self(mob/user) +/obj/item/mass_spectrometer/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/objects/items/shield/types/shields_legacy.dm b/code/game/objects/items/shield/types/shields_legacy.dm index 1b73e20897f7..43e0b0d1a0f2 100644 --- a/code/game/objects/items/shield/types/shields_legacy.dm +++ b/code/game/objects/items/shield/types/shields_legacy.dm @@ -54,7 +54,7 @@ return ..() return embedded_flash.attack_mob(arglist(args)) -/obj/item/shield/riot/flash/attack_self(mob/user) +/obj/item/shield/riot/flash/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/objects/items/shield_projector/shield_projector.dm b/code/game/objects/items/shield_projector/shield_projector.dm index e9b3547cf28e..8ff51ae82244 100644 --- a/code/game/objects/items/shield_projector/shield_projector.dm +++ b/code/game/objects/items/shield_projector/shield_projector.dm @@ -128,7 +128,7 @@ for(var/obj/effect/directional_shield/S in active_shields) S.update_color(new_color) -/obj/item/shield_projector/attack_self(mob/user) +/obj/item/shield_projector/attack_self(mob/user, datum/event_args/actor/actor) if(active) if(always_on) to_chat(user, "You can't seem to deactivate \the [src].") @@ -320,7 +320,7 @@ else my_tool.set_ready_state(1) -/obj/item/shield_projector/line/exosuit/attack_self(mob/user) +/obj/item/shield_projector/line/exosuit/attack_self(mob/user, datum/event_args/actor/actor) if(active) if(always_on) to_chat(user, "You can't seem to deactivate \the [src].") diff --git a/code/game/objects/items/signs.dm b/code/game/objects/items/signs.dm index 6e3166f33c58..86d2f1c7cda8 100644 --- a/code/game/objects/items/signs.dm +++ b/code/game/objects/items/signs.dm @@ -27,7 +27,7 @@ else return ..() -/obj/item/picket_sign/attack_self(mob/user) +/obj/item/picket_sign/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/objects/items/spritechanger.dm b/code/game/objects/items/spritechanger.dm index aabc8148777f..e3df660faf64 100644 --- a/code/game/objects/items/spritechanger.dm +++ b/code/game/objects/items/spritechanger.dm @@ -13,7 +13,7 @@ after the sprite has been set you can use it again to remove overlays that may h var/path var/state -/obj/item/spritechanger/attack_self(mob/user) +/obj/item/spritechanger/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/objects/items/stacks/marker_beacons.dm b/code/game/objects/items/stacks/marker_beacons.dm index 9c923e7c75ce..7c8297d4bd16 100644 --- a/code/game/objects/items/stacks/marker_beacons.dm +++ b/code/game/objects/items/stacks/marker_beacons.dm @@ -50,7 +50,7 @@ var/list/marker_beacon_colors = list( /obj/item/stack/marker_beacon/update_icon() icon_state = "[initial(icon_state)][lowertext(picked_color)]" -/obj/item/stack/marker_beacon/attack_self(mob/user) +/obj/item/stack/marker_beacon/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/objects/items/stacks/sheets/glass.dm b/code/game/objects/items/stacks/sheets/glass.dm index 18e04ffbcc08..a14290c8481a 100644 --- a/code/game/objects/items/stacks/sheets/glass.dm +++ b/code/game/objects/items/stacks/sheets/glass.dm @@ -19,7 +19,7 @@ pickup_sound = 'sound/items/pickup/glass.ogg' var/is_reinforced = 0 -/obj/item/stack/material/glass/attack_self(mob/user) +/obj/item/stack/material/glass/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/objects/items/stacks/telecrystal.dm b/code/game/objects/items/stacks/telecrystal.dm index 5d6c7ba89ade..3331b0c32612 100644 --- a/code/game/objects/items/stacks/telecrystal.dm +++ b/code/game/objects/items/stacks/telecrystal.dm @@ -23,7 +23,7 @@ to_chat(user, "There are not enough telecrystals to do that.") return NONE -/obj/item/stack/telecrystal/attack_self(mob/user) +/obj/item/stack/telecrystal/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/objects/items/storage/boxes.dm b/code/game/objects/items/storage/boxes.dm index 7f22e5e14750..415d4afd861c 100644 --- a/code/game/objects/items/storage/boxes.dm +++ b/code/game/objects/items/storage/boxes.dm @@ -43,7 +43,7 @@ // todo: implement dynamic state, like how /tg/ boxes work // BubbleWrap - A box can be folded up to make card -/obj/item/storage/box/attack_self(mob/user) +/obj/item/storage/box/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/objects/items/storage/misc_legacy/misc.dm b/code/game/objects/items/storage/misc_legacy/misc.dm index 7301f5f5281a..99370e2814e2 100644 --- a/code/game/objects/items/storage/misc_legacy/misc.dm +++ b/code/game/objects/items/storage/misc_legacy/misc.dm @@ -98,7 +98,7 @@ ) starts_with = list(/obj/item/pen/crayon/chalk, /obj/item/reagent_containers/pill/nutriment, /obj/item/gps/survival) -/obj/item/storage/box/survival_knife/attack_self(mob/user) +/obj/item/storage/box/survival_knife/attack_self(mob/user, datum/event_args/actor/actor) return /obj/item/storage/box/papersack diff --git a/code/game/objects/items/storage/misc_legacy/trinket_box.dm b/code/game/objects/items/storage/misc_legacy/trinket_box.dm index db81355671cd..ba2c70fc545a 100644 --- a/code/game/objects/items/storage/misc_legacy/trinket_box.dm +++ b/code/game/objects/items/storage/misc_legacy/trinket_box.dm @@ -41,7 +41,7 @@ closed_state = "[initial(icon_state)]" . = ..() -/obj/item/storage/trinketbox/attack_self(mob/user) +/obj/item/storage/trinketbox/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/objects/items/storage/secure.dm b/code/game/objects/items/storage/secure.dm index 9d249922cbf5..9e35c4de22dd 100644 --- a/code/game/objects/items/storage/secure.dm +++ b/code/game/objects/items/storage/secure.dm @@ -70,7 +70,7 @@ ..() -/obj/item/storage/secure/attack_self(mob/user) +/obj/item/storage/secure/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/objects/items/theatrical/bike_horn.dm b/code/game/objects/items/theatrical/bike_horn.dm index 1a893d4a12a7..b9e59e108f30 100644 --- a/code/game/objects/items/theatrical/bike_horn.dm +++ b/code/game/objects/items/theatrical/bike_horn.dm @@ -13,7 +13,7 @@ attack_verb = list("HONKED") var/spam_flag = 0 -/obj/item/bikehorn/attack_self(mob/user) +/obj/item/bikehorn/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -38,7 +38,7 @@ flip_mobs() return ..() -/obj/item/bikehorn/golden/attack_self(mob/user) +/obj/item/bikehorn/golden/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/objects/items/tools/crowbar.dm b/code/game/objects/items/tools/crowbar.dm index 69db80adb264..de6a99a89e2f 100644 --- a/code/game/objects/items/tools/crowbar.dm +++ b/code/game/objects/items/tools/crowbar.dm @@ -131,7 +131,7 @@ QDEL_NULL(counterpart) return ..() -/obj/item/tool/crowbar/power/attack_self(mob/user) +/obj/item/tool/crowbar/power/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/objects/items/tools/screwdriver.dm b/code/game/objects/items/tools/screwdriver.dm index 41e66bd2f0a8..c7f61df2ad71 100644 --- a/code/game/objects/items/tools/screwdriver.dm +++ b/code/game/objects/items/tools/screwdriver.dm @@ -186,7 +186,7 @@ QDEL_NULL(counterpart) return ..() -/obj/item/tool/screwdriver/power/attack_self(mob/user) +/obj/item/tool/screwdriver/power/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/objects/items/tools/switchtool.dm b/code/game/objects/items/tools/switchtool.dm index ae87558fd9e3..d2f4da5bdcf5 100644 --- a/code/game/objects/items/tools/switchtool.dm +++ b/code/game/objects/items/tools/switchtool.dm @@ -104,7 +104,7 @@ module_string += "\a [module.name], " return module_string -/obj/item/switchtool/attack_self(mob/user) +/obj/item/switchtool/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/objects/items/tools/weldingtool.dm b/code/game/objects/items/tools/weldingtool.dm index 751956b1c58d..a3d31e4aeca4 100644 --- a/code/game/objects/items/tools/weldingtool.dm +++ b/code/game/objects/items/tools/weldingtool.dm @@ -151,7 +151,7 @@ if (istype(location, /turf)) location.hotspot_expose(700, 50, 1) -/obj/item/weldingtool/attack_self(mob/user) +/obj/item/weldingtool/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -754,7 +754,7 @@ M.update_inv_l_hand() M.update_inv_r_hand() -/obj/item/weldingtool/electric/crystal/attack_self(mob/user) +/obj/item/weldingtool/electric/crystal/attack_self(mob/user, datum/event_args/actor/actor) var/mob/living/carbon/human/H = user if(!istype(H)) return diff --git a/code/game/objects/items/tools/wirecutters.dm b/code/game/objects/items/tools/wirecutters.dm index 964b6a65cd84..ec1372da2c0c 100644 --- a/code/game/objects/items/tools/wirecutters.dm +++ b/code/game/objects/items/tools/wirecutters.dm @@ -160,7 +160,7 @@ QDEL_NULL(counterpart) return ..() -/obj/item/tool/wirecutters/power/attack_self(mob/user) +/obj/item/tool/wirecutters/power/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/objects/items/tools/wrench.dm b/code/game/objects/items/tools/wrench.dm index b119b8ab0a04..ef7d51c1523d 100644 --- a/code/game/objects/items/tools/wrench.dm +++ b/code/game/objects/items/tools/wrench.dm @@ -165,7 +165,7 @@ QDEL_NULL(counterpart) return ..() -/obj/item/tool/wrench/power/attack_self(mob/user) +/obj/item/tool/wrench/power/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/objects/items/toys.dm b/code/game/objects/items/toys.dm index 4ef067b847a6..d0207e50e635 100644 --- a/code/game/objects/items/toys.dm +++ b/code/game/objects/items/toys.dm @@ -272,7 +272,7 @@ var/colorable = TRUE var/rainbow = FALSE -/obj/item/toy/sword/attack_self(mob/user) +/obj/item/toy/sword/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -491,7 +491,7 @@ w_class = WEIGHT_CLASS_TINY slot_flags = SLOT_EARS | SLOT_HOLSTER -/obj/item/toy/bosunwhistle/attack_self(mob/user) +/obj/item/toy/bosunwhistle/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -509,7 +509,7 @@ var/cooldown = 0 //all credit to skasi for toy mech fun ideas -/obj/item/toy/prize/attack_self(mob/user) +/obj/item/toy/prize/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -596,7 +596,7 @@ . = ..() desc = "A \"Space Life\" brand [name]" -/obj/item/toy/figure/attack_self(mob/user) +/obj/item/toy/figure/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -861,7 +861,7 @@ playsound(src, bitesound, 20, 1) // Play bite sound in local area // Attack self -/obj/item/toy/plushie/carp/attack_self(mob/user) +/obj/item/toy/plushie/carp/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -973,7 +973,7 @@ var/last_message = 0 var/pokephrase = "Uww!" -/obj/item/toy/plushie/attack_self(mob/user) +/obj/item/toy/plushie/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -1439,7 +1439,7 @@ var/cooldown = 0 var/list/possible_answers = list("Definitely.", "All signs point to yes.", "Most likely.", "Yes.", "Ask again later.", "Better not tell you now.", "Future unclear.", "Maybe.", "Doubtful.", "No.", "Don't count on it.", "Never.") -/obj/item/toy/eight_ball/attack_self(mob/user) +/obj/item/toy/eight_ball/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -1514,7 +1514,7 @@ w_class = WEIGHT_CLASS_SMALL var/cooldown = 0 /* -/obj/item/toy/AI/attack_self(mob/user) +/obj/item/toy/AI/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -1536,7 +1536,7 @@ w_class = WEIGHT_CLASS_SMALL var/cooldown = 0 -/obj/item/toy/owl/attack_self(mob/user) +/obj/item/toy/owl/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -1557,7 +1557,7 @@ w_class = WEIGHT_CLASS_SMALL var/cooldown = 0 -/obj/item/toy/griffin/attack_self(mob/user) +/obj/item/toy/griffin/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -1578,7 +1578,7 @@ w_class = WEIGHT_CLASS_SMALL var/cooldown = 0 -/obj/item/toy/cowgirlprize/attack_self(mob/user) +/obj/item/toy/cowgirlprize/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -1599,7 +1599,7 @@ w_class = WEIGHT_CLASS_SMALL var/cooldown = 0 -/obj/item/toy/snakeoilprize/attack_self(mob/user) +/obj/item/toy/snakeoilprize/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -1646,7 +1646,7 @@ max_combined_volume = STORAGE_VOLUME_BOX var/last_message = 0 -/obj/item/storage/daki/attack_self(mob/user) +/obj/item/storage/daki/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/objects/items/weapons/AI_modules.dm b/code/game/objects/items/weapons/AI_modules.dm index d67dd2f029f9..3515d06af458 100644 --- a/code/game/objects/items/weapons/AI_modules.dm +++ b/code/game/objects/items/weapons/AI_modules.dm @@ -130,7 +130,7 @@ AI MODULES desc = "A 'safeguard' AI module: 'Safeguard . Anyone threatening or attempting to harm is no longer to be considered a crew member, and is a threat which must be neutralized.'" origin_tech = list(TECH_DATA = 3, TECH_MATERIAL = 4) -/obj/item/aiModule/safeguard/attack_self(mob/user) +/obj/item/aiModule/safeguard/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -159,7 +159,7 @@ AI MODULES desc = "A 'one crew member' AI module: 'Only is a crew member.'" origin_tech = list(TECH_DATA = 3, TECH_MATERIAL = 6) //made with diamonds! -/obj/item/aiModule/oneHuman/attack_self(mob/user) +/obj/item/aiModule/oneHuman/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -243,7 +243,7 @@ AI MODULES desc = "A 'freeform' AI module: ''" origin_tech = list(TECH_DATA = 4, TECH_MATERIAL = 4) -/obj/item/aiModule/freeform/attack_self(mob/user) +/obj/item/aiModule/freeform/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -362,7 +362,7 @@ AI MODULES desc = "A 'freeform' Core AI module: ''" origin_tech = list(TECH_DATA = 3, TECH_MATERIAL = 6) -/obj/item/aiModule/freeformcore/attack_self(mob/user) +/obj/item/aiModule/freeformcore/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -389,7 +389,7 @@ AI MODULES desc = "A hacked AI law module: ''" origin_tech = list(TECH_DATA = 3, TECH_MATERIAL = 6, TECH_ILLEGAL = 7) -/obj/item/aiModule/syndicate/attack_self(mob/user) +/obj/item/aiModule/syndicate/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/objects/items/weapons/RCD.dm b/code/game/objects/items/weapons/RCD.dm index af4d1581c3aa..6c997dd8d9f3 100644 --- a/code/game/objects/items/weapons/RCD.dm +++ b/code/game/objects/items/weapons/RCD.dm @@ -103,7 +103,7 @@ return TRUE // Changes which mode it is on. -/obj/item/rcd/attack_self(mob/user) +/obj/item/rcd/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -363,7 +363,7 @@ /obj/item/rcd/electric/mounted/hardsuit // Old method for swapping modes as there is no way to bring up the radial. -/obj/item/rcd/electric/mounted/hardsuit/attack_self(mob/user) +/obj/item/rcd/electric/mounted/hardsuit/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/objects/items/weapons/RPD.dm b/code/game/objects/items/weapons/RPD.dm index 816efe7b5867..7a2e15436c21 100644 --- a/code/game/objects/items/weapons/RPD.dm +++ b/code/game/objects/items/weapons/RPD.dm @@ -106,7 +106,7 @@ // UnregisterSignal(user, COMSIG_MOUSE_SCROLL_ON) // return ..() -/obj/item/pipe_dispenser/attack_self(mob/user) +/obj/item/pipe_dispenser/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/objects/items/weapons/RSF.dm b/code/game/objects/items/weapons/RSF.dm index 9676a0bfeaca..5d0ba68d4d5b 100644 --- a/code/game/objects/items/weapons/RSF.dm +++ b/code/game/objects/items/weapons/RSF.dm @@ -62,7 +62,7 @@ RSF else glasstype = /obj/item/reagent_containers/food/drinks/metaglass -/obj/item/rsf/attack_self(mob/user) +/obj/item/rsf/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/objects/items/weapons/barrier_tape.dm b/code/game/objects/items/weapons/barrier_tape.dm index c82c16b019ca..c12379f28bec 100644 --- a/code/game/objects/items/weapons/barrier_tape.dm +++ b/code/game/objects/items/weapons/barrier_tape.dm @@ -137,7 +137,7 @@ var/list/tape_roll_applications = list() update_icon() return ..() -/obj/item/barrier_tape_roll/attack_self(mob/user) +/obj/item/barrier_tape_roll/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/objects/items/weapons/candle.dm b/code/game/objects/items/weapons/candle.dm index 5bda9d830261..733e0cac1d0c 100644 --- a/code/game/objects/items/weapons/candle.dm +++ b/code/game/objects/items/weapons/candle.dm @@ -61,7 +61,7 @@ var/turf/T = loc T.hotspot_expose(700, 5) -/obj/item/flame/candle/attack_self(mob/user) +/obj/item/flame/candle/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/objects/items/weapons/cigs_lighters.dm b/code/game/objects/items/weapons/cigs_lighters.dm index fda7029206aa..f442a7c7afd1 100644 --- a/code/game/objects/items/weapons/cigs_lighters.dm +++ b/code/game/objects/items/weapons/cigs_lighters.dm @@ -311,7 +311,7 @@ CIGARETTE PACKETS ARE IN FANCY.DM else to_chat(user, "[src] is full.") -/obj/item/clothing/mask/smokable/cigarette/attack_self(mob/user) +/obj/item/clothing/mask/smokable/cigarette/attack_self(mob/user, datum/event_args/actor/actor) if(lit == 1) if(user.a_intent == INTENT_HARM) user.visible_message("[user] drops and treads on the lit [src], putting it out instantly.") @@ -454,7 +454,7 @@ CIGARETTE PACKETS ARE IN FANCY.DM . = ..() name = "empty [initial(name)]" -/obj/item/clothing/mask/smokable/pipe/attack_self(mob/user) +/obj/item/clothing/mask/smokable/pipe/attack_self(mob/user, datum/event_args/actor/actor) if(lit == 1) if(user.a_intent == INTENT_HARM) user.visible_message("[user] empties the lit [src] on the floor!.") @@ -611,7 +611,7 @@ CIGARETTE PACKETS ARE IN FANCY.DM item_state = icon_state base_state = icon_state -/obj/item/flame/lighter/attack_self(mob/user) +/obj/item/flame/lighter/attack_self(mob/user, datum/event_args/actor/actor) if(!base_state) base_state = icon_state if(!lit) diff --git a/code/game/objects/items/weapons/cosmetics.dm b/code/game/objects/items/weapons/cosmetics.dm index d00f061acbea..5e51f09d4afc 100644 --- a/code/game/objects/items/weapons/cosmetics.dm +++ b/code/game/objects/items/weapons/cosmetics.dm @@ -56,7 +56,7 @@ colour = pick("red","orange","yellow","jade","cyan","purple","pink","maroon","black","white") name = "[colour] lipstick" -/obj/item/lipstick/attack_self(mob/user) +/obj/item/lipstick/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -102,7 +102,7 @@ icon = 'icons/obj/items.dmi' icon_state = "purplecomb" -/obj/item/haircomb/attack_self(mob/user) +/obj/item/haircomb/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -130,7 +130,7 @@ icon_state = "trinketbox" var/list/ui_users = list() -/obj/item/makeover/attack_self(mob/user) +/obj/item/makeover/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/objects/items/weapons/duct_tape.dm b/code/game/objects/items/weapons/duct_tape.dm index 6e05e576feae..fd572daf27fc 100644 --- a/code/game/objects/items/weapons/duct_tape.dm +++ b/code/game/objects/items/weapons/duct_tape.dm @@ -129,7 +129,7 @@ return return ..() -/obj/item/duct_tape_roll/attack_self(mob/user) +/obj/item/duct_tape_roll/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -180,7 +180,7 @@ name = W.name + " (taped)" copy_overlays(W) -/obj/item/duct_tape_piece/attack_self(mob/user) +/obj/item/duct_tape_piece/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/objects/items/weapons/explosives.dm b/code/game/objects/items/weapons/explosives.dm index 1c5de510635f..1c1824e45e72 100644 --- a/code/game/objects/items/weapons/explosives.dm +++ b/code/game/objects/items/weapons/explosives.dm @@ -38,7 +38,7 @@ else ..() -/obj/item/plastique/attack_self(mob/user) +/obj/item/plastique/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/objects/items/weapons/extinguisher.dm b/code/game/objects/items/weapons/extinguisher.dm index 2b1c3b4f4e1c..4528c7c68da4 100644 --- a/code/game/objects/items/weapons/extinguisher.dm +++ b/code/game/objects/items/weapons/extinguisher.dm @@ -49,7 +49,7 @@ . = ..() . += "[icon2html(thing = src, target = user)] [src.name] contains [src.reagents.total_volume] units of water left!" -/obj/item/extinguisher/attack_self(mob/user) +/obj/item/extinguisher/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/objects/items/weapons/flamethrower.dm b/code/game/objects/items/weapons/flamethrower.dm index 61e44006d793..0c217e9792ec 100644 --- a/code/game/objects/items/weapons/flamethrower.dm +++ b/code/game/objects/items/weapons/flamethrower.dm @@ -123,7 +123,7 @@ return -/obj/item/flamethrower/attack_self(mob/user) +/obj/item/flamethrower/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/objects/items/weapons/gift_wrappaper.dm b/code/game/objects/items/weapons/gift_wrappaper.dm index 89b33c219147..ee4fc74d13f4 100644 --- a/code/game/objects/items/weapons/gift_wrappaper.dm +++ b/code/game/objects/items/weapons/gift_wrappaper.dm @@ -40,7 +40,7 @@ if(!isnull(gift)) . += gift -/obj/item/gift/attack_self(mob/user) +/obj/item/gift/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -74,7 +74,7 @@ qdel(src) -/obj/item/a_gift/attack_self(mob/user) +/obj/item/a_gift/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -143,7 +143,7 @@ pixel_x = rand(-10,10) pixel_y = rand(-10,10) -/obj/item/gift/attack_self(mob/user) +/obj/item/gift/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -158,7 +158,7 @@ /obj/item/b_gift/legacy_ex_act() qdel(src) -/obj/item/b_gift/attack_self(mob/user) +/obj/item/b_gift/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/objects/items/weapons/grenades/chem_grenade.dm b/code/game/objects/items/weapons/grenades/chem_grenade.dm index 588965be9ea6..174dcc0ab47a 100644 --- a/code/game/objects/items/weapons/grenades/chem_grenade.dm +++ b/code/game/objects/items/weapons/grenades/chem_grenade.dm @@ -24,7 +24,7 @@ QDEL_LIST_NULL(beakers) return ..() -/obj/item/grenade/chem_grenade/attack_self(mob/user) +/obj/item/grenade/chem_grenade/attack_self(mob/user, datum/event_args/actor/actor) if(!stage || stage==1) if(detonator) // detonator.loc=src.loc diff --git a/code/game/objects/items/weapons/grenades/grenade.dm b/code/game/objects/items/weapons/grenades/grenade.dm index a2bf2996ee9f..838dc3ec7d37 100644 --- a/code/game/objects/items/weapons/grenades/grenade.dm +++ b/code/game/objects/items/weapons/grenades/grenade.dm @@ -53,7 +53,7 @@ . += "The [src] is set for instant detonation." -/obj/item/grenade/attack_self(mob/user) +/obj/item/grenade/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/objects/items/weapons/implants/implantcircuits.dm b/code/game/objects/items/weapons/implants/implantcircuits.dm index 9ec47f6d9943..237706185ddb 100644 --- a/code/game/objects/items/weapons/implants/implantcircuits.dm +++ b/code/game/objects/items/weapons/implants/implantcircuits.dm @@ -45,7 +45,7 @@ else ..() -/obj/item/implant/integrated_circuit/attack_self(mob/user) +/obj/item/implant/integrated_circuit/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/objects/items/weapons/implants/implanter.dm b/code/game/objects/items/weapons/implants/implanter.dm index fee012d365e1..4dd711d93aa2 100644 --- a/code/game/objects/items/weapons/implants/implanter.dm +++ b/code/game/objects/items/weapons/implants/implanter.dm @@ -10,7 +10,7 @@ var/obj/item/implant/imp = null var/active = 1 -/obj/item/implanter/attack_self(mob/user) +/obj/item/implanter/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/objects/items/weapons/implants/implantpad.dm b/code/game/objects/items/weapons/implants/implantpad.dm index 5a1a4076d171..75e54a6c8e15 100644 --- a/code/game/objects/items/weapons/implants/implantpad.dm +++ b/code/game/objects/items/weapons/implants/implantpad.dm @@ -48,7 +48,7 @@ return -/obj/item/implantpad/attack_self(mob/user) +/obj/item/implantpad/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/objects/items/weapons/material/chainsaw.dm b/code/game/objects/items/weapons/material/chainsaw.dm index 7eb988599536..2b005721eddd 100644 --- a/code/game/objects/items/weapons/material/chainsaw.dm +++ b/code/game/objects/items/weapons/material/chainsaw.dm @@ -56,7 +56,7 @@ on = 0 update_icon() -/obj/item/chainsaw/attack_self(mob/user) +/obj/item/chainsaw/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/objects/items/weapons/material/gravemarker.dm b/code/game/objects/items/weapons/material/gravemarker.dm index c2b4192d1327..cfdfb564dcbe 100644 --- a/code/game/objects/items/weapons/material/gravemarker.dm +++ b/code/game/objects/items/weapons/material/gravemarker.dm @@ -59,7 +59,7 @@ ..() -/obj/item/material/gravemarker/attack_self(mob/user) +/obj/item/material/gravemarker/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/objects/items/weapons/material/knives.dm b/code/game/objects/items/weapons/material/knives.dm index a7fa5162c084..a46f78a0cd73 100644 --- a/code/game/objects/items/weapons/material/knives.dm +++ b/code/game/objects/items/weapons/material/knives.dm @@ -52,7 +52,7 @@ icon_state = "boxcutter" material_significance = MATERIAL_SIGNIFICANCE_WEAPON_ULTRALIGHT -/obj/item/material/butterfly/attack_self(mob/user) +/obj/item/material/butterfly/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/objects/items/weapons/material/misc.dm b/code/game/objects/items/weapons/material/misc.dm index fb12e25c4247..01aba5b96640 100644 --- a/code/game/objects/items/weapons/material/misc.dm +++ b/code/game/objects/items/weapons/material/misc.dm @@ -102,7 +102,7 @@ w_class = WEIGHT_CLASS_SMALL attack_verb = list("mushed", "splatted", "splooshed", "splushed") // Words that totally exist. -/obj/item/material/snow/snowball/attack_self(mob/user) +/obj/item/material/snow/snowball/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/objects/items/weapons/mop.dm b/code/game/objects/items/weapons/mop.dm index 1cd0d1aa5890..c1bac109bf6a 100644 --- a/code/game/objects/items/weapons/mop.dm +++ b/code/game/objects/items/weapons/mop.dm @@ -26,7 +26,7 @@ GLOBAL_LIST_BOILERPLATE(all_mops, /obj/item/mop) create_reagents(30) -/obj/item/mop/attack_self(mob/user) +/obj/item/mop/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/objects/items/weapons/mop_deploy.dm b/code/game/objects/items/weapons/mop_deploy.dm index cb92e2c30b18..3253c988f78b 100644 --- a/code/game/objects/items/weapons/mop_deploy.dm +++ b/code/game/objects/items/weapons/mop_deploy.dm @@ -52,7 +52,7 @@ STOP_PROCESSING(SSobj, src) . = ..() -/obj/item/mop_deploy/attack_self(mob/user) +/obj/item/mop_deploy/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/objects/items/weapons/nullrod.dm b/code/game/objects/items/weapons/nullrod.dm index 2e836696ca4c..d33b9491a612 100644 --- a/code/game/objects/items/weapons/nullrod.dm +++ b/code/game/objects/items/weapons/nullrod.dm @@ -40,7 +40,7 @@ if(SA_vulnerability & tm.mob_class) tm.apply_damage(SA_bonus_damage) // fuck em -/obj/item/nullrod/attack_self(mob/user) +/obj/item/nullrod/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -352,7 +352,7 @@ attack_sound = 'sound/weapons/bite.ogg' var/used_blessing = FALSE -/obj/item/nullrod/carp/attack_self(mob/user) +/obj/item/nullrod/carp/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/objects/items/weapons/other.dm b/code/game/objects/items/weapons/other.dm index 9cd042fb58f6..f64549e3c578 100644 --- a/code/game/objects/items/weapons/other.dm +++ b/code/game/objects/items/weapons/other.dm @@ -61,7 +61,7 @@ temp_blade.set_active(TRUE) concealed_blade = temp_blade -/obj/item/cane/concealed/attack_self(mob/user) +/obj/item/cane/concealed/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -131,7 +131,7 @@ damage_force = 3 var/on = 0 -/obj/item/cane/whitecane/collapsible/attack_self(mob/user) +/obj/item/cane/whitecane/collapsible/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/objects/items/weapons/scrolls.dm b/code/game/objects/items/weapons/scrolls.dm index 449861d4136a..cc3c2553a41b 100644 --- a/code/game/objects/items/weapons/scrolls.dm +++ b/code/game/objects/items/weapons/scrolls.dm @@ -10,7 +10,7 @@ throw_range = 20 origin_tech = list(TECH_BLUESPACE = 4) -/obj/item/teleportation_scroll/attack_self(mob/user) +/obj/item/teleportation_scroll/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/objects/items/weapons/stunbaton.dm b/code/game/objects/items/weapons/stunbaton.dm index 843dbb53e749..4a05db8d2370 100644 --- a/code/game/objects/items/weapons/stunbaton.dm +++ b/code/game/objects/items/weapons/stunbaton.dm @@ -112,7 +112,7 @@ else return ..() -/obj/item/melee/baton/attack_self(mob/user) +/obj/item/melee/baton/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/objects/items/weapons/swords_axes_etc.dm b/code/game/objects/items/weapons/swords_axes_etc.dm index c1bb323054fb..9236bf4cc1ae 100644 --- a/code/game/objects/items/weapons/swords_axes_etc.dm +++ b/code/game/objects/items/weapons/swords_axes_etc.dm @@ -59,7 +59,7 @@ drop_sound = 'sound/items/drop/crowbar.ogg' pickup_sound = 'sound/items/pickup/crowbar.ogg' -/obj/item/melee/telebaton/attack_self(mob/user) +/obj/item/melee/telebaton/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -196,7 +196,7 @@ damage_force = 0 attack_sound = "sound/items/bikehorn.ogg" -/obj/item/melee/stool/faiza/attack_self(mob/user) +/obj/item/melee/stool/faiza/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/objects/items/weapons/syndie.dm b/code/game/objects/items/weapons/syndie.dm index 93168cbb59a1..cae61f0d7926 100644 --- a/code/game/objects/items/weapons/syndie.dm +++ b/code/game/objects/items/weapons/syndie.dm @@ -78,7 +78,7 @@ var/detonator_mode = 0 var/obj/item/syndie/c4explosive/bomb -/obj/item/flame/lighter/zippo/c4detonator/attack_self(mob/user) +/obj/item/flame/lighter/zippo/c4detonator/attack_self(mob/user, datum/event_args/actor/actor) if(!detonator_mode) ..() diff --git a/code/game/objects/items/weapons/tanks/tank.dm b/code/game/objects/items/weapons/tanks/tank.dm index 24bb915b4fa1..6e2c1b5a485e 100644 --- a/code/game/objects/items/weapons/tanks/tank.dm +++ b/code/game/objects/items/weapons/tanks/tank.dm @@ -220,7 +220,7 @@ var/list/global/tank_gauge_cache = list() -/obj/item/tank/attack_self(mob/user) +/obj/item/tank/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/objects/items/weapons/teleportation.dm b/code/game/objects/items/weapons/teleportation.dm index 52b06f60bbae..c53a9b5df74a 100644 --- a/code/game/objects/items/weapons/teleportation.dm +++ b/code/game/objects/items/weapons/teleportation.dm @@ -23,7 +23,7 @@ origin_tech = list(TECH_MAGNET = 1) materials_base = list(MAT_STEEL = 400) -/obj/item/locator/attack_self(mob/user) +/obj/item/locator/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -133,7 +133,7 @@ Frequency: materials_base = list(MAT_STEEL = 10000) preserve_item = 1 -/obj/item/hand_tele/attack_self(mob/user) +/obj/item/hand_tele/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/objects/items/weapons/towels.dm b/code/game/objects/items/weapons/towels.dm index c6cf2dffe3c3..687963a5b24d 100644 --- a/code/game/objects/items/weapons/towels.dm +++ b/code/game/objects/items/weapons/towels.dm @@ -23,7 +23,7 @@ if(SLOT_ID_BELT) sprite_sheets = list(SPECIES_TESHARI = 'icons/mob/clothing/species/teshari/belt.dmi') -/obj/item/towel/attack_self(mob/user) +/obj/item/towel/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/objects/items/weapons/traps.dm b/code/game/objects/items/weapons/traps.dm index a56cd093b593..e81e8964a74b 100644 --- a/code/game/objects/items/weapons/traps.dm +++ b/code/game/objects/items/weapons/traps.dm @@ -39,7 +39,7 @@ user.visible_message("[user] is putting the [src.name] on [T.his] head! It looks like [T.hes] trying to commit suicide.") return (BRUTELOSS) -/obj/item/beartrap/attack_self(mob/user) +/obj/item/beartrap/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/objects/structures/bedsheet_bin.dm b/code/game/objects/structures/bedsheet_bin.dm index 554be30604dd..fed78943d55c 100644 --- a/code/game/objects/structures/bedsheet_bin.dm +++ b/code/game/objects/structures/bedsheet_bin.dm @@ -19,7 +19,7 @@ LINEN BINS drop_sound = 'sound/items/drop/backpack.ogg' pickup_sound = 'sound/items/pickup/backpack.ogg' -/obj/item/bedsheet/attack_self(mob/user) +/obj/item/bedsheet/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/objects/structures/stool_bed_chair_nest/bed.dm b/code/game/objects/structures/stool_bed_chair_nest/bed.dm index f1b0043751fa..8a4dca633c6c 100644 --- a/code/game/objects/structures/stool_bed_chair_nest/bed.dm +++ b/code/game/objects/structures/stool_bed_chair_nest/bed.dm @@ -262,7 +262,7 @@ drop_sound = 'sound/items/drop/axe.ogg' pickup_sound = 'sound/items/pickup/axe.ogg' -/obj/item/roller/attack_self(mob/user) +/obj/item/roller/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -301,7 +301,7 @@ . = ..() held = new /obj/item/roller(src) -/obj/item/roller_holder/attack_self(mob/user) +/obj/item/roller_holder/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/objects/structures/stool_bed_chair_nest/wheelchair.dm b/code/game/objects/structures/stool_bed_chair_nest/wheelchair.dm index 39d5dd6ba358..db8aeb22810b 100644 --- a/code/game/objects/structures/stool_bed_chair_nest/wheelchair.dm +++ b/code/game/objects/structures/stool_bed_chair_nest/wheelchair.dm @@ -195,7 +195,7 @@ /// What we unfold to var/unfolded_type = /obj/structure/bed/chair/wheelchair -/obj/item/wheelchair/attack_self(mob/user) +/obj/item/wheelchair/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/game/objects/structures/watercloset.dm b/code/game/objects/structures/watercloset.dm index d94c0aa091ea..79fe2c891e59 100644 --- a/code/game/objects/structures/watercloset.dm +++ b/code/game/objects/structures/watercloset.dm @@ -131,7 +131,7 @@ reagents.add_reagent("chlorine", 3) reagents.add_reagent("ammonia", 1) -/obj/item/reagent_containers/food/urinalcake/attack_self(mob/user) +/obj/item/reagent_containers/food/urinalcake/attack_self(mob/user, datum/event_args/actor/actor) user.visible_message("[user] squishes [src]!", "You squish [src].", "You hear a squish.") icon_state = "urinalcake_squish" addtimer(VARSET_CALLBACK(src, icon_state, "urinalcake"), 8) diff --git a/code/modules/assembly/assembly.dm b/code/modules/assembly/assembly.dm index b902a0a7c075..69f88b0ebede 100644 --- a/code/modules/assembly/assembly.dm +++ b/code/modules/assembly/assembly.dm @@ -98,7 +98,7 @@ return -/obj/item/assembly/attack_self(mob/user) +/obj/item/assembly/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/assembly/holder.dm b/code/modules/assembly/holder.dm index b9acfc00dc7e..580fd5865047 100644 --- a/code/modules/assembly/holder.dm +++ b/code/modules/assembly/holder.dm @@ -108,7 +108,7 @@ else ..() -/obj/item/assembly_holder/attack_self(mob/user) +/obj/item/assembly_holder/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/assembly/igniter.dm b/code/modules/assembly/igniter.dm index d5386a290c54..fb4f10402244 100644 --- a/code/modules/assembly/igniter.dm +++ b/code/modules/assembly/igniter.dm @@ -32,7 +32,7 @@ return TRUE -/obj/item/assembly/igniter/attack_self(mob/user) +/obj/item/assembly/igniter/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/assembly/mousetrap.dm b/code/modules/assembly/mousetrap.dm index f06c66e968d7..f2a8e237c65e 100644 --- a/code/modules/assembly/mousetrap.dm +++ b/code/modules/assembly/mousetrap.dm @@ -48,7 +48,7 @@ update_icon() pulse(0) -/obj/item/assembly/mousetrap/attack_self(mob/user) +/obj/item/assembly/mousetrap/attack_self(mob/user, datum/event_args/actor/actor) if(!armed) to_chat(user, "You arm [src].") else diff --git a/code/modules/assembly/shock_kit.dm b/code/modules/assembly/shock_kit.dm index 3bde2f5966ea..16e85d944d6a 100644 --- a/code/modules/assembly/shock_kit.dm +++ b/code/modules/assembly/shock_kit.dm @@ -33,7 +33,7 @@ add_fingerprint(user) return -/obj/item/assembly/shock_kit/attack_self(mob/user) +/obj/item/assembly/shock_kit/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/assembly/voice.dm b/code/modules/assembly/voice.dm index 0b6e2fb75bbb..9c960a397360 100644 --- a/code/modules/assembly/voice.dm +++ b/code/modules/assembly/voice.dm @@ -25,7 +25,7 @@ T.visible_message("[icon2html(thing = src, target = world)] beeps, \"[listening ? "Now" : "No longer"] recording input.\"") -/obj/item/assembly/voice/attack_self(mob/user) +/obj/item/assembly/voice/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/catalogue/cataloguer.dm b/code/modules/catalogue/cataloguer.dm index 9df63a483798..452e3296d280 100644 --- a/code/modules/catalogue/cataloguer.dm +++ b/code/modules/catalogue/cataloguer.dm @@ -250,7 +250,7 @@ GLOBAL_LIST_EMPTY(all_cataloguers) /obj/item/cataloguer/proc/adjust_points(amount) points_stored = max(0, points_stored += amount) -/obj/item/cataloguer/attack_self(mob/user) +/obj/item/cataloguer/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/clothing/glasses/_glasses.dm b/code/modules/clothing/glasses/_glasses.dm index 5dffd45ae06e..7766e0a6fa25 100644 --- a/code/modules/clothing/glasses/_glasses.dm +++ b/code/modules/clothing/glasses/_glasses.dm @@ -48,7 +48,7 @@ BLIND // can't see anything if(!isnull(vision_modifier)) user.remove_vision_modifier(vision_modifier) -/obj/item/clothing/glasses/attack_self(mob/user) +/obj/item/clothing/glasses/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -429,7 +429,7 @@ BLIND // can't see anything flash_protection = FLASH_PROTECTION_MAJOR tint = TINT_HEAVY -/obj/item/clothing/glasses/welding/attack_self(mob/user) +/obj/item/clothing/glasses/welding/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -563,7 +563,7 @@ BLIND // can't see anything toggleable = 1 activation_sound = 'sound/effects/pop.ogg' -/obj/item/clothing/glasses/sunglasses/sechud/aviator/attack_self(mob/user) +/obj/item/clothing/glasses/sunglasses/sechud/aviator/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -682,7 +682,7 @@ BLIND // can't see anything body_cover_flags = EYES species_restricted = list(SPECIES_TESHARI) -/obj/item/clothing/glasses/aerogelgoggles/attack_self(mob/user) +/obj/item/clothing/glasses/aerogelgoggles/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/clothing/glasses/hud.dm b/code/modules/clothing/glasses/hud.dm index 8d256fedc00e..2fff2f19887f 100644 --- a/code/modules/clothing/glasses/hud.dm +++ b/code/modules/clothing/glasses/hud.dm @@ -111,7 +111,7 @@ name = "[initial(name)]" user.visible_message("[user] deletes the prescription data on the [src.name].") -/obj/item/clothing/glasses/omnihud/attack_self(mob/user) +/obj/item/clothing/glasses/omnihud/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -209,7 +209,7 @@ vision_flags = SEE_TURFS //but they can spot breaches. Due to the way HUDs work, they don't provide darkvision up-close the way mesons do. -/obj/item/clothing/glasses/omnihud/eng/meson/attack_self(mob/user) +/obj/item/clothing/glasses/omnihud/eng/meson/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -299,7 +299,7 @@ toggleable = 1 vision_flags = SEE_TURFS //but they can spot breaches. Due to the way HUDs work, they don't provide darkvision up-close the way mesons do. -/obj/item/clothing/glasses/omnihud/eng/meson/attack_self(mob/user) +/obj/item/clothing/glasses/omnihud/eng/meson/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/clothing/gloves/miscellaneous.dm b/code/modules/clothing/gloves/miscellaneous.dm index 1fecc421944e..81bcc334a6d3 100644 --- a/code/modules/clothing/gloves/miscellaneous.dm +++ b/code/modules/clothing/gloves/miscellaneous.dm @@ -183,7 +183,7 @@ var/blessed = FALSE -/obj/item/clothing/gloves/swat/para/attack_self(mob/user) +/obj/item/clothing/gloves/swat/para/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/clothing/gloves/rings/rings.dm b/code/modules/clothing/gloves/rings/rings.dm index e56bf23c2770..129e5d10fa56 100644 --- a/code/modules/clothing/gloves/rings/rings.dm +++ b/code/modules/clothing/gloves/rings/rings.dm @@ -6,7 +6,7 @@ icon_state = "diamond" item_state = "diamond_s" -/obj/item/clothing/gloves/ring/engagement/attack_self(mob/user) +/obj/item/clothing/gloves/ring/engagement/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -100,7 +100,7 @@ icon_state = "seal-signet" var/nameset = FALSE -/obj/item/clothing/gloves/ring/seal/signet/attack_self(mob/user) +/obj/item/clothing/gloves/ring/seal/signet/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -124,7 +124,7 @@ item_state = "wedring_g" var/partnername = "" -/obj/item/clothing/gloves/ring/wedding/attack_self(mob/user) +/obj/item/clothing/gloves/ring/wedding/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/clothing/head/_head.dm b/code/modules/clothing/head/_head.dm index fef193c63c3a..ec4c69defa74 100644 --- a/code/modules/clothing/head/_head.dm +++ b/code/modules/clothing/head/_head.dm @@ -22,7 +22,7 @@ unequip_sound = 'sound/items/drop/hat.ogg' pickup_sound = 'sound/items/pickup/hat.ogg' -/obj/item/clothing/head/attack_self(mob/user) +/obj/item/clothing/head/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/clothing/head/helmet.dm b/code/modules/clothing/head/helmet.dm index 668f93731198..e31766d8d85e 100644 --- a/code/modules/clothing/head/helmet.dm +++ b/code/modules/clothing/head/helmet.dm @@ -67,7 +67,7 @@ valid_accessory_slots = ACCESSORY_SLOT_HELM_R item_action_name = "Toggle Visor" -/obj/item/clothing/head/helmet/riot/attack_self(mob/user) +/obj/item/clothing/head/helmet/riot/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -283,7 +283,7 @@ var/blessed = TRUE -/obj/item/clothing/head/helmet/para/attack_self(mob/user) +/obj/item/clothing/head/helmet/para/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -312,7 +312,7 @@ armor_type = /datum/armor/centcom/ert/paracausal item_action_name = "Enable Wards" -/obj/item/clothing/head/helmet/para/inquisitor/attack_self(mob/user) +/obj/item/clothing/head/helmet/para/inquisitor/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/clothing/head/misc.dm b/code/modules/clothing/head/misc.dm index 9a64a6dfb4bc..3ef819f459a9 100644 --- a/code/modules/clothing/head/misc.dm +++ b/code/modules/clothing/head/misc.dm @@ -552,7 +552,7 @@ icon_state = "reindeer0" item_action_name = "Toggle Nose" -/obj/item/clothing/head/reindeer/attack_self(mob/user) +/obj/item/clothing/head/reindeer/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -694,7 +694,7 @@ worn_render_flags = WORN_RENDER_SLOT_ONE_FOR_ALL item_action_name = "Toggle Hood" -/obj/item/clothing/head/cowl/attack_self(mob/user) +/obj/item/clothing/head/cowl/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/clothing/head/misc_special.dm b/code/modules/clothing/head/misc_special.dm index f6b34b2f2729..b685c459f629 100644 --- a/code/modules/clothing/head/misc_special.dm +++ b/code/modules/clothing/head/misc_special.dm @@ -31,7 +31,7 @@ drop_sound = 'sound/items/drop/helm.ogg' pickup_sound = 'sound/items/pickup/helm.ogg' -/obj/item/clothing/head/welding/attack_self(mob/user) +/obj/item/clothing/head/welding/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -143,7 +143,7 @@ if (istype(location, /turf)) location.hotspot_expose(700, 1) -/obj/item/clothing/head/cakehat/attack_self(mob/user) +/obj/item/clothing/head/cakehat/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -171,7 +171,7 @@ min_cold_protection_temperature = SPACE_SUIT_MIN_COLD_PROTECTION_TEMPERATURE cold_protection_cover = HEAD -/obj/item/clothing/head/ushanka/attack_self(mob/user) +/obj/item/clothing/head/ushanka/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/clothing/head/pilot_helmet.dm b/code/modules/clothing/head/pilot_helmet.dm index d0b50bdced6f..1ff65e30e17f 100644 --- a/code/modules/clothing/head/pilot_helmet.dm +++ b/code/modules/clothing/head/pilot_helmet.dm @@ -188,7 +188,7 @@ icon_state = "pilot_helmet2" item_action_name = "Toggle Visor" -/obj/item/clothing/head/pilot/alt/attack_self(mob/user) +/obj/item/clothing/head/pilot/alt/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/clothing/head/soft_caps.dm b/code/modules/clothing/head/soft_caps.dm index bd8df09b34e6..e2abbcfdcb43 100644 --- a/code/modules/clothing/head/soft_caps.dm +++ b/code/modules/clothing/head/soft_caps.dm @@ -12,7 +12,7 @@ flipped=0 ..() -/obj/item/clothing/head/soft/attack_self(mob/user) +/obj/item/clothing/head/soft/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/clothing/masks/breath.dm b/code/modules/clothing/masks/breath.dm index bd1e26e157a7..bea597d452fb 100644 --- a/code/modules/clothing/masks/breath.dm +++ b/code/modules/clothing/masks/breath.dm @@ -29,7 +29,7 @@ to_chat(user, "You pull the mask up to cover your face.") update_worn_icon() -/obj/item/clothing/mask/breath/attack_self(mob/user) +/obj/item/clothing/mask/breath/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/clothing/masks/gasmask.dm b/code/modules/clothing/masks/gasmask.dm index a682500a4fe8..09530c6f6b4b 100644 --- a/code/modules/clothing/masks/gasmask.dm +++ b/code/modules/clothing/masks/gasmask.dm @@ -80,7 +80,7 @@ set src in usr adjust_mask(usr) -/obj/item/clothing/mask/gas/half/attack_self(mob/user) +/obj/item/clothing/mask/gas/half/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -123,7 +123,7 @@ to_chat(user, "Your mask moves to cover your mouth.") return -/obj/item/clothing/mask/gas/swat/vox/attack_self(mob/user) +/obj/item/clothing/mask/gas/swat/vox/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/clothing/masks/miscellaneous.dm b/code/modules/clothing/masks/miscellaneous.dm index 6617f54e03e5..543815ad4fe3 100644 --- a/code/modules/clothing/masks/miscellaneous.dm +++ b/code/modules/clothing/masks/miscellaneous.dm @@ -211,7 +211,7 @@ icon_state = "bandblack" item_state_slots = list(SLOT_ID_RIGHT_HAND = "bandblack", SLOT_ID_LEFT_HAND = "bandblack") -/obj/item/clothing/mask/bandana/attack_self(mob/user) +/obj/item/clothing/mask/bandana/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(src.icon_state == initial(icon_state)) src.icon_state = "[icon_state]_up" @@ -275,7 +275,7 @@ icon_state = "plainmask" inv_hide_flags = HIDEEARS|HIDEEYES|HIDEFACE -/obj/item/clothing/mask/paper/attack_self(mob/user) +/obj/item/clothing/mask/paper/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/clothing/shoes/_shoes.dm b/code/modules/clothing/shoes/_shoes.dm index 8d43ec80d2b9..9a22bed7c687 100644 --- a/code/modules/clothing/shoes/_shoes.dm +++ b/code/modules/clothing/shoes/_shoes.dm @@ -104,7 +104,7 @@ else return ..() -/obj/item/clothing/shoes/attack_self(mob/user) +/obj/item/clothing/shoes/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return //gtfo my shoe diff --git a/code/modules/clothing/shoes/boots.dm b/code/modules/clothing/shoes/boots.dm index cf6461a1518c..9d68411de456 100644 --- a/code/modules/clothing/shoes/boots.dm +++ b/code/modules/clothing/shoes/boots.dm @@ -207,7 +207,7 @@ var/blessed = FALSE -/obj/item/clothing/shoes/boots/swat/para/attack_self(mob/user) +/obj/item/clothing/shoes/boots/swat/para/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/clothing/shoes/colour.dm b/code/modules/clothing/shoes/colour.dm index 664c2e9c60ad..fa7052ec5619 100644 --- a/code/modules/clothing/shoes/colour.dm +++ b/code/modules/clothing/shoes/colour.dm @@ -113,7 +113,7 @@ icon_state = "orange" chained = null -/obj/item/clothing/shoes/orange/attack_self(mob/user) +/obj/item/clothing/shoes/orange/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/clothing/shoes/magboots.dm b/code/modules/clothing/shoes/magboots.dm index 18716cdd619d..be8a98560a64 100644 --- a/code/modules/clothing/shoes/magboots.dm +++ b/code/modules/clothing/shoes/magboots.dm @@ -23,7 +23,7 @@ /obj/item/clothing/shoes/magboots/proc/update_magboot_encumbrance() set_encumbrance(initial(encumbrance) + (magpulse? encumbrance_on : 0)) -/obj/item/clothing/shoes/magboots/attack_self(mob/user) +/obj/item/clothing/shoes/magboots/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -80,7 +80,7 @@ item_action_name = "Toggle the magclaws" -/obj/item/clothing/shoes/magboots/vox/attack_self(mob/user) +/obj/item/clothing/shoes/magboots/vox/attack_self(mob/user, datum/event_args/actor/actor) if(src.magpulse) clothing_flags &= ~NOSLIP magpulse = 0 diff --git a/code/modules/clothing/spacesuits/void/void.dm b/code/modules/clothing/spacesuits/void/void.dm index 8bf334f378a1..0b0cf5d42636 100644 --- a/code/modules/clothing/spacesuits/void/void.dm +++ b/code/modules/clothing/spacesuits/void/void.dm @@ -285,7 +285,7 @@ to_chat(H, "You deploy your magboots.") // below is code for the action button method. im dumb. but it works? if you figure out a way to make it better tell me // hey peesh i made it better -hatter -/obj/item/clothing/suit/space/void/attack_self(mob/user) +/obj/item/clothing/suit/space/void/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/clothing/suits/armor.dm b/code/modules/clothing/suits/armor.dm index 5914082a6418..c312753af7cd 100644 --- a/code/modules/clothing/suits/armor.dm +++ b/code/modules/clothing/suits/armor.dm @@ -198,7 +198,7 @@ user.forceMove(picked) shieldcall_args[SHIELDCALL_ARG_FLAGS] |= SHIELDCALL_FLAG_ATTACK_BLOCKED | SHIELDCALL_FLAG_ATTACK_PASSTHROUGH -/obj/item/clothing/suit/armor/reactive/attack_self(mob/user) +/obj/item/clothing/suit/armor/reactive/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -757,7 +757,7 @@ var/anti_magic = FALSE var/blessed = FALSE -/obj/item/clothing/suit/armor/vest/para/attack_self(mob/user) +/obj/item/clothing/suit/armor/vest/para/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/clothing/suits/medieval_armor.dm b/code/modules/clothing/suits/medieval_armor.dm index af49c3e0d1e1..cba385a27b99 100644 --- a/code/modules/clothing/suits/medieval_armor.dm +++ b/code/modules/clothing/suits/medieval_armor.dm @@ -32,7 +32,7 @@ icon_state = "paladinhelm" item_action_name = "Toggle Visor" -/obj/item/clothing/head/helmet/medieval/paladin/attack_self(mob/user) +/obj/item/clothing/head/helmet/medieval/paladin/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -178,7 +178,7 @@ icon_state = "paladinhelm" item_action_name = "Toggle Visor" -/obj/item/clothing/head/medievalfake/paladin/attack_self(mob/user) +/obj/item/clothing/head/medievalfake/paladin/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/clothing/under/accessories/accessory.dm b/code/modules/clothing/under/accessories/accessory.dm index a9c28b8385af..393ead9c4f5f 100644 --- a/code/modules/clothing/under/accessories/accessory.dm +++ b/code/modules/clothing/under/accessories/accessory.dm @@ -386,7 +386,7 @@ slot = ACCESSORY_SLOT_DECOR item_action_name = "Adjust Gaiter" -/obj/item/clothing/accessory/gaiter/attack_self(mob/user) +/obj/item/clothing/accessory/gaiter/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -497,7 +497,7 @@ overlay_state = "choker_cst_overlay" var/customized = 0 -/obj/item/clothing/accessory/choker/attack_self(mob/user) +/obj/item/clothing/accessory/choker/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -694,7 +694,7 @@ M.afflict_paralyze(20 * 10) return -/obj/item/clothing/accessory/collar/shock/attack_self(mob/user) +/obj/item/clothing/accessory/collar/shock/attack_self(mob/user, datum/event_args/actor/actor) if(!istype(user, /mob/living/carbon/human)) return user.set_machine(src) @@ -767,7 +767,7 @@ /obj/item/clothing/accessory/collar/holo/indigestible/digest_act(var/atom/movable/item_storage = null) return FALSE -/obj/item/clothing/accessory/collar/attack_self(mob/user) +/obj/item/clothing/accessory/collar/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/clothing/under/accessories/armor.dm b/code/modules/clothing/under/accessories/armor.dm index f42b06b1c0a6..4782c5621f46 100644 --- a/code/modules/clothing/under/accessories/armor.dm +++ b/code/modules/clothing/under/accessories/armor.dm @@ -496,7 +496,7 @@ camera_networks = list(NETWORK_CIV_HELMETS) -/obj/item/clothing/accessory/armor/helmetcamera/attack_self(mob/user) +/obj/item/clothing/accessory/armor/helmetcamera/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/clothing/under/accessories/badges.dm b/code/modules/clothing/under/accessories/badges.dm index ccf7a3ee042a..26efe9469664 100644 --- a/code/modules/clothing/under/accessories/badges.dm +++ b/code/modules/clothing/under/accessories/badges.dm @@ -28,7 +28,7 @@ /obj/item/clothing/accessory/badge/proc/set_desc(var/mob/living/carbon/human/H) -/obj/item/clothing/accessory/badge/attack_self(mob/user) +/obj/item/clothing/accessory/badge/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -56,7 +56,7 @@ icon_state = "sheriff" item_state = "goldbadge" -/obj/item/clothing/accessory/badge/sheriff/attack_self(mob/user) +/obj/item/clothing/accessory/badge/sheriff/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -79,7 +79,7 @@ icon_state = "holobadge-cord" slot_flags = SLOT_MASK | SLOT_TIE | SLOT_BELT -/obj/item/clothing/accessory/badge/holo/attack_self(mob/user) +/obj/item/clothing/accessory/badge/holo/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/clothing/under/accessories/clothing.dm b/code/modules/clothing/under/accessories/clothing.dm index 86d77f3e4825..7b057ad64f72 100644 --- a/code/modules/clothing/under/accessories/clothing.dm +++ b/code/modules/clothing/under/accessories/clothing.dm @@ -136,7 +136,7 @@ /obj/item/gun/ballistic, /obj/item/ammo_magazine, /obj/item/melee/baton) item_action_name = "Adjust Cloak" -/obj/item/clothing/accessory/poncho/rough_cloak/attack_self(mob/user) +/obj/item/clothing/accessory/poncho/rough_cloak/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/clothing/under/accessories/lockets.dm b/code/modules/clothing/under/accessories/lockets.dm index 8b53a4f70ced..dd2aa41aaf81 100644 --- a/code/modules/clothing/under/accessories/lockets.dm +++ b/code/modules/clothing/under/accessories/lockets.dm @@ -11,7 +11,7 @@ var/open var/obj/item/held //Item inside locket. -/obj/item/clothing/accessory/locket/attack_self(mob/user) +/obj/item/clothing/accessory/locket/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/clothing/under/accessories/permits.dm b/code/modules/clothing/under/accessories/permits.dm index ceb63ca3569e..ca155ab7cf4e 100755 --- a/code/modules/clothing/under/accessories/permits.dm +++ b/code/modules/clothing/under/accessories/permits.dm @@ -9,7 +9,7 @@ slot = ACCESSORY_SLOT_MEDAL var/owner = 0 //To prevent people from just renaming the thing if they steal it -/obj/item/clothing/accessory/permit/attack_self(mob/user) +/obj/item/clothing/accessory/permit/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/detectivework/tools/evidencebag.dm b/code/modules/detectivework/tools/evidencebag.dm index 8a52f1045d57..cb1ec67a42c6 100644 --- a/code/modules/detectivework/tools/evidencebag.dm +++ b/code/modules/detectivework/tools/evidencebag.dm @@ -72,7 +72,7 @@ stored_item = I set_weight_class(I.w_class) -/obj/item/evidencebag/attack_self(mob/user) +/obj/item/evidencebag/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/detectivework/tools/rag.dm b/code/modules/detectivework/tools/rag.dm index 4b2741e467bf..8140362947be 100644 --- a/code/modules/detectivework/tools/rag.dm +++ b/code/modules/detectivework/tools/rag.dm @@ -57,7 +57,7 @@ STOP_PROCESSING(SSobj, src) //so we don't continue turning to ash while gc'd return ..() -/obj/item/reagent_containers/glass/rag/attack_self(mob/user) +/obj/item/reagent_containers/glass/rag/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/detectivework/tools/sample_kits.dm b/code/modules/detectivework/tools/sample_kits.dm index 993e2e36d946..ab1601b1610a 100644 --- a/code/modules/detectivework/tools/sample_kits.dm +++ b/code/modules/detectivework/tools/sample_kits.dm @@ -60,7 +60,7 @@ icon_state = "fingerprint0" item_state = "paper" -/obj/item/sample/print/attack_self(mob/user) +/obj/item/sample/print/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/detectivework/tools/uvlight.dm b/code/modules/detectivework/tools/uvlight.dm index 808c019bb291..88f228fef868 100644 --- a/code/modules/detectivework/tools/uvlight.dm +++ b/code/modules/detectivework/tools/uvlight.dm @@ -18,7 +18,7 @@ var/on = 0 var/step_alpha = 50 -/obj/item/uv_light/attack_self(mob/user) +/obj/item/uv_light/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/economy/items/EFTPOS.dm b/code/modules/economy/items/EFTPOS.dm index a3c2a71f5f2c..218bacb5b96d 100644 --- a/code/modules/economy/items/EFTPOS.dm +++ b/code/modules/economy/items/EFTPOS.dm @@ -84,7 +84,7 @@ D.wrapped = R D.name = "small parcel - 'EFTPOS access code'" -/obj/item/eftpos/attack_self(mob/user) +/obj/item/eftpos/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/economy/items/cash.dm b/code/modules/economy/items/cash.dm index 1da69fe8d697..f80c78e63231 100644 --- a/code/modules/economy/items/cash.dm +++ b/code/modules/economy/items/cash.dm @@ -85,7 +85,7 @@ update_icon() return worth -/obj/item/spacecash/attack_self(mob/user) +/obj/item/spacecash/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -187,7 +187,7 @@ pickup_sound = 'sound/items/pickup/card.ogg' var/owner_name = "" //So the ATM can set it so the EFTPOS can put a valid name on transactions. -/obj/item/spacecash/ewallet/attack_self(mob/user) +/obj/item/spacecash/ewallet/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/economy/items/coins.dm b/code/modules/economy/items/coins.dm index 6a85dd5c3597..9ef3390d17f4 100644 --- a/code/modules/economy/items/coins.dm +++ b/code/modules/economy/items/coins.dm @@ -103,7 +103,7 @@ to_chat(user, "You detach the string from the coin.") else ..() -/obj/item/coin/attack_self(mob/user) +/obj/item/coin/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/economy/items/retail_scanner.dm b/code/modules/economy/items/retail_scanner.dm index c4d49fc1db4a..789659f083db 100644 --- a/code/modules/economy/items/retail_scanner.dm +++ b/code/modules/economy/items/retail_scanner.dm @@ -46,7 +46,7 @@ setDir(SOUTH) pixel_y = 0 -/obj/item/retail_scanner/attack_self(mob/user) +/obj/item/retail_scanner/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/fishing/aquarium/aquarium_kit.dm b/code/modules/fishing/aquarium/aquarium_kit.dm index b3fd86920320..344616714b5b 100644 --- a/code/modules/fishing/aquarium/aquarium_kit.dm +++ b/code/modules/fishing/aquarium/aquarium_kit.dm @@ -18,6 +18,6 @@ icon_state = "construction_kit" w_class = WEIGHT_CLASS_TINY -/obj/item/aquarium_kit/attack_self(mob/user) +/obj/item/aquarium_kit/attack_self(mob/user, datum/event_args/actor/actor) . = ..() to_chat(user, SPAN_NOTICE("There's instruction and tools necessary to build aquarium inside. All you need is to start crafting.")) diff --git a/code/modules/fishing/equipment/bait_can.dm b/code/modules/fishing/equipment/bait_can.dm index a26b81331f8a..52b5f07b4aec 100644 --- a/code/modules/fishing/equipment/bait_can.dm +++ b/code/modules/fishing/equipment/bait_can.dm @@ -14,7 +14,7 @@ /// how much it has left; null for infinite var/bait_left = 50 -/obj/item/bait_can/attack_self(mob/user) +/obj/item/bait_can/attack_self(mob/user, datum/event_args/actor/actor) . = ..() var/fresh_bait = retrieve_bait(user) if(fresh_bait) diff --git a/code/modules/food/drinks/bottle.dm b/code/modules/food/drinks/bottle.dm index de52e6a5082d..42fabc5b3c76 100644 --- a/code/modules/food/drinks/bottle.dm +++ b/code/modules/food/drinks/bottle.dm @@ -107,7 +107,7 @@ return ..() -/obj/item/reagent_containers/food/drinks/bottle/attack_self(mob/user) +/obj/item/reagent_containers/food/drinks/bottle/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/food/drinks/shaker.dm b/code/modules/food/drinks/shaker.dm index 8a425e83ab8f..41e7fd53917d 100644 --- a/code/modules/food/drinks/shaker.dm +++ b/code/modules/food/drinks/shaker.dm @@ -7,7 +7,7 @@ center_of_mass = list("x"=17, "y"=10) -/obj/item/reagent_containers/food/drinks/shaker/attack_self(mob/user) +/obj/item/reagent_containers/food/drinks/shaker/attack_self(mob/user, datum/event_args/actor/actor) playsound(loc, "sound/items/shaker.ogg", 75, 1, -1) if(prob(50)) diff --git a/code/modules/food/food/condiment.dm b/code/modules/food/food/condiment.dm index db7d44dca4a7..e23b5299148f 100644 --- a/code/modules/food/food/condiment.dm +++ b/code/modules/food/food/condiment.dm @@ -18,7 +18,7 @@ /obj/item/reagent_containers/food/condiment/attackby(var/obj/item/W as obj, var/mob/user as mob) return -/obj/item/reagent_containers/food/condiment/attack_self(mob/user) +/obj/item/reagent_containers/food/condiment/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/food/food/drinks.dm b/code/modules/food/food/drinks.dm index 745c9defb59b..22144611a5b0 100644 --- a/code/modules/food/food/drinks.dm +++ b/code/modules/food/food/drinks.dm @@ -25,7 +25,7 @@ price_tag = null return -/obj/item/reagent_containers/food/drinks/attack_self(mob/user) +/obj/item/reagent_containers/food/drinks/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/food/food/snacks.dm b/code/modules/food/food/snacks.dm index ab89a235a24c..ecc14250008b 100644 --- a/code/modules/food/food/snacks.dm +++ b/code/modules/food/food/snacks.dm @@ -49,7 +49,7 @@ M.put_in_hands(trash) qdel(src) -/obj/item/reagent_containers/food/snacks/attack_self(mob/user) +/obj/item/reagent_containers/food/snacks/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -1004,7 +1004,7 @@ heated_reagents = list("doctorsdelight" = 5, "hyperzine" = 0.75, "synaptizine" = 0.25) var/has_been_heated = 0 -/obj/item/reagent_containers/food/snacks/donkpocket/sinpocket/attack_self(mob/user) +/obj/item/reagent_containers/food/snacks/donkpocket/sinpocket/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -1858,7 +1858,7 @@ . = ..() reagents.add_reagent("protein", 10) -/obj/item/reagent_containers/food/snacks/monkeycube/attack_self(mob/user) +/obj/item/reagent_containers/food/snacks/monkeycube/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -3298,7 +3298,7 @@ return . = ..() -/obj/item/pizzabox/attack_self(mob/user) +/obj/item/pizzabox/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/games/cards.dm b/code/modules/games/cards.dm index 1fb2c99dffed..154fa03fb807 100644 --- a/code/modules/games/cards.dm +++ b/code/modules/games/cards.dm @@ -212,7 +212,7 @@ ..() -/obj/item/deck/attack_self(mob/user) +/obj/item/deck/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -287,7 +287,7 @@ pickup_sound = 'sound/items/pickup/paper.ogg' -/obj/item/pack/attack_self(mob/user) +/obj/item/pack/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -349,7 +349,7 @@ if(!cards.len) qdel(src) -/obj/item/hand/attack_self(mob/user) +/obj/item/hand/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/games/dice.dm b/code/modules/games/dice.dm index 55bf090bfdd1..b02916526b58 100644 --- a/code/modules/games/dice.dm +++ b/code/modules/games/dice.dm @@ -55,7 +55,7 @@ sides = 10 result = 10 -/obj/item/dice/attack_self(mob/user) +/obj/item/dice/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -148,7 +148,7 @@ /obj/item/dice, ) -/obj/item/storage/dicecup/attack_self(mob/user) +/obj/item/storage/dicecup/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/hardsuits/suits/ert.dm b/code/modules/hardsuits/suits/ert.dm index 4a23e26fd456..955c23b7bcf7 100644 --- a/code/modules/hardsuits/suits/ert.dm +++ b/code/modules/hardsuits/suits/ert.dm @@ -153,7 +153,7 @@ /obj/item/hardsuit_module/self_destruct ) -/obj/item/hardsuit/ert/para/attack_self(mob/user) +/obj/item/hardsuit/ert/para/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/holodeck/HolodeckObjects.dm b/code/modules/holodeck/HolodeckObjects.dm index 9160f19cc590..4010d4dd9bae 100644 --- a/code/modules/holodeck/HolodeckObjects.dm +++ b/code/modules/holodeck/HolodeckObjects.dm @@ -241,7 +241,7 @@ // todo: the parry system was removed from this because that sucks maybe readd it later lol -/obj/item/holo/esword/attack_self(mob/user) +/obj/item/holo/esword/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/hydroponics/beekeeping/beehive.dm b/code/modules/hydroponics/beekeeping/beehive.dm index 7e3e2e941fe0..921adb89bab3 100644 --- a/code/modules/hydroponics/beekeeping/beehive.dm +++ b/code/modules/hydroponics/beekeeping/beehive.dm @@ -228,7 +228,7 @@ icon = 'icons/obj/apiary_bees_etc.dmi' icon_state = "apiary" -/obj/item/beehive_assembly/attack_self(mob/user) +/obj/item/beehive_assembly/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/hydroponics/grown.dm b/code/modules/hydroponics/grown.dm index 190209349338..48206ed05c1e 100644 --- a/code/modules/hydroponics/grown.dm +++ b/code/modules/hydroponics/grown.dm @@ -258,7 +258,7 @@ to_chat(user, "\The [src] has fallen to bits.") qdel(src) -/obj/item/reagent_containers/food/snacks/grown/attack_self(mob/user) +/obj/item/reagent_containers/food/snacks/grown/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/hydroponics/seed_machines.dm b/code/modules/hydroponics/seed_machines.dm index 11f538991210..8fed8de86aed 100644 --- a/code/modules/hydroponics/seed_machines.dm +++ b/code/modules/hydroponics/seed_machines.dm @@ -13,7 +13,7 @@ pixel_x = rand(-5,5) pixel_y = rand(-5,5) -/obj/item/disk/botany/attack_self(mob/user) +/obj/item/disk/botany/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/industry/destination_tagger.dm b/code/modules/industry/destination_tagger.dm index afa4406dde4a..75687946e1e0 100644 --- a/code/modules/industry/destination_tagger.dm +++ b/code/modules/industry/destination_tagger.dm @@ -26,7 +26,7 @@ return data -/obj/item/destTagger/attack_self(mob/user) +/obj/item/destTagger/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/industry/packages/small_parcel.dm b/code/modules/industry/packages/small_parcel.dm index 433b8444952e..1b95ff9f2769 100644 --- a/code/modules/industry/packages/small_parcel.dm +++ b/code/modules/industry/packages/small_parcel.dm @@ -12,7 +12,7 @@ var/nameset = 0 var/tag_x -/obj/item/smallDelivery/attack_self(mob/user) +/obj/item/smallDelivery/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/instruments/instruments/item.dm b/code/modules/instruments/instruments/item.dm index a4fb544ec222..e0b6ad26a16f 100644 --- a/code/modules/instruments/instruments/item.dm +++ b/code/modules/instruments/instruments/item.dm @@ -50,7 +50,7 @@ user.visible_message("[user] begins to play 'Gloomy Sunday'! It looks like they're trying to commit suicide!") return (BRUTELOSS) -/obj/item/instrument/attack_self(mob/user) +/obj/item/instrument/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/integrated_electronics/core/assemblies.dm b/code/modules/integrated_electronics/core/assemblies.dm index 43cfa1a3546b..38bd461e8e98 100644 --- a/code/modules/integrated_electronics/core/assemblies.dm +++ b/code/modules/integrated_electronics/core/assemblies.dm @@ -514,7 +514,7 @@ return TRUE return ..() -/obj/item/electronic_assembly/attack_self(mob/user) +/obj/item/electronic_assembly/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/integrated_electronics/core/assemblies/clothing.dm b/code/modules/integrated_electronics/core/assemblies/clothing.dm index 7da98646c91b..91f80ee4abac 100644 --- a/code/modules/integrated_electronics/core/assemblies/clothing.dm +++ b/code/modules/integrated_electronics/core/assemblies/clothing.dm @@ -65,7 +65,7 @@ else ..() -/obj/item/clothing/attack_self(mob/user) +/obj/item/clothing/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/integrated_electronics/core/assemblies/device.dm b/code/modules/integrated_electronics/core/assemblies/device.dm index 205160dd0602..afc031bf479e 100644 --- a/code/modules/integrated_electronics/core/assemblies/device.dm +++ b/code/modules/integrated_electronics/core/assemblies/device.dm @@ -39,7 +39,7 @@ if(opened) icon_state = icon_state + "-open" -/obj/item/assembly/electronic_assembly/attack_self(mob/user) +/obj/item/assembly/electronic_assembly/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/integrated_electronics/core/detailer.dm b/code/modules/integrated_electronics/core/detailer.dm index 3875e34f63fc..20da320a5baa 100644 --- a/code/modules/integrated_electronics/core/detailer.dm +++ b/code/modules/integrated_electronics/core/detailer.dm @@ -62,7 +62,7 @@ update_icon() return TRUE -/obj/item/integrated_electronics/detailer/attack_self(mob/user) +/obj/item/integrated_electronics/detailer/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/integrated_electronics/core/printer.dm b/code/modules/integrated_electronics/core/printer.dm index 536ebe2f61d9..48e4da9657d3 100644 --- a/code/modules/integrated_electronics/core/printer.dm +++ b/code/modules/integrated_electronics/core/printer.dm @@ -174,7 +174,7 @@ dirty_items = TRUE return ..() -/obj/item/integrated_circuit_printer/attack_self(mob/user) +/obj/item/integrated_circuit_printer/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/integrated_electronics/core/tools.dm b/code/modules/integrated_electronics/core/tools.dm index 36d050cff97f..536f2de027e1 100644 --- a/code/modules/integrated_electronics/core/tools.dm +++ b/code/modules/integrated_electronics/core/tools.dm @@ -77,7 +77,7 @@ [io.name] are not connected.") return -/obj/item/integrated_electronics/wirer/attack_self(mob/user) +/obj/item/integrated_electronics/wirer/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -115,7 +115,7 @@ var/accepting_refs = FALSE var/copy_values = FALSE -/obj/item/integrated_electronics/debugger/attack_self(mob/user) +/obj/item/integrated_electronics/debugger/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -247,7 +247,7 @@ var/datum/integrated_io/selected_io = null var/mode = 0 -/obj/item/multitool/attack_self(mob/user) +/obj/item/multitool/attack_self(mob/user, datum/event_args/actor/actor) if(selected_io) selected_io = null to_chat(user, "You clear the wired connection from the multitool.") diff --git a/code/modules/integrated_electronics/subtypes/manipulation.dm b/code/modules/integrated_electronics/subtypes/manipulation.dm index 5932727d079c..8d2e3c87f7e7 100644 --- a/code/modules/integrated_electronics/subtypes/manipulation.dm +++ b/code/modules/integrated_electronics/subtypes/manipulation.dm @@ -291,7 +291,7 @@ set_pin_data(IC_OUTPUT, 4, contents) push_data() -/obj/item/integrated_circuit/manipulation/grabber/attack_self(mob/user) +/obj/item/integrated_circuit/manipulation/grabber/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -858,7 +858,7 @@ else ..() -/obj/item/integrated_circuit/manipulation/weapon_firing/attack_self(mob/user) +/obj/item/integrated_circuit/manipulation/weapon_firing/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -968,7 +968,7 @@ else return ..() -/obj/item/integrated_circuit/manipulation/grenade/attack_self(mob/user) +/obj/item/integrated_circuit/manipulation/grenade/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/integrated_electronics/subtypes/memory.dm b/code/modules/integrated_electronics/subtypes/memory.dm index 4d9cb02f5a11..e9d77e52c592 100644 --- a/code/modules/integrated_electronics/subtypes/memory.dm +++ b/code/modules/integrated_electronics/subtypes/memory.dm @@ -80,7 +80,7 @@ var/datum/integrated_io/O = outputs[1] O.push_data() -/obj/item/integrated_circuit/memory/constant/attack_self(mob/user) +/obj/item/integrated_circuit/memory/constant/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/integrated_electronics/subtypes/reagents.dm b/code/modules/integrated_electronics/subtypes/reagents.dm index 0fd77a803735..f2b47af1ab9a 100644 --- a/code/modules/integrated_electronics/subtypes/reagents.dm +++ b/code/modules/integrated_electronics/subtypes/reagents.dm @@ -345,7 +345,7 @@ activate_pin(1) activate_pin(3) -/obj/item/integrated_circuit/input/beaker_connector/attack_self(mob/user) +/obj/item/integrated_circuit/input/beaker_connector/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/integrated_electronics/subtypes/smart.dm b/code/modules/integrated_electronics/subtypes/smart.dm index 87ce2c081598..23c86cc15319 100644 --- a/code/modules/integrated_electronics/subtypes/smart.dm +++ b/code/modules/integrated_electronics/subtypes/smart.dm @@ -193,7 +193,7 @@ O.brainmob.remote_control=src set_pin_data(IC_OUTPUT, 1, O) -/obj/item/integrated_circuit/input/mmi_tank/attack_self(mob/user) +/obj/item/integrated_circuit/input/mmi_tank/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -320,7 +320,7 @@ O.pai.remote_control=src set_pin_data(IC_OUTPUT, 1, O) -/obj/item/integrated_circuit/input/pAI_connector/attack_self(mob/user) +/obj/item/integrated_circuit/input/pAI_connector/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/library/book.dm b/code/modules/library/book.dm index 1bef24446811..99fe01544338 100644 --- a/code/modules/library/book.dm +++ b/code/modules/library/book.dm @@ -19,7 +19,7 @@ drop_sound = 'sound/items/drop/book.ogg' pickup_sound = 'sound/items/pickup/book.ogg' -/obj/item/book/attack_self(mob/user) +/obj/item/book/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/library/lib_items.dm b/code/modules/library/lib_items.dm index 5df9c106a829..137f34650add 100644 --- a/code/modules/library/lib_items.dm +++ b/code/modules/library/lib_items.dm @@ -223,7 +223,7 @@ var/obj/item/book/book // Currently scanned book var/mode = 0 // 0 - Scan only, 1 - Scan and Set Buffer, 2 - Scan and Attempt to Check In, 3 - Scan and Attempt to Add to Inventory -/obj/item/barcodescanner/attack_self(mob/user) +/obj/item/barcodescanner/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/lore_codex/codex.dm b/code/modules/lore_codex/codex.dm index 0d33b2666658..b3e42744151e 100644 --- a/code/modules/lore_codex/codex.dm +++ b/code/modules/lore_codex/codex.dm @@ -12,7 +12,7 @@ tree = new(src, root_type) . = ..() -/obj/item/book/codex/attack_self(mob/user) +/obj/item/book/codex/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/materials/material_sheets.dm b/code/modules/materials/material_sheets.dm index 8fb9f06f477c..951fe7462566 100644 --- a/code/modules/materials/material_sheets.dm +++ b/code/modules/materials/material_sheets.dm @@ -91,7 +91,7 @@ if(M) M.update_strings() return transfer -/obj/item/stack/material/attack_self(mob/user) +/obj/item/stack/material/attack_self(mob/user, datum/event_args/actor/actor) if(!allow_window_autobuild || !material.build_windows(user, src)) return ..() diff --git a/code/modules/media/walkpod.dm b/code/modules/media/walkpod.dm index d000692afc2c..1346491113e6 100644 --- a/code/modules/media/walkpod.dm +++ b/code/modules/media/walkpod.dm @@ -77,7 +77,7 @@ else if(loc == L) // at least they're holding it to_chat(L, "Turn on the [src] first.") -/obj/item/device/walkpod/attack_self(mob/user) +/obj/item/device/walkpod/attack_self(mob/user, datum/event_args/actor/actor) var/mob/living/L = user if(!istype(L) || loc != L) return diff --git a/code/modules/mining/drilling/scanner.dm b/code/modules/mining/drilling/scanner.dm index 642157c2efe8..41bc46f94b60 100644 --- a/code/modules/mining/drilling/scanner.dm +++ b/code/modules/mining/drilling/scanner.dm @@ -27,7 +27,7 @@ to_chat(usr, "New scan range set to [scanrange] step(s) around user, including current location.") . = ..() -/obj/item/mining_scanner/attack_self(mob/user) +/obj/item/mining_scanner/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/mining/tools/fulton.dm b/code/modules/mining/tools/fulton.dm index e7df8a6c276a..b2c3a787de1f 100644 --- a/code/modules/mining/tools/fulton.dm +++ b/code/modules/mining/tools/fulton.dm @@ -31,7 +31,7 @@ var/global/list/total_extraction_beacons = list() . = ..() . +="It has [uses_left] use\s remaining." -/obj/item/extraction_pack/attack_self(mob/user) +/obj/item/extraction_pack/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -167,7 +167,7 @@ var/global/list/total_extraction_beacons = list() icon = 'icons/obj/stock_parts.dmi' icon_state = "subspace_amplifier" -/obj/item/fulton_core/attack_self(mob/user) +/obj/item/fulton_core/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/mining/tools/kinetic_accelerator.dm b/code/modules/mining/tools/kinetic_accelerator.dm index c09a9d21af61..cfcb7ae64758 100644 --- a/code/modules/mining/tools/kinetic_accelerator.dm +++ b/code/modules/mining/tools/kinetic_accelerator.dm @@ -632,7 +632,7 @@ name = "adjustable tracer bolts" desc = "Causes kinetic accelerator bolts to have an adjustable-colored tracer trail and explosion. Use in-hand to change color." -/obj/item/ka_modkit/tracer/adjustable/attack_self(mob/user) +/obj/item/ka_modkit/tracer/adjustable/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/mining/tools/mine_items.dm b/code/modules/mining/tools/mine_items.dm index 499d2e7f9276..ca72bb02a3f9 100644 --- a/code/modules/mining/tools/mine_items.dm +++ b/code/modules/mining/tools/mine_items.dm @@ -207,7 +207,7 @@ active = FALSE update_icon() -/obj/item/pickaxe/tyrmalin/attack_self(mob/user) +/obj/item/pickaxe/tyrmalin/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -393,7 +393,7 @@ else ..() -/obj/item/stack/flag/attack_self(mob/user) +/obj/item/stack/flag/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/mining/tools/resonator.dm b/code/modules/mining/tools/resonator.dm index 77a7e2585deb..6571987a5aae 100644 --- a/code/modules/mining/tools/resonator.dm +++ b/code/modules/mining/tools/resonator.dm @@ -37,7 +37,7 @@ spawn(burst_time) fieldsactive-- -/obj/item/resonator/attack_self(mob/user) +/obj/item/resonator/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/mining/tools/shelter_atoms.dm b/code/modules/mining/tools/shelter_atoms.dm index 619a349bdb74..30dad58e23d8 100644 --- a/code/modules/mining/tools/shelter_atoms.dm +++ b/code/modules/mining/tools/shelter_atoms.dm @@ -35,7 +35,7 @@ . += "This capsule has the [template.name] stored." . += template.description -/obj/item/survivalcapsule/attack_self(mob/user) +/obj/item/survivalcapsule/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/mining/tools/vertibore.dm b/code/modules/mining/tools/vertibore.dm index 324001d57776..180c3ffd05fc 100644 --- a/code/modules/mining/tools/vertibore.dm +++ b/code/modules/mining/tools/vertibore.dm @@ -71,7 +71,7 @@ return . = ..() -/obj/item/vertibore/attack_self(mob/user) +/obj/item/vertibore/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/mob/grab.dm b/code/modules/mob/grab.dm index c1229a5996dc..2c937c8129df 100644 --- a/code/modules/mob/grab.dm +++ b/code/modules/mob/grab.dm @@ -240,7 +240,7 @@ if(!affecting.has_status_effect(/datum/status_effect/sight/blindness)) affecting.apply_status_effect(/datum/status_effect/sight/blindness, 3 SECONDS) -/obj/item/grab/attack_self(mob/user) +/obj/item/grab/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/mob/living/carbon/brain/MMI.dm b/code/modules/mob/living/carbon/brain/MMI.dm index a77baa8385a2..2e17f0f2749b 100644 --- a/code/modules/mob/living/carbon/brain/MMI.dm +++ b/code/modules/mob/living/carbon/brain/MMI.dm @@ -109,7 +109,7 @@ ..() //TODO: ORGAN REMOVAL UPDATE. Make the brain remain in the MMI so it doesn't lose organ data. -/obj/item/mmi/attack_self(mob/user) +/obj/item/mmi/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -249,7 +249,7 @@ H.mind.transfer(brainmob) return -/obj/item/mmi/digital/attack_self(mob/user) +/obj/item/mmi/digital/attack_self(mob/user, datum/event_args/actor/actor) if(brainmob && !brainmob.key && searching == 0) //Start the process of searching for a new user. to_chat(user, "You carefully locate the manual activation switch and start the [src]'s boot process.") diff --git a/code/modules/mob/living/carbon/brain/posibrain.dm b/code/modules/mob/living/carbon/brain/posibrain.dm index f0cba1bd020d..ac9f20630ebe 100644 --- a/code/modules/mob/living/carbon/brain/posibrain.dm +++ b/code/modules/mob/living/carbon/brain/posibrain.dm @@ -33,7 +33,7 @@ if(istype(ghost)) question(ghost) -/obj/item/mmi/digital/posibrain/attack_self(mob/user) +/obj/item/mmi/digital/posibrain/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/mob/living/carbon/brain/robot.dm b/code/modules/mob/living/carbon/brain/robot.dm index 0ed4096809af..5a706f22d856 100644 --- a/code/modules/mob/living/carbon/brain/robot.dm +++ b/code/modules/mob/living/carbon/brain/robot.dm @@ -29,7 +29,7 @@ to_chat(brainmob, "You feel slightly disoriented. That's normal when you're little more than a complex circuit.") return -/obj/item/mmi/digital/robot/attack_self(mob/user) +/obj/item/mmi/digital/robot/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/mob/living/silicon/robot/dogborg/dog_modules_vr.dm b/code/modules/mob/living/silicon/robot/dogborg/dog_modules_vr.dm index c061d3a0c495..f0686a2f5e5c 100644 --- a/code/modules/mob/living/silicon/robot/dogborg/dog_modules_vr.dm +++ b/code/modules/mob/living/silicon/robot/dogborg/dog_modules_vr.dm @@ -21,7 +21,7 @@ w_class = WEIGHT_CLASS_NORMAL var/emagged = 0 -/obj/item/dogborg/jaws/small/attack_self(mob/user) +/obj/item/dogborg/jaws/small/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -60,7 +60,7 @@ attack_verb = list("nuzzled", "nosed", "booped") w_class = WEIGHT_CLASS_TINY -/obj/item/dogborg/boop_module/attack_self(mob/user) +/obj/item/dogborg/boop_module/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -190,7 +190,7 @@ if(water.energy < 5) . += "[src] is dry." -/obj/item/dogborg/tongue/attack_self(mob/user) +/obj/item/dogborg/tongue/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -304,7 +304,7 @@ item_flags = ITEM_NOBLUDGEON | ITEM_ENCUMBERS_WHILE_HELD var/enabled = FALSE -/obj/item/pupscrubber/attack_self(mob/user) +/obj/item/pupscrubber/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -349,7 +349,7 @@ var/cooldown = 0 var/datum/matter_synth/glass = null -/obj/item/lightreplacer/dogborg/attack_self(mob/user) +/obj/item/lightreplacer/dogborg/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return//Recharger refill is so last season. Now we recycle without magic! @@ -382,7 +382,7 @@ item_flags = ITEM_NOBLUDGEON | ITEM_ENCUMBERS_WHILE_HELD throw_force = 0 -/obj/item/dogborg/pounce/attack_self(mob/user) +/obj/item/dogborg/pounce/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/mob/living/silicon/robot/dogborg/dog_sleeper_vr.dm b/code/modules/mob/living/silicon/robot/dogborg/dog_sleeper_vr.dm index 29753b3839f0..d293d7c59dec 100644 --- a/code/modules/mob/living/silicon/robot/dogborg/dog_sleeper_vr.dm +++ b/code/modules/mob/living/silicon/robot/dogborg/dog_sleeper_vr.dm @@ -178,7 +178,7 @@ hound = hound.loc hound.cell.charge = hound.cell.charge - amt -/obj/item/dogborg/sleeper/attack_self(mob/user) +/obj/item/dogborg/sleeper/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/mob/living/silicon/robot/robot_items.dm b/code/modules/mob/living/silicon/robot/robot_items.dm index 6e40f348ffef..204c20df8389 100644 --- a/code/modules/mob/living/silicon/robot/robot_items.dm +++ b/code/modules/mob/living/silicon/robot/robot_items.dm @@ -16,7 +16,7 @@ . = ..() files = new /datum/research/techonly(src) //Setup the research data holder. -/obj/item/portable_destructive_analyzer/attack_self(mob/user) +/obj/item/portable_destructive_analyzer/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -274,7 +274,7 @@ name = "Printing Pen" var/mode = 1 -/obj/item/pen/robopen/attack_self(mob/user) +/obj/item/pen/robopen/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -335,7 +335,7 @@ if(istype(target,/obj/structure/table)) deploy_paper(get_turf(target)) -/obj/item/form_printer/attack_self(mob/user) +/obj/item/form_printer/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -368,7 +368,7 @@ STOP_PROCESSING(SSobj, src) return ..() -/obj/item/borg/combat/shield/attack_self(mob/user) +/obj/item/borg/combat/shield/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -443,7 +443,7 @@ . += "It has [stored_walls] wall segment\s and [stored_doors] door segment\s stored." . += "It is set to deploy [mode ? "doors" : "walls"]" -/obj/item/inflatable_dispenser/attack_self(mob/user) +/obj/item/inflatable_dispenser/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/passive/mouse.dm b/code/modules/mob/living/simple_mob/subtypes/animal/passive/mouse.dm index c555b146fa42..de50b2d86514 100644 --- a/code/modules/mob/living/simple_mob/subtypes/animal/passive/mouse.dm +++ b/code/modules/mob/living/simple_mob/subtypes/animal/passive/mouse.dm @@ -154,7 +154,7 @@ else ..() -/obj/item/holder/mouse/attack_self(mob/user) +/obj/item/holder/mouse/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/pets/cat.dm b/code/modules/mob/living/simple_mob/subtypes/animal/pets/cat.dm index ff0fb0bbac4e..132c2c55faf9 100644 --- a/code/modules/mob/living/simple_mob/subtypes/animal/pets/cat.dm +++ b/code/modules/mob/living/simple_mob/subtypes/animal/pets/cat.dm @@ -189,7 +189,7 @@ icon_state = "box" var/cattype = /mob/living/simple_mob/animal/passive/cat -/obj/item/cat_box/attack_self(mob/user) +/obj/item/cat_box/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/modular_computers/computers/modular_computer/interaction.dm b/code/modules/modular_computers/computers/modular_computer/interaction.dm index 9207f187b5de..a1cb27a746ae 100644 --- a/code/modules/modular_computers/computers/modular_computer/interaction.dm +++ b/code/modules/modular_computers/computers/modular_computer/interaction.dm @@ -115,7 +115,7 @@ return ..() /// On-click handling. Turns on the computer if it's off and opens the GUI. -/obj/item/modular_computer/attack_self(mob/user) +/obj/item/modular_computer/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/multiz/structures/hoist.dm b/code/modules/multiz/structures/hoist.dm index aceb2dfcde03..c3cd33153272 100644 --- a/code/modules/multiz/structures/hoist.dm +++ b/code/modules/multiz/structures/hoist.dm @@ -10,7 +10,7 @@ icon = 'icons/obj/hoists.dmi' icon_state = "hoist_case" -/obj/item/hoist_kit/attack_self(mob/user) +/obj/item/hoist_kit/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/nifsoft/nifsoft.dm b/code/modules/nifsoft/nifsoft.dm index b5e372484ebd..8677ae7a91d9 100644 --- a/code/modules/nifsoft/nifsoft.dm +++ b/code/modules/nifsoft/nifsoft.dm @@ -277,7 +277,7 @@ return return ..() -/obj/item/disk/nifsoft/compliance/attack_self(mob/user) +/obj/item/disk/nifsoft/compliance/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/organs/external/external.dm b/code/modules/organs/external/external.dm index b81da0040b6c..8021f5df2ef4 100644 --- a/code/modules/organs/external/external.dm +++ b/code/modules/organs/external/external.dm @@ -200,7 +200,7 @@ weapon_descriptor = "electromagnetic overload", ) -/obj/item/organ/external/attack_self(mob/user) +/obj/item/organ/external/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/organs/internal/species/adherent.dm b/code/modules/organs/internal/species/adherent.dm index 8b7bd45ce8bb..3d2ee4e227a0 100644 --- a/code/modules/organs/internal/species/adherent.dm +++ b/code/modules/organs/internal/species/adherent.dm @@ -35,7 +35,7 @@ action.button_icon_state = "[base_action_state]-[active ? "on" : "off"]" return ..() -/obj/item/organ/internal/powered/attack_self(mob/user) +/obj/item/organ/internal/powered/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/organs/organ.dm b/code/modules/organs/organ.dm index 72564611c78b..a7923bfaf710 100644 --- a/code/modules/organs/organ.dm +++ b/code/modules/organs/organ.dm @@ -668,7 +668,7 @@ user.put_in_active_hand(O) qdel(src) -/obj/item/organ/attack_self(mob/user) +/obj/item/organ/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/paperwork/clipboard.dm b/code/modules/paperwork/clipboard.dm index 8b716d5d7d04..fe93c6b32d0f 100644 --- a/code/modules/paperwork/clipboard.dm +++ b/code/modules/paperwork/clipboard.dm @@ -45,7 +45,7 @@ return ..() -/obj/item/clipboard/attack_self(mob/user) +/obj/item/clipboard/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/paperwork/folders.dm b/code/modules/paperwork/folders.dm index 15914b5f3427..c9a87619e4fa 100644 --- a/code/modules/paperwork/folders.dm +++ b/code/modules/paperwork/folders.dm @@ -75,7 +75,7 @@ else return ..() -/obj/item/folder/attack_self(mob/user) +/obj/item/folder/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/paperwork/handlabeler.dm b/code/modules/paperwork/handlabeler.dm index ae8e907f7876..ba158d3db9c9 100644 --- a/code/modules/paperwork/handlabeler.dm +++ b/code/modules/paperwork/handlabeler.dm @@ -57,7 +57,7 @@ "You label [target] as [label].") target.name = "[target.name] ([label])" -/obj/item/hand_labeler/attack_self(mob/user) +/obj/item/hand_labeler/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/paperwork/paper/paper.dm b/code/modules/paperwork/paper/paper.dm index a3bc621743eb..e3688a6b635c 100644 --- a/code/modules/paperwork/paper/paper.dm +++ b/code/modules/paperwork/paper/paper.dm @@ -126,7 +126,7 @@ add_fingerprint(usr) return -/obj/item/paper/attack_self(mob/user) +/obj/item/paper/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/paperwork/paper_bundle.dm b/code/modules/paperwork/paper_bundle.dm index 20a22984aa43..ddda3175ec37 100644 --- a/code/modules/paperwork/paper_bundle.dm +++ b/code/modules/paperwork/paper_bundle.dm @@ -133,7 +133,7 @@ dat += P.html(user) user << browse(dat, "window=[name]") -/obj/item/paper_bundle/attack_self(mob/user) +/obj/item/paper_bundle/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/paperwork/paperplane.dm b/code/modules/paperwork/paperplane.dm index a77b19d7ee5d..703be6a1edb9 100644 --- a/code/modules/paperwork/paperplane.dm +++ b/code/modules/paperwork/paperplane.dm @@ -45,7 +45,7 @@ add_overlay(overlays_to_add) -/obj/item/paperplane/attack_self(mob/user) +/obj/item/paperplane/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/paperwork/pen.dm b/code/modules/paperwork/pen.dm index 4c69cc9342f4..ad049c496441 100644 --- a/code/modules/paperwork/pen.dm +++ b/code/modules/paperwork/pen.dm @@ -36,7 +36,7 @@ /// can we click? var/clickable = TRUE -/obj/item/pen/attack_self(mob/user) +/obj/item/pen/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -72,7 +72,7 @@ playsound(src, 'sound/items/penclick.ogg', 50, 1) return -/obj/item/pen/multi/attack_self(mob/user) +/obj/item/pen/multi/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -91,7 +91,7 @@ /obj/item/pen/click name = "clicker pen" -/obj/item/pen/click/attack_self(mob/user) +/obj/item/pen/click/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -256,7 +256,7 @@ /obj/item/pen/chameleon var/signature = "" -/obj/item/pen/chameleon/attack_self(mob/user) +/obj/item/pen/chameleon/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/paperwork/stamps.dm b/code/modules/paperwork/stamps.dm index bff1bebe4087..7d7909670df8 100644 --- a/code/modules/paperwork/stamps.dm +++ b/code/modules/paperwork/stamps.dm @@ -81,7 +81,7 @@ // Syndicate stamp to forge documents. -/obj/item/stamp/chameleon/attack_self(mob/user) +/obj/item/stamp/chameleon/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/photography/camera.dm b/code/modules/photography/camera.dm index a3a68f0c5acc..374b9255ac09 100644 --- a/code/modules/photography/camera.dm +++ b/code/modules/photography/camera.dm @@ -27,7 +27,7 @@ size = nsize to_chat(usr, "Camera will now take [size]x[size] photos.") -/obj/item/camera/attack_self(mob/user) +/obj/item/camera/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/photography/photo.dm b/code/modules/photography/photo.dm index a596969f9470..b13d9ba43b54 100644 --- a/code/modules/photography/photo.dm +++ b/code/modules/photography/photo.dm @@ -85,7 +85,7 @@ scribble_spans = data["spans"] photograph_id = data["photo"] -/obj/item/photo/attack_self(mob/user) +/obj/item/photo/attack_self(mob/user, datum/event_args/actor/actor) user.examinate(src) return ..() diff --git a/code/modules/projectiles/gun.dm b/code/modules/projectiles/gun.dm index 8cc87df0ac60..6d865d558049 100644 --- a/code/modules/projectiles/gun.dm +++ b/code/modules/projectiles/gun.dm @@ -808,7 +808,7 @@ playsound(loc, selector_sound, 50, 1) return new_mode -/obj/item/gun/attack_self(mob/user) +/obj/item/gun/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/projectiles/guns/ballistic.dm b/code/modules/projectiles/guns/ballistic.dm index 122b6cf69724..9fc3cd85399d 100644 --- a/code/modules/projectiles/guns/ballistic.dm +++ b/code/modules/projectiles/guns/ballistic.dm @@ -279,7 +279,7 @@ set_weight_class(WEIGHT_CLASS_SMALL) update_icon() -/obj/item/gun/ballistic/attack_self(mob/user) +/obj/item/gun/ballistic/attack_self(mob/user, datum/event_args/actor/actor) if(firemodes.len > 1) switch_firemodes(user) else if(ammo_magazine) diff --git a/code/modules/projectiles/guns/ballistic/microbattery/microbattery.dm b/code/modules/projectiles/guns/ballistic/microbattery/microbattery.dm index a095b680d660..10bdd2c4d12c 100644 --- a/code/modules/projectiles/guns/ballistic/microbattery/microbattery.dm +++ b/code/modules/projectiles/guns/ballistic/microbattery/microbattery.dm @@ -67,7 +67,7 @@ update_charge() update_icon() -/obj/item/gun/ballistic/microbattery/attack_self(mob/user) +/obj/item/gun/ballistic/microbattery/attack_self(mob/user, datum/event_args/actor/actor) if(!chambered) return diff --git a/code/modules/projectiles/guns/energy/sizegun_vr.dm b/code/modules/projectiles/guns/energy/sizegun_vr.dm index ca628cdc0198..7f2a5c9f31b7 100644 --- a/code/modules/projectiles/guns/energy/sizegun_vr.dm +++ b/code/modules/projectiles/guns/energy/sizegun_vr.dm @@ -27,7 +27,7 @@ . = ..() add_obj_verb(src, /obj/item/gun/energy/sizegun/proc/select_size) -/obj/item/gun/energy/sizegun/attack_self(mob/user) +/obj/item/gun/energy/sizegun/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/projectiles/guns/energy/special.dm b/code/modules/projectiles/guns/energy/special.dm index b117377439ea..3f421554181d 100644 --- a/code/modules/projectiles/guns/energy/special.dm +++ b/code/modules/projectiles/guns/energy/special.dm @@ -337,7 +337,7 @@ one_handed_penalty = 0 safety_state = GUN_SAFETY_OFF -/obj/item/gun/energy/service/attack_self(mob/user) +/obj/item/gun/energy/service/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/projectiles/guns/launcher/crossbow.dm b/code/modules/projectiles/guns/launcher/crossbow.dm index 87f550386acb..7a8b820ca179 100644 --- a/code/modules/projectiles/guns/launcher/crossbow.dm +++ b/code/modules/projectiles/guns/launcher/crossbow.dm @@ -82,7 +82,7 @@ update_icon() ..() -/obj/item/gun/launcher/crossbow/attack_self(mob/user) +/obj/item/gun/launcher/crossbow/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/projectiles/guns/launcher/grenade_launcher.dm b/code/modules/projectiles/guns/launcher/grenade_launcher.dm index 319caebd3244..3a4f539a4288 100644 --- a/code/modules/projectiles/guns/launcher/grenade_launcher.dm +++ b/code/modules/projectiles/guns/launcher/grenade_launcher.dm @@ -65,7 +65,7 @@ else to_chat(user, "[src] is empty.") -/obj/item/gun/launcher/grenade/attack_self(mob/user) +/obj/item/gun/launcher/grenade/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -104,7 +104,7 @@ damage_force = 5 max_grenades = 0 -/obj/item/gun/launcher/grenade/underslung/attack_self(mob/user) +/obj/item/gun/launcher/grenade/underslung/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/projectiles/guns/launcher/pneumatic.dm b/code/modules/projectiles/guns/launcher/pneumatic.dm index cd73e8f1bfb8..df03dbe076bd 100644 --- a/code/modules/projectiles/guns/launcher/pneumatic.dm +++ b/code/modules/projectiles/guns/launcher/pneumatic.dm @@ -77,7 +77,7 @@ else if(istype(W) && item_storage.obj_storage.can_be_inserted(W)) item_storage.obj_storage.try_insert(W, new /datum/event_args/actor(user)) -/obj/item/gun/launcher/pneumatic/attack_self(mob/user) +/obj/item/gun/launcher/pneumatic/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/projectiles/guns/launcher/syringe_gun.dm b/code/modules/projectiles/guns/launcher/syringe_gun.dm index 53d2e8aee2dc..aeff2f7e9bef 100644 --- a/code/modules/projectiles/guns/launcher/syringe_gun.dm +++ b/code/modules/projectiles/guns/launcher/syringe_gun.dm @@ -27,7 +27,7 @@ name = "syringe dart" update_icon() -/obj/item/syringe_cartridge/attack_self(mob/user) +/obj/item/syringe_cartridge/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -95,7 +95,7 @@ darts -= next next = null -/obj/item/gun/launcher/syringe/attack_self(mob/user) +/obj/item/gun/launcher/syringe/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/projectiles/guns/legacy_vr_guns/bsharpoon.dm b/code/modules/projectiles/guns/legacy_vr_guns/bsharpoon.dm index b67fb8686258..4f64d3fea006 100644 --- a/code/modules/projectiles/guns/legacy_vr_guns/bsharpoon.dm +++ b/code/modules/projectiles/guns/legacy_vr_guns/bsharpoon.dm @@ -72,7 +72,7 @@ var/turf/real_target = ToTurf AM.locationTransitForceMove(real_target, allow_pulled = FALSE, allow_grabbed = GRAB_AGGRESSIVE) -/obj/item/bluespace_harpoon/attack_self(mob/user) +/obj/item/bluespace_harpoon/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/projectiles/guns/legacy_vr_guns/gunsword.dm b/code/modules/projectiles/guns/legacy_vr_guns/gunsword.dm index 359c891654a6..b83837bc0de2 100644 --- a/code/modules/projectiles/guns/legacy_vr_guns/gunsword.dm +++ b/code/modules/projectiles/guns/legacy_vr_guns/gunsword.dm @@ -89,7 +89,7 @@ attack_verb = list() -/obj/item/cell/device/weapon/gunsword/attack_self(mob/user) +/obj/item/cell/device/weapon/gunsword/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/projectiles/guns/projectile/automatic.dm b/code/modules/projectiles/guns/projectile/automatic.dm index f8b7dcbd6c23..bff0116befe8 100644 --- a/code/modules/projectiles/guns/projectile/automatic.dm +++ b/code/modules/projectiles/guns/projectile/automatic.dm @@ -249,7 +249,7 @@ update_icon() update_held_icon() -/obj/item/gun/ballistic/automatic/lmg/attack_self(mob/user) +/obj/item/gun/ballistic/automatic/lmg/attack_self(mob/user, datum/event_args/actor/actor) if(cover_open) toggle_cover(user) //close the cover else diff --git a/code/modules/projectiles/guns/projectile/bow.dm b/code/modules/projectiles/guns/projectile/bow.dm index b430fb5dceff..3ed9a8a028b0 100644 --- a/code/modules/projectiles/guns/projectile/bow.dm +++ b/code/modules/projectiles/guns/projectile/bow.dm @@ -41,7 +41,7 @@ return update_icon() -/obj/item/gun/ballistic/bow/attack_self(mob/user) +/obj/item/gun/ballistic/bow/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/projectiles/guns/projectile/contender.dm b/code/modules/projectiles/guns/projectile/contender.dm index 0f3b1290d361..c18941c1f455 100644 --- a/code/modules/projectiles/guns/projectile/contender.dm +++ b/code/modules/projectiles/guns/projectile/contender.dm @@ -13,7 +13,7 @@ load_method = SINGLE_CASING heavy = TRUE -/obj/item/gun/ballistic/contender/attack_self(mob/user) +/obj/item/gun/ballistic/contender/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/projectiles/guns/projectile/dartgun.dm b/code/modules/projectiles/guns/projectile/dartgun.dm index e56464d94482..23c87c79e17a 100644 --- a/code/modules/projectiles/guns/projectile/dartgun.dm +++ b/code/modules/projectiles/guns/projectile/dartgun.dm @@ -94,7 +94,7 @@ for(var/obj/item/reagent_containers/glass/beaker/B in mixing) B.reagents.trans_to_obj(dart, mix_amount) -/obj/item/gun/ballistic/dartgun/attack_self(mob/user) +/obj/item/gun/ballistic/dartgun/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/projectiles/guns/projectile/pistol.dm b/code/modules/projectiles/guns/projectile/pistol.dm index b0ea5a040444..b1ec8d209fc3 100644 --- a/code/modules/projectiles/guns/projectile/pistol.dm +++ b/code/modules/projectiles/guns/projectile/pistol.dm @@ -454,7 +454,7 @@ else icon_state = "ntles-empty" -/obj/item/gun/ballistic/ntles/attack_self(mob/user, obj/item/gun/G) +/obj/item/gun/ballistic/ntles/attack_self(mob/user, datum/event_args/actor/actor) if(collapsible && !extended) to_chat(user, "You pull out the stock on the [src], steadying the weapon.") set_weight_class(WEIGHT_CLASS_BULKY) diff --git a/code/modules/projectiles/guns/projectile/rocket.dm b/code/modules/projectiles/guns/projectile/rocket.dm index 12dac8984e58..a80fb57c6f1b 100644 --- a/code/modules/projectiles/guns/projectile/rocket.dm +++ b/code/modules/projectiles/guns/projectile/rocket.dm @@ -93,7 +93,7 @@ else return ..() -/obj/item/gun/ballistic/rocket/collapsible/attack_self(mob/user, obj/item/gun/G) +/obj/item/gun/ballistic/rocket/collapsible/attack_self(mob/user, datum/event_args/actor/actor) if(collapsed) to_chat(user, "You pull out the tube on the [src], readying the weapon to be fired.") icon_state = "[initial(icon_state)]-extended" diff --git a/code/modules/projectiles/guns/projectile/shotgun.dm b/code/modules/projectiles/guns/projectile/shotgun.dm index f2c8a944a3eb..670a4eda27fe 100644 --- a/code/modules/projectiles/guns/projectile/shotgun.dm +++ b/code/modules/projectiles/guns/projectile/shotgun.dm @@ -26,7 +26,7 @@ return chambered.get_projectile() return null -/obj/item/gun/ballistic/shotgun/pump/attack_self(mob/user) +/obj/item/gun/ballistic/shotgun/pump/attack_self(mob/user, datum/event_args/actor/actor) // todo: this breaks other attack self interactions :( if(world.time >= recentpump + 10) pump(user) diff --git a/code/modules/projectiles/guns/projectile/sniper.dm b/code/modules/projectiles/guns/projectile/sniper.dm index 7b9fab132d73..8cbd53661616 100644 --- a/code/modules/projectiles/guns/projectile/sniper.dm +++ b/code/modules/projectiles/guns/projectile/sniper.dm @@ -30,7 +30,7 @@ else icon_state = "heavysniper" -/obj/item/gun/ballistic/heavysniper/attack_self(mob/user) +/obj/item/gun/ballistic/heavysniper/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/projectiles/guns/projectile/sniper/collapsible_sniper.dm b/code/modules/projectiles/guns/projectile/sniper/collapsible_sniper.dm index 5cc4e4759443..6159874deebe 100644 --- a/code/modules/projectiles/guns/projectile/sniper/collapsible_sniper.dm +++ b/code/modules/projectiles/guns/projectile/sniper/collapsible_sniper.dm @@ -68,7 +68,7 @@ . = ..() trigger_group = src -/obj/item/sniper_rifle_part/attack_self(mob/user) +/obj/item/sniper_rifle_part/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/reagents/items/hypospray.dm b/code/modules/reagents/items/hypospray.dm index c3b990c67d25..66f3038ab18f 100644 --- a/code/modules/reagents/items/hypospray.dm +++ b/code/modules/reagents/items/hypospray.dm @@ -118,7 +118,7 @@ inject_amount = amount usr.action_feedback(SPAN_NOTICE("[src] is now set to inject [amount] per use."), src) -/obj/item/hypospray/attack_self(mob/user) +/obj/item/hypospray/attack_self(mob/user, datum/event_args/actor/actor) switch(inject_mode) if(HYPOSPRAY_MODE_INJECT) inject_mode = HYPOSPRAY_MODE_SPRAY diff --git a/code/modules/reagents/machinery/dispenser/cartridge.dm b/code/modules/reagents/machinery/dispenser/cartridge.dm index deedfbffa40a..676e634909aa 100644 --- a/code/modules/reagents/machinery/dispenser/cartridge.dm +++ b/code/modules/reagents/machinery/dispenser/cartridge.dm @@ -41,7 +41,7 @@ if(!is_open_container()) . += "The cap is sealed." -/obj/item/reagent_containers/cartridge/dispenser/attack_self(mob/user) +/obj/item/reagent_containers/cartridge/dispenser/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/reagents/reagent_containers.dm b/code/modules/reagents/reagent_containers.dm index f290dc6c805e..8ff48d2f0834 100644 --- a/code/modules/reagents/reagent_containers.dm +++ b/code/modules/reagents/reagent_containers.dm @@ -42,7 +42,7 @@ if(N) amount_per_transfer_from_this = N -/obj/item/reagent_containers/attack_self(mob/user) +/obj/item/reagent_containers/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/reagents/reagent_containers/blood_pack_vr.dm b/code/modules/reagents/reagent_containers/blood_pack_vr.dm index 28ed0374d716..7a7c947e2186 100644 --- a/code/modules/reagents/reagent_containers/blood_pack_vr.dm +++ b/code/modules/reagents/reagent_containers/blood_pack_vr.dm @@ -1,4 +1,4 @@ -/obj/item/reagent_containers/blood/attack_self(mob/user) +/obj/item/reagent_containers/blood/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/reagents/reagent_containers/borghydro.dm b/code/modules/reagents/reagent_containers/borghydro.dm index 97203248666b..b3e376449830 100644 --- a/code/modules/reagents/reagent_containers/borghydro.dm +++ b/code/modules/reagents/reagent_containers/borghydro.dm @@ -94,7 +94,7 @@ add_attack_logs(user, L, "Borg injected with [reagent_ids[mode]]") to_chat(user, "[t] units injected. [reagent_volumes[reagent_ids[mode]]] units remaining.") -/obj/item/reagent_containers/borghypo/attack_self(mob/user) +/obj/item/reagent_containers/borghypo/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return //Change the mode diff --git a/code/modules/reagents/reagent_containers/glass.dm b/code/modules/reagents/reagent_containers/glass.dm index 93760ce61848..9aa67ed0cd03 100644 --- a/code/modules/reagents/reagent_containers/glass.dm +++ b/code/modules/reagents/reagent_containers/glass.dm @@ -61,7 +61,7 @@ base_desc = desc -/obj/item/reagent_containers/glass/attack_self(mob/user) +/obj/item/reagent_containers/glass/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/reagents/reagent_containers/hard_candy.dm b/code/modules/reagents/reagent_containers/hard_candy.dm index bafbb1f5de76..3e1dec877707 100644 --- a/code/modules/reagents/reagent_containers/hard_candy.dm +++ b/code/modules/reagents/reagent_containers/hard_candy.dm @@ -34,7 +34,7 @@ user.put_in_hands(trash) qdel(src) -/obj/item/reagent_containers/hard_candy/attack_self(mob/user) +/obj/item/reagent_containers/hard_candy/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/reagents/reagent_containers/hypospray.dm b/code/modules/reagents/reagent_containers/hypospray.dm index 79621a907c05..70066556c1fc 100644 --- a/code/modules/reagents/reagent_containers/hypospray.dm +++ b/code/modules/reagents/reagent_containers/hypospray.dm @@ -398,7 +398,7 @@ icon_state = "[initial(icon_state)]_used" -/obj/item/reagent_containers/hypospray/glukoz/attack_self(mob/user) +/obj/item/reagent_containers/hypospray/glukoz/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/reagents/reagent_containers/organic.dm b/code/modules/reagents/reagent_containers/organic.dm index 5e6f99728893..c6e8ade3ade2 100644 --- a/code/modules/reagents/reagent_containers/organic.dm +++ b/code/modules/reagents/reagent_containers/organic.dm @@ -56,7 +56,7 @@ update_icon() -/obj/item/reagent_containers/organic/attack_self(mob/user) +/obj/item/reagent_containers/organic/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/reagents/reagent_containers/spray.dm b/code/modules/reagents/reagent_containers/spray.dm index 34a7123f39fd..914e7182d4a0 100644 --- a/code/modules/reagents/reagent_containers/spray.dm +++ b/code/modules/reagents/reagent_containers/spray.dm @@ -69,7 +69,7 @@ D.set_up(my_target, spray_size, 10) return -/obj/item/reagent_containers/spray/attack_self(mob/user) +/obj/item/reagent_containers/spray/attack_self(mob/user, datum/event_args/actor/actor) if(!possible_transfer_amounts) return amount_per_transfer_from_this = next_list_item(amount_per_transfer_from_this, possible_transfer_amounts) @@ -135,7 +135,7 @@ . = ..() . += "The safety is [safety ? "on" : "off"]." -/obj/item/reagent_containers/spray/pepper/attack_self(mob/user) +/obj/item/reagent_containers/spray/pepper/attack_self(mob/user, datum/event_args/actor/actor) safety = !safety to_chat(usr, "You switch the safety [safety ? "on" : "off"].") @@ -241,7 +241,7 @@ . = ..() . += "The tank is [pumped ? "depressurized" : "pressurized"]." -/obj/item/reagent_containers/spray/squirt/attack_self(mob/user) +/obj/item/reagent_containers/spray/squirt/attack_self(mob/user, datum/event_args/actor/actor) pumped = !pumped to_chat(usr, "You pump the handle [pumped ? "to depressurize" : "to pressurize"] the tank.") diff --git a/code/modules/reagents/reagent_containers/syringes.dm b/code/modules/reagents/reagent_containers/syringes.dm index 7e3e8033072b..890677a149ba 100644 --- a/code/modules/reagents/reagent_containers/syringes.dm +++ b/code/modules/reagents/reagent_containers/syringes.dm @@ -37,7 +37,7 @@ . = ..() update_icon() -/obj/item/reagent_containers/syringe/attack_self(mob/user) +/obj/item/reagent_containers/syringe/attack_self(mob/user, datum/event_args/actor/actor) switch(mode) if(SYRINGE_DRAW) mode = SYRINGE_INJECT diff --git a/code/modules/reagents/reagent_containers/syringes_vr.dm b/code/modules/reagents/reagent_containers/syringes_vr.dm index fd14a704f23b..afbfcda4e360 100644 --- a/code/modules/reagents/reagent_containers/syringes_vr.dm +++ b/code/modules/reagents/reagent_containers/syringes_vr.dm @@ -66,7 +66,7 @@ eo.queue_syringe_infection() //Allow for capped syringe mode -/obj/item/reagent_containers/syringe/attack_self(mob/user) +/obj/item/reagent_containers/syringe/attack_self(mob/user, datum/event_args/actor/actor) switch(mode) if(SYRINGE_CAPPED) mode = SYRINGE_DRAW diff --git a/code/modules/resleeving/computers.dm b/code/modules/resleeving/computers.dm index 3101f93ae255..c97d808082c1 100644 --- a/code/modules/resleeving/computers.dm +++ b/code/modules/resleeving/computers.dm @@ -431,7 +431,7 @@ icon_state = "cmoemergency" item_state = "card-id" -/obj/item/cmo_disk_holder/attack_self(mob/user) +/obj/item/cmo_disk_holder/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/resleeving/implant.dm b/code/modules/resleeving/implant.dm index c67e7754ba34..a2f898ee7816 100644 --- a/code/modules/resleeving/implant.dm +++ b/code/modules/resleeving/implant.dm @@ -62,7 +62,7 @@ icon_state = "[initial(icon_state)][imps.len]" germ_level = 0 -/obj/item/backup_implanter/attack_self(mob/user) +/obj/item/backup_implanter/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/resleeving/mirror.dm b/code/modules/resleeving/mirror.dm index c084fa6aa17b..1ae42e1f719f 100644 --- a/code/modules/resleeving/mirror.dm +++ b/code/modules/resleeving/mirror.dm @@ -175,7 +175,7 @@ to_chat(usr, "You must target the torso.") return CLICKCHAIN_DO_NOT_PROPAGATE -/obj/item/mirrortool/attack_self(mob/user) +/obj/item/mirrortool/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/resleeving/sleevecard.dm b/code/modules/resleeving/sleevecard.dm index 9661033f504a..a69e10152754 100644 --- a/code/modules/resleeving/sleevecard.dm +++ b/code/modules/resleeving/sleevecard.dm @@ -41,7 +41,7 @@ QDEL_NULL(radio) return ..() -/obj/item/sleevecard/attack_self(mob/user) +/obj/item/sleevecard/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/shieldgen/handheld_defuser.dm b/code/modules/shieldgen/handheld_defuser.dm index ae075de65698..3235d95a9ed1 100644 --- a/code/modules/shieldgen/handheld_defuser.dm +++ b/code/modules/shieldgen/handheld_defuser.dm @@ -44,7 +44,7 @@ else icon_state = "hdiffuser_off" -/obj/item/shield_diffuser/attack_self(mob/user) +/obj/item/shield_diffuser/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/shuttles/landmarks.dm b/code/modules/shuttles/landmarks.dm index 23a6320587e9..687609659d69 100644 --- a/code/modules/shuttles/landmarks.dm +++ b/code/modules/shuttles/landmarks.dm @@ -168,7 +168,7 @@ light_color = "#3728ff" var/active -/obj/item/spaceflare/attack_self(mob/user) +/obj/item/spaceflare/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/spells/artifacts.dm b/code/modules/spells/artifacts.dm index 6f636dcf872d..4267467db1cf 100644 --- a/code/modules/spells/artifacts.dm +++ b/code/modules/spells/artifacts.dm @@ -12,7 +12,7 @@ damage_force = 10 attack_sound = 'sound/items/welder2.ogg' -/obj/item/scrying/attack_self(mob/user) +/obj/item/scrying/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -48,7 +48,7 @@ var/rend_desc = "You should run now." var/spawn_fast = 0 //if 1, ignores checking for mobs on loc before spawning -/obj/item/veilrender/attack_self(mob/user) +/obj/item/veilrender/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -282,7 +282,7 @@ user.reset_perspective(null) user.unset_machine() -/obj/item/voodoo/attack_self(mob/user) +/obj/item/voodoo/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -385,7 +385,7 @@ REMOVE_TRAIT(user, TRAIT_MOBILITY_NOPICKUP, src) user.update_mobility_blocked() -/obj/item/warpwhistle/attack_self(mob/user) +/obj/item/warpwhistle/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/spells/spellbook.dm b/code/modules/spells/spellbook.dm index 565b310647a1..490807b4d17b 100644 --- a/code/modules/spells/spellbook.dm +++ b/code/modules/spells/spellbook.dm @@ -11,7 +11,7 @@ var/max_uses = 5 var/op = 1 -/obj/item/spellbook/attack_self(mob/user) +/obj/item/spellbook/attack_self(mob/user, datum/event_args/actor/actor) if(!user) return if((user.mind && !wizards.is_antagonist(user.mind))) @@ -252,7 +252,7 @@ . = ..() name += spellname -/obj/item/spellbook/oneuse/attack_self(mob/user) +/obj/item/spellbook/oneuse/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/telesci/bscyrstal.dm b/code/modules/telesci/bscyrstal.dm index 7dd5c187a762..4618260ad9bb 100644 --- a/code/modules/telesci/bscyrstal.dm +++ b/code/modules/telesci/bscyrstal.dm @@ -14,7 +14,7 @@ pixel_x = rand(-5, 5) pixel_y = rand(-5, 5) -/obj/item/bluespace_crystal/attack_self(mob/user) +/obj/item/bluespace_crystal/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/vehicles/ridden/wheelchair.dm b/code/modules/vehicles/ridden/wheelchair.dm index 30f577ba813f..35dbbfb09d75 100644 --- a/code/modules/vehicles/ridden/wheelchair.dm +++ b/code/modules/vehicles/ridden/wheelchair.dm @@ -52,7 +52,7 @@ /// What we unfold to var/unfolded_type = /obj/vehicle/ridden/wheelchair -/obj/item/wheelchair/attack_self(mob/user) +/obj/item/wheelchair/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/vore/eating/leave_remains_vr.dm b/code/modules/vore/eating/leave_remains_vr.dm index 03fa7c145007..1ca2a1cc743b 100644 --- a/code/modules/vore/eating/leave_remains_vr.dm +++ b/code/modules/vore/eating/leave_remains_vr.dm @@ -90,7 +90,7 @@ pred_ckey = pred.ckey pred_name = pred.name -/obj/item/digestion_remains/attack_self(mob/user) +/obj/item/digestion_remains/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/vore/fluffstuff/custom_items.dm b/code/modules/vore/fluffstuff/custom_items.dm index 692171b3e864..00f1836ba675 100644 --- a/code/modules/vore/fluffstuff/custom_items.dm +++ b/code/modules/vore/fluffstuff/custom_items.dm @@ -86,7 +86,7 @@ icon_override = 'icons/vore/custom_items_vr.dmi' item_state = "Flag_Nanotrasen_mob" -/obj/item/flag/attack_self(mob/user) +/obj/item/flag/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -207,7 +207,7 @@ assignment = "CC Medical" var/configured = 0 -/obj/item/card/id/centcom/station/fluff/aronai/attack_self(mob/user) +/obj/item/card/id/centcom/station/fluff/aronai/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -321,7 +321,7 @@ var/last_use = 0 var/cooldown = 30 -/obj/item/cane/wand/attack_self(mob/user) +/obj/item/cane/wand/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -445,7 +445,7 @@ icon_state = "dragor_dot" w_class = WEIGHT_CLASS_SMALL -/obj/item/fluff/dragor_dot/attack_self(mob/user) +/obj/item/fluff/dragor_dot/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -476,7 +476,7 @@ desc = "A primarily blue ID with a holographic 'WAH' etched onto its back. The letters do not obscure anything important on the card. It is shiny and it feels very bumpy." var/title_strings = list("Amaya Rahl's Wah-identification card", "Amaya Rahl's Wah-ID card") -/obj/item/card/id/fluff/amaya/attack_self(mob/user) +/obj/item/card/id/fluff/amaya/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -606,7 +606,7 @@ else return ..() -/obj/item/perfect_tele/attack_self(mob/user) +/obj/item/perfect_tele/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -871,7 +871,7 @@ ..() -/obj/item/perfect_tele_beacon/attack_self(mob/user) +/obj/item/perfect_tele_beacon/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -965,7 +965,7 @@ user.do_attack_animation(target) user.setClickCooldown(DEFAULT_QUICK_COOLDOWN) //to prevent spam -/obj/item/clothing/accessory/badge/holo/detective/ruda/attack_self(mob/user) +/obj/item/clothing/accessory/badge/holo/detective/ruda/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -1187,7 +1187,7 @@ spawn(0) update_held_icon() -/obj/item/melee/baton/fluff/stunstaff/attack_self(mob/user) +/obj/item/melee/baton/fluff/stunstaff/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -1253,7 +1253,7 @@ throw_force = initial(throw_force) set_weight_class(initial(w_class)) -/obj/item/melee/fluffstuff/attack_self(mob/user) +/obj/item/melee/fluffstuff/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/vore/fluffstuff/custom_items_cit.dm b/code/modules/vore/fluffstuff/custom_items_cit.dm index 698a982b9a23..111f2cec05a7 100644 --- a/code/modules/vore/fluffstuff/custom_items_cit.dm +++ b/code/modules/vore/fluffstuff/custom_items_cit.dm @@ -27,7 +27,7 @@ if((state > 1) || !owner) STOP_PROCESSING(SSobj, src) -/obj/item/clothing/accessory/collar/lifecrystal/attack_self(mob/user) +/obj/item/clothing/accessory/collar/lifecrystal/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/vore/fluffstuff/life_crystals.dm b/code/modules/vore/fluffstuff/life_crystals.dm index 3e2c78e853e7..b2a1f9810b78 100644 --- a/code/modules/vore/fluffstuff/life_crystals.dm +++ b/code/modules/vore/fluffstuff/life_crystals.dm @@ -33,7 +33,7 @@ if(!owner) STOP_PROCESSING(SSobj, src) -/obj/item/clothing/accessory/collar/vmcrystal/attack_self(mob/user) +/obj/item/clothing/accessory/collar/vmcrystal/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/vore/resizing/holder_micro_vr.dm b/code/modules/vore/resizing/holder_micro_vr.dm index 04ca9e64f332..31f0f182d764 100644 --- a/code/modules/vore/resizing/holder_micro_vr.dm +++ b/code/modules/vore/resizing/holder_micro_vr.dm @@ -22,7 +22,7 @@ for(var/mob/living/carbon/human/O in contents) O.request_strip_menu(usr) -/obj/item/holder/micro/attack_self(mob/user) +/obj/item/holder/micro/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/xenoarcheaology/sampling.dm b/code/modules/xenoarcheaology/sampling.dm index 39f201dd381e..3443b48d9f0e 100644 --- a/code/modules/xenoarcheaology/sampling.dm +++ b/code/modules/xenoarcheaology/sampling.dm @@ -82,7 +82,7 @@ else to_chat(user, "You are unable to take a sample of [item_to_sample].") -/obj/item/core_sampler/attack_self(mob/user) +/obj/item/core_sampler/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/xenoarcheaology/tools/ano_device_battery.dm b/code/modules/xenoarcheaology/tools/ano_device_battery.dm index 1458663748aa..23b89e5b27c8 100644 --- a/code/modules/xenoarcheaology/tools/ano_device_battery.dm +++ b/code/modules/xenoarcheaology/tools/ano_device_battery.dm @@ -48,7 +48,7 @@ else return ..() -/obj/item/anodevice/attack_self(mob/user) +/obj/item/anodevice/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/xenoarcheaology/tools/tools.dm b/code/modules/xenoarcheaology/tools/tools.dm index d8743d7905a2..d1fe9347484d 100644 --- a/code/modules/xenoarcheaology/tools/tools.dm +++ b/code/modules/xenoarcheaology/tools/tools.dm @@ -44,7 +44,7 @@ var/last_scan_time = 0 var/scan_delay = 25 -/obj/item/ano_scanner/attack_self(mob/user) +/obj/item/ano_scanner/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -156,7 +156,7 @@ to_chat(user, "[icon2html(thing = src, target = world)] [src] pings [pick("madly","wildly","excitedly","crazily")]!") -/obj/item/depth_scanner/attack_self(mob/user) +/obj/item/depth_scanner/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -283,7 +283,7 @@ else icon_state = "pinoff" -/obj/item/beacon_locator/attack_self(mob/user) +/obj/item/beacon_locator/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -347,7 +347,7 @@ anomaly_scanner = new/obj/item/ano_scanner/integrated(src) depth_scanner = new/obj/item/depth_scanner(src) -/obj/item/xenoarch_multi_tool/attack_self(mob/user) +/obj/item/xenoarch_multi_tool/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/xenoarcheaology/tools/tools_pickaxe.dm b/code/modules/xenoarcheaology/tools/tools_pickaxe.dm index 54bebf67dffc..063f1ccdcc73 100644 --- a/code/modules/xenoarcheaology/tools/tools_pickaxe.dm +++ b/code/modules/xenoarcheaology/tools/tools_pickaxe.dm @@ -152,7 +152,7 @@ attack_verb = list("drilled") worth_intrinsic = 250 // this is gonna be very useful/powerful later -/obj/item/pickaxe/excavationdrill/attack_self(mob/user) +/obj/item/pickaxe/excavationdrill/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/xenobio/items/slime_objects.dm b/code/modules/xenobio/items/slime_objects.dm index 2404b4cfdeb1..d1bc245b9de0 100644 --- a/code/modules/xenobio/items/slime_objects.dm +++ b/code/modules/xenobio/items/slime_objects.dm @@ -7,7 +7,7 @@ description_info = "Use in your hand to attempt to create a Promethean. It functions similarly to a positronic brain, in that a ghost is needed to become the Promethean." var/searching = 0 -/obj/item/slime_cube/attack_self(mob/user) +/obj/item/slime_cube/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -93,7 +93,7 @@ qdel(src) return . | CLICKCHAIN_DO_NOT_PROPAGATE -/obj/item/slime_crystal/attack_self(mob/user) +/obj/item/slime_crystal/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return @@ -160,7 +160,7 @@ /obj/item/flashlight/slime/update_appearance(updates = ~UPDATE_ICON_STATE) return ..() -/obj/item/flashlight/slime/attack_self(mob/user) +/obj/item/flashlight/slime/attack_self(mob/user, datum/event_args/actor/actor) return //Bio-luminescence does not toggle. diff --git a/code/modules/xenobio2/machinery/gene_manipulators.dm b/code/modules/xenobio2/machinery/gene_manipulators.dm index 548fdfae7b89..44364e86abd1 100644 --- a/code/modules/xenobio2/machinery/gene_manipulators.dm +++ b/code/modules/xenobio2/machinery/gene_manipulators.dm @@ -20,7 +20,7 @@ var/list/genes = list() var/genesource = "unknown" -/obj/item/disk/xenobio/attack_self(mob/user) +/obj/item/disk/xenobio/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return diff --git a/code/modules/xenobio2/mob/slime/slime_monkey.dm b/code/modules/xenobio2/mob/slime/slime_monkey.dm index ddf6313df394..056c7dfc4233 100644 --- a/code/modules/xenobio2/mob/slime/slime_monkey.dm +++ b/code/modules/xenobio2/mob/slime/slime_monkey.dm @@ -8,7 +8,7 @@ Slime cube lives here. icon_state = "slime cube" var/searching = 0 -/obj/item/slime_cube/attack_self(mob/user) +/obj/item/slime_cube/attack_self(mob/user, datum/event_args/actor/actor) . = ..() if(.) return From 15b1dc49c78eb3eda3e9040105134bf0eb6ab620 Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Tue, 17 Sep 2024 12:04:24 -0400 Subject: [PATCH 15/20] href update (#6758) --- .../modules/preferences/preference_setup/general/06_flavor.dm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/code/modules/preferences/preference_setup/general/06_flavor.dm b/code/modules/preferences/preference_setup/general/06_flavor.dm index 15755010382d..3432d31d2cbd 100644 --- a/code/modules/preferences/preference_setup/general/06_flavor.dm +++ b/code/modules/preferences/preference_setup/general/06_flavor.dm @@ -66,10 +66,12 @@ if("general") var/msg = sanitize(input(usr,"Give a general description of your character. This will be shown regardless of clothings. Flavor text is what someone can see IC with a glance, please do not include OOC things like personality / backstory!","Flavor Text",html_decode(pref.flavor_texts[href_list["flavor_text"]])) as message, extra = 0, max_length = 8192) if(CanUseTopic(user)) + log_game("[key_name(user)] set their general flavortext to [msg]") pref.flavor_texts[href_list["flavor_text"]] = msg else var/msg = sanitize(input(usr,"Set the flavor text for your [href_list["flavor_text"]]. Flavor text is what someone can see IC with a glance, please do not include OOC things like personality / backstory!","Flavor Text",html_decode(pref.flavor_texts[href_list["flavor_text"]])) as message, extra = 0, max_length = 8192) if(CanUseTopic(user)) + log_game("[key_name(user)] set their flavortext for their [href_list["flavor_text"]] to [msg]") pref.flavor_texts[href_list["flavor_text"]] = msg SetFlavorText(user) return PREFERENCES_HANDLED @@ -80,10 +82,12 @@ if("Default") var/msg = sanitize(input(usr,"Set the default flavour text for your robot. It will be used for any module without individual setting. Flavor text is what someone can see IC with a glance, please do not include OOC things like personality / backstory!","Flavour Text",html_decode(pref.flavour_texts_robot["Default"])) as message, extra = 0, max_length = 8192) if(CanUseTopic(user)) + log_game("[key_name(user)] set their default robot flavortext to [msg]") pref.flavour_texts_robot[href_list["flavour_text_robot"]] = msg else var/msg = sanitize(input(usr,"Set the flavour text for your robot with [href_list["flavour_text_robot"]] module. If you leave this empty, default flavour text will be used for this module. Flavor text is what someone can see IC with a glance, please do not include OOC things like personality / backstory!","Flavour Text",html_decode(pref.flavour_texts_robot[href_list["flavour_text_robot"]])) as message, extra = 0, max_length = 8192) if(CanUseTopic(user)) + log_game("[key_name(user)] set their robot flavortext for the [href_list["flavour_text_robot"]] module to [msg]") pref.flavour_texts_robot[href_list["flavour_text_robot"]] = msg SetFlavourTextRobot(user) return PREFERENCES_HANDLED From 23012156e1af8677076022cf5b46463efa272ee0 Mon Sep 17 00:00:00 2001 From: IrkallaEpsilon <42441793+IrkallaEpsilon@users.noreply.github.com> Date: Wed, 18 Sep 2024 02:16:38 +0200 Subject: [PATCH 16/20] Removes an currently unused Enigma Sprite I added (#6759) The animation is massive. I do not plan to finish Revenant anytime soon. No cheap mental omega reference this time in PR description. ## About The Pull Request Opinions on things shift quickly on what one should do with time. ## Why It's Good For The Game Its a massive sprite that is currently unused. It has a rather long animation. I do not plan to finish P4 Revenant. I rather not have this massive unused sprite lying around (it is honestly quite large for a single sprite, inital PR introducing all 3 show the three alone increased filesize by 240% :') ) Why not finish it Irkalla? Well, I got my reasons to not finish it. If _Evanne/Serin_ wants to use it ingame yeah I guess I can PR the thing sometime. Same goes for other projects (Morphium Rifle, the funny IV drip collapsable bed, shrapnell extractor for field shrap removal). If somebody cares enough on the exact why my DMs are open. ## Changelog :cl: del: A single but still quite massive sprite. /:cl: --- icons/mob/enigma.dmi | Bin 62897 -> 57597 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/icons/mob/enigma.dmi b/icons/mob/enigma.dmi index 689b6257c634f3b3b8675527c9846966f5333d64..97045dd7f6a3be776a8ce9a8d28399bd3a1ecd54 100644 GIT binary patch literal 57597 zcmZs?1yoc~*FSuR?v|90mXMH;?(URENI%46lvof1;VLQ0YC{kV4*tKuKm$jrg383ej}sqV z19w@QH&$-;uI~0O&Jg7N^+QbCt1fPWUfZq5AFUtsc*<^OvJt=IdB$xlY zMq}|??s@Es6E*at-p8DHJxBlFq%~;m(!#I(Q6^|xzD@0O!i!Mj{@D3e53tkcl&Q(k>~{tMI&9WOFlpl9i${HrR)85 zw>7|(Wa<;wt-X~>6bC+obxbVWnvqq~`&#uE8#eCHE1J+}7RfHLk0PD0%Co1bD`6(( z>6gwO%rj^5SHH^+A}_u-zeiEiHzJK>EPl}?{{3}4>b3kMoc>&WSstlSBzq!B%eDUK z5dDwVA~!eL8*`2G6Hg~jWH4j`SYOGD)gK7W*I&IE5xbasgPJjdPRy+OnL84fYR4L~ zE2M%!yW2G|Nd4gfNuKdJdwC0eOehNksW^v0&~vOv2nzWv`cTx{b;cueNASJs!GQY^ z(GR?K*&=StrQ1hv_cL&gzIHG6_TPq|H-V*UCStT2aADIN0l{Dl>tCpSMjc{&CA zjKck{N_(t}5n63X#%wR3v5H!dZ*#}f`~C9wd05ChROp&=@w@S(+hn?y? zf z2|?h@q3bg~o}zKE_T=FtSmJK$6ut2Xw0LgBz(Poq@hOZpM&M=c&0T{lm;cpP@bZbb zX~KZO9PCF9svQwr31Wt+;=>pd@C#lc%MVYQ z!z)~P{eIzUgQoWOh4d=I#s?AIjazoWIBZFO8EQ6!( z*a>u!tar9-PARy5{lDKw3u7E#9cZ+H;O6hR;gxbO$nnAcsyuj^|F(R+8Zg)UVX}lE zCLI|WMR+rH=58XvU7g}zk9NCXxv*cM5WI0LZV5_D*ngUNvG9EO4FugDwn}sogj&u7 zaLoPK$B)@}C7u{iyqc)pp49pH(4a(Z*X7k6QQ{KWkbl|37*Tfl^uQeIc2y%dGq_VP zh~Q1>j>M9p)J$5&*Gz)*sI{(5TeI6ciZdikQ}ZKtuR8-ay?#gjn#P#Ze4Sb1SE zCphe-kSWw%I`+I&z z5JaoxKR?kRWzEi0h0*FjCML$? z9bsgel=POVr*7*UkO!y>kHBeQkaDW$A{KWRDuK-H{(0o*x&^iaN%gSB0`E2V%Sye4 zZ^CtJo*4V*Sf^HzV#t2zM^QEsw*R)aoKOED+|FziAXyQbq6=#c&UAL;5V9_+BTH|F z`(G2pYE|`x+}ge9d^}hZ$`zJw#)WEreJBt=`v_CKq8P2aF=(KmDMSZ}_aTlX|G6l~c4<>cn!NZfk-VvU@ z^Q%jK2NWRP5jbhn|7Ioh8O608gO28>w`Y|DgQ6KeBzfw+?3AE)Cl~WvFH|CVTN(9Z zYoF!c&ro;td94|Yt*e z9PHMMU+2c_)VnDkE^xZtp{GtTqWfU9Gs3r6AhE;Vv>r+igumvIxPz}-+jxKvns|YC z#=y$WuR;_}s9m>}7}8BghYr1GHJ|8LYuq;X&Grt)vAi#5|KxDLRVNpI2aiDC24_kf z*0g46NzcD29A@QfE3>ubYfHy0*<9!zP&8<3l020lDc^hUYn-xNG=g6WIXQgfj-X^Vm`O);r%uenRjQEM}P_EDD^oVZUUgdJ6m z=fEEaU)FWA)41aAutmUg!&JQvUUxhw`Z8VlAH6okD+Td}P{IC^w{Py>vwPruAoebX z?EQ5`I#DEQ0qx>XV>p4_`io$@RwrKNo(;YA;*#Ob^SYG*MbXOtgvIs1aCcj`{CZwb zGnjNlosQ@T8EVL5hK>=&C2FoYDp035gv4e;5f<_oLaG~#3p0tY*fC0ko`jVZNb{fV zr%FHEfJ8rOdeX-)?Ua4lXdlmFdgi{&xh{px@(A89^MWKA%6aKMmPrpUt%{ypco(;$ zMIZxZ9gj+rj6Hgks}5huL`Idn4~eH2SF^JZn(oD5kp=|nkUZqGFC_N$*}`K-R@V6X z!AGYULYbZ$Z6FmZkHem{glr7zSGGk!{dV@tKY5fPfhjq|80hjRHw8>{cEXFnfdJ#z zx#KcR;ze3I>=6sT@jB+YC}$(}``Cmqx1(rnG@)n6>o+?|i6P&piQE^l#ahN&u{O~( z(Y@zjk|px>zk-VtCDB_~{oY-Fp)-o!_EI_Yk%!!ZIvWU!+;7Lc%!iO!!v}At+YKih zNgZ@>@Et#Sy>NM+{AhXxqaD<_qP;WgUf+W)-xi0dJqR9-`mCMPEusWv0juhKMt2>w zi54f`@AJ)Q5=3p7Tx==Fh5ysYBuOTeAfJLN0rrd3n9CDB){H4g^dGqqB}(QKH|Zd_ zY0OMwt+c)ehMS&k&6DhB1|CVA!NPy`;ftK#zWSnFUP=EOuU2%zS9)JPA1Imqq4jQ) z&l%(Rpo|9J?jYZjknY_+Ku>9eX)#`u@oH1jyqCWDrZ|e>7YjSNTg!y?$e)$4NAELQ z6{$f4C9@}DHLWxBg9mT<-Jh&_i!GD#S5w~XfrgjvYY)u=7|_D$+w|qF_{x)eu%eZQ z$871eX%Ap8E||y9!9F&ieq4r<=bKr=7qcG7jyl+SUt7|ZF##^{cn(K?!M@q-r-FNB zp#h-WE0bg!Bdw9_K}u6c;kr#H-ScozVS-K51iU>Kt|k}s={ndP=kZ?Tae_T}U+b3k z2_!`k5Lq3k5;<}92xQufh5No}?~xK*&(wVT*uhXYuxF+_9rns)uT`t|9g6%oS2uEF z`Pss|S672HgskDA-%m!Mw`!m|TR!%CJaFzqSurzPH0QN1jEKD+q|q9CWJ%z#c;y}V zP}E%no>Bv;{a1x;R)FM3V;(0e%p^=s7p7~>pfZt>lngsc3ma!%y{Z(byhl6TNci9m zmywY0+%AtOk+nSfHGBlmm%`-xR=2T1g|L(JLAP^0?p7%rSe&$%iLzxGY;`KKg$v$- zk9>=N#_E=CHp}93Yn25rsQ8Wat9M0*5<{FC<&G+?Yw8mgECcL}Lvi28ZHpZI5a=?Q zfe@A>gGAC<@BszNWQGdJ+6coTR^i7FG;4@ywU9T7p}0x`B)U`-N#dL0)=~fuyFR_A zpS%O%P5SC2i~(uh2g>N^NBL--iE+7dViM-%1w00Wev=TQvm+NF)E$mbQ4If zQPAZmLj#iXpFF#j99%ag@T2sESSAGMMnyEvw5mj7>TzjYr~u&k^HkEtJ6(~?X9TLv zU7z{)ITNc%;o7&Ycp~Zdjl}B~9k7h3Wtfvl#YgDpk zCRCJx0mn$De_@BzFi5GUm>l6}76x{*1@A`KZHg!gmB8--P7meucQaOxC<^=pFyL)> zxbb9noJ5_<7s=?g_|SD*L%6_LLhTJy<20i!n8opLwKF!tv35k6`MB1H97ZU~yjK2c z*t|T>79RWI=Gph}TMyn|W0`7cN; z>518nasMU1(U8xxcPSV%1SO6iV>`dxu$ehWXODp zYg^2C-n^WkGcI>7y>@?Lhr+ExN>`2yK=ys--5f~W-&s34Q!DR3^33=3(>MD)b8Yr1 zpzYDt#}@#IATh(bi)R_(&0LGYNP7jB&f-BA@2{^=L(fst?XfkBqm-bhF)98qTchuo z#23go9+2q%10(^=_Fzn6W?q>=YN&(p#XaM@bY$4W`_EBTzdAxM8S?+oz}Ep?yAYs* z7AvrjX&Cs~*^P`e#}UQDfroo>!Hzkhe_XwxEAN{t;=MNK0iNW0uyyWg>3N2s733jji${u{8GAI&yi9 zvHN+d4BWVI^jU~|_U_g`K!&>gz9MGKedy1qgO}_Q8nU#r#0qBYHZ$ ziJ~a(gj61~fZYCH%r01&%9OzWg&2)jKycApJQLply3mG%t*pJX`?JewB!0Wnr_19Q z_&vdHoCddtME{_{r*AL3uKM;M0mqUA0J_njdk)1hB9_bWH)PbS&eVd@MJ&L-NKi`U zHWBGxv@MIiukkbs{IgXerEr3}WchOOUm*wzxLlyMz>wjgh6{-CeG{4McIO?3jRF$a zl^^g|1pdDS&Yd)cDDZ#3IN)k0G*EkFf~O*cdMEj3how{GqX4>p&}i@QwWlLBvhgUj zv+_VjuEH%K_yDq6Jr-9j5A1nzj@N9#ztA-e%uP2q2V9Zlvh@IdxnNHd|d*n(XQX9edpzq3G``vZy= zC}hq-e00ALSp$68YrqdKU3F5#kcGgd&2)x+n&IpP$J|#^!p~^!K~B);y}PBFwtWn^ z`ZmC=9|Ji7=IGk7mjoMuu^b(6rS_&lD*`dIa2l@PdNf^g3oLYR#UfosC*W)jPen4y zCs@OwauSltH}+O9ZvoXDSlv-Xbw2?j!#7$TIAaGWYPfbaU6pQY1^wnK=QVFz<9rFq z9WyKSCovDHMo)y_QlbE=_qWX0O(e&MAijeSqH#oScf3O{zFB>O!Vn;=!52S;41pyG zz+?|40dffCWdHw>1YKL!w*+-%G2!P6g%=2k62&|Yi}2qnPvl+MttiAE5- z)QxdQDt<`{U-NkcXm!`^K3~%&VhV%TMiz@(O-(V^Pi%}c(@n4e8V|JkT;!FtI6w3; z;mNN<*;~M_22rRTAA2AHHVG#yIbkj?M;(01O*Z%xKDa3aR#rF_L>fb8#%gToiO*NK zt!hK0<^WavY@I+m%z*D#f_t?)7z%5zf461^ax)Vr$`IkU);_(jc!`rkpGr`^HxFGq z*Am8$LQDJKEU15+2hh!!d!e+G)flAy8KBi|8R^fsb~#;~WtKVhK9cIWigvWC(l*W~ z1ospsx$cVsflj+_$$z!h=G)>_@(@9fXo`lPn*0}kQ)H=-;U^juu=`YNSf9*tEWxoW z6SE|zk(;RNuaO%}(=oJPxS+VCET#3MTSxTRe9y@yNrlZxGR>178GfgcCjM!8L~RNh zRp%Y|IKDM2HUB(#h$hKK$XJO6_n*yw1&!WWFAXtMqMlntQfs_~><+#Wf|Po3pHfRe zaWUAN%$U!M%Cw_};Ea`v|A&D5mp-H90tMn`Gb(K<(tlVvaxQ$#CZnB2OhCc2 zTP0wj`U*`pXDxss_H2=14GNbaY9J#hUlv;s&>f@^z~aWbwOGc5Z?G-&fkZ9QS*_Gd zS`LH*NkR)bvpND-Z-N(U>c|>tv4b+nAp*HX1#wu#!TN&0Zq}Ys*D##5GfFwPOn!9= zPZkHVppCA12Xr#l@ORI>k>Lx;WvvnG7rM$OB7;rYl6**dzYPpu5=K%q1b+*+3f}gR8ZvLtFo#Gy%(!926p&exf+7UqM`uve}0Rq+P z^b8R6U_$o0xq?IOY01{apU`U-a{p8wbt5+&4uFY3Sx&lcMNm z{zhAlULG^1AU2Qq~(5h z;Y0c7rotfgvqk)OSOqeTOX@eRB~^N$G8zZUTh!eJP29c~frG6Nw9J&NTyxGs!+0d{+mXBUop!ir) zO8k`yUm6Xme=(febz4>?P~5q``4A#M68m(jmc#oaU?gPfh%1NR1rN{EJL-nIe0i%m zjvqtxzP<57Q1uOM;`x*Zj1WNJBrPn9XwmT(f$Hj@%_ zmjQj_#QOiCZ~f8Y!}}*^M^VytLQRXD9Xk}Te*C2ORI>Jd{~@&72gWvr{A*YLL*afP z#g!g^%pq>~Go%6KeljYP<*8X${wfmEGi1qEp=7vh$S;aHtZKbz+r>tC(BS0MpdG+0=(*h zN(3$)d*oB8Wk3Q!TKO``;$k9SZ3BY3vUu(=-2|kP<)z3G%)2Sy-%w>4TFU zt(WJoaoe+FzU4|m+w?3zAv!BiGep?x^=0aN$nWq*2I<-I=pA$eT>sF~tNkEJ^QQ+A z$~K`rQPRgxQInt|Pwz`+j`h+&?v(W?m%S6d1U11$rl_hJ&B9KSwz3PGPA43Ewr|XePI7q&;>kzX6Sf3R(uT z9y{3Z$rFnhmb8EV^>7b`{%q_Je=18bvVYOi38|Q&hiTazKaqRl5Bjol;5a!@%tmz{ zcepvVI%8qb2}ew>8^8MVPZ%(Rg4d==k8{yt*c{wzmjUs-SK2XY%GJBd&+CvL|7GC$ zA2`-wA7C}GL@y&WRD0%l%Xxc?@R0t(An~DaQ85N1Ma9o^g=FCS9mgt-BU^l4c*~sYHUC0=6lZH z%rEyQdXQdxkS4_lP;XjNke;7YY@f)Kr9AA$X6+L9Z$;u4Ra2+HY+J1?o(Ki1O``8C zH?zDs^Y;s&WCknyU@&ahDBt?Ml}Cxs*&L;6dlYol>7tR#`wW{R0AmUW)e9K(pEBgJW{)K4?&zow5Uz zgGIVWuT)gFpdXjd&|?J<)LGU!%Y^6$|{&Xp77E#@Fa8E zKYrDoAPaj;mT zcQb#BDe@nkuFrP8gI!N6-Lkey*QBI-wfdNsS(0uhj-YTt z7)5bR?+qV|lueb=`}=Zv9U%NOKLC{;KZDWc*P&0yc8l5l?7Hd%6Yyq_#c9J3_0xl|x_Q5Mq&R8aPsvV)cIoRgo#6qGBIRrl2%O>P> zdj!7l%YU~cHP=_T_FfP(jpGk@bkT`pTK6BPHyQSb3v6KD-Lpd)O-5W~e!%nqab)@5 zW1p$v;BTs;ncO1KJw^1Ev|y!p2>s&wTko+)?ZT~HSDBaR1jM;-RT&QuTib5+u3X#J zE7j=9L%ESv@$M+s}IC}j7}NvawUl!_Rtcj%2q3~`Cys1zBv4E zqNBASA!3BoTwZg;1XzkXTK2=t;^mt_NIbM zvl@k0MgMIxhVM+dAVH*0zQ*La%)=SG#eHP;*~`eS1d1Zc1X%X_+vY7}3Vz*wB4$>k?nOj-0gd{goca|!t}64-v}t9tLPmOl{*4e%)^1*mpnIIax` zkg16;$c!|s&wT_=;D=R+f5aWTD5^O~>DRQ8Ye$IIUqMZ3EQB~{6pg|U@lcRpEumAc z(zjH4Y@xWFi=c(|4iYHM?s>X@Z&cSSuOp^I7-^%ENHZWn;K9W zAq=%U85gq)w)o&dxeSL_HzmZ#1aH*9J>5!hC-Md{Kmd!?yGI#^?8XIpVXcvJ;eC7& z`N^B7h3By$CF%e=i5q%*|7~%=>BnuCe`2Y}Z^huMbqKepM^-l9q^re{TF*mx0xYSha7}gF31 zawJy06DLw28(x`j^;m@v8kZm;h;N`q)u~t6M#%tU# zA3zBmhSjlMe=EfTh5-a`ZhcR^I;4iKE8-uLsu!Tc+zmuyCa;EH3H*&Tg<+G$!_{Sz zL3hrb!GxE7;(-_^_I={+v(7y1DJ<@8?0%8Rhn-RJ{SsU)mn7(rq@Dl)hGaY=Nc*f= zPizg5^DU$9mg|85rRWbI3fE4aP*CbYkvm%w@`5l;MF~N{WW(lPn6Z9E6X9~=e0(Tc zBw8jWKREoM`ttHV`1&~btqOO?-d0%28oif{=ZI3c6${wGboTP}nbaT_T*&4rCUbgsTqd^_0g)lng zEg&Y4)ACY(zeRU9FV2SeYk%*btxda5Sy4NdhkKqP`Xr^unV!wD{Op)W zvW72FRP>8~Q&(r%r47;!H`9*CjWoY5GjEHK@VM0L8;>ie4opl;d|_u7e#1haD~u?h z&z~6hICjAIo}81j$Mu9Xyb7n@sr1{&J`gJB+50-Y{Ff8_P0#Sq{qF5_i+WDi;bFx# zCD=jk3X)0+P>ql$ztA1QTs<;jWT1N)NmG>p*#XPAS`2k_Q;?Sv{{eE3tzK`N=fpywqh zn<*2Hr=q0J`cCbo^SnQUBXq%iW6tow3Y3K29n-ZNj)2Nw(B%FYTaIz)OMjnp{p#`h zP|?4C(kz70(RglLX5DK#8o3-9_1@stQjGcLvJxhoNeBx^zTobsH;W$3C&cg|ZCNxQ zc}E{fKROXKpxi^A#E6;2+PUT4d2o@PlY^4Qx&qD#;vjdWNU&F?Q#D4Q>udiQVo|B=XTM=(H0Pad0oVyIc>TM@mo%!RsHmFizic zd?JuzI8NrzkaWF8(p_i?{D#1;C_$hAhHV%}i~ozTQcTJtJgHw|R!dUF{1}r2)xEb` z=e3kv`;Jsoik2iu=5;q7?ZH-WLiWht-(0>~$`Ki=tE=;7h#Mk$dV1J~z9>ds-#M=E zYb!WAmuY)#((mYo@2(8ca&n?(8tjp@(hu^A{Iv4(dl(WFgn@w+MT&)jRN^R#m}$hI zj5y3OfA%b#Zi=w1!3_R=ROyePi+n{sdU!PalH9Lt5kG$-B3C6DNmKYqR1Xn@&Mc{V zKCzXR)vjpdHjISGHm#fyCMKpD_CRi@J>~`*9i69po~4P_Xc`#n$r=7MwOnFc$nBK} zZA>kf%CgCoAdYVyKuJeYT0ZXknRIDMS14ZZb8Y;C*-hOkeTdz`9&MWK4*qZ2X+ zx)L!yChh=&*%ggliJa9X)gK2vd0N?P7PG-f)(5Aa)b!IvX{w(UQH_!@;sj}*Ys9hc zjX!>Q6i|7n2DJx7J6k3d&eoCc1?o78!?#DHT9lYGO1$IeS@3zKH)QxQvkBX-BC|Z~ z@YA&?;}pg5zY`Zwri6hgl&~6w&4t@=MP|9-*HkGeQ1CpZzRv%g+G|<488H#kV`<^c z(zaM`;=9TCruM_fkG)?f#ItI!Jw(^#c1Fo4yTM5}>*gaxj!H$)U4`6H?{k8Hll`z0 z+jxzIQ{_m+FZkQHwqA#TERI`Oe=8!LGxcX}-{$@R76-;ij$9X53V=0@&E*&e1nR`t z{?P|rWErZrTi@o%*>1i5q>5;{ouKUwr`^A*lkyQ*+X)O895ooaB?jX<-erytjyb9i zYm?2t))D+DZ@td?YMXNJJ{Qsl)(DGXSY$p)R>`}2S~_G)?b)2x=ngi}^lN&Ys_iRj zmgTzA5Jn}?e+?R3#arUT!Pe<-<8s%2z&n_Lr(t=$`6$It^3gLT0!@%Nwk)Ji1@UhJ zJS};!(9s`ZB1QEGvYBIlA-1Cx3K<*M{`#{ya-iB4ob$sIW@3~U#NX5(xboB==ACV) zz(GB^_05pBR~^Y?@ok zLnpRH!=xg!e1bs1GS0mkDpMiRGB7Ck;y^czvRwmJsK=Kvq^kl$*nW)Y9MMHfLkLEw z4hOosfZkOBs4*CV19MRw2Y6syD(q>T5ClqQhN@`vzA^0jFiZjEd%A9{qCY5|OkL(u z6@_>*CuDSgbi?A8%fS%QSAK-Ne${vBu$w@!SFey%<92epS7gp3SCb8It-g^av&< zCUPpOr|vF(;u#gSC&uqR*ChWru(TGwSshZ2w`N5r9LPR)Ph(V>eI4)UPn0g4QJS`> ztau&Vpd~pNykdOGW)_~JJ6BPu?!24@Us3a+X*wjOX%(eSO=8wzz(vG;s?-&jJ$_q2 zA4gDIgZ!b^^;G=B-M_}R5mia7%l(a+L=7llY!;qjI8wwB(CMy*62>AP3=9~sKf%x$ zP^zTV!C2$1ObOmZ2pInuoQFx0!0O3vK6e%mU54vhM?~h+`Xpt!F|)h04^KAs~3p$!J{E zxK)cQf#o_}M*SG~P=91f=>&G|G68G7^o<<1Sgs_zAm57LOz%bxz%#{vcf6d(n97y9 zeYWEX@mct+c<0}j8u!vjU?8;5{GivqbW2S95dL%$)1d2E$Xe(7f8@RI=f_dJE>0VU zFPEE>1kNwosQ-1;$S-Q%@QobKkJLWGug;u&Z0vJL%A~>kAPkS8rVUjt=0WAi5Zce7 z(Cb_|l|wdqp-g&|%k3&F1EU(0`~_c@o#R>2_SxZ+N^X2p9Cy233^XVJxaeuTp3q9?5k+ZA_b?m5V0JPpgP8!df!~xe~ZSzx6r4t z#Ne^(DN=^&Wkp(NL!Y!f9ntg5>A7vaY9etz007{nor31Yg|5_?5FaKEYg*vMRyV-= zy}iA<2`!=shps0dmXMVAz_yBS_H zFnH+`ZImOwCUQ>Gm3=oF4ECMw@S7!xyMvctB&(WUg79{46#uh27(2b}y0}$5yP7id z*Gk`4Uvl7TW4-Hf`DK3>P`SIY`TfBQ;g>oz2e#-d%@g5p(~vDsnIlo+l@HFq7oQd#KcBN^mS4XNQvT~66q7k)R*jo1^W1ge!c;Hi^QjS%Xv%J3f`mBlozZeIU{Q&3Z`W@3lm58 z_tg+4*^0Ufz{4;QYkCG=SM76aDuW!LYck+cIR3|G|b9?j}Si z9Gpg-{hQ#@z>u5nnYGMq;l)BAzl%EKqK>XVU_JMPalc*eTlQLp&jEFbXH_qy zKzjy|jc(BGubZ73EcxY^IV}=H#z@NI(Q<ZfIqSh*uqU0DfUY`umSR@U_QlfWIp)7GPNyBzI zj|`oaB@`EaP3HVj z<0tw0okw%3fp|I>S{nxB6>|O7Zrw91mBh=$%5ytELV@mImL@r?O9av8GxMbF6gs^F!qwZQ%Rf_^q@Kh~v3ty!oW;YPWpe%%S&6pD4 zt~9e+pQ13JsOV*uNQ7?@i@8fy3W0{dC>eqI#^q&0Rdo`_ffUxXPwhpu%d%7WBO7%~ zM@Jl>X>rUWWd=K@|D@9E*}})gW%`Pr>991#`jw^$OEyaa;jmPlcCM$7#4x7*wt%syMtCsujf5SW;(W%Bv3*UY^dt8XO$FtC< zp7ab1a6D2Qdp)vIZq81t>7`lNe@B9T{sYU|H|>^LC8@*>+~D)}$A3{ zHgs5wkA|anxk)RE9SNl7SoA9-r*G1MKmhR6RBoY6=^&78uB8UN8 zvtaB%q%7TC|1G~C@>sZ{s`z*GY4>uZ({^lsUr#uX!(vNiEG(kl&-?wigKM4zwjtwp zvWm%mANr?c>el*-r@~{z(h6dH<-QAyGn=U+yg~#-83cFp4yxS;?MBo{dx*XpOi5t-tBf<(#4~*6cqM_`!Qq^M#YC|5}V&2Zz6`hx7iuiKfi<993^SRSyWQl*LIwW`#B8v zQsT0>WN3}&;0E{d9#{wUEk36%uM)5w{>P%J$Q1H0J|m+(xaLVRz%T?&#GNs>f5VPJ z38d&-9?9`z5I$VrM@P(*!~=5r1B*#z!O1wvkYU#BPPd%~`W)g^-t6QsMib2(IFVlb zyq*vN!3UL3IivG@)EVz;Oe21esl++T`qPgp1_^&XkJI6(E&voR{POzjFI@$Cs7;?p zhQBeP(jdCj3y))JdWkA!w0S)E%BIVQ8`AniW2jwpXjPF^+$);k zs4?4=faD@-E|dPT+3nMBp;N^o*9|9aSq`SGs7M~n$!2%P;b$y?iVcOVLk+){(dY74 znhc6&N3zNnA~Ztk$Pw}YRad8W8rw=WDp<#{RQ;RgPfTK-AI8?46V6vCXWMx~KUzFh z8YiYgU=Vg0Jy$Wic~&S42ag)9fw?Kre%{NFEkr5>O4^(%-pjcu7|D|2h{B zGFLN41Ye#(86JqjP1m;m4Ne;|ve;^;90fMTg zSpydLE`00j8xsoQrFDs4#X%2V$c=kknPwjnSDve38k`<-jy; z@p(%Pao>nPsOYm}A$W>3T6Vg2GCEQ%`q9{`ZL)L|+)tF4^&cIjm5bZzzn^d#Wf|2x zz<Uk8jwhz z40x=aRDT(`87d%qD_<4ZM4#H3oS4W;C<%YX2gxd+OkNsK&cQwTUgQufKE^qfQm6|% zp9pl^ZfJc;wSad`BKeAE0?==Nk;92-rC1Huq@rubIM*WKIsD@U!yS1AsPI~Ssr2o8 zPmKjx2FPE-gk~!m>d%!Y{=v>CeoI~)pmECXa;BlKzU{n1grA+A&C0ce*NB4_*Xc@3gMz)#mL<~25NMErTOaDyt%Wl#eep4V% z;^oWeD(Jp!wN<%ssx*3H@MQ6q)zz7+-rtHjk*fXdIxEd&Yqr`Wwp!wG z3?amkc7GT!J9qr-Y}dTzS!pn|l8NKWS%)0QJ`o<S0@W=KR!MkTy~|Cke~%l8#yhl z?cLTjFcnG2$hv&~$^b_WFJqVVFzsLYO7xvgQgW&={rKZFB}V#y@w9D|*R7E4HP@=h znRyROGwS`De?O(=Z7mQj7cs@3&u~BGv7jgPVS74I_2yt8#Xcpav*70sR6Zf02;1(1 zWmC*S49ON;lR>pscC<$Q-OBu-0J0_aWrD!gmy*lC`@BWawSGe^cwFl zW`w7)oJe@EzHYpubgjA(>g(&%oBiEWoPe%Tr+YU#8q3BdXgJ~+IIwN`Ynf4aF+3Xj zN<4T($i$=TyF~I;J-?_+i3#sBt&?JW&MzT1EO2Kke2yL^dL1&rg?O;dz2^}Q1H;2| z{{H^T{}{)KKQ|Kgs19v-G^G0c2v#jMDc$wodI-fq-P6L zPy8MU>b-u=!>FX~ft3Oj_5t=G{i*}6D<)uAGbVekV`=z3+oL9$)S#M}sBHGwW4uu4 z6s+8rxYItHr6t>Ux*~fR{aPqz#*m4vt;&%p34hm-xO~8%vEU2!)Jx@I+3z$pQ+41E zqy|wutgRsm&&2ix^pi@v`=)+=)Agef?0kjHZRTs&0UjD^Ei}7z1fbV2&V4NNuU~9s zOL_J{QQqUq5X@Tg7#R)r&lceQQc_0`_d9uW46)*`%rj>BN{J7&64J=~tJ45_`iJzx z^gc#`xIcFPVRsmL#+MgU>1uC}+*vtmkfFf}iZ=lwh=m+I z3;@Oz?X0W^9C|+n;~kG0*lfUH(T&O{6V7B4Y4*XmpfX)9;h!F*9L5pg!8WOP!PmCq zkdL(%|97zpR4{xvJ|5%&SqGlz3$A}!ntvi0Y>fiTdN}Q;!s5a4$yBQbFZLGKfZ>AaAU0$3I?aBqbHo3I&o^;_0vTk>13~g*!md z8whE7*8^j;0PaVrr26gve#r*P?YOkaJra@I-=Q||yw?T}E{TfD4@QSQx?_+)5(GE6 zqMoll|08&73x^?m$RFZXIb_eN2AFC^qdGPxrF0+_)8Cb|FLWRlPX3rxb8d-b$^B4% zp_Rmg_@#q^g0z`{u19gr42Cg2;%}qC?Q%W{IM8KU!*Jx~(HqIQERPGj{U3`VT6$75 zGDgDF!!z8Gvxdqe4nGX$tHaID)kb%4>=e=m`g@7v8Kp?%Fm^+UC-_p94lEd;q8xN0N2V)E;TNASOuU}WbddnL}g1DOwcF6fSH#eu)G#*u=Gq%82>ZhDP z=)%nTe{DA)V$No!4E83_x-hmU_%CPr_%=S6!X70P#=QDFjB$Pn#Ss$F1|3{nEdyJ@ zy|C)B1qeO|sfx6lTcb%8P&NPjAs2B0Q!9oD85xmr=`?vk0<)IOOW;X~E7=Q% z1oT9cCq~$bELLn!sp-a-MPM{7E`Gx8S4)VJ;#D1DM;)Ig{45SDm*>xWt(Q&^!M$H7 z4T(^qHPpC|S*C~sg~f$gbQ-~~567qBvYBEsJ+QJyhG@NRXyo|iE*o|(ymS6Of(Co} z?~CO|pdv4ItcMB%ywHaw5^w7YfeCCDi;4wIf0tiC!0ZlT$05!lwZ7!2AT8ehE0PgY zp4R0#WnOVSA%v8tHS%`R>!?3#`?I=h(L%)dO;6~276(qEL_u0`?g22Q72~`8?<|*7 zFTwxahmrbY>3vfJ=FtmY-#HAAfFV4h&Y>SCLHk$n1o_^^t0s<0F)3n*^P>^Z&;Wa+ ze`KT&9GmvfX(`Tsx2F5!Er7}da&aEo;M`!00XVr<-rnS-QAeemVAw-s3f-L#PJP{z@7#f0|T@BoRuxi^8b)$nWNxs#uj2LhZ zWWwS!4olz(K1mO5wo9v`WrByW|IOaI6osVZZ{K}OaFsQA=0^?bQc<3y9LEo!XI;6( zOPH#3GN$gu69*C^j4F2Iq4Rqa5E*L(uhX;!Z$6fY}q#z8Y=Git)~8WXO$`sAuf zS4TXK+*l8RBy2@I81NAW6D(}&BkA2+^%>eYbLxt?6_BKg!+$D$3~X7ah7=q(d4M5a}F3LL@{H5T!vtLO`Tp=#(zWK|nBQ zP(+ZSC8U+^?v5E4X3pmSec!ojoqN|=>n>fu%sch&{qAQ!zj&T8Y_ses16ezR8<+sdLQ$fU_OgfovPVCND*)AJks(TM(Q>3U zi@Jn%tLvRyR)hPE~x`= zkr~nAr+?FegKIy9vq0377F@_rbriYti46`{^x>Y(`2^1&KTa`Jde)l4xna7n%UwFr zQ8)cv>NDE*Rx(%>2dDtmyNtFuVs(kRkKmiVjzRWw`NYa%K9$csEzF4ok1oLu(_I_Phx2GCs5U#h~q_$Uic*8G!%XuW+ zN|42_O;8P@SAgheHN74~puB60TQA$7ek`4Fq1xXs3QH zR@t*Ii85O2jU3tp>`-50=`)jlxJC4m5(TH=%U+5{e0MdEdfKV|eE5_F)NzgAP&d2- z!hYG!Rep`0pCBMa93HyAKm^gr=i$6dOcXC%>U*_aAi%=)pbZ3O?iHV-X-&P)0oebj znFTsO^0fsJfYPwB={i!s3{bLiTCd0FvPx0^fAq|>G_0%Km3i{;tU8dCQn&+d7^55 zjA@WH?>+6j{dWHIo4u!zJsi`1xO z!iaalN7kui;akPB5KR4MusK>$ee+;3t0_Nb?}5U>`q1eRKZmP!4XS4HXOQ0yz<&Pu z!ny7JwFxgXeBzhY@I!`wM{AHe9|l&|oZ9$Xh2!Hr%j&_Z7)@ zUXGvxkBZ#MGOJuchb7&oRPBGe^i)7YEWZTxCL6zHbE7;4QOQrF4lFX*TYA{lzk|!w zYkWTgM}SZzisQ+t`~<&nG}pN!$U{!Q?Q?l*X5E+amg$zsonQJpQnv z9_-XQE9CL-`GNZH=o27_mKJKND#%yML~1!cz57vW!K!|GdH+Kep@1CGBjWdoeH`rU z2~4^ND;(s6?gtAhppG;wk|na2e@hF9qo8ri^JooRy;5-(va}fr&@Tq@s&*S(I0la} zcg)Sa$el9FTc_-t4#48PHtqEch|A%QTnv_OWpJN|ec;SOw-#XxUlpx!UFm3x5D)=71+A&?$3x54(GKK+A10~>F zYtXX%5nMzB52)P+evxu0n3H0>;e-5t$D8ATEBGF*^o0U#>j=zco#x^oqgN9DKHocN zQzzyOL^CkXVB5Q!*Nk2jwdbV{CVyA->-WLow>N+KNd(3btn$O(ycM<$l+FBqN32eK z_WK?Fdan~8utkS`v6s0YFXs4XXx^!EDROJ3=WRZG2t2tqDeZ?e(!gm8bku_z` zG0&46Ny$8#D0YV<%02TtiR6LP3bEhvx_gW7tzO4jpzkAk%n{UQO_lrpKG=iN zL;eA;a8a_ppzP}AoD@GOMPC4kEgCK@_6uC6IIedYlJ1--Cs~hc7l(mq!cl4A-TT?C z&0DkFu2PGmbOx`Fbqs9bt+V#MS(KnfIc<#m=PKGCI$SIp7Ku@1h{q5y2|q&xh?J&xV!0! zEK%BJj$U2r2jN>dcJQH6HdNJgQOsC3y^0h5PBQWms1`oXUFm=`k!Iz~>h4b^MI}!Q z&>#4}Ig&f5z6h4%iaF7iB#lJe1hCE`{X${Ol0r+XGzHKX_m>O_E;V1H@I)_5U z!eCKhA?~kVzaTBmbg0^xOQ*zcuwVm(6hg(D?IJBG!PQYfbFU#8Nd$kUyyyKWzSgbY zSb00=*$f!=#y7^|A3r)a2$ZJoGG26@})utvT_oI6i8Gbx-a zCriTJf_&n>UA9FWyI)=CqU+mhCs%|DUfjku-lna@EI(m^2o%@-+J4afnRBaM(-7ki zTpWnmvcJFF76Zy&|NOjVdA+6Qz$7!T1{xh>*>Cp>kQ z@%nfn74j{P(ivwTx3&Y{^06Reoe2H^)^oYKBHSp@{V zh~XPSj`+@hV~>6K9KFs9_(Q@G;-X%WSgV@Ld3>^jFbR5aKc#U)&4NGa2Y9@lSD~U69WQtE}*-imq5q z%1#@B;RR(J1wYHE@QVC73vS&T^bmi%RKy5vy6~1v07i<$j@Qh31T>_35%{NV;>__$ zV2%~SC1 zs|i0)g0_}*0z2N0zXHn7j>J%ugCecBBW-@)cvnri0ULwHvBP2bH(P%oH5yj&+kue> zmQZugbTT)po8yrNbd^LM- z)qf7%ng<(`$BylhZ(a?~;jx7>w8X8#k^{7H;$*(5J!U^_qrQWf+Xq&xPJou&-&~47 zTJ}G(tJT0nPZ!4S6N5yn@O-s=!{^-M?KT3?I^YS;xJH-q{W#^`0VL{g*6afGiEqq$ zGI7{|#A)%K(!dsRy8zI(gxHXuz8V&26X~vKt!SslrYZliktgNM){kVDyV!G+0TmSS z?lcCr`eB)GF1cTbMvPr1?5{lV#Ov%;01MFrXTV3^t@4etnsuW z`@@G1;TZyEcnFQflcA@av{yYAc<|l2${Je67%z`3J=~F{+b@STJU$Jbl0D`HypqPi z!$V^3XPAp$JME5fKDezISX1@dJd3mtEjEaG`*5?76<24JMC8G zqaL=Tegla5%*y(TV6sXm#Nli_UqmakCE9`|D=qy3cJ=UYCdG1YT9M8@DuLgf5w{s9 z4~O~jG3T*rQ6Xwklk=5hCyQTAG7Qh|IIB74vmId_Isn4&%5uxT!jp^y(;+ zNWDOJoY)dZaiDLOXbJ1DbX&eSv7L>N8p=zeJvBVOU4plnF0@nvEw8>%=+ ziD7NNXG*2KG6?T$%sMewEf0VQjcZtFWf70%7kL}}w?e&{0)gJhP;X2ap(&dJfCOD*t6)%yKQ^_!|GCQF71Eyi4@RF=X<XfC;8!8^Zw zZzviSmtB+_^yYHNBm%}N=iNUH`%k*Zx+eSka>12L1nqJFxT{^9iaxsnZzfbTu1Dwu zgMabHy-cSG_WUKfSM2_U^R_<#NmyIo?D7f3{sJ|35%vWGq7jHkFw0K9}JvZ2zP6+Gv0N z{v6BNT8@}06ty_M^h|_gSQB`yV8t;c+EI^8-<#K2eBnGY_VfwgOgbbEF6b9}1}X$% zv8Bas=+2)nL?(eEezqX^j~NH^;@8j9g6AbQw1H$rpY!Q@pe~8`+ct`|q`08;kAk?A zW6&xc>y^?(A&PhJ$j_lprb(wwc{x%!ZBPA((QUNsP3i-$yH&qF*_5H$qCUB~U(5yP zQviOV%O2(GhRdkMCqApjHz)*KRc$j6G1?Fn#~7*;;{hcndA z_wZR`57`IcDE_9e++-7eUAmPqEJ92|e}YQ;TmO$OXa;3Lu_N_=5r=Fep41ZinI#9~n{!$3IARQB_B?~fE&Snv)y!u0O+D*6dtpXO zX5w!#`V7$Wl*+5XpHm^Wjtqr%DQ9wKRae9^X0dC39-@A}9mhGysL3bO8cZ3J?}9u1 zy~x1F0U+H|bByMo(R?_!?MM+8=5;P8wW+b5yWBg}u!0@WPo+dgh&2-9h zsrdXlC;XZ-##p@V*Fy--!G>;s<&|U#Zg!L_k@A=VO@@?rVloYcM(kg*LwHMA87kPH z{tds&R9#HD9|d6;i6$f>B0@k=&}xrA*3z%+m+o7=FIu*z7O`o=B^(9ci2q9)R$ybhK1(37gX)S8!;s3<;$g)+q9^_X zpu5OI1OuQ#+qRFk_BNY<+B0yTZ~T^a(hU!iOkWuH#XV?2!7H;oZGOW??euc*Vz%Z+ zH3kbin^U|~u{Fnn-C>GsNVXz=V9BYBD;2`Xa$6z4z(rishN8MTzJ%|EM0_!?*egX% z`1dVGF7qk&OQqexC))%GkK-d=l=b?$#8-AT6`Q6m)78mpgh;efTSh+kL7r*FC{hc9 z?UeOT`Jc7?sXFJ&yjsk%fB)^gY~Op#e)lb^;`BfBZn7rVv)IB%S zLmr6T_j>J+@bBG&KTJo)0*g6=W zgI_E%)A;InH;9aB%gS&+jGGl@9s}|xokSqP29pf)d3#(tDB>x zs0d3zRNPJBB`UjH;*lmRamRRkY-PkHM?dLv{M$BJKRa_-Y&l!w`t62E1*+fn7s_*> z!*_X{wUzy%z>Zp+Y7?Jb1oocSu>(`Ng7-igga66}kLPIfh>wqnSH7{cCvHe`r!@(S zRU_-dXCEiah1Wi`QVvB~B)@u~GG4{M73m;!gPy)R2myzqq8UO;8%3nGe2aNXgv`&L zY$|URlp@G1PCL%tJsf~+5aql#E3Swe-H6PQ!ruS--b5+S;z!pzi*OySh12+_N_iY? zF{!R5rJ+9#5#Nr-;0slQWS+IBBPpZJ+J7ia*DovO6QX0W4wYeed9h@FxA{JrU`sSU9##edM zt7>dj&E)5A#Dn$u_EVjVROK2YyomBAjs(55%R~XC9e~ZAMsBm2*IUvxC9<9uvzY~XpQg@uW>7;f-?1#dhAB`QH_cRcbyHU)( z`P!^ZT0G9Uv8`Q!16fdeION2ByVkhy)2HaC9&0#mwV*LBe*l=6u9Y1=M_gL9SADZO zdvP~wg`qDnPZl4i=u+b1lt{ge)}`~1Z0qPyqb9-D#b^l*A&e5?DFFABQ&ks9wi zWF^nMsqRfQ}%%ac}TaJa3J#L=E(-whfB#%0aI z?dkne%%2;JD_=R8A@-@}`Dsz5-xXUEo1!$L=<8)ik2aIY`cjV$+)(YYA^{_AN-MSm zdTc1=_SeiZ^(&7FK=Wv5SwQ;r@trLs%fVj@_$MyM+8*qyncyfYg%=;0v52|f6|OF8 zP>${a^>%&fPezzpVT%`-mYpLg9m-%3V!Bn#aLaTncSpDf@j2xuAAdOnu$yG^`$&E6e-MAkp2tsdHYw2QKE@Fs5B zwQqyzh(nYa$>Uh{KJaann`=j)DWWlcEbHscwTw09Nx?Fh?sMd3R*W91Wg z*l^HW2iTdRIFm_!1-i^pM^%#Q6lzxGRK+V5(M;M53aVw#SIk&+>Q60ZtB>D9Bb^rX zFQ=-UeHblF3ttlz?Lp?Cek_y{h=^%Sd4j(GHp9oN=dO4M&yb?M;p5oeU08`cTgAP( zVEApvpaNy)snKRBB^M`2e7iz?EzEP6LG0f&saDBX9K* zRmwV5lwQ)xJTa>{Sv%XOF=XW|Wz(_3xgIB`EHvO!GIgEylMu%O%ajeCxyny0eBa1W zqz5~Jy;SS|hGAreSrW#zyl!s9x6c=9&Dj^p!n`DKYpRTaeU4v!;A>*rzcf#xl_fyn z?mH@XN5A)pP6fmk@jxk9NJmOrXje`4z{PdNw*bY7Egb#Va{4U7WYMG*am;B~cw^&; z5MS;EoZgSGmR8`!Alr{N=ecM!LV@Vzv4+Y|(H->c>WyW^yomRdiMMj5}&)+ z;hs5*e|@x%U#ydcYc>bLmuotm)D&A~O6HzuU!|(GDWxnDPnRzXNS1s^O{7jy`H=aE zuvdw9gJrj%p&^GLO7eWO%1e_UV#oamw?$sRqzHZ9nzZeIwr8ZXw3TqU&IE=m&~gJr_URU9z}IPWdU;x8-Gb|*JIYnnER z7TWcxKhY$Fc5#=Im!$?GIdo8GR92D}T zoIfd5(J_t>{$RQ6zM5fEb@B(mxpm1R(-(@Y9+n}5xbRDRb1wf{{qxN+k0fce9bfs=YCv`VKEmJunQu#pT6mR-!p5-ecFa#7ODSjdQJIQMO_X@WnJwIlbWYl zIOx&m4TApz%$jIFwRDq2T0X^4Q4sS|LO0^iU}g+!p7M|6dPeQ|ju`YyER*d{0R883 zmyOpOQ!0H?uIg9Q*6f*krocXA?rdT_uvaHNmgY4e(-rK6pqUH|irarvp zKS8Vgb$#eTT-mdY_Zu3jO#~<=<73f}Dt+3~^#wMC^7lne*Rw(;nk9BJI+8LOJq|^A zp|-!1H;&IM8{+FT`&ywra95v?NKwQYk@!tXw%*FC)-?37TyNd&IEiL_lEa&K>f}|; zaR*n97pv2gV90pWzm;0+41t~S)g%O{s`QFkB^?qSDd6jPj-1bK;$$1Qr(eowl0-jr z9IB}p6uN&D>KT2Stql_^*@dA02qe6%Uobge$!g(v%O2wW0}c!PhvW+y4`2ZU1PQj8 z6+RFza`^nFM*j6??ywr;d*UVWeFo&8O9IG1otSA5+tCpjFO)71QbE_9Q|qa5)QO5a zY+Rcj0_ks^k6uCN8!jU;ny_w1u;+kR%~??#-DDLmS%xltJEuWgU>EF(Ec#v$Ld8kf z)%3oLzkP|uqduVGlsKa}&DyAwJ12aG%uLf<3_e{bJA{5b&Utqj5~&eI(D)8Su65ll z^M+N13eonTz!m#l|Iof+B~?Ky$kE-=YQLyY&5>FboD|8W{OHmM{_5SQzB-dQXopcR zFT10s;H((QPjDbpk&VdBwf*eZY8InJKJlnu1=Y7o3f{f*w6!hPJSP)$p2W~yKb}|z zfAN?C7n03P#ofGSL!Hxv6h9=p-u_|z_?{RZe0-8$%6|-MBd)J*^J%6eaiY%cuml2&b6{^|3qZa?NgX6!DZc$&zFh?hKwg4$k37mXT$8Xuk7zi$h||q`)buKc;7te)<~mF8{Lv{wD>auxjq6hEZO`5 zTE#R0ZLxtF9Jjohm#>nrBf%IR+>~2$N5gh!?Zo_vQ|Y>io3r#L^Go032wbn6HCTVE z$_-a6%XOqat~^maz+7EsfiYP_y>5OhOInYmaH90cP>xGq@c;HTO$a9s<{^Oz!)u`2Ii7qZ`d|+9FcC;VT zab$ByHUR?2GP8F`kZ|>j*34aDU#B7HLTA?Md?)(56ed3*#|xHA#t{X3&)E4l_bsm!8xRC`5zIi;fBzw!}fXe>| zjg?jJH<=w2KHaj4N%;%w$*SkHhX(c=MiNUz3&#|y z9Hlwc0n8`){t!m_w~V**&OrpkEiam}I@KtmAzuOy5&F(n2ht9wZv!}S?&dGO&|G(P zpM`Q$h_)oPXDzNA>AK0~Ilqcs4qdi*bzA6A%^(arQ=i!W^J;(^GwUj%{9&X~nUzwL z7~8y#jb3}+kYHJYz6Qol-GUv-Gfq`Cs3)vFzX*BI9w4GIUS5n>TRI1s9IJx8sC3|) zY9?di>xoM82FwHR|zvgcO1%K9$;p=PWIY5>!a zQ833|+Sc}crjr)&jn>jRo4d^MkYN2^zwe5%cPv?89yrv;)52YUk_qS2nbg?E*ecEI zSo9!@3lc~BwUpvP*t%2m@=#tW<;Zn~BM4&R-B}I^mSmD9X8pSo`A?3>>7FZfw=xJG_UpV?SoLAw@*@luC9mzzz|4U2ypj8^^(Mh;3d z);wbER}~E0k6BC&b$W8BPe>My)ribG^lJgBI@8Fflt{QlQ=l%#L5@{Z`_&IGbES&B zOpaPq9AOrPnY^e4XW09N7|Q$nrh{74-|-3Aj13)Afa-0d90$0ACS>b?or(P1{LAt?wqn zy3g9C)1GVU7YQuOLxQh%_i-S5K27fpM(9wh*{{|Te#bGHzBK6aMn*}GP$(| zTV#Rj^ugAJXZ#X7Uum3$>@XcB3TYkb2heO-TCN;Nv>-;LEI*=3`*})JQb4#SAGyW4 zdvU{lYTCWz7aLzu77Qo2$DymG1#+Uq<{6V(l0w(cj~Zx~pWzr*-K;Qcd=GA`AT;o7 z&>JwjGi@B~iuj_%D{8*_H;j&M`XKUx&;&NN09MWstv-U01H2as1s{g37(GZ)dhUE7 zkoN50?i(-2j~4KhdlA0~2SxXAAsfGS-$%2MG$2Y!_|`&2MMdp#EGO1A!H)A<+~o`& zVgQ}=Cg2MVbz0_D(kqo=d*$S0uY*?mYE)g<6V-)#2Lj1es}!;lfDA}TbG*TU*sI%D z4fB1-((&hBM7(`_yN1dZ?@>NhB=NbMummfT=kXKPT)lgT*k1I0&Gjop^dk0AQ0wCc z=_cgkry^^+)f5ho9?%$u1~+(aE!Y%Kut z+?kwQWIBNa+qOe@j%^aeNN%qQ6SV9yVF%3y`-~QfX}S|EI;JNRP67s`k0A9&x;KN< z<=9g;a3Do=a(Dg?F0&z+r?CkDfIn4J0n3VH#aqXd+Z@Wo>B>hT3Q;&5Fe}@`2I!_> z$NrUvn(={*tm{~`p5dU+LFCjZ#`Yc7mKpeq6>$KC*CF?`>?~&e$O?nF^#6ybjDIogW`aq3h5l z+ZGdM%0;W=i`ixmc{I`a7Bjq`EU!_L;@E7PG_FTzx9_WIx;u*Hg)GzZumd$CM}G2) z^Ep%)M-AkB;d3A})Ah=4O*0*cQaUCItiqhrZqmTMxf!bOeAPbM_mm@Gja&WN17*T7 z??p%9$;Rlvz_6K1&vObAT-3*|eyt|5ct=^8vyPoKk~0Xxghq88Pakb*ONiaY7mNmot`^?x{Jju5Ql;_7s4j6`)W+CA| zaZBjbDmrV_lG7`dFFW45Q=LhfFFZSw2j0hyV4XDUtfZ(R2bGfI!F-nu{KD~i$i;CG7hHUM z7NX$2(fPijhlDmMk&=*)a-ihq#x4v}n)5gznu3Bt=SQ9dn+yMNNGdw;RUZ*w|6}bO zSTrR_S<%Py!(NZS)lx$S#`NXPaS`(zqrQJf{cy+s{=Iwhx29V6VrJfL(<4NpYQD-M z25d?z^**S8umI*3*{_11i6$-3ztq2qDJ_K=h|YVpJDlF#ddtXhxac2ebnFjbjeL)F zTP!Fgr4uI7>dcTMc&GQ|LPcS1jWUdXTFh9+=+i4K(GSAl4IH=UYBB8Ep?8{MxkDo# z8smmLnU)ylJ)#AaDc5*zOv3k6lTYx{>=$A;x7I%t?eYNJBbFKX#~#;ds6ZtwGLGd* zc5sKx+lseGiXu8cNvZEgDqx@WE43>Ysoj1;qm1cPD;3r6P5mWSoT$vR zzx@Wm?^9ZNdy+9V(i?C<2Ng#A%F>v}asoItL^)?aKdO}W`7%bEDBW$CznptIjlX~L zmX|~0=OR7g>o7?)3+%9wmNO6P4oS_%85&Ptu$URrJ+1Jx(a}>Xn*XI1@0UPEIUM&G{{2@f!mkHS3QAl%{uZt65i!?xB2pHc?MWry=D1*bUO&xAoV@sz z%z1N`OX-IBf3ef1LtZ$JVCLHGNXzm5GlP9M3|#Pd1q2sw%Fnt=a|FLScRd}$jSgUb z)k~yW#GBp!@~P*w8g~_h;4E)$HvczYaaegs<$xZAiyC2y@^L^zxGJ{2-^kI#8CPk! znZySvfWgH1G3z?C|Eh`sw(Qk;m$91%!p|zR`$5TNhTAlrY(&(+R{hmBc9?L5F^iPIrH-rpG z2%pnuJ~1`jO4Uxxz`CJyh~i<6pE|LIgVke_o2e)8Ga_@7#>rl2V4ht}*+nfGs8LsBusPrvi=Y%flkx zD-m5)99n#iebInQ{D}v0R@88DUwmO<;maeaB0=$J`u%6mCWkLB{JNa;TYc;AwK+=_ zH8xRO!t%(qA!?s1Yf{F^g zVFN8QGdAFP!smt*Mj86{gI-F9~7|+V%R5sxUjy-7wK6TTLM{=Mj)~1YHNdv(Iu)7!XN(*>gpuG zM>upJ?(6NH5YLnU0(I_=pR`n8!Bci|5&lnv-Bct?9ljIozkEz#&9k6+G(*5h;^s1@ zV;7}%JwQ`aQ@F}M*j&DUZ>4FdGxu10KCmV#J_`SngM-!OkXjMR2?>aYk$mb#oT1~~ zJ|99|1fs9m$i10{jon@K$B$|Ml;G#SQVhx6;dP_5!-beD`9owUA1-h(sajZYbYFR} zrWhC*b>X&j_)uQ~vb@tK45HR=1$-e0Aw8jT)`BpFj~_qYl4&i3wUE_tj5|vK?!cH= zC0)x>|_P-fku; z8jcPL!Qq+OxrW8(A59-4vDkyI+cn1FjpMJ^Zd;94Md|bVO*l(|rmrW)ScXuR>{iRK zW$`Vme_%>|O9D^gc`gSSk0HmAiP5kgNyt>j{qB8FMZ#e29E4Oex%zS+ z{$^gq@1(S}j#Lf50|(_k{-}Xbx5ilj@2ft6Mg`h?DjB1)8ug+KtrTsNB>;o)h-&=? zY-yQWneqVI8HB}*hs8Y6B^! zPSvn)rbag>ofm9gsfmupiTvP>X*Tap~%mvy=ij0NET6 zG94moVGzPX4h}PxzZ_V!7%d1qp;%~JhmT1bX(?jAjt0?tz;9qzls=-cC#MMO05!U1 z)X`I`<6$J6J%z0$ilX7Ulamvf_QQvhXW!v&PZ~)o$WQ$gPy7_Y=WofbR+y2f!S{pT z&CwgTAx`KtXS|Qe*o9j84|s9ir6HFk*fI6Gz2v0SrTJWmp*ZJV>U3>|&Y$-57+kAd>G`0G278-qW*45bFf)eNNOyrs2K43a12hu z0e!n2ibW&F&y@fEXS8Lo<1>dY0mrLf-E0SbaGH@|pn+GFXe@&qwyq-C(i950SIAAq zs=>qA-GK+8)XVK?jY&oSwFNr8$;-Y@-3EUgh)cVffgra=;x-2w>#EPor@`;do6?0f zHTp5Me`eVB>Ra#D7v01!m4iYZmFsL8ewk#xsEE5OH@Kk7ugK#mi);#?(_C`2Ow!Bq z{S^B@Xs;K@)28+xN?)mi75F%r8A!2%mvL%HXs=<^0k#QY;)U6CJdGGYu!4iO_cE4AkliI4hYhX$g|%+Wy+7;L-M5s_W3Hb!ahO!R~9hu!#CA+!hXt zz!(xsVsJ5S1j>P{xNBywa%lVnXRaQ@oZs5hNs`x!3l)zoY0dZ)^vOr`c2+3u#I6@8 z1ZSP|P&}E4)QAlEPlGzm3Rybo)ja|_dqO&UjZw>oe~&)4xS9|UKDWA;g>-y>%{1{g zg`X+QZ|OJ3gJ19b?24RNPUS+H{=+jxaR&h!kS~>l{CntZmC#G3x+|>eI=pp^8Uxpt z=aa|YALwj@ant#;@C0FEb~)Z>W9KF3ON6j~&UlSh^d}R13)rF=gisr_(dwUiJ4|8_ z7Tr~M)&FU{HTf|KV6;HMc)4$m$ohBbY0?-#p^w&HS2W3m$=B$^IO1L4t*#I5k6My- zX$F8~@>6-a9RP>iXNEN}g(U~gnC&Aq%yY$#1?f-=FHzL|IAC$=}J6s}i(VEP30<75Set!wf(*+AO zdOqo>FB*y9MM=jhVMR*}9nrU2VBNkDuphW8F3%XG`!=`eyyOnOD(cRH#{;U?t$2}u z6{l*%mr5aw-3KD^J&+K>C>g)_WM53@9npux(L*o!C6#k4d{P=zoc5mWGIbQ7u0TEa z4G)W^;T9~EnUSo4{cC{W36&23c)0$la#d2RFY8ujqi;eiPNZ8`E5bX`qUc}RY=2z8 z4J_8@ot~XpPhiPM2K@2)R%fHrC#7vFPw{WYzg&EOY4XQI$+_EXY;Oi-r{VZH(TedI zlApbm8C$KUj;Vh&h@j5AhqbzbYy_4%WmdK(M>6>e(j# zJJ^%A@mR7jm@NEyY59nK6#B2bx{*{_I9fFNegTjJ6I!)s={Dl4A0%9RIFN7Oz7Y(c zG~Evh8j~K9c`Y`Fvye!}InW`zbyv>SiE(z6kT0}J(-JTf#*~4q(gg9}))C-Ce*d;k zbHmfv^5Zf4wL7Ch>>u_RQW5VSUb7&-S#4+|yDpOzq)9?TI5BU=kHt>I zB~TWU%`tPnak9L0Z$Z)!(f_g?lwO@28of)@IXiIYyUnK&c$bl!k&!X!D!S?Ez)dN6 zl(8jkgX!A&d zKsG+J&o5K?@%W>&vzg6X5~W=1>6T~@QHPh+JjYOLjC%_YD(?8T=02(pJV0Y-Qj_5< z4~qO?tyw+$D@Z)f_JecY?5J0Ax`ej$1`X~T{A!SY5W$yKS|2Eh_dQZlS!v$I7sI*C_F|* z8fOQL6x*~D$5qj*vCs2mbkro7<#wdOZW-b$=|}#QX(h* ziVpdU{G@l7O=lsHv(m&-;y3bt^Cck?cby|L0#Ao26Zh%^3#W<5-3e~w z3#qe0p&C(djN+Ama1-x+7+Ws7GGY8kg6kn30cw}9%ZKxxOkWycsQ%?0>H~kS&x-=`5!L;5#$ps>C-##$m}B=W!9VyXQ{6@DUDd8 zwf7c`lQ$sOpji?FAg;#$0O$IjuOp^+30t0qKA)}sa+5RWMliT}Rq-;IPqle`J7RoW z9e(Zzz%)Q(LSNJz9RJm>obKcRbD>H-!Zjicvu(Ab`zW@Y|Srx7t)sZVbe|K;QO+RVF51W zQ3z?%u1^k}R3m#32;u%7>og>c&g!eE<;gS+UZGablJ@w*HbeBh(`*=k%A}BM)cj-o zr{*%2b{SDu=c)StfydeZH`wm(hy4W>PA`%F3!Xkwj_o~$y;8mtH>O6B-bQGbm0{ZtWY2~5O$L9CU0FuX_E&*qtnXD%7|vACzFfH>ko)5zue~q;B9Mb z>jqoI-+%waz&DB9#pU$VN*~v`%ZA=(cpdykBh0F=NFz_yJXm&P*mhV}vUBmY5tZvWG)O?{)kV`KLq3~^k7f+V0Z z1vTxz?NcscVT!=Oz@~>D&z>>)m%PzD1#m-*r7SuCa-Fw*PcyDk{AF)-FPk7r^)eug zkp!8n;Ekh!JCo*6Qq%t7dVpM9TyQvN5~Q9_FGRmE6>R`9EVl0*w)xKq|E~DL{H2we z>j?RZ6Z)aD9;TFnzyLTv2J++?KmnZ=!1$AC!T<5;{K6mjpaW^?v!~(&VH?e@wz0j9 z*Ic>zp4S8sdx-d2$G|`AP?Q6#pt7+m{5}MIn%=M1h;so2a*hWT7_gmW+f> zT}M^Wy@w)nkvM%d=(m16oJ3k_zW^fKkew!JoE4eyS_5TAr+&!*aI0O-LRQ`+xXb0; zsokdrFge*4%LKR_LPA1hcNqTXj2jrN$$)JhrFZ50ALF(PD=N6&N!6tDb#IhPj3~ge zVXa2bSa8I!^`3K~(9$a=K=-(z4l5P0nS|IBCrF)eOcJc+lo*oWjG02-yAdx+R}2ts zXmK%5zQjnFCY~uK<0v+1zj4-erS^{NWxd==ZP^ODt!$nR_%t7;GjD4>x9wL278HP} zTL7>ISVRK=>xTQtHK~T!bh%m_K!fpCfJW_%}T`gX29hSATMdgl6PI{vY^$S5~REGG$GM>VpR) zpfNyO*JBdL8&&kgt_x$C`CAQ4QaSMmqfyf?EL1{Hflh2RbO4^=R6BWKIM{#dXIHEi z3j6TF;=pySv9=A%uR{-5fTk|AlCzS>k^a_XXA9us?(-Bd1e0Jl9TTHw_)pQPmuYL* z(Q$0-LgdSi@c>pSjt1oTZr?8lWa-;@{Qm=JpHHzblz7p-VA?wM+c@=WdMy_sY2*9D z(U#;y$x4doMIxunO@AwD)bsDy@Lk#In3nt0O7jH^`O+}4Xk>OGO?cAtRCf>mF@Umv z+!GUhsaSkq)4uJ~Y7q<6p{DUO$e#6nsw7s+oxz`D&dDEA8t8I;5TNl);e9P6O#0Yt zX2h3lEccoCZL~$7Yp2tneKqUq+pXBrN^Cmz8qERvAYdXX$I#fgR21-_)6+q;r^oY~ zemd@$%7*1>NHF)CE`m+%1ASW@2BrTO26roka^%XygwgS%KKFnGx9U$u9LIVy0mOl2 zk2KZEcEkND42$)Ji2)Fv$6n#@E2}hhBwJw@L3RZ)d8==xc5nYF^%@?Je%Y=iJ>2$< zN}gL)1^yCp*$80IX9j8`FlHHbV2IqjI)O0*pmS~j(t+ZboM{n#BEk@)xPKSeq{xS# zQtEVKFMIYEuU5_t7w30B-#E}`hKT|E|8WOB`tloD9!ypzSfV>xDSI7TGV=?Pwh9H# zppCQDNC_Y91DGHbdy5U?0vlzz)3nO~!63ID>Oj=)lEMbYP{nHzq#7_B3mq?2oM!*90^+7c~i7Uig{-&(J`Cp98oVLWq=Y zrtKlY2BVBhr|j*3SiO*8dtJ}X?#ZE1K%I>EU&Ot2R8>*i_PgnBqy!|CknZj@Km{bF zQ@XnaK^iFm0SO7|?rxCo?(S~(ncL@m&v?IazVD3l-x)&@_g*aKnrp7P@B4RM_nf)w zioDo%>cGGbzybAD=TmyC=1jlRsJ+s@1WBkbF%vmc311$9g|fBmo5gT5xMLX~f=`F9 z)&D}s#0usU9(1KB}g%5}NjgKrGO!UBp;qM9W zC%%?AND)5bx`8+2P~Y4JFo|pR1C?i!M2$$CZ5BXUDYWW@G-+v9#D?{5I3RFtkfUPf zDsF)Rmfp)Ez#M>22F{muX>WsExu;$eMKXBfdmyW3v+|avsZnGD$xTi%2-ryOBg4WF zVSz!$3F_oE4o>aO|G(Mvnr?1r7xeFSaen@o#eF|c?e&%^Bx`w!RTlx`8Tl^TUEC}Z z2huJown-Ah&b=79Ui%6a6Y(UiJ~c9rKC2h{=S1OrQ0p&aVy={p4IALAppyJoWVL~( zQCUzVmj(yNE*Q=&EiJzLa_fcmRV6dM&G0cj6P#d6n3GaVx=alowc}{t_f<2N$lnxu zE>T8i&rq>>n8SBkr>=1VVLH+8zGgjS@pl*3ls?0>GiyLCJ%;zL_$-u+n-J{PUA^j& z$kuVc=KJcDcxx$Q@$54X4^P;1c_iyTOeOD(FsKLIfT&mU%9o{t)ig*S zn?5NISOQ12Q*b*-Yk8TA;SJCqU+)ZS`*q$_XOYFAV{#=t=yjYOG>Pm5lpF{XuS@^0sGZFyG}j5 zI{xdm7*SFDY^o=C=|G?{{xVvJufgmgR$0}m4iGTQ( z#rPnRZ#~jCqKZ^*@9ap#3t)(BMfzn%|I2x`m<3U7bM+a|P#W;RH<=z;!*umM`)Y(` zOMPHzH<5Q$fyg@;Ek_nNWijA^T$O~P8dd5sjip55nA)DeitE{f+5Njnpp;b-sI5|X zF+ib?yiY*9{G${br1VnQk4O~a&y`U?Nf_=kw>tb>9?N#;eLPRrryd`k%&h)cCq~~M zt|(nKSn&arjlAl0tEoF%)%TkD8?pb+zPTTz@R*<1(J*Dj&qc~0c8Ik#%6zEgy$vz?A%)o2ADtLzt%aCQ^ zA4%Cd6oO!?*Yo9WkVdb8cYyc~%dKxV)A|hHQGv{vUeKQieR{42>`S9Ok8xk{@8yIM zTvz`pKz!4j9Y(f#{trp>sNHra$4=bWSWAJ(q>vOO{5f`IZU=|IrXNt1GYJzs~r${EY) zdY5AJ@RFp{l);b8EqeX_6Rw7_LP~mGo^Vhx$c!P50*W9ra$*1NHGG5TB?Ll*g%t!= zN8QBs?Pv$mlr29w?-yspszw zGV2zs&)w2CjYr*c;r`Q%syz_0beBL$y`R<19dyCI;V$|L$~8Psi?Teei69Le?u1uG zv&fKKk*XjzpW>-}R|=|zG0s;gjz@p2?wNhJ$rueZ5vZ`lvvywlV~1t&7O3tObRy87 zdWkNb^YtNyyI_|O)RUM`BDC>@zC66wSAi3kcQtyk5yLOM4oMQH`jzWB_)|$N@t9=# zHpb@6$u~BT?3b}dp=xX)Ll;FPF_+7)>wAizj6Rz_Qt{89^Nb4Z`N`F{UCDv44)(%z zCBmSHJfriIKTE_eOZTf zLo%L?@Qfykzonxx*qe0`Wgu}=>&LG1xUvQ`vBi?N-HaPZ=IsWhxz-rja@uiQ(AWU= zuSuCc;%h15R*RkQ>nVc=-h7Ve#SU&&%@TN-)1Yg8!<($22an&q8U4mvs+~F;=ak2yR23?Yd&~zh_>k{e&IJ&2awpy&O1ZyKb-=W^B(M}L!CdIouNzZiV0dca9;ZOKV<$p z)>}ada6gI{D!H=xTTKOBxI>tD+@|ktZ#CtIY^vu*K$9hPQEE^w{}};{f)G;ZDFX8F zjoimYfofP!podQ@ih^`^3H!_1>P>R4A!wLw!RG=TvmOm_G75`jlSmfTliM^M}~rxm$&NmEyMX#T{tlryzu$)49I5orH9K+Q+6oht!L zO@Mtv5tZ4Br$YZr`){=SFF-K{07bvShr@>ZKY%bWL4JW~7sg*N&r<_?&4|b`5B?Vi zz!ZqTCV-&Rx5$$a7e`T8SjYkin8Tl7myz$yyokmiJ4*kd0B&4|Q_Ln10D@y7iC2GEdeFK2;D z<{`X3rYxl;p_VW$q2lMo{HkAK!i;mb*0j!PKvKfoubU$mVDHQC3-oolp&3Px*0f$q ztww$SZ-|kME(rEpNi(*K&6E8ON(IQmfjY6AiG!a7a|aj-B=C?Q0-3MaSG%23G^MBd zAH(R`*=zrhO@>+3_jqj4kUvyUQvLx46&f+9=t|@jUW`E6h53_I06|Llb)p!u6v^n?~P(kj0_Tn3WBo-zAj2f(C~9QI(P_JD?2|#P5a^ye)=?s~;0@|N)%}`rV(fnozyz$5p6PIY z4@ItEad_h<({lxUL8lr-%zvVW%D#JyY|MuP&w?zBZ2TX{2)g(wT^YG&W*H za!orJ*b5x*?2$g3pR&qkU5FPrWT|gh;>BtMvI6lHO7Y0q6VGNONX&jK0ee8%J~fT> zP3_S~K6R*H5J$rBMLLZ{--Xn&sop5{$k9%fC;Ymw6d%|EY_^9EH?+OMN3}^JoQl?wb(|bHYIK{O1wn+~maY_R*Kh1*r@jK# z)1tlaRkkTc0jNy7hZW9pMKKn5^8_H9vJEee<06DBW)x~mLRKd*Q~aU4zpQTFc&g8t zL4Rqbgz{;P)rf>EiYTEgNFPOjQjj{j!Mh!pu8L+eH2evqWhr?|%EZD!Zwp6>lKOPq%K z+xzkse@goptUDwW2A~TlB7>Cy!LoKT3RzIzwC}tu)^LJ8#xW8O{NU@RpRlA9slibI z=ClEaMHi^ar55b-!-%`u)6t2bQul_4FS#(DuzpRt_*Gf?MDPm|cgg}#^ZErE+JQ=eEmwx!h745*!c|6VYDfoxvg5zdV0V7j~KFUG2 z?G5|7EzbS$Hv3yTg5rNqj99~l`*tZ-IHp7I8S7WFi{t3;KEbP1$^;9abO6*-GM~zGwss9Kg8CusXz&#kbc;(%oH9 zR#ujslhYq8YhCk+H4E6rxVQ)s6BE@Nw$*IK%AY3lS|!=hmw+n7$%ntz%sS^xfbUgs zgJZ$6!DsGSIXUe{oN!tgzFq#gM2{~lSgcTZcb#CkA$Mx!@FIBzMi(wbDZu&-?R+rU zqG$Jb&?EZb^?x8q#x&trQgePW=gy+ffb{1mNP&rrFiizYrk8asae<@_`m*(;iLPYL zJ1p{Ak5kj_rc|((o12?mdN5{T$qyJYfZskE*fM}S0~ga?hZ?~D5c0PQ*d25p>0mX@ z|BY!wra(xHdol0_ECd6e&4NzoUW+*#_{XhAysN-}jlArvHi9Jv`TH#`)B%C@$6Gq@ ztBHP|iLhSF4*8ZK(W5bbr`=fQQzyX%qv2}Vvd8vB6ZQBFq5H%>;>`4PKWf?oMRQrB zQuQdHAJp*cza6kRyyo4k?p#M;Yys6|pB%cYk-#e2c3_Gk_$wT&n3tFL!GV<&>%9Hz zyz#+cimpj){4L2>zg|n}5+6c=v+`0@Cd9Wfq>)NRW$^GWM*@C?uvZ< zc0zS-C%EYSMp#NLOgsT*dNq|sHb zrnDHYp6JDOsrgQC#EdASHnNjh4i=^Lf+%eQ0U}=p#dQ9n&DpoP9^6d4h0I@n-qRDj zOo^W_*89jcvpxl6qP@vN!{+!}OenuHmSqb01HenDRnS3|CK8X!ef^NoP>tDjd`#q# ziHXi2Ba%z8FH%@i$X(aOH*fci>1a(+CcAfnP0bAp7Smze zR0m9e0j?OZG9cg{f)wF_+|84nxjsdxASq0Jy$uYTzo34Rl=DHsL8Wc)Vl~ve$jZpU$yB-bfGq)v4EUno zAeY#THlrA?ydSY25z<3>sHZJt^-6Pq0PrkFkc^)pUy2-{qE=HBixBYCcLa;_rWA0grZdOW6hbXff8h*ZrP=|DX0g8IBSt|ET59W6pj{Xvz zVq)3M=!7F%em&mg56a2}G5b-Z5YijC@t&jm*k`!Bkc#1FR?<>_}&rk*b@|AUJ}%ZDp1@KOKm1pooKOxf^&?tmd`4#I%c#H8s7%VYNNr!H=Orf*CqYL1(vA1TvLB^}vuSu&ydYeRYWKgnqY*;O z;EL)>__BK%q7*(%+hv$1yw<_hT{P~q zx+!p@g2=I{QL@3ZG&ScHwBMC}ZM;&jF?3tzS^RBBeIgp?S-T4tUOse)fIB;wIAF5f zEhRSxtUCH<8n)1{p^DzmK_10UaWo=Xg6av7pVa)`lE5P?l#274Ag~pUgK8D9Sx9eh zFK`mA<*WiX$JeggsGmPEAsoqYW)$)W((Ojv?YO3rz}iiHR}}6}0n#rjw?p{n&j&+4 zdP>909y3(e<*#0?Wjb<;e;14X%$p2uI6`(OdiYfjyB5f)RYa)x@AjLb4uT*hwkwiN z*uzv#dMj;#)JwIS5jJTyf7vK+l=XS{eDNEC_W#*{7C{qzdp}4kC}2rtlZuFlT<4VM ztro*UU{)Y^cXxw{!0vxT2n;#ANCQx=Fn{3hHD%;e(GRwLbI?pG#aE^Rg`1gcM84xy zQ2Y`JP=~R0p2*0(nA08DQcq$(h2U$!{d<1~oSWVIv36Wd@BZGQSMWGlDu^VnOIY=0 zYcM6|ez4YI%P2sjb@jN<*$xk23Wjp;6DQ!n&=CvewvUin4 z5M9I*vZJvzki%dK?85mn5_5TMu^_L~zDr|mHan^gOXk3T7R)a~bfcW^(-Laj-hQ0A zAcM0Bk{#c5a4c^VVRU=c5@)Zh#-M~uz zCtQ+yQQ$ApkwLCD4s7&gr!3k3kfjin^ig!EH4?*3jejRx+$#k4uc!u`R`>|iII0vP z0G6wmB1TR>VzMRVua5WepXUcgHKW*IRFi1~|6TSyWLZ9MT}~MAN`9r6aN0lp}Zb$@{gGcFPmiF3WL*n31rSk7{rbDC}I7B<7q+ z96pbpkmV&9gC#aJEyreP_2{60)dD#$-Wxfl?X_avG7Wnvn%QKIZ4JCreNL$e^-X}5 zuI{kjyj7G_`W^)=2B!mJof1Qt$2Z7!DPAax){W0-;hHTm>)fD2@~$XpJ+XpxSvo0Y~G*KghM!)@3;X_uDnn z{C}|@t&;x_`%%+>>_=q(>_>0OZhc-*zfj&mDB%IUPxr6)QL9(5SE#{>{cJ;K8IFfA{ib6%|F8x}rR-Da#tgaxE4d&N?=#32H zdQZiuSN{<7{STBq36h+)tjb+={!3`y7g>qV@GVi*KT&cGI=ZDR44=v}nDg{oe)<%s z>YVN^Lps#1#H#GRJf0db;c`BTcSelK=Ykaq?QG{7GliVYrxU~Z7AHqL%5oh-wihSC zP8ch;EqfP#RH-{oU*R(U-WbZl?+H|A^7}b_-F$zYW;N)yBlqat{47@w<8QG>#Os|W z-(JbR{yJ70QaM*^m5|l&o2E7U_wRI2z*02>d1wT+MDfxO(nwmq=9>&7enmk#HoD^! zKI7gHu+lcr2CqfHR?bgh-%zT5#+4(dNo!zYOnZt1Zxcq@379V<rAZ)$Ht*ScD3 zvRu6LKXpmf;&jxHphWBX1J%e!Mzed}r280TCG;^n%ENl)4N{gYvJZCJ;yez7QAHS7 zzk|qfEP{U*@o|$I{1+{Q6%!|Vs96#G6c|tn>Xb_|UuQCpIz%7k zyVtnl1)g+J4Ae1M%Yb)k5IP%PMQy)KMSD9@`c??xI=)aA%QLb;JuKZ4XPFNo~9Q<;5LYczdc(FChE`NQL>IxPUS6O`6Y% zyteh=MiN@USpR*}hFOJ^-{h;;Vw|TwYfzgb3&XjZLC3Uo=9pN5#Mq2rDf5YGo#OBc z2{;SyePs1FVh!@a)8BksCWBT!>0$J+_!Bl_4}Z#fHfKP*eSoxT@oU?8KnC-QEdGf$ zVw53@bDe}ZwfLl%EHT6UV)!0YrE@2aOqFzRm3(LP<|9c{CRaNbm#O^gKEX4Hf6q$d zS*pO1(9m7#(a^_+hL3P1yq5-!4_Kc=g4c+>y!nDY_q=}fGT%in{N9ZP&ivu{lz11u zjI}tTUyK8tcBRISJ5~EuQ-7eiwsvM5NpB(Tx6Wx`7-YI+d+23ivA*J&0B-=o>la@j|bV<{(>R#Obx%)dYI#z4))P>Ae@vY&rZndHoU1dHl_n_n;$F z&2i+sT3d)rc9Z=?e?CW-cpY>#y^%_S-_Ef=LH2EI$xAkIbyd%xWk8$#W1YawyAto? zZtLlPH805m$^W2TV=M99nDpE<<>9>z{;cHRF!V!F6ofWIG=w{(J4xvf~LsOoC^3z=z;VvTh|@`V#8S_tFA&-3Rk4-OcO?&mr_vSTI2N=}ey^H)x zjU^8kEl-=yKK%vujdt>#%5WND(s!ApK! zbi$1lM)OPmDo{5|y&g}6Hao&d7RFA)H?K?8rA5=^MANoRm*JeboEV@6rKsOEI5xReSo7sn_U6}W2P=-|1zQ9Pv^BG2&Xn8 zaGVV{e|svNx|Q(w8;o4%C*V!D8X;~pyOY9U@IAz&!j(Uw?fr%(CY)|x>s5Pmys*2# zft>WC8R3|CK6pSTu%aWkh0OcqMzD!L%xa|63jv!$J9yPRy)wFgd62@HO%9n zC5}T;Hn@;Uoj%qAk@Is0KD>GoxnHGdIB%~0d>{H!h}W_9m6LZARlW9t9iGVgHYb5{ zTK%D$b$93up6EL$1XIY(=t3+@?&e~=IeCza?JezD8#knU@R_jdd*YPP_|Oe_h-|=- z0mdISEp~y7A~atOAN_G2UvRnbE!*Bg?&oF;Qxfk}XDlawIK_(m_`sgUXsO{lwox`K zyM)gduTxxPCM#HX)bWjA791!-3eS|* z&{*j+;mVj8bO^dXI^r;2)*FdDOfPT#-iga!Q;!pV`vbqss!q5#qOR)0J24l66^GlK z9AVhE4(%83+^6LqjDI<_1o|R?VR*Lx{4nGAcK(#9#r> z%@Nyt>tVib_n)k^$NQc6oNLEJ<+ZEP(^-7WU9q1@N%${+q}<2FJz1OW+rpW|kJar% zOWw-%ZZqFd^R+=VDQ#^>ci**w-(> zA8FalmrCEsBD+UsX1)y$D(<`Pn)amB`Ksx-b!I`$O&%Lg`|U3PLrFD^5owSEA1{!+E&&*hWDM4-Pc5 z;N|lvy!zmsp||k{^~ZX$>TL?B(@^TVXk1Y|K0JGw7MOy!t~-85R*u4j%i(XXXNtHV zhEps{1z&u-mY{Q=3bG5 zkYyE1*4XE7KfUN;BvyJFBz;a?$+fC}&?_AZH9WJbws!OSi(au%7w8pqm0V;sQ-%bd z)Jj_;9XMamt1pzDCri}}{#>Q*LBMu|9J<#6ulsRu(NRt=Nf%bZN9Xg)P88qn>MA{F zj?niEM$C1tcW+;#2Yz8-5o_^W+4}MG=eY`l(2bwCo>gWJnqZQmO_D{@S7?n3!bOx# z-~=k9k(9Fer}(|S!CJT;3qE^Xo+fRHq%@Qe&RgR=O(=GO{b8)!Ci^jO;{!jZF7ZSC zjxZ+~PpZe&MDdjNmQH_V^e6E#p_xhNeG!cTlky)aDV_WK%+?E!aD%BLOpQFEtc^T6 zcf8E8Lo?;3zqP7;^m=+t%7Yu}^Sg9w-!?Gj(v)bU;D$H&$r}dLmoI8|hy~5ah>)?w zz0T&YQ1jqEmF3x3?Gy8PY#0Z7Y8)JTlJVK(_^w${Hmkf$RDGCuxfBu|jhENltec5G z)ciwgTZHt+bCH|R1xzk&*RI+|WM3UGnd>~P&A6{>)R}h&pk)L_6R57XV?J{e#cMhY z0m(y9%IJ~p?7imqkBvH~h3q>}5ic3*%TDsB@4Rx*(jV3ckoWWtp}U@qi*9Tivu3Pj z=A-pds|f_=yvd!C{FoZ?U|SozJ)e6rILN_+*L)?U@)u}NGN~6z%SX?HJ1A0re?J4^ zc_r2O(-MH#{+w-9L7Wd}k$jswZQg`Zo-EvXVn^CoacIH=sp!e)9q+z(gfypyr6kTS zqE=D5A{%q*d3k6zo|GUCmVc$LuI|g+Z)Rg7w=<=NN3u}Q>d<<3cURf6trP3*_2l5- zAj+5&0|P@=e%i%VY_@q0MO=4> z{G0Uo1@=af-b*c>5-T{ceI+E9Un3}9zdW_5x_U}IRl#*D#U-n$Ni_WQBxE3d=nEKb z+SH(dW>D)iYe0JXv;s3-|l$0_L%Ir0yc8g7xf7%P&*f3tR$t
=f*{8F~1-DC=C(ofu)nGI#LND+#&*ljWD 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

;(Z_6B! zfa2T_ZBYjhc)7lb?z^}{zGTF$(j5fkkbXFSPeJ2yP4du)+_2xY(eVM~m^}xqx~smv z<&QWJWeet)-=5Mi?1f5AVg?36Q1ChDwbwYAs2x_2;({M06srgen_uF=4NKb8e@wwE zzNZ(9P=wmxMAutTIUR0HW5J%e6Zqv3sE7t%w?SlTfY89mL}iY2D4-?o9J0+{0s`E@h`xAqtEc>2huJxO zh!giY7j-dP;%_xY=b$9I`UR`ce598AUjemJGoee{uvSxt7OsRQ_Q&kz+y4hq;AqxB zupNK-)fV|Be7Iv68axb*^n%~>>SFZdw+8eSB7E}y0_%IL&Q%7ycSR4I!`>OGLR_2b zy&)irN+WWav;ajPmhQsEuzChI({EEDM4H(9G4~1&(3TG-)vky;ZMpMwxOJXA>)Cdf z1{Jl0A1_Wl4E|pz{_^~DW$19A?Eqp3fgy|%C0~K|VtOvrguxjt@T6Q|$hKinj9d;N zaZp|OA*lRgT^U3J>A{_%1GECx9xKc*%hYItH_wBKf=G08tRMTGr#lA_OOCX0eIfDr zy12L)C+o!2JkEGJZ>(H5w)^I36R|LAT=~Cs1r}a zT2NuWATGdW3~o?RCkpwOxJ3)7TF!J0o#wLGq7C#;fE1Hpm_?s|%_uIiK!RGy$2RmL z+0cU0Yd!F;0(sutgJcGlZCD5(hAvT4BORRI)H}fqzJlK!%8km77j->$PxiY%i&nHx z2ypUDef%nb!Cq|`P2)`zk)}-D)v)wqrDb<+9vvJ=Na7%!vgP(ips3uJp0KRiizu$q(P0EacqB9-L zt-=Jl72B9hbP0w4j}-$*=NEIcbMw_WWs4_LQd(eGhrka3YzWaGSzWXIKM0ht?A;@2 z*8jk0EFW_%dJ;gOgtY$;Uta-N^|SVQ=#-LfX=wqaQ$hhLX_0P_lI~DKDd|o@y1S7M z2@&a%?(PF;=lH+(zWeUGyL`|SoS2#4#Pf}3=CNeI>@Q1vN{Sc7lS~|xo({B9l|kT4 z1T=pvabTE&&_14`X3v!6Sx3_1hkd2?pGVsoRl5ur3h+vHbM%O^L6v4*K6VGcW4qTV z0F@374KbceJ?7%Fc*{xRDcZhlHgWzE736JCyH34!Xw-u=L{1-gvRWY!47}QMYLsYa z;+0sP92Td&M4-L)S$101-+1f2xcaPf`#c+ATP?tJD#*Fbawrd(itx!ygYGrjnwUiN zju`FIZDBytKIb4g9^C#HPx>u|SfcjSez z!O#IOfJOmMTg!ePLK=g>JvnAwE8x6^7t0=DUq9#8tH${ZkZCFXUY_Jii3(xG>3)!k zxqY`j@cf!s$0HO_mgfGJzOViOp(*KaP0v6i@chd$H7c~(r>iZZzNWa3W{8IO7~@;& zsYPK?2~%|Mg#xSEZO{)3>465lGG;d&*G}U~!$dO@JiWzEZALlj-@nEE}#hfkkA#n#r=vLR$E7#8W_hv_xx8?U5Z7PE*Osf|9CSU|Ee`RXSUi)l8{w6~I1A_nC_&+2 zG}k2p=F65#v&A4 z1q-rjf*^KHgh1g>`zUdAb5&HmKY|{$%={jq5f_puM-zQ`m)v(-gV_(@>u|s-x~*;C z05A$nT7yOP^oue^m5UDa*4-&bIRpf3M-RpY*EWV;iejT8L4CzulqM{CPJPd%fvUdx=0X^oQYfdW;wz$0bT@tH6Nz(B(Z*x0kw&L_owV?Ey{9K@gO| z-v;PJZ9ARFz{YEqq*R*Edr6X}c*y|bX%~<%8DVNoX-k&hMdM7bcw<7QR{n!sTe_|Z z6`39`Irg(K5szIgf%KN=zK2eYhJP_^7eL9Ek3t(I53N^e@S4W-M|}Ky%D$cj#45VT z-%9Y!hZLKXM0=2cB0lH|kdjPJY5^0jW>q{WClVxMzwH5PPynnfKQGWvT!4pAi!le~ z|3IiX=%9!Yf6Cp7M}1VPPyf9ALBheN!|1z zRp=6f)sI$S1CCY!*#A1^O?WH{bYZ@IKqu+w>yOmc-hW8dk9se{8ZQqD4^VbcZLUm%i~Ex}eIs61flMhw zzI%#eAmc{D1G|5@l#uR^AuWptolmBg&N(0wcY9AH8)Zee={(-b;sYuEQ!{mEmH$wt zUsGAw^1p3JT$^GJNJFK(eie7Tl8uBu{<1~45)21D9q}E_i1XoWkZij~0uQ)vGT-Qb zSZXRbv;%;yS`+2=(iny&FlT)0P6FVl;hPFXpuiH&eEKr6-OaU`*73@t=aCB$lBxQ0 z;+bFn-Q4qf>_6t712jktjtdh*^V~HfY;nEp`&Iu}3ro)*aw?Q8*dEJGf9*Xv!9!WE zC=!KX#z{tjj*SidZZ5HC4S(iGfs-x@zxgF^RV`c)j~USNkHKW>8dM-_-14fa7t8ZbF8k;4g#qNM ztC)+|7hCG70BW9A02mMbdpDSHE5_S9t`+JeJz9+d=c6a|mXwx}FMTUu;!lw9{tMhr zM--2DaDy2e7&%$~WqJ8oWB9WM{&F2(0q*Gl)Zj+rD|f-ge55#4ze4R|ayE}KOZ@f zU%J6ck}k#L9>q$d0s=VTnXX*=73rc=pWV1c%!hQz5*cZ{!#;R%E3VWXL^(~*{bgY*Jf~)CyXWRLm;abs8 z*;NK9Y(E?xmq_m;J%^XcWQL6EGC)Ny0K^uzd`V8I@Iux7Uyvqyp#-Z0C*?A^bnzsj z-4T5}aX$Gq;1eocyB*S_!aX4!r9J0n^-dPlzQpR`*&`YJZCy)?uRGHQ(QTsXbL@+05L#+7 zvqA8uIgj3ch9|Ux08hfMo@By~Jnu}i3Tzkmhk5VUJJupCAhcUw(R*&NBSN^zFyYp7 zLvBN7XTm{e(cWNYIYE%P-7D9kQmDRlct|4p>UgpPgrot54uWS0*Nd4REy~S*TZ-7+ zDDrJsE2+WucD;GTK62NN@fK~{ z|Fi9q9Inf|&gN9B?|+5w-aZh#fUj_9n7{S+K2!)YJrXNLO!@Reh#937L*9DKDQLe; z!rQR`UQ>BFv*{7w`vpVnmrB>>sZqk<2YBA-!qdsWSPs#OlybjkD&Y<_l%=lwkG`9D6GL->_%hf5V=HX=O;;P(D6u4s|Q?B;L)BSM$a3m~j4I@IAG; z*>ISaw|Y|H-y#qf?jW7Cil4ei4L(Sf{j0@tAje!5B2qwT@-ITN_AS2XmAipE{LjfAx z0{u5dRSemj2L{kfPUrd<+M1W2`4M$BBIbyKW1~L~E;Uz9avKeWI2KDT*MF(J6ZcnY z#!RQU{XVqhdUie%ZI|VGi>p74Y$4DBa1Fwq-GqZw1Ny_TFGk#$YTfc-E~`@*`rp_x z3;&H%ivHr1kJBxECI0_Gqsae8qgb5;;XhxQv2&0>fVLV9MTHBha4oij7OutS;m9CC z5=vNoe@#st27qA=VR-QIxkK%VvgwcytqZ(77SxAN*s_4f)^=9Tarh1yto}gc4C~^+ zHJUzrX!gjR73BF;0PP4ahf+icubkt+)mng7KbZ$&gn%#KOKUWDe!J8AW6);I<)tNB z{?O*|Qw0L7;_{`gCCkn!d9hf_P)IR%V=R&y_njFaHgsQHl_MIFX_3ZNf zo2Un2_LceWGgrH{cRz31zbTtsc z^#9o9s8=O4@D~}6V&AW-Nx&mK2Z<)rr-)z=!)tG_M1wQzUhaPAJb6hgUASIu(4LXb zKQ42(CqhR{QlkyojkCHAwt>?L~Tq!_0mT1*3k${fnccQ-m8{8B(X9m#o--&$S z&=WBRH-`?9LXeX5WX&sM32WJ@ksI8hiC}mx2GJMuh*uNi$3(=5OzTD}K16~1%9!n| zZwG=GNE`&tR#Qs6MXTgBRCocPETO+NSpR|bqm=hDI!Hfv&yPHF2Zd6(0qBPK_i%Dg zBM>)3Xc?p%;!a+&GsJutJiJt3%}gDkPGNV)+yivE$GY+?9a)yy_PM7zJ68|fnCF)5 z{3moZW-#$OWLVtv-U1WmC?f^3>3(uvrCu-v$TGfOG(-jxtCH>Y*NHC$6>9zUb6VA4 zD@O~z_G2B_yPI?NWV7EHvmxhG^N$4*=0nx!w0m!C4%Xx(zxsYHGmiLR29(C_Q63oY zXIKM~%A~ZCDUWq39I4Ur}SAb7Vic3r1lAXT%)(N)!*SYz#HSAq; zDR<<^E91)zcPykIyu@KAR#0m({C>=trx>VS?^m>r2It27n2u;J#j+fb)z#J0;-s#@ zO@*kaUX1QPT5ZyWrwBDj`Uh!GbpL3nId(V-wa^!#&JTzAlK&2fDCA^6K(%Rc!W=z1 zzd$^?adg3`FeeRHVIc!ac5Q*+z|=Td_{OvYric*Br_~S$oL>ZfKZ(|F8EpI*QAAjU z3Ci_=$CfcnLs_`jElp5XV=P*xRqSb=*j|fz_}LAVSlmZxlZr~>Dg9{_;fcY(cW>t~ zZ`dg0-b5E^7PuRmLCByf+`Dc(WnBvx4R40u$H$H!;+@teW_QIP=hTPKI!v(`36VGe zuU-YCeTj_?YV7a+xPsNd?Tr9-1wDFzE0z7zXnPC~)+}u{anjefeSpb=HhS5bmU)Cd4!kXO?A1c=BiIE1~P){qWsuj;H5ILd@* z;am=K#|}Q#iv6tjsw^vwQqGrTyQOkail!k?Roz39!~};g0A2x))B;?FXqS5h zUyCF9D3R~fZtP*!x}@xW&hE4&-ajAPR$vT*}oS~a7Pcy}z zB||ORJKu68uPC~};C1Frgvr|_&=bQj8jY5^#6sc1?dhT>97cB)O+6H(iZX!ROnEcY z(vur6sk6qbu*N$?3RX(ALVokH(V)_EkDT;??fY4+)=T z_kP|P93i28Xb=_K$o-R zBZp&HCf_{RDh(`&u}Y|_RE3SXc)O1l*fy?IqhxbC^@1F3$e_YbZSHHlD(GuiuA+z5 z5b~ny6RCHc-|sjzula!AF(^2`BQhQU_5Oi@&Z8sl;E<3fe0=aM*y71g^YeOZ8ym*s z-#3>%eYu|5FQz##&$oE+?t(|e9Nv-Q?UU9Y0o^b*hG!53jxGkJGVGJjGBW$FufhY1 z4ej>ZbZc-y1Jl~$l}tc0!)EEHFns-LkCe@G1~zCWDO=N*96Q}R;_$$!Az2_Yg6kuH z9@3yAgX}$|xj-UPU~2~IY{vG@v#M(L{*kKg1^m%;;Sl{%E?~=%%GEG&d*IdsUxc=R z&{aLb>sYvi5h2?Zg17|iq`>QsecQTq4n^D?Nq;EQCY7CpEhI30-2W@dOb4WLJ;%Q8 zgzqIncI>P|FO{x@2C7`cm(70%HyVI!sfRHb5O~tm-P>a?=t@{Jel&19p@2s7PS zpP5bt)!hfdghg(7=I4&te`D(I54`^aQ?q}=2>`SusYY*wsyVYp<7m$A}i%pQ~4{@j>T-Ng~|p@vpia#9W@d$loy0$gdO(8&|o9L{OTZ(v?WJ`NyWhf z*j|_?EyBG?3c`L_p*cvxCFOZgt6KyJ(j#Efhrq>jg(_kbkdFgcF1RDv@f8vlCMM(q zZe>RDK!iK0tS7gyXsjQ)xw&~Tr2^Rfo;e>13a6La9M^u`9Y=#9l#Y|0o(}xATYG!b z1_m_j#8_ZcNN(s3K3F#7t4OkHYT`5~S-Ovk<$wtq1(@X8+QcN^22Rlt08g0v7&JHK z%eC_88ckr~hB(Z!0K4$euZnqJenULlTY@?&q(01dajM_Sn7;yKY5-+C=VPJleK5z~ zAx;}XwYhq6ag4dPUzAjLKF6C4iWIz1`;OxRbva8gN&dlU0x@Mf*&$Pb&LVHR>2ErRA zSk6}yTDVaezA+fw#XA73{q-1}1TP9sm$xtUf{4HXV^qeUp`KEIz@WouaN32hTo;eN0XX|K@9Jq*T60P$P_p7 z;=3)_SP^>tsJ-#N%)VzHLyg1lFXXa?cMo3rotsw>)6{VvFwnwy^w`hkXf zSjOAK2K$+(VC46H`zPc0n({~NApGz^oA=LXXRShdSU3Lou|$btu6>5`%5uFbl`3Uw4+;FT8CGufa`rk!ZK-XjVLc92BwNO%dpu>f4aJ_9g?#sYtO`qBd}^{s^%7vy#nrtKX0H;-^Xz7c$VY6 zB#M@(e9bbG`hbOWYXfXl?Yz2QO7Y?)r45VB7iqRdDpN*D(@hH z{VU0*8G@r;itNAq9^^meM(MMX4e~3n7-%ZsSsyV zo{M5TC`)Smd!=s^008kXP7p-(y^G>m8Cw25(;SbVaC|F5@s@b+{n6-Jw`6NzUDi8@ zXb9hUiCsP0@<7*8r$Rf8+(CB{-7CIga2mU+f!MVr&SN zX3Q&-YXrKT3!4nX(Wm~zCEUEd!^5c=-b?DcAu*`!O(Mil;06B(H#+?QD{VS%{Ls4I z`xVopJySy!t?n;LJ0weAE!ay2$1TSz4P?W17Tz6JlV=nMQ23nlaz8mUBrRfy*Yr|- z6U$KOd_W##$`dv|J}z->KIaQcce1vASY$UV_E{EPq|{ItEsiWH!zdjW0`~gIR$&1L zNP;^nYXh+X$!9LZ}%5NHr{)*s-K@p29JeX|f3PrAu{?B_{Ok9#lVm8r34 zXBtZXgs3Y}KID)F2p(2irjn&>#7OToi2u_)gOB>Wu#YX@`WS%8wZnOL=WiUI_pFE!NiqG*YDodemyXlpGIgRvdtq4nLrcr2pvU3MjBkB}D0(@E=_0z+?N2=A zf7h<7jq=VHEu$j=sjA4I7CT%^`)QJHc+A`6w81_$x(@ZD1RixY>GDzg^Z6F+gf-Bu zalbL$D>_aR4SGL$UkPX;RwW5-WyYpXdx&TC-+W)x@qO7_iN_IuONm zG#fd+mSwAu4WsiDk5DTWX(p4Z4w?}4oq-U$o-2zE4tJbk`^_h@4`qFimu>JFnXf_DXq%>es*b3^Q2SL*WSKdf7h3k%gV#UZfIRI zIMvyeCrG-KrjPD1b$A*(2L+s0vva+1KJQOxIwhVp_ zp@A$SNjo#-h_=|fo9}-vyg$SToJ=5`gBfKHDwp&2;!KH@*>1*W@?_84sx_5oCR>-n zkooi5V4M!VU-61em5te}v$`W&R$)1zt&WA9hbss>Qy1yPF=OYtyBQy?Xz3iY|>P&Lhv-#*@l2i&z2>hgVAIM_%rzrtTI1lHC*UBlv{WAYts zusB?7h4>#IA4{Z1)4W^4a!*CEJ>7C!n6r~E4GAbjJ!jWyB^oaqzc@eNhB)lcK3ye` ze?%Q+;^RZrIM2$BZm50q3V&aMvj6l{d)^H%HFNzDI$|5%HDVcIIRt_%*#X8XBE&P; z-&PJyQ%mbD8WMwvi3!r@J`(xo=_E0%6z3DN{oe~)e%@P4EmWF>Fq2K@q-1p$pO(k9 zQOgc+j5d|!T4`bLAGYr%Z|V-B*v>()cLx1DPTPy@X|CN+x&n1eAH0a5KIp8-y1*_< zlEnQQw(n|RaxkllA$O^cdE>uB+>b&gY9 zdsJBT!I3j)vtxm5J!}nXErF4dIK$M9;rVZ$cr#|AEo_$Qrqe9ql&D(I5(OpP;gSA| zpJ^0d*>9{rzL=kjHY3x$=u&G`UXRxunhZ)NXv9WNlU-5Qf1EbR28@|lSXkQH6~3zR zB-0TyYWFqcWhyLjqffBy;wR4B$aR$Rk~K1=@kM!O90Nxn2O5E02>=Y zaAlN9k#TX2Xl> zi@2TdXU+g;j{C2uQM}R9V_)YjU>jJwxV4`iwLAH`S?wv?y!ov5uJqzCf8Q(l)PT)T<}i@Gc-FiFbC8_yS-xsErCOd7A2degfOauRlm<(_|>-cJ18_rn2ZrA z&#a(=M}A;R=$CakfkIjyo!$DYFaB?2N>DUE(M0uCHZ*8A33xZDYtl%1D_R`jkE99a zBIUh`20iC9xRADXaYc^z6j~47UOC)7xAgm6VbX{5;^B{JD0|e8h<)^ArEr1w8{uN< zjeRQY`n{9ot;H2Q=!AG@9ng|g3L&8-fdXGmXt!oCMT1pMog{_{LrEY(yCy?C8Dl0Q z0f`73d>uvL9X(xYC}IHBTR7T7E=FG%L4`PAD}p!;69T$?ToGby2ARK(e7n21B#BhnKURv^rv2x=P`PDsI(A7tylh&_UDysk*BYC z301(Q1dTmi1$q9)tX7U=-F@XF2{z}8%IQb>RKl(jx7ER1(rx~0BVQ{iJl{X(|2ghs zF_JcJ0A9v}qfNFpzpejg79BmwVjuKGq5IS)D?3w*8Y}{pv8ot$;X&_IVid`Hzq7J9 zPGC8`QHoWa{fQ-x7~^@gCxcsx_;7!#CC2?}VFF`a1wvd|QHQBzYGk*E&MO9j{Ek=$ zm;1gtImekFdDD3&M%K6Ns4gFa^Xf6JXD)2g{Z@C|EYMkJmPYt-iXhk_&waCZ&$)_z zN>}gv<|2LWp!8|#{Dx#4{Ik&%VV-`>_=b~*lOZaHk}bD8zj%@*nefRM3A!&33Jm-- z!b);%Z0s$qO}`eO05Z4yD((1jjCk_)iNp8r-&=yQEh28O*X+A*Lg{^1JWY52fj}MC zqpns5X(E83|*4zApXu%R04xbU<9kc08QeIpiY7o$cQhXG!{W4r1bN ztD?o73;9MQovRA2)2AM~Pd&y~TlQ?EdpkQ)T3RF*hqq{^29#YUQKH0pbA7HV2?AWH z>E$wWmo~>Cu?AT}r9E6p7YH+t^^v^>u@w)xS^Wo5dpXir!w1)Yvm6)vW-;R-3()8W zb6Yf>{KFrt97ttfLnm3_ADC|eKKR}TX1J!T%Joi&o%r(>aN9qPnZV@E6;KLonjz_s zv;A=B2fG!5NW1bGiG7ha?YlTz5h`1~sf~KD{#iEH@^h*e1nLt<^M<+!6@r+e$g_r} z*e%S5G>lC#bx5S}{5#rWi`-k0wyYx_?W+xJ5oAX1Zrc!fuf)A@wUb($csl3elSYK& z<={;=1DFJYyu!-DiQ=gGySpi4BzUjatU`bu8GtB0{KhoVwEcIs?z!Ee-`b-ZpQC_x z*R9i#=DKn#@~>g$E-Nb~h#i&tZzkW@Dh&*9sVMi`EWhMdk}CM>uGM}~W@PBZtm$}k zUY^3^q}HO_k?@&cKA&ndTs4LP!!+*dwk6@SM)&o#$JlmPO zkdjpdf8j&R&Yvm4mVDN>iqOd!qerZ=Dthe!lk?)n;6470+0ob#CbCzrUd^#Zn{P!V zz1dXW7P>!VPL$+<7+&<7eT-jW-V2QR7*dUif;wROGc>wYx=#}ef2+DwRY<6O?bL%^ zBu%3Ql|j>?i&thD%>Y)klVDM7@yBR0OPittmDHb~!r|QJkk!^#bKMw;TX!<$1p{7$ z>=)t6B3nB<@_^o-KMBMdPU;2R4$_Wdx2;x~Cl2(zRJWVn%_%eCf9?sl@vXm;cR3_< zuX6p;x-`NS%}!r0|B3k(A4O|MP`Te^Z9pNB>-vdtoHYkYap(syz$f`0C@3gsJT_)j z5rb3A@Q)9sd^I7zI(}BKkxzR;cZ4~^euvlWy3dpDtJq%K6WeeaNespSdue=d$fus1 z$K_Jl{%@OIvvqE=ONY(3L#8jwZ#6C?y1==LFZ%(s#BudO>2Mfmkn(4E$wK_ueLF8P z+=qF;oavVjtjVA@cBO9&nI;ae;CO$&@!{KYzwywNR%FJOM+^ce4Eo_QsYKc$qxnt( zM~c_e$9wsg@8W}N5g=Bh~YRB*9CF&DEItEy-bvV_!*KDX*gHg_BYi&SCvA@3$;_ii<@^WSSlm?O>KMyMK z6!^nb*;`)np6}lSAG4ldwa`%uI6(Z*U)FPQI%X~w&U{9@* z_?wS`0E2Sx<`X_PSkYX0S}0LoV|Y8;8fvT9V94*SfyEU*JqvIZk6RMPBNDJ7_3Kyv z@gH0Zwm=+}EPbB&<0tMDSVXb>Z81hyC7K!1bk#`DVGZoZ%XwJ; z^DRTo#ioG?j-q$BlhmEhFHfdeuRntR`bn$Za1SZxQ(;d>#ajzzq}LBv<98RzVc))! z=K-wV^I6piOCNuxp59Ycx_qnO+!02Pn|)`mgvhebm%vb1vt(sMmom7)ToNZh5C)N$ zp}@7WIJ>%PIBLJY97W;rbxwB_}d=@>Mmc*jVluF20+vTWW(D=uyNDY72VS;g2a z4o;OY(iYapebvQ5*QEUQ^YrVpAt4&XnS5Quhs0+sXMWz^dSH)+VD=%9BiBzo5eI_O zn4xvZTmQM`oRm%6;{EE1>UKEuA-j;7IB9(+_3+J;NpjLG_0Gv>_wo*`iGcm7T908$ z(cpjZoy}c_oe(ornhxM)eWSHvtp0T;@F>_@Ct-YHf$BIm z@Z$2duPt>8Hh;wLU$@hU3*r;GDZRPrC+}@&r=9b&)}+)*p9x(cwui?|a(Z;6AaRLI zJk7AsM8)NQE?YazbkQdNtYgOmIPcjYd5<)$a%KcP=9RT49ZTOWm9IvZAjSX)7*6Bc ziM~*Rt;pD*(W0xO(5QW-3Ob&wl!}>CvvHVG%R0SM3R~7v>oY{nx;JD{A5Hw~H_4jI znUA)zx{E|6Nf~`z(&Ibph5cj1PASLi`H)`^vElA%>J#j|L)sgB1jw%4-Q6s4{(_pS zan{z?LasUD{dLNjK^Iu-n@R5-=C1DMcb8H1!`1LWyJX5Gw{%`@Wiqo*0Q^Md$7z2w zCH|&X5u`rt;N11%K3rESVQmR_YroILf4$;aLOH;%4f62FqqH?+m=eYRGAAK!4hmKCw zH{@k=QXm2Rns(TsZ#?uf(l`C1!GueBv*5$(DB(dcx_9#CCStQ=$eO*_NvCrJ^+>5w zO{~OL|9-InIlGW=exNM-kN2iS@o(pqzaUGq1M`bjng}hh!^Yp}p z*VW*a#2+Su1f*x_-j51}j&043_T60r<710VQv>S|0JwO;!>r73{hGxa(tZ_ymVPDa zDhC=R$nsWXy2;}D{Vs`ig^NKQZhzr%^Am1%s4Y}!y^3Ph-tTEPs%n`hi!tNTNqOn| z4qc)^g*7dk+kSmZ-+@r7L7ojHS~UOht-<1<$DgUfVc&qjn7t=IZoGL&vW!}-bG5{g z2)+rjwY%3L9#URYSEoN{IO`BLYo)nxD?U*-LE3ouGS|)`H5Ca13h_GV`I0otiySY8 zHhxh$`?AzGVA7`UAi`|g`L*^ZEexgW?tAuG{ZZ-(cB1OvPLm4wr4{^~My|V}EMBVw z8xK3vzQ418x}$(Od2-;<$w*S`ff@UvJSqx#YU+mF=EeroMSF|E!u&k8_sA#?Vcb~b zhe>2cQ|BTwo@0V&^%$di;Qh^L74rG!q%mQhj!0a7y&s|AZgZ>y_8MMr`{UNw-Un`T z08wBsq-FI;R&=&4-uKrI35)V?j7lpil1Io!hENH>fhhI%53(TS=|?ZE7lqKx!l{Lk zL1h1W;>^-wq%|Twa{Nl)B_D_(l(}Lm7k^ixQwjA}lpKHj_it24uOFhyQ*ljn zHkRW#mg95jrQ#LAEulkDuR;r33nVC}Vp-|>82vrOodgLA2rms<(jgkpk#$w z5^A^^r7Dhxs?y!rOAFr+JLe#t&AX!0W_l*#XkitzZ4=(vnFwK}NSF%8tdA6P3G?Y@ z2Oiv{+xh7G)U{9>1D5*tSf42)@+2@@nu!i>~qy|GXhQ;xrL+u_7wS6+m2tq z;v4|u#ti_Dk&}~JLsFwwQd%0}&gA{h!o@yi@RG05w~44jJx_9{+xIFTjr#Z3+b3M) zwYbNJ`T7DaV4ds5O5-r_K`xC>HJ?R-mrGbGjZ+G`9D@fVV%NQZ6|w}uUdq5 zbGYsXh~ev2YWVBHTty9vgbObchJJ8VLPA0`08E-E?2^;|o;mn)ZJEB3{iZx^gr6cV zzK0LqO%J=V<^EKA%a$Q-?{bjeGD&IjePc-OIP=?$m2`Oi#n!{0_$B4#A=U}xOQ!9;yLv^agzJ{UD}V2u5?e+hZ!>)coW5<5r;qxv|a?6O2y z$sqOHX&n?nv=1P{GZ#OE2>}al?R`HfXOB4cW#Gz7Nlz&KH`ce4PXYw5uTgdO$yA6H zj6wjF{%yMnJXPxM`lj6u7y5NH{+T)Ila;};>1^olLIL-GdjULr{U&ey2!T6)0G98$ zQvbWU(N2?o4Yg2xFq-*OUgJku2Wi6S$`F^EYkf{cQJBHJ8_nXa!|jjy+xD?Y*t9MV z)ra}4^;Algrw=|vgj!V-lCcV}sz*HkkN6Wh&@r(Ik1`JYWw=tIEphej?FJS^hvV&g zU8DJa7!X;(?N(B|llQ5?E>}R_$h({TVC|+Eo7iN&%k#zIQ`iy7AsO}u%Nq<4-*Mzwod`{+Fq_z_AM3zvM0ARj^mSWdWV z;l6#j3h~#on|y!xE#@?P6jbb^lA*a*`Xsqt@orpH=c#72s5U(xKmzC-PqeBo3&z*caQ+vDWKO`{&FOI7*$)tiRoi0CP& z&>Tx1=()4BW@O0VYvoOwkE6LzrVelH4;p8OH9U;XF7qN(l2Wi&Z`Gn!x9Zw~Xaw;4 z4O}*AfxaaQYLddY;!J!FexIfGbaY7ctiC7;m~0ga4tMJX^dyBc^*s)?N1HNyBr-8G zqqK)CVtzZ32NYZO&5wVyqu`z*1Pj`bt*C{|*dOK!azAVZJ*{$dh~$iWQxys?zuOg= zo>@izSbE+_=_#4VBjR!0%<3O=IVG{jaN~$w6*D5L*J-AR>tdo%FJw=r}C?Tj48NIi3G z!s(L+uoXvbv2hDsh3EDqaAe)Cmob}-lEOzy;*Z7Az8(5rO0;flK5Z?g#{2v^*$c(68DHtu zD~vt1FbqCwh3&02YYF_rq0FMI4JyWUPF}IDz(I1X)kRipumDO=rH4NhzC?*5W=Ko9 z67DRfoBh!f%}Xd}T;%=8N~D-upnw#|3QI}OP<;m_dc1x;+0oNE{gp*uHAUZO;ukmV z7HW8;2ZtNIZ&>ToaECrq-0yFMy8F(&PFy$|68>!+vI(x3ItE;U0@efMEYr2k&CMs` z;`UI^WxkSGU%X{ARh@pp3}LsC_o?L{fP!kuLpJxS{PpYChvG>Ri z*VevvkT+IVKFMxxUph-y9^G6K__aYx0?C2-=zUuZ263Kw@)R|eKm-F+uwc|mz}DFr zo{}=9Gjo%FUj3Wy)ObT5A(tC_3ap=nWdUkb;giegCBZvzP1W~k_<>PV6~UXxOl5o9 zuBG2Whvc5LpXi+YS7=MmI?BE&j}Ga(b(K%;Bi5dMn(qB^ii<3cFgjSjWA@7g0V4P) zBeCMqP?c(3mTKVx)CfhU)nadipr-XjG-i>Ttz4nj%jU*LvXuPfU=ycC%9sHLATx~r z{23S@PjtkVH@}DEbPDldzCHig^Uf^JY)1XD{zZX$weys{Sw-v|(2uKoN0m5BajHM> zuyOEOtZNNbPsJPPYjx;!D&fu_ZK;cuLua>D^LX54l4J{1*G`pK`ZWxZ7q3q)m@GZ) zmMuh)Is7d0o;b3Vl$2z7>=Nn&H2s}Z45C6F`RM>5<%d-Sq9_6YRpx_|H(vWZdqoT&n)o@(1!7m$p>uFm>jk}#&!S@WtR zJGS|_*{)sR%doo{JL5vKYS-;*viT68t_Sa?k8SzuE!VXR`eJ7nuXM#=uLHW|JykF? zuP@X0ra&mIh$TW$&ZHsi%aJje_z^um+<)@$oKH$}sQ&x(bW+D)X~^j#!IF7T!6j23 zj3-TKeoy&7`R!7782pGZmiET`hDma4zktL-Sf1+4gHE}1&ttxMk8J40sn}r!9yv{( zxFIg`XAmo`$0Pc~d0L6bnEgEOk*e6A5BY}vZWdM%cv{W}D7*X#tJV~|CMyh%=iY!< z+X%+_EfJa%3e-2xrxqVPo)Un%dm?r`g^>Ota%9Ng02)>BAyAv11Ki_O+(8>Hj}fnh zCn(UuBL^19(glM$7i6FasAGr!{>9xt^Ul`R@c1eaE{f?SJQ2QR9=6L{@!*8K_-5jn zkC{nwebfB*TPpb=Wi_Q*%xMpNRFL%!%Bc9zO^rz$Qk9(#g}@NLDsCx_&^iru7- zs`)`9gB+nuRt1Maf|+Txj`GQnChpO#FU~j4)SOh%8qwaR&tJ9uHfl-dO8tQtBm|+_ zQtfn&c>H#EVI!W+yG?T)l7#U`U7ndNhQSDEWdKnDdjvZN{-P)2$#=(B+q=7LbFh_s zo;1%uZ|cADk~TMCr2}hu+^Y{bh@u4}_t7GCQ@KD?!R*-uOm4^Cm!ZM$-<4o-8}* zN;DQw9zOA-f$Pmc_BwtAwjhcFTZ*7}Z4hEM)FpKF_R7u_skD!M@unW4`H`BCfz%Oz zgf{pS1wj(80y^GemE0Wp2uNB9d8e2|8VKx`(6VZc@z3L=xHJ$oG9c!rOF8%mLaM*ib4=V={7t?d>?{ zu-|GCT(p9ab|R!}OYo#q`kEWw@C}`Ibol$izdYTZQvD$qay#3IBO*xtRHK?+foX$X zi(P(YU(w*f7-i_Idm@rq$Q%@r<&NeT5wq|0$!UQ(7r~18Gbua6+JU%dABizh1djJf zrn5dQMenGOSVzm}Ib$;My?UOl(lI!QDcg)k za29GA!vJo$Xaqw?M@KIM%vI!=m%H)GcAW=ERn3=hNj*TV$3$D@^txpn${AVx~?J1*R{Lb6*!Zh#THp* z`?1{H!YtYr&`>m~eV(B(iUoSk^QFmf&8DVvJP73H=Lb9BQfxm?H&FO#^&u#cYq{p} zRaOQ~-f5LoBSS-pb|IL_L@fXja6uHXsizgA(QccuaJLkd*j)1tki?pRoVYh# ziS$>LW;y>*=6#2R!g4NE&}Ocb=!%pf_+AzUizAy7Mgru(7-*?l-HdH9;S4si<eCR;;%x$@~!ujuwCr6e||C2XT4Y$W6L&=Dciq0fYHu^O`3V_ zO2hX8=gp?A$9%`ON2ce_<8(x2*9jY-kZk3B2BwFk=t%98kwt!P?kw^1U#~NE65^FR z(YVBu760&gjLN5-V@Q=KcsM#%Gt#Q92Q?pi1JQm z01MY5-ncRph)#ghU#>wMW=VJ$8$Za)&mRIr+5X|+X1L-UW{CUjqc9|HMCulZZIU6T zKfemktun|hZ(N5Z_DALyc@U2wbBUZfw4SAm2T9Wzxnd6olKu?BJQyP@uGAzPk#WO9V>R(%uXI( zInXctMySLw{Fl%JRO-nB($4Y`94yG#uU|EyI6}{Fk?TiTCS0IP%A80LUl&*H&`tj0?c?uq{y!KLD+pjfAin_Y~sFG*{2x0TV^`*_1*0< z5}a4hw-I(bU{6KMc{>{>ol~Uoq=Y_6nE`)h`~#fR1+;V7s!*B1?XrS^uQ8G`hn%9c{QX3P!n<~%jfBcdcala zUO_6-ja&Mz7r+1~w)&%jhbLCrlm{hF z$i4pR!<_h4OzB7M4`+3=cTIFxh(tV0wx^iyGhj{;X#{-*;FdCTuL`$~44$q8AqMoY z3nPbd3xS)ADDRrs5w|vFTUMd*gp9|SM|BS;W}G~mfP#k*iF0IdCwCX$_V&CXu4%F zdHC@C(9&>EepiBdf)Fzy=QnmuHM1htM@(wY543DmRX-8@6^D%6Mg}AzxW~J4#_|YX zu)g~wW!g^{*jOwFbRlpPsiuATJYT<<`$lT2!ArIo0ICG4ENArTk7peUOG*@?%>G#Y zzW4Y0y?lA9BZ+`JrBNmaEcap4%5l*HP!9hU!7uCqa04;THI`it;O{DY=Yz9vxKc;n z<(N@uKho_haHM=@d8@V~=w{R;q}`=Wr-JViy?WIMsBXQ#e-R9eD4>Nv_PRaZ1l-o=OAKrSx%wh4KCO=0w0v1uV6+@c{dtZzwPM?PSRIT~JJ3EfhK#Ho3G0%VS z3b8)DD}$r{e*BBet2bQq4HrnAJ-Bt}LEY-e6+ov@SAxjiu}BYyeerXe$WxPATOT!0 zVr<}t&9Y=l3 zfC06Ml#~>oNZ;JIG89ckZXYWjbrL+P!Z6epZ%%ub_zXDnjNitWd26Ly%W^y09|@#4 zd2}*R0B4SrSml+l{tOZ;a1o4lxz|HM|C?OK%j7@^1qZ&FHQ1?}`{|-Mm)7xjX}oNd zWM3!%XJ2{}+vg|G+?xnzsHt_7?FLa6xmP5ygq`bKsSnZ{K!nrHP>P8s&}_&-UAL~7!&71Cc)foP zpNfZwbiBIJHox|_7Ro)>;k6zM(e;!7kWQ_j7$xnmoliBD-cLHuvBPEdTKRE_ zBhiWJ7wFBxNbfO~D~Qs$7?~Rle3fyEa#UFdokXAcJJ2x0tx87Jy2&Z7g&4rp^A9no zgRH3hu}pLT&N!Z0t+(LC1?viPd^&iZcPWL$r?HezC`{HjxNwPFJLlUrgm&>Y1o4H* zZR#o6?pmg#=ZT;?}Kw?b+oqMV2$ zF_hZ)VH8`}6>+wiaQE}f8Z+Xqx9(%go9Im&n1`CV1%*UoZGfE;IW_FT}=(dvf`)xb7K7xp2v3)DVr8P0# zM?DE10OHs5gWQa&o~-eT=kH#kH6BN)P29X>M}gjT0jZ>=Lpx~Vb0e(n-d#YgFL6=u zdEh6~2f}zOL@NeGKs>dQXNF9Q2j(Dii)h@o%mQeCU~v5);7hL?bR=9hk_Q8lD>QNQH5PU+bPM&YI* z1j<(L7c!iAC6{jU&9+Dq4uu69fF-P7efa9O9`Sft0V+%z&w`t`7IKSx6u|NCt3wWUXcuVsak*?ZVu1 z@!_HaOr2`?0(_@rb<=*_F88BxY1t}C@kgW0FNJ%}P+kZmV2qDD4hA~a3NCg#sI>h0 zQEV95tFPA)dDf%C{26Cg_U>I$(3{6469WZ68DN5s9VH;Cz6M z(`1$z);EXo5h7xX*dtYb6a4nV-j$u@>GN-Pze$G_}C9Ql1@8O^?w| zbqTjD;RxMxU5j12=Q{V~L>8IG2w=ER6+^K{u@LD!3 z=_P8A!y6xe%B|9L72^pcz{78ZAVoD$@%=%MQ~u=Lq%p->Ft(tzr(v~Bq&fMOURM`E zbP8pkfy75C_TLCGTQ?t|a^48tBQi)n&*xwBADOewsNZVci?++Ds0dg{xbuGi>}i%O z^`ffnbEsKyMf6J2&}X<~$al&bkDdK<9nNo=&kG?^#tYVI?f1PED}q5IHa2=iCiFZe zdk1^B!OL)q-4gEhc5atSw|xVw+kL9m&)(YaBQAC?lz9LLI2CFJxjr~k07;xs)6V?* zfPPj*J?xjLg&OmHWR~#7WxJHFmFBP3S#XcATp!y2UuGEuz$EjRc4qGeeqhE8HdjW^ zYuAmLY809*cqZ90#~@Y#fJ((YGz#Oxk&A} zev=#RAomKSJ_kM`O=K8NIl_?kZDQBmcVvnalF=VtjUAo4XT5iR~m_xT4PuP0>rr8qKXL=an59BduRz zuI*zw<}`&?8-B$r4NLh6BnT)`ABr(eIwE5Ib7wa*Zm>NRYG74c>B(Y^BPI}5_uqbT zRRzdGmkjt~{6N-rGp8(zVe6~nMexj+YIBjZNvyaP>Ik>$bBEjPWyrTqtR>|qO_>>` z0>7=#PUYNBL1wdb``HuADihpvPSOx&>A6jO4N|m&x;hz1CQeqnLj|y~M1aQl zSx6oG)G~?N8?1gywx#24zVT~oQ#PoGcS{YANbv1*s;Q{b-z5J$`p6FIe@j+2TyAsH z!fkX~dx!{ptH!{&?jNBt*+jJmYc*@{vIoHvE?T$N!SrnFv2 zVyPWi|NS}@I9qpLA9oQ=I$993)<<+jr7*c?v=NMu?u?Rel06Vg%Y4k!)@6>=^SD6V z>8?|GpVyyxj0`g+c8skrVX6Oh-Wm^_Lelpf7%!3Q%lSAPN_S!S%s~Db)Kr*If8H>l zzwyIW#PXPoq~>YjK}WMWi$e3BRn{UH|y zeb7)|c{v%20`*fS+bCsBxKM|P<5=EknCf#yO=7Z9kgY>si``bMzFW4~RS(*i( zoh1!A3D}bD+Ukcz^9ouh_W$_(LEbMQxwMMpVRz5a(A?<$Cg5f)@|Psv+yw;5M!+A7 z#nw*B^!}4zWhDHs1gm(;-vsLyIJn^O$ptSEH+iOP*!YiP4AEKpQzHbrHvGwIO8-mH8&yyJ|NETMr-$pf_4A}#8A<#TcdDfM7J`^jS=t03O@3EP<7g#0-sM2 zGa;;u(=|R7hrV_AVZrH*P)9zy{ooB4jGjSRQSP3Q>Qt7-?bU{<_!cnaoHvh{z5fjP zUJ_EPi$Fk7kb^aphzA?kTWUi6Bh-3gOB@uUJbTu&Q2d@faf_FEvATCu1|&oYpqii7 zxlJ@iMQL|{?ETjtv*g!pf}D9oQtj3GG!NygN|C-`@@*%cliQd?fLJVM9ZoszE-cQT zqa=2iENtkO-p<{%#LaU%%22zQxzwfj;|Gii8zUpnD1CIBDKTdH!HXAHE~auuwKxAO z!S*)tHVyK>5^P!?oX-t}CS1mXFx`kl|E3Za+Z!nMepR-wDE3exS`UtEuM{~5U;$0W z6SmoeT%6%Irvl%#oDnK>E(QWtN-uF-Gv9_eETX*D#>NIX2+_0P7}dh2x6Ny?b(O=j zoHIS5lu$8KP-{CVqm06ZTFrU0PARUc0mr9Gj9ZYiREM46sxO$p0-xZNjh;Tx58zl<`>gJdIIF=4y7icOpcp0Qmrr7+aUSN7jp2x`U#aaSi2ojjbFMY z7*yb~-E*mCV_{(lK&NEm&VqDLvA#P#K7#|vH4AaihcFeIrbxc~Fqq8- z*Y_FaF&8EBs6kQCbaZ3S^P|#})`RPSq;@b*GnM{NgRoG7D{03bZFY*QOLdZ=dRj;( z?_=S;;)blxa6il<)ZWH7wJLPlqT<(OWJ2x4elwYi)x6Z<*N!flYcr(QOg0@E$8$CXrGbS!~$>x$MCnu=Hv zAbx?xLbA$r2C(Sa0yR*#veh3(1?x-M9iEs3B4!!`C2-|}^HF?clu~pa^mT*x9txVP zSETW$T({-E$5t|jA0)cWJ>y%F z<6Jket6q7^w?vTiVc$?9h#REmd^Ij}NbBryB!N~W@IGt|*kd=&c?KLGy;| zJZ&Jcqu~^^&gbOha7OcGiE)nr;@$eVATfU=(v?wVfO&*x24=_+U3GfvaZci_81JqT z?%R*YgTCnLns9LQIy2#!!I*hpOB#8Qntqiu1$t_U72|tqWu;EAuxd)-H&eNEkcq1f1Z5AY!f!T)ad(J-vkNXuOWPt+ zMM8j2%7fPoxag=N%Bv#og9cjQ!aa~=+ixbHj`@F;42^w+l%K1qgZhyTf^gn<7JZNQ zE4fL9v3b`A%9V!~zlh|TrHC9PMTpXH2XQzambqQ{2FR}3!Xdh9)|0g~2fij{%Yd>_ zJZb=dqa=ux+Gh|x+HkXqy1csD)-42`X~3Yzr*jsxO$6Kb(^LQ))IkgbUd-5RgJWxk ztgI}U#!bGO2LQ?fS=?T;dR| z&72(3=;-Ju1A<3bn!;1yTqK7LR~@Jy3hwSge*;N(*ORTg z%_BaN0P;05mp;Gv-E3@NFeo%SYGVR-u;<(+Rot#$^CgQR(9yG^Ce!UrOUK7!xz-W| zuy+6q3pV25#DBV;3A)}dN<8#Gn#|^J7&au)BQi#_8&al{f)f2KO zer?Gs0H@)6vn!3)$ee35L6st7p=%g21FQr=u42{*Xn$g9`oRE5P>udx!n}niYtuGi z)Qe-G2WiJ}V7smsh`a^-dt9`aaUp2MuR=#oU=1R57yp$NoLE-V>1qN%jNRsMJi2IK zBa(>2Og!9`jwog+iKoTFDpWncD^A?RdE|_~v)q(tP0Y{GKNdoRc(*JIV)s(){t~*% z1zFK4M#j`cvR7Bb4Obk$w4<|yS&{uEM`!K%Y|`C%tzqT<&g!weQd3GMo%!$xk=N zBvd3aEB`a}8s$AamHy+uyql-0Caxv29_oD~(Bi$0a?{9}-0?X&@`y*#DMy(FWAUCG zB`leXyz@!XEo`0-;a`<1+k-$n@B3n_!KUhuv88T)ecu zW(ay3b(2{GdBk$RZsQa}Z^3J^Jko;~J&beFxn!t;W71^vTE}V*<5s4kZNWgN6p72H ztg{wUBHkPa9eC+XW2r|pU4ZSUah~;XV2tM|%M}LsS3t%#4(w<(4#-4}N-DKJ7_kym zL~Q~Jt6{}0%BSL>SMZB9cVcWW>PG&oXzD!Yb(Gm5-2*1S(t8Qq{ zd7>x5po;h5S11GPveJr`VU&fI~dpL+iPq83MI>k8Fw)3G_ zT=F`7`gCq?uA#Mc{)25zkYfRn9#0XJZVAd}baZv=0`?M<{6PNISpYAL!%LC9^q~oy zXT+H)b6h&zX0B|`5bnVZj4}u5!P*Yro-0=3vFKiZJrpcYf%?w`cVWfWyP|AlyALI+ zkvuWCn2r}-NU^re%p~{Oc+1sV!bVNP02YR+s386e=g*(u{5y(4WIXYGypdL*COE)Z zimLW2@;8#uXi;IfIYX0>T5MfUto|oz`PyV_+=ECx-pl#ecsxH{xOU;-L^j#+)JrY3~nOe8vD(oM^!XeProLB0ciCh0P8{< z%xc%>0+0=6uiU9OtWS|2I@#))4HAJ<51W*vAS~6*CYk!VP=zJ_N z%QoM z>}4)VTvwAt1dbbn>Pr7h!Uck~w}t4U%4#bcYbNg^3nOFq-A@tOmhXGET`wF_Jov_T z#*4P+e)dBG7=ZE?ueqPiu?RrG6f`ra`~SuD6tg&mqf>ZB;k)|=S%*FStnNRN$nwvz z|0CI80+Eor1qSWj5Ui2JXc3KqwwnTk?=HF!1m4$W)Giv;}S35QtNwq z-C^X;c{mA)RNKFhzBx1TfM(idlh2!={L`&sVd#1VUZBx9Pj=43xnBWVMz^VC)!a3cUgLPy`GZwlgLS7#8!NXIz* ze?nu>O$*CQXX9>5Kl09)1Op$Gb~Ve|fnMWIK-6Z-OMvV-*A~8_qB^wDN=m2hoD;)! zafc9Isl_*H-p7qpF6@Hh$h$9JhitzA{KJ=;E|566hX+KJ(Tf*!Y*sSOtQ%)R{3d;B z(|R~fy4~-ei`8T#2%xL)$6_|X#s#mRtD=Es+I=a~>5UdPAm|KXiCEiWot&IFV>y3ym~q~a&jkBi$syP^k@60iU0}fl8K1H;abI$Y zh$|qvJ%mlGw!GtfVi%~XP{8c{>|>yReFJQOhPJlfwAIrp2^i5nl(ca_ zWh&R1zHx_?zcILEC+PyhfOFUzQ;5%XLB@i(ZK_F$P3^n|u>2b?xhS)~pa7svdOIc* zunJqu5k;`U>pZ~0j^1nSNO_MFwlO@&P4hL|G29Gz>CRG$1gK>ICfNWyVRdbCFyZC_ z-~n4-jg(<@W#h$`RJ6GQUu(usb{%|!#={P$w_>5f4k?<;vZ(KF!sTpix% z11H2LRa7wN^D|e1g!vo7MS}ftl3xGV%dlshSLnwrs3B;?)wNn-P$?Eii3mIXOhN`q z`kt7!I+kU?e-b!E7`S);J!1JT{ei z8(QIRgISMlEMPgDn%oe+1Jf}u5R+Eopy?1jEHyxZvkpmNI{Nz89@QL;@B%%G;9X0g zj2*5@^kGzrMdQ8=)+32#%ljAM7-I_i99zR1wpX^Igdp(on9Yfs*VuWESX^c8lRtAQ zCk73PExD4!vHV92(nS6S&t$(7^Jc;t*9Vp1+14;bTr~ETAdT&;pxH_)D4+w(2A#qk zcA3M(p`hK#XYwyN@oJu_(mz=yk#!5PY4h?Hggea*lBBUsM}zJkvJWU7{R?B4JdEug z`gGr$QJkcB`0#A~AQafcxOnPR2q6sHREIkw8%Xv#Yxv-ej!#~k@DL+#oRvxRWzPv( zS5!vIOhXhB28@+vmHp&@pqDTafL>|LMz{%tO-MIS<N4cp+dTCLXRo?#x#u zfKXTBf0)>1QJelC~?t#A{WCZo&dSo3hzm1Kg0I^VhV?F zXX2jI1l&H~VDeu)1Xio}y6e@VAMJ|Bs@0RG7S#@CJG?ujiQw{w)~ue~NFJZe@Qb{S zbH;DUAn<+wdz^3?L-9q)5w>>?Pl(+Sql_;FCMm&24W>v%ClR*IwaQvH>~K^9K$fgC zL*Q)VT~XFB4?n1M3tTN(=}>N7;prbO!QS+*mhhueE(C6%*O8=jNC0sYNLzuYvQ5{I z_3>n%A&fa^OAlS?stRm|SO!c9XNU;^NC3f8gJ)-VP{Ud~;=yJ^z~mfE+6QaCOahfR z$^0C`RT%s&Z?bK=9R`>LRE`xkn&A77+@KDKGAA*+Izs->rhMB%bYjVp$Y Date: Thu, 19 Sep 2024 23:17:53 -0400 Subject: [PATCH 17/20] shuttle templates and some ports from shuttles branch (#6755) to enable new shuttles to be made. --- citadel.dme | 12 +- code/__DEFINES/_flags/turf_flags.dm | 4 +- code/__DEFINES/_planes+layers.dm | 1 + code/__HELPERS/game/turfs/blocks.dm | 83 ++ code/__HELPERS/game/turfs/line.dm | 2 +- code/__HELPERS/game/turfs/offsets.dm | 2 +- .../subsystem/mapping/reservations.dm | 2 +- code/game/area/area.dm | 4 + code/game/objects/effects/misc.dm | 10 - code/modules/mapping/turf_reservation.dm | 19 +- .../shuttles/effects/shuttle_landing.dm | 30 + code/modules/shuttles/shuttle.dm | 3 - code/modules/shuttles/shuttle/shuttle.dm | 37 + .../shuttles/shuttle/shuttle_anchor.dm | 135 ++ code/modules/shuttles/shuttle/shuttle_area.dm | 42 + .../shuttles/shuttle/shuttle_descriptor.dm | 35 + code/modules/shuttles/shuttle/shuttle_port.dm | 188 +++ .../shuttles/shuttle/shuttle_template.dm | 143 ++ icons/effects/effects.dmi | Bin 444844 -> 446134 bytes icons/modules/shuttles/bounding_3x3.dmi | Bin 0 -> 2784 bytes .../shuttles/effects/shuttle_landing.dmi | Bin 0 -> 405 bytes icons/modules/shuttles/shuttle_anchor.dmi | Bin 0 -> 1999 bytes icons/modules/shuttles/shuttle_anchor_2x2.dmi | Bin 0 -> 3241 bytes icons/modules/shuttles/shuttle_anchor_3x3.dmi | Bin 0 -> 5015 bytes maps/shuttles/README.md | 33 + .../nanotrasen/drone_prototype.dm | 17 + .../nanotrasen/drone_prototype.dmm | 412 ++++++ .../corporations/nanotrasen/sci_vector.dm | 34 + .../corporations/nanotrasen/sci_vector.dmm | 1233 +++++++++++++++++ 29 files changed, 2459 insertions(+), 22 deletions(-) create mode 100644 code/__HELPERS/game/turfs/blocks.dm create mode 100644 code/modules/shuttles/effects/shuttle_landing.dm create mode 100644 code/modules/shuttles/shuttle/shuttle.dm create mode 100644 code/modules/shuttles/shuttle/shuttle_anchor.dm create mode 100644 code/modules/shuttles/shuttle/shuttle_area.dm create mode 100644 code/modules/shuttles/shuttle/shuttle_descriptor.dm create mode 100644 code/modules/shuttles/shuttle/shuttle_port.dm create mode 100644 code/modules/shuttles/shuttle/shuttle_template.dm create mode 100644 icons/modules/shuttles/bounding_3x3.dmi create mode 100644 icons/modules/shuttles/effects/shuttle_landing.dmi create mode 100644 icons/modules/shuttles/shuttle_anchor.dmi create mode 100644 icons/modules/shuttles/shuttle_anchor_2x2.dmi create mode 100644 icons/modules/shuttles/shuttle_anchor_3x3.dmi create mode 100644 maps/shuttles/README.md create mode 100644 maps/shuttles/factions/corporations/nanotrasen/drone_prototype.dm create mode 100644 maps/shuttles/factions/corporations/nanotrasen/drone_prototype.dmm create mode 100644 maps/shuttles/factions/corporations/nanotrasen/sci_vector.dm create mode 100644 maps/shuttles/factions/corporations/nanotrasen/sci_vector.dmm diff --git a/citadel.dme b/citadel.dme index 0da2380ea275..e308edc24ad8 100644 --- a/citadel.dme +++ b/citadel.dme @@ -399,6 +399,7 @@ #include "code\__HELPERS\files\walk.dm" #include "code\__HELPERS\game\depth.dm" #include "code\__HELPERS\game\combat\arc.dm" +#include "code\__HELPERS\game\turfs\blocks.dm" #include "code\__HELPERS\game\turfs\line.dm" #include "code\__HELPERS\game\turfs\offsets.dm" #include "code\__HELPERS\graphs\astar.dm" @@ -3497,10 +3498,10 @@ #include "code\modules\mob\logout.dm" #include "code\modules\mob\mob-damage.dm" #include "code\modules\mob\mob-defense.dm" +#include "code\modules\mob\mob-iff.dm" #include "code\modules\mob\mob-keybind-triggers.dm" #include "code\modules\mob\mob.dm" #include "code\modules\mob\mob_defines.dm" -#include "code\modules\mob\mob-iff.dm" #include "code\modules\mob\mob_helpers.dm" #include "code\modules\mob\mob_transformation_simple.dm" #include "code\modules\mob\mobility.dm" @@ -4705,6 +4706,13 @@ #include "code\modules\shuttles\shuttles_vr.dm" #include "code\modules\shuttles\shuttles_web.dm" #include "code\modules\shuttles\web_datums.dm" +#include "code\modules\shuttles\effects\shuttle_landing.dm" +#include "code\modules\shuttles\shuttle\shuttle.dm" +#include "code\modules\shuttles\shuttle\shuttle_anchor.dm" +#include "code\modules\shuttles\shuttle\shuttle_area.dm" +#include "code\modules\shuttles\shuttle\shuttle_descriptor.dm" +#include "code\modules\shuttles\shuttle\shuttle_port.dm" +#include "code\modules\shuttles\shuttle\shuttle_template.dm" #include "code\modules\species\abilites.dm" #include "code\modules\species\character_species.dm" #include "code\modules\species\physiology.dm" @@ -5289,6 +5297,8 @@ #include "maps\sectors\virgo4_140\virgo4_140.dm" #include "maps\sectors\wasteland_140\wasteland_140.dm" #include "maps\sectors\wasteland_192\wasteland_192.dm" +#include "maps\shuttles\factions\corporations\nanotrasen\drone_prototype.dm" +#include "maps\shuttles\factions\corporations\nanotrasen\sci_vector.dm" #include "maps\submaps\_helpers.dm" #include "maps\submaps\_readme.dm" #include "maps\submaps\level_specific\debrisfield_vr\debrisfield_things.dm" diff --git a/code/__DEFINES/_flags/turf_flags.dm b/code/__DEFINES/_flags/turf_flags.dm index 4ebcf6344bbd..41ea17828880 100644 --- a/code/__DEFINES/_flags/turf_flags.dm +++ b/code/__DEFINES/_flags/turf_flags.dm @@ -2,7 +2,7 @@ /// This is used in literally one place, turf.dm, to block ethwereal jaunt. #define NO_JAUNT (1<<0) /// Unused reservation turf -#define UNUSED_RESERVATION_TURF (1<<2) +#define TURF_FLAG_UNUSED_RESERVATION (1<<2) /// queued for planet turf addition #define TURF_PLANET_QUEUED (1<<3) /// registered to a planet @@ -28,7 +28,7 @@ DEFINE_BITFIELD(turf_flags, list( BITFIELD(NO_JAUNT), - BITFIELD(UNUSED_RESERVATION_TURF), + BITFIELD(TURF_FLAG_UNUSED_RESERVATION), BITFIELD(TURF_PLANET_QUEUED), BITFIELD(TURF_PLANET_REGISTERED), BITFIELD(TURF_ZONE_REBUILD_QUEUED), diff --git a/code/__DEFINES/_planes+layers.dm b/code/__DEFINES/_planes+layers.dm index b38ab1a0fdd9..4dad67ea7f6a 100644 --- a/code/__DEFINES/_planes+layers.dm +++ b/code/__DEFINES/_planes+layers.dm @@ -329,6 +329,7 @@ */ #define DEBUG_PLANE 23 #define DEBUG_LAYER_AREA_OVERLAYS 100 +#define DEBUG_LAYER_SHUTTLE_MARKERS 500 /** *! -- Ghost Plane diff --git a/code/__HELPERS/game/turfs/blocks.dm b/code/__HELPERS/game/turfs/blocks.dm new file mode 100644 index 000000000000..d0a5e064a0a2 --- /dev/null +++ b/code/__HELPERS/game/turfs/blocks.dm @@ -0,0 +1,83 @@ +//* This file is explicitly licensed under the MIT license. *// +//* Copyright (c) 2024 Citadel Station Developers *// + +/** + * get turfs bordering a block of turfs + * + * * returned list will be empty if distance = 0 + * * returned list will have all nulls incurred by turfs being outside world border + * * returned list **has no particular order.** + * + * @params + * * ll_x - lowerleft x + * * ll_y - lowerleft y + * * ur_x - upperright x + * * ur_y - upperright y + * * z - z level + * * distance - border distance + * + * @return list() if distance = 0, list of turfs otherwise. turfs outside of world border will be null. + */ +/proc/border_of_turf_block(ll_x, ll_y, ur_x, ur_y, z, distance) + if(distance <= 0) + return list() + . = block( + ll_x - distance, + ll_y - distance, + z, + ll_x - 1, + ur_y + distance, + ) + block( + ur_x + 1, + ll_y - distance, + z, + ur_x + distance, + ur_y + distance, + ) + block( + ll_x, + ur_y + 1, + z, + ur_x, + ur_y + distance, + ) + block( + ll_x, + ll_y - distance, + z, + ur_x, + ll_y - 1, + ) + +/** + * get turfs bordering a block of turfs + * + * * returned list will be empty if distance = 0 + * * returned list will have all nulls incurred by turfs being outside world border + * * returned list is in clockwise order from the **upper left** turf, spiralling outwards from there. + * + * @params + * * ll_x - lowerleft x + * * ll_y - lowerleft y + * * ur_x - upperright x + * * ur_y - upperright y + * * z - z level + * * distance - border distance + * + * @return list() if distance = 0, list of turfs otherwise. turfs outside of world border will be null. + */ +/proc/border_of_turf_block_spiral_outwards_clockwise(ll_x, ll_y, ur_x, ur_y, z, distance) + if(distance <= 0) + return list() + . = list() + for(var/radius in distance) + // gather top left to right + for(var/x in (ll_x - radius) to (ur_x + radius)) + . += locate(x, ur_y + radius, z) + // gather right top to bottom excluding top and bottom turf + for(var/y in (ur_y + radius - 1) to (ll_y - radius + 1) step -1) + . += locate(ur_x + radius, y, z) + // gather bottom right to left + for(var/x in (ur_x + radius) to (ll_x - radius) step -1) + . += locate(x, ll_y - radius, z) + // gather left bottom to top excluding top and bottom turf + for(var/y in (ll_y - radius + 1) to (ur_y + radius - 1)) + . += locate(ll_x - radius, y, z) diff --git a/code/__HELPERS/game/turfs/line.dm b/code/__HELPERS/game/turfs/line.dm index c07645d3eb27..59a213720cd8 100644 --- a/code/__HELPERS/game/turfs/line.dm +++ b/code/__HELPERS/game/turfs/line.dm @@ -1,5 +1,5 @@ //* This file is explicitly licensed under the MIT license. *// -//* Copyright (c) 2024 silicons *// +//* Copyright (c) 2024 Citadel Station Developers *// /** * line drawing algorithm diff --git a/code/__HELPERS/game/turfs/offsets.dm b/code/__HELPERS/game/turfs/offsets.dm index cd206ffe0742..df4508beb427 100644 --- a/code/__HELPERS/game/turfs/offsets.dm +++ b/code/__HELPERS/game/turfs/offsets.dm @@ -1,5 +1,5 @@ //* This file is explicitly licensed under the MIT license. *// -//* Copyright (c) 2024 silicons *// +//* Copyright (c) 2024 Citadel Station Developers *// /** * get coordinate and direction tuple when entity is moved relative with a 'block' movement, diff --git a/code/controllers/subsystem/mapping/reservations.dm b/code/controllers/subsystem/mapping/reservations.dm index b9338097e3df..cd329e039ca7 100644 --- a/code/controllers/subsystem/mapping/reservations.dm +++ b/code/controllers/subsystem/mapping/reservations.dm @@ -99,7 +99,7 @@ /datum/controller/subsystem/mapping/proc/reserve_turfs(list/turf/turfs) for(var/turf/T as anything in turfs) T.empty(RESERVED_TURF_TYPE, RESERVED_TURF_TYPE) - T.turf_flags |= UNUSED_RESERVATION_TURF + T.turf_flags |= TURF_FLAG_UNUSED_RESERVATION CHECK_TICK // todo: area.assimilate_turfs? reservation_unallocated_area.contents.Add(turfs) diff --git a/code/game/area/area.dm b/code/game/area/area.dm index cb17cde47363..e0a0850c0318 100644 --- a/code/game/area/area.dm +++ b/code/game/area/area.dm @@ -53,6 +53,10 @@ /// default initial gas mix var/initial_gas_mix = GAS_STRING_STP + //* Identity *// + /// player-facing name, overrides name when / if necessary. + var/display_name + //? nightshift /// nightshift level /// in general, nightshift must be at or above this level for it to proc on areas. diff --git a/code/game/objects/effects/misc.dm b/code/game/objects/effects/misc.dm index d03e8a0d3c43..d5befd0dc5ad 100644 --- a/code/game/objects/effects/misc.dm +++ b/code/game/objects/effects/misc.dm @@ -38,16 +38,6 @@ . = ..() animate(src, alpha = 0, time = time_to_die - 1) -/obj/effect/temporary_effect/shuttle_landing - name = "shuttle landing" - desc = "You better move if you don't want to go splat!" - icon_state = "shuttle_warning_still" - time_to_die = 4.9 SECONDS - -/obj/effect/temporary_effect/shuttle_landing/Initialize(mapload) - flick("shuttle_warning", src) // flick() forces the animation to always begin at the start. - . = ..() - // The manifestation of Zeus's might. Or just a really unlucky day. // This is purely a visual effect, this isn't the part of the code that hurts things. /obj/effect/temporary_effect/lightning_strike diff --git a/code/modules/mapping/turf_reservation.dm b/code/modules/mapping/turf_reservation.dm index 5404480cfd07..d58ff598bd11 100644 --- a/code/modules/mapping/turf_reservation.dm +++ b/code/modules/mapping/turf_reservation.dm @@ -75,6 +75,19 @@ release() return ..() +/datum/turf_reservation/proc/get_approximately_center_turf() + return locate( + bottom_left_coords[1] + floor(top_right_coords[1] - bottom_left_coords[1]), + bottom_left_coords[2] + floor(top_right_coords[2] - bottom_left_coords[2]), + bottom_left_coords[3], + ) + +/datum/turf_reservation/proc/is_atom_inside(atom/A) + A = get_turf(A) + return A.z == bottom_left_coords[3] && \ + A.x >= bottom_left_coords[1] && A.x <= top_right_coords[1] && \ + A.y >= bottom_left_coords[2] && A.y <= top_right_coords[2] + /datum/turf_reservation/proc/release() if(border) SSmapping.reserve_turfs(block(locate( @@ -170,7 +183,7 @@ 1 + (inner_y - 1) * TURF_CHUNK_RESOLUTION, level_index, ) - if(!(checking.turf_flags & UNUSED_RESERVATION_TURF)) + if(!(checking.turf_flags & TURF_FLAG_UNUSED_RESERVATION)) passing = FALSE break if(!passing) @@ -245,7 +258,7 @@ SSmapping.reservation_blocking_op = FALSE return FALSE for(var/turf/T as anything in final) - T.turf_flags &= ~UNUSED_RESERVATION_TURF + T.turf_flags &= ~TURF_FLAG_UNUSED_RESERVATION if(T.type != turf_type) T.ChangeTurf(turf_type, turf_type) @@ -262,7 +275,7 @@ // todo: take_turfs src.border_area.contents.Add(final_border) for(var/turf/T as anything in final_border) - T.turf_flags &= ~UNUSED_RESERVATION_TURF + T.turf_flags &= ~TURF_FLAG_UNUSED_RESERVATION // get just the first layer, but also init them at the same time var/list/turf/final_immediate_border // left diff --git a/code/modules/shuttles/effects/shuttle_landing.dm b/code/modules/shuttles/effects/shuttle_landing.dm new file mode 100644 index 000000000000..94469c5609d8 --- /dev/null +++ b/code/modules/shuttles/effects/shuttle_landing.dm @@ -0,0 +1,30 @@ +//* This file is explicitly licensed under the MIT license. *// +//* Copyright (c) 2024 Citadel Station Developers *// + +// todo: maybe orchestrate this with lists and timers on shuttle_transit_cycle? +/obj/effect/temporary_effect/shuttle_landing + name = "shuttle landing" + desc = "A massive entity is about to land here. You should not be here." + icon = 'icons/modules/shuttles/effects/shuttle_landing.dmi' + icon_state = "still" + time_to_die = 4.9 SECONDS + +/obj/effect/temporary_effect/shuttle_landing/Initialize(mapload, time_to_dock) + if(!isnull(time_to_dock)) + time_to_die = time_to_dock + run_animation() + return ..() + +/obj/effect/temporary_effect/shuttle_landing/proc/run_animation() + var/half_time = time_to_die / 2 + + var/matrix/using_matrix = matrix() + using_matrix.Scale(0.1, 0.1) + + transform = using_matrix + alpha = 75 + + using_matrix.Scale(10, 10) + animate(src, time = half_time, transform = using_matrix, alpha = 150) + + animate(src, time = half_time, alpha = 255) diff --git a/code/modules/shuttles/shuttle.dm b/code/modules/shuttles/shuttle.dm index c1add76a05a9..604792f7ba2a 100644 --- a/code/modules/shuttles/shuttle.dm +++ b/code/modules/shuttles/shuttle.dm @@ -1,7 +1,6 @@ //shuttle moving state defines are in setup.dm /datum/shuttle - var/name = "" var/warmup_time = 0 var/moving_status = SHUTTLE_IDLE @@ -14,8 +13,6 @@ var/category = /datum/shuttle var/multiz = 0 // How many multiz levels, starts at 0 TODO Leshana - Are we porting this? - var/ceiling_type = /turf/simulated/shuttle_ceiling // Type path of turf to roof over the shuttle when at multi-z landmarks. Ignored if null. - var/sound_takeoff = 'sound/effects/shuttles/shuttle_takeoff.ogg' var/sound_landing = 'sound/effects/shuttles/shuttle_landing.ogg' diff --git a/code/modules/shuttles/shuttle/shuttle.dm b/code/modules/shuttles/shuttle/shuttle.dm new file mode 100644 index 000000000000..e4dab761d4c1 --- /dev/null +++ b/code/modules/shuttles/shuttle/shuttle.dm @@ -0,0 +1,37 @@ +//* This file is explicitly licensed under the MIT license. *// +//* Copyright (c) 2024 Citadel Station Developers *// + +/** + * # Shuttles + * + * Core datum for shuttles. + * + * ## Controllers + * + * All shuttle behaviors are now in controllers whenever possible. The base datum just handles the actual shuttle itself. + * Moving to transit and staying in transit? That's a controller thing. Temporary dynamic transit? That's a controller thing, too. + * + * todo: nestable-shuttle support ? e.g. transport ship on a shuttle ; this is not optimal for performance but sure is cool + * todo: multi-z shuttles; is this even possible? very long term. + * todo: areas is a shit system. this is probably not fixable, because how else would we do bounding boxes? + * todo: it would sure be nice to be able to dynamically expand shuttles in-game though; probably a bad idea too. + * todo: serialize/deserialize, but should it be on this side or the map tempalte side? we want save/loadable. + */ +/datum/shuttle + //* Intrinsics *// + /// our unique template id; this is *not* our ID and is *not* unique! + var/template_id + /// our descriptor instance; this is what determines how we act + /// to our controller, as well as things like overmaps. + var/datum/shuttle_descriptor/descriptor + + //* Identity *// + /// real / code name + var/name = "Unnamed Shuttle" + /// description for things like admin interfaces + var/desc = "Some kind of shuttle. The coder forgot to set this." + + //* Structure *// + /// if set, we generate a ceiling above the shuttle of this type, on the bottom of the turf stack. + // todo: vv hook this + var/ceiling_type = /turf/simulated/shuttle_ceiling diff --git a/code/modules/shuttles/shuttle/shuttle_anchor.dm b/code/modules/shuttles/shuttle/shuttle_anchor.dm new file mode 100644 index 000000000000..4f3051e4cd08 --- /dev/null +++ b/code/modules/shuttles/shuttle/shuttle_anchor.dm @@ -0,0 +1,135 @@ +//* This file is explicitly licensed under the MIT license. *// +//* Copyright (c) 2024 Citadel Station Developers *// + +/** + * the physical shuttle object + * + * for aligned docks, we align the direction and the tile to the shuttle dock. + * + * ## Bounds + * + * size_x, size_y describes our total bounding box size when facing NORTH. + * offset_x, offset_y describes where the anchor is when facing NORTH. + * + * The anchor is always aligned to the top left, with no offsets, in this way. + * When rotated it is where it would be when rotated counterclockwise to the new position. + * + * For a size_x, size_y of 6, 4: + * + * offset_x, offset_y = 0, dir NORTH + * + * ^00000 + * 000000 + * 000000 + * 000000 + * + * offset_x, offset_y = 0, dir SOUTH + * + * 000000 + * 000000 + * 000000 + * 00000V + * + * offset_x, offset_y = 0, dir WEST + * + * 0000 + * 0000 + * 0000 + * 0000 + * 0000 + * <000 + * + * offset_x, offset_y = 3, -1, dir NORTH + * + * 000000 + * 000^00 + * 000000 + * 000000 + * + * offset_x, offset_y = 3, -1, dir SOUTH + * + * 000000 + * 000000 + * 00V000 + * 000000 + * + * offset_x, offset_y = 3, -1, dir WEST + * + * 0000 + * 0000 + * 0<00 + * 0000 + * 0000 + * 0000 + * + * Offsets can position the anchor outside. This works, albeit is a bad idea. + * + * ## Mappers + * + * * You don't need to put down anchors at all, they auto-generate. + * * If you place one anyways, it'll be respected. That said, the size will be auto-generated too. + * + * Do not mess with the variables; the init system will set them. + */ +/obj/shuttle_anchor + name = "Shuttle (uninitialized)" + desc = "Why do you see this?" + // by default this should be north. + dir = NORTH + icon = 'icons/modules/shuttles/shuttle_anchor.dmi' + icon_state = "main" + plane = DEBUG_PLANE + layer = DEBUG_LAYER_SHUTTLE_MARKERS + atom_flags = ATOM_ABSTRACT | ATOM_NONWORLD + +#ifndef CF_SHUTTLE_VISUALIZE_BOUNDING_BOXES + invisibility = INVISIBILITY_ABSTRACT +#else + invisibility = INVISIBILITY_NONE +#endif + + /// shuttle datum + var/tmp/datum/shuttle/shuttle + + /// see main documentation + var/tmp/size_x + /// see main documentation + var/tmp/size_y + /// see main documentation + var/tmp/offset_x + /// see main documentation + var/tmp/offset_y + + /// are we moving right now? + var/tmp/anchor_moving = FALSE + +// This file is WIP, and is just here so mappers can start using them. + +//* Movement Hooks ; We don't allow normal movement. *// + +/obj/shuttle_anchor/forceMove() + CRASH("attempted to forcemove a shuttle anchor") + +/obj/shuttle_anchor/setDir(ndir) + if(!anchor_moving) + CRASH("attempted to setDir an anchor") + return ..() + +/obj/shuttle_anchor/abstract_move(atom/new_loc) + if(!anchor_moving) + CRASH("attempted to abstract_move a shuttle anchor") + return ..() + +//* Grid Hooks ; Shuttle manually moves us. *// + +/obj/shuttle_anchor/grid_move(grid_flags, turf/new_turf) + return + +/obj/shuttle_anchor/grid_after(grid_flags, rotation_angle, list/late_call_hooks) + return + +/obj/shuttle_anchor/grid_collect(grid_flags, turf/new_turf, loc_opinion) + return + +/obj/shuttle_anchor/grid_finished(grid_flags, rotation_angle) + return diff --git a/code/modules/shuttles/shuttle/shuttle_area.dm b/code/modules/shuttles/shuttle/shuttle_area.dm new file mode 100644 index 000000000000..1aabc5e4c34e --- /dev/null +++ b/code/modules/shuttles/shuttle/shuttle_area.dm @@ -0,0 +1,42 @@ +//* This file is explicitly licensed under the MIT license. *// +//* Copyright (c) 2024 Citadel Station Developers *// + +/** + * shuttle areas + */ +/area/shuttle + unique = FALSE + /// will be assigned the shuttle's ref post-init + var/datum/shuttle/shuttle + +/area/shuttle/proc/before_bounds_initializing(datum/shuttle/from_shuttle, datum/turf_reservation/from_reservation, datum/shuttle_template/from_template) + shuttle = from_shuttle + +/** + * autodetecting area + */ +/area/shuttle/auto + /// [name] [count?] [descriptor?] + var/count + /// [name] [count?] [descriptor?] + var/descriptor = "Compartment" + +/area/shuttle/auto/before_bounds_initializing(datum/shuttle/from_shuttle, datum/turf_reservation/from_reservation, datum/shuttle_template/from_template) + // todo: shuttle + +/area/shuttle/auto/proc/auto_name_instance(real_name, display_name) + src.name = "[real_name][count && " [count]"][descriptor && " [descriptor]"]" + src.display_name = display_name + +/area/shuttle/auto/primary + count = "Primary" + +/area/shuttle/auto/secondary + count = "Secondary" + +/area/shuttle/auto/tertiary + count = "Tertiary" + +/area/shuttle/auto/one_single_area + count = "" + descriptor = "" diff --git a/code/modules/shuttles/shuttle/shuttle_descriptor.dm b/code/modules/shuttles/shuttle/shuttle_descriptor.dm new file mode 100644 index 000000000000..7ebfbdfc003c --- /dev/null +++ b/code/modules/shuttles/shuttle/shuttle_descriptor.dm @@ -0,0 +1,35 @@ +//* This file is explicitly licensed under the MIT license. *// +//* Copyright (c) 2024 Citadel Station Developers *// + +/** + * while /datum/shuttle_template describes the physical shuttle, this describes features + * like mass. + */ +/datum/shuttle_descriptor + //* Flight (overmaps / web) *// + /// mass in kilotons + // todo: in-game mass calculations? only really relevant for drone tbh + var/mass = 5 + /// if set to false, this is absolute-ly unable to land on a planet + var/allow_atmospheric_landing = TRUE + /// preferred flight orientation + /// + /// * null = use orientation at takeoff + var/preferred_orientation + + //* Jumps (ferry & moving to/from overmaps) *// + /// engine charging time when starting a move + // todo: should have support for being based on in game machinery (?) + var/jump_charging_time = 10 SECONDS + /// time spent in transit when performing a move + var/jump_move_time = 10 SECONDS + +/datum/shuttle_descriptor/clone(include_contents) + var/datum/shuttle_descriptor/clone = ..() + + clone.mass = mass + clone.allow_atmospheric_landing = allow_atmospheric_landing + clone.preferred_orientation = preferred_orientation + + clone.jump_charging_time = jump_charging_time + clone.jump_move_time = jump_move_time diff --git a/code/modules/shuttles/shuttle/shuttle_port.dm b/code/modules/shuttles/shuttle/shuttle_port.dm new file mode 100644 index 000000000000..159df194b80d --- /dev/null +++ b/code/modules/shuttles/shuttle/shuttle_port.dm @@ -0,0 +1,188 @@ +//* This file is explicitly licensed under the MIT license. *// +//* Copyright (c) 2024 Citadel Station Developers *// + +/** + * shuttle-side docking port; put this on airlocks + */ +/obj/shuttle_port + /// port name - used in interfaces + name = "docking port" + /// port desc - used in interfaces + desc = "A port that allows the shuttle to align to a dock." + icon = 'icons/modules/shuttles/shuttle_anchor.dmi' + icon_state = "dock" + plane = DEBUG_PLANE + layer = DEBUG_LAYER_SHUTTLE_MARKERS + atom_flags = ATOM_ABSTRACT | ATOM_NONWORLD + +#ifndef CF_SHUTTLE_VISUALIZE_BOUNDING_BOXES + invisibility = INVISIBILITY_ABSTRACT +#else + invisibility = INVISIBILITY_NONE +#endif + + /// shuttle datum + var/tmp/datum/shuttle/shuttle + + /// dock width - this is how wide the airlock/otherwise opening is. + /// + /// the port is left-aligned to the width when looking north + /// so if it's width 3, + /// we have this: + /// ^XX + /// + /// if the port is rotated, we are left-aligned to the *direction of the port*, e.g. + /// east, = + /// > + /// x + /// x + var/port_width = 1 + /// offset the port right in the width + /// + /// width 3, offset 2: + /// XX^ + /// + /// this is needed because port alignment must always be + /// exact, so things like power lines and atmos lines can be connected. + var/port_offset = 0 + /// how many tiles of 'safety' extends to both sides of the width + /// this means that an airtight seal can be formed as long as the dock accomodates the safety region, + /// even if it's too big for the width + var/port_margin = 1 + /// port id - must be unique per shuttle instance + /// the maploader will handle ID scrambling + /// + /// * if this doesn't exist, stuff that need to hook it won't work. + /// * if this isn't set, we'll assign it a random one on init + var/port_id + + /// registered shuttle hooks + var/tmp/list/datum/shuttle_hook/hooks + + /// is this the primary port? + /// if it is, this is what we align with for roundstart loading. + var/primary_port = FALSE + + /// are we moving right now? + var/tmp/port_moving = FALSE + +/obj/shuttle_port/preloading_instance(with_id) + . = ..() + port_id = SSmapping.mangled_persistent_id(port_id, with_id) + +// This file is WIP, and is just here so mappers can start using them. + +//* Movement Hooks ; We don't allow normal movement. *// + +/obj/shuttle_port/forceMove() + CRASH("attempted to forceMove a shuttle port") + +/obj/shuttle_port/setDir(ndir) + if(!port_moving) + CRASH("attempted to setDir a shuttle port") + return ..() + +/obj/shuttle_port/abstract_move(atom/new_loc) + if(!port_moving) + CRASH("attempted to abstract_move a shuttle port") + return ..() + +//* Grid Hooks ; Shuttle manually moves us. *// + +/obj/shuttle_port/grid_move(grid_flags, turf/new_turf) + return + +/obj/shuttle_port/grid_after(grid_flags, rotation_angle, list/late_call_hooks) + return + +/obj/shuttle_port/grid_collect(grid_flags, turf/new_turf, loc_opinion) + return + +/obj/shuttle_port/grid_finished(grid_flags, rotation_angle) + return + +#define SHUTTLE_PORT_PATH(PATH) \ +/obj/shuttle_port/##PATH/primary { \ + primary_port = TRUE; \ + color = "#88ff88"; \ +} \ +/obj/shuttle_port/##PATH + +/obj/shuttle_port/north + dir = NORTH + +SHUTTLE_PORT_PATH(south) + dir = SOUTH + +SHUTTLE_PORT_PATH(east) + dir = EAST + +SHUTTLE_PORT_PATH(west) + dir = WEST + +SHUTTLE_PORT_PATH(two_wide) + abstract_type = /obj/shuttle_port/two_wide + icon = 'icons/modules/shuttles/shuttle_anchor_2x2.dmi' + icon_state = "dock" + port_width = 2 + +SHUTTLE_PORT_PATH(two_wide/left_aligned) + +SHUTTLE_PORT_PATH(two_wide/left_aligned/north) + dir = NORTH + +SHUTTLE_PORT_PATH(two_wide/left_aligned/south) + dir = SOUTH + port_offset = 1 + pixel_x = -32 + +SHUTTLE_PORT_PATH(two_wide/left_aligned/east) + dir = EAST + port_offset = 1 + pixel_y = -32 + +SHUTTLE_PORT_PATH(two_wide/left_aligned/west) + dir = WEST + +SHUTTLE_PORT_PATH(two_wide/right_aligned) + +SHUTTLE_PORT_PATH(two_wide/right_aligned/north) + dir = NORTH + port_offset = 1 + pixel_x = -32 + +SHUTTLE_PORT_PATH(two_wide/right_aligned/south) + dir = SOUTH + +SHUTTLE_PORT_PATH(two_wide/right_aligned/east) + dir = EAST + +SHUTTLE_PORT_PATH(two_wide/right_aligned/west) + dir = WEST + port_offset = 1 + pixel_y = -32 + +SHUTTLE_PORT_PATH(three_wide) + icon = 'icons/modules/shuttles/shuttle_anchor_3x3.dmi' + icon_state = "dock" + port_width = 3 + +SHUTTLE_PORT_PATH(three_wide/north) + dir = NORTH + port_offset = 1 + pixel_x = -32 + +SHUTTLE_PORT_PATH(three_wide/south) + dir = SOUTH + port_offset = 1 + pixel_x = -32 + +SHUTTLE_PORT_PATH(three_wide/east) + dir = EAST + port_offset = 1 + pixel_y = -32 + +SHUTTLE_PORT_PATH(three_wide/west) + dir = WEST + port_offset = 1 + pixel_y = -32 diff --git a/code/modules/shuttles/shuttle/shuttle_template.dm b/code/modules/shuttles/shuttle/shuttle_template.dm new file mode 100644 index 000000000000..ac947798b71f --- /dev/null +++ b/code/modules/shuttles/shuttle/shuttle_template.dm @@ -0,0 +1,143 @@ +//* This file is explicitly licensed under the MIT license. *// +//* Copyright (c) 2024 Citadel Station Developers *// + +/** + * the shuttle templates in charge of holding definitions of shuttles. + * + * each can be instantiated multiple times unless otherwise stated. + */ +/datum/shuttle_template + abstract_type = /datum/shuttle_template + + //* Basics + /// unique ID - use snake_case, must be unique & stable, including across rounds. + /// this means hardcoded ones shouldn't be changed willy-nilly. + var/id + + //* Identity + /// Full name + var/name + /// Full description + var/desc + /// lore fluff + var/fluff + + //* File + /// absolute path to file + var/absolute_path + /// relative path to file from current directory + var/relative_path + + //* Functionality + /// our shuttle typepath + /// + /// * yeah uh you probably shouldn't mess with this unless you know what you're doing + var/shuttle_type = /datum/shuttle + /// our descriptor, used for cross-interaction with other systems + /// this should not be a cached typepath, as opposed to a directly made typepath + /// or an instance. + /// + /// * because we intentionally don't cache typepaths, anonymous typepaths are allowed **and encouraged**. + /// + /// typepaths will be initialized. + /// instances will be cloned. + var/datum/shuttle_descriptor/descriptor = /datum/shuttle_descriptor + + //* .dmm + /// should we keep parsed map once first loaded? + var/cache_parsed_map = FALSE + /// our parsed map + var/datum/dmm_parsed/parsed_map + /// direction the shuttle is facing, in the map + /// please try to map shuttles in facing north. + var/facing_dir = NORTH + +/datum/shuttle_template/New(map_resource, use_dir) + if(map_resource) + absolute_path = map_resource + facing_dir = use_dir || NORTH + else + if(relative_path && !absolute_path) + var/our_file = __FILE__ + var/our_directory = copytext_char(our_file, 1, findlasttext_char(our_file, "/")) + absolute_path = "[our_directory]/[relative_path]" + + if(cache_parsed_map) + parsed_map = new(get_file()) + +/datum/shuttle_template/proc/get_file() + return isfile(absolute_path)? absolute_path : file(absolute_path) + +/** + * Do not directly use. Use create_shuttle() on SSshuttles! + * This will not automatically register the shuttle with the subsystem. + */ +/datum/shuttle_template/proc/instance(list/datum/map_injection/map_injections) + RETURN_TYPE(/datum/shuttle) + + var/datum/dmm_parsed/parsed_map = src.parsed_map + if(isnull(parsed_map)) + parsed_map = new(get_file()) + if(cache_parsed_map) + src.parsed_map = parsed_map + + var/datum/shuttle/instance = new shuttle_type + var/width = parsed_map.width + var/height = parsed_map.height + + // make reservation + var/datum/turf_reservation/reservation = SSmapping.request_block_reservation( + width + 2, + height + 2, + /datum/turf_reservation, + ) + + // create context + var/datum/dmm_context/context = create_dmm_context() + context.mangling_id = generate_mangling_id() + for(var/datum/map_injection/injection as anything in map_injections) + context.register_injection(injection) + + // load into reservation + var/datum/dmm_context/loaded_context = parsed_map.load( + reservation.bottom_left_coords[1] + 1, + reservation.bottom_left_coords[2] + 1, + reservation.bottom_left_coords[3], + context = context, + ) + var/list/loaded_bounds = loaded_context.loaded_bounds + + // set descriptor + instance.descriptor = instance_descriptor() + + // let shuttle do black magic first + // instance.before_bounds_init(reservation, src) + + // init the bounds + SSatoms.init_map_bounds(loaded_bounds) + + // let shuttle do post-init things + // instance.after_bounds_init(reservation, src) + + // set vars on shuttle + instance.template_id = id + + return instance + +/datum/shuttle_template/proc/instance_descriptor() + if(istype(descriptor)) + return descriptor.clone() + else if(IS_ANONYMOUS_TYPEPATH(descriptor)) + return new descriptor + else if(ispath(descriptor, /datum/shuttle_descriptor)) + return new descriptor + CRASH("what? [descriptor] ([REF(descriptor)])") + +/datum/shuttle_template/proc/generate_mangling_id() + var/static/notch = 0 + if(notch >= SHORT_REAL_LIMIT) + stack_trace("how the hell are we at this number?") + return "shuttle-[++notch]-[SSmapping.round_global_descriptor]" + +/datum/map_template/shuttle + abstract_type = /datum/map_template/shuttle diff --git a/icons/effects/effects.dmi b/icons/effects/effects.dmi index 0dca1a9633c3a563c785b28d666a54dc7cbb2686..6a7bac7c7333516350e26e1a2287edba8c394aec 100644 GIT binary patch delta 100727 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୸GEF*jmjwyrV#J$ipMq@+!dZ=7+m77DwX z;^Qtm0a4`C+UZ|rO9&23Ow9&5Iny4|t9ftU?CixA?6Vg91R(7hIJAWVAk&)3V5=J$ z8;?l^D#XkVB;T4sbfFDkQ+AX8yc1YstL(o#u^szY$e)L6E8xZr8txK=hsNR(->MZS zjt5oyr!ec@J@Z411%oghh`nl4eyV7{h*iCpbLaq*mh9xKRsR zzQZ#kZvX*$VF@=)jIGSg@8KSKj)s;rm)iN)QxjmW2aRRjh^40E zGzNT^=7lXF_!M!A9%(<5D}Tax1l-j(%MHu3#Y{oXqnpy_)_&l{9|tXQjp3#9CK-9g zST5aEM$&hK&Z;5b1CTxXXpVgkm*Mw-QtgqvwA^(o`A0MEwg<8Tw6(RlVF^^R7~c;) ze{{Y}+bgfZDYB~6r~c+&GeO}nrCUpeP7EL16Oh_z1SVzrh;2x1+<}~XLK{sAyA0&M zRxunM!p}~YKiHL0JD%lV8CRI)zosM4WQu=gH17TTlmDkB;J^Ir-Ne6b-`3vZ>P*Jm zx{;fuZaaHm@nmDEcK^6g&`s@;C<9Z}7&A4itcjv7l#gUm@@izkabW4QG&f%ggNGP& zBhn^_t2^QE?|&dq==azcrTAn!s<&9H71zHmx-ueROvy%086ijIma8x9ynkhIv>iJq(RDdW_-W$qbOPfUfgWxxF+nZt_oLkZrdvO7{ zRDN4b6yc0emJ$r@z)@fH>A@Z|IJ@a3$_S}GfRY#cZHSUD+X;6T!l#FtZMqV%0tln( z-z%|$jIi=!^5me6p3ho8Tj$zFyn!`)_Us|E(-osfzoEo}1mROJc=l*0h$~h?V=k+G zF6(vv`~WNCEekIG3TKpGHUBCME~OFSMO*DbQ+vSO=<>J8qs6b`xU%m|q8lW{aTEwE zV!Kzm(X(x!%Ywvd*7hNSAX2_RnoBT{%IO>;DxEG^HuxM}jalP!($O5z#B3y|EGc>V z8Lf{8hb9CJ(2dHi{LtoN6RQ?i0L+x6%F9}$37wIz8WIdP|BXYh9P1n5-X|eDPC}`L zZmln7Uy?oCr7zK?vbkI}_aFO*Sd-=`u(lvP_Gw9*-Y4~odSN$g_&;6Lc9M7*WG_As ze&_LH9!*x{VCmvh#NBy15|PO6eVE8h4mV9(d59~7Ab|VK-F9j6Vj;yHg8^0DCtAF^ zV|t{5tyEQ2r*}-T7LDc}v zF&pe-B{6ykcz`^}g=xGlXXqn?5%jSuX>X)k6|`z3^*!~+m0u&VvI^#6T`u?LQkg3e zIJmYz*&uEoJMUKORk&xJg~jME$o)w*R@mdZ1c4*n;2pviN|Z$*hfjc?3SKyS^x=JX z_H~Po7LIjApHK^}P!MTvK}D%Cm)L*w=w5`ho>|Rg648}A;hoY!66qTV!tD#zEp|{% zPF~>$Wn>I)%nAI@1T;rL@ITzyG826r5JR}cZj#QBnJnkUD+BQPCs1_#)~%$MSwDdQ zyfjIw$ui}?L|f3XAwzMlV#O{@K zVs9huDj6ln*{bfDEKc%~LFaa_f`y?SGf{MhbdN#E`wkM(FdV`g@zk?P$On2mq-PL> zOUb;=+iYzgal#VBpF1^;58N{Im*#mKoe<#T$vA5v_99u0Z!5z`S|dN9+UD|Irg!So zrxJMfZYQ379o^6T8&>b&A7CzZw4&>}l{64Q8f)VsmTjoV+NdCNBR3V9rc)!oj9>IU zZwv!SBu3Z(ry>^%3c%UyhM%GwQgY9$oiS==$5&!9-@^ll8QYM%zlEqR!{qxY=s-bY)^m`x~H08yA0+I0a zs<5&KLi8beq^}UMh+wd-v2XV2NEBH-V?f_?G{Wk0_s~6hnGTzM@g4}ijK)6g*8V|H zxrMCtRHDpdw45F$5ms-js*-RpsV}0@@K;tnHBy{OJ#eJQr!#r2Br3X0(eTlKUKNPC z*2)C3As1eLBLUgx1)JAKFlHm#w;EpU)TqLJNqYva^2fZv!-*fH)mC;4PNHfEa{u`C zs|Ze)gJ{)eLt%pWdwLlc3G<`!i0Fnr?iWhf*^{?&WR^Abp1mrc#J?&0PHCXPkY1)V zHBHuSUo0Q|?MV0XWAtrf>(gq-`wPF!94IxOU*~owrF*dMH|x`QYf6^2Q&Zwto#sgI zcu&sl{E?yBf)AbkD?RK_f9m`aDVgwcoMR@NC09`^7~6Ou-Uv51V66?o=5~22wCYg{ zeJe?D#6=aRSkZbWmm<(uHJSI!3jHsVDkp&M>VC`HKje3vF`L+yE8Xm*8ht`4m~xsR z=9*r%^)YkK9Sx5UOkVpH8ta}&pv^J)BAi8_J43&y_n@2yZ&5Tfxf@8X24ptS_kl8l zLg;n)E_Rq0v`p*57@KAXetcnDvx17;&VBe$1Tl2VH7fJ^$wIysj-Mi!)1PaPd_Ca^ zT%=b;O0)?srS-;KE(*RFNK<3Aki?MrqQ9aM_3+-A1pKG-36Z`Gc)ZcrdaA()G~Ddd zzZT(t`qJpdHaY04ZWDSY;u#Ggig+(_=KvK_PP97vgPm97zZiLZ^n} z_}}y;cJP58x^ua3VXfSCpM&L9u32>gj>RX3*PvU&2aQ6J;se?ps;06NQfGcc;9Cj1 zbU7j+_PlYWyU+^_9`|3(ZVRr`=1*24GHz6k7w-V1+Pw#HT4H0qTDO=yYYq*#y3pg= zD6|ITQYq2cQf0;3PPgTy-9qSawW1P-DGRo2u)xe&cZqAsQ&TwAXOnkOL&{w()8)__ zq1ly%Y!JCO$CVXf$kYM=tH`1Ggfk)=q6(S3wK(TH)nmkHEH=G}N<|yT1}sBwrUhsd zwpT>+;BIO+;3>6|g;e+8o$r5|&7OV0$mr`WbE#2GSU_4w3`8h@s4%aTCr=z+P#=X# z_R$Mlhc4`gr;!`2pI`FfJ0KmhLNFjyQ0F0WO-~@hNKqLF*kK~~h;Nt{{_a{%KS9K#h+C>so1|shnL;yZd#Nrw9*P;?PLeqceb`UHME3;x3 z5&`H9AzzRX3xSqydKrxs1Urm4ivx8URHLfB?&_FKu}7EykFrN-bh-$Vb%3T3DE3=+ z)wsVhTxA+K@a{Wk9V~rW{JP*B*9`J)&VjsyOss?ZsMesRk3v(={GA~k=%q9 zB+X<9K+NxOf?Mr&m$^@Ft27|x&%L6q;lefy$e+hHJ<^c_3w z^TaMzem${pzjYDtz#r7W_iod7lWPu4_l* zOqFT8DfyX2V&UcA^GwKTC{!RLGEz+Ji>r`Bj13!61XsJxCLoMij>g*3?ykNO7KQYT zjO>c^Nh|cBhWqyiyf~UFn{@^;e&l-dSAs3U^JG7vXq?kN$)~k+t5fb2-0ROgyEB%< zh^&4u+0L5yn!?=e9ME6Uzjwt#kPZ7rCZ_Ir4Ut{>J2{^NE0EGIycZb})&P7aviCDH zy-@hPFims56&`-d5|^!6IAhDUMn29rT;%%bv2Nh8sl-KMF9pq-7X@lnE2Kmxj4>8~ zdVsOO7GBIp6dcFp7AgN)mv2h4rXiKmJQx3?Ki9p-Z6~*Oh!-DFNuJbgkLk4xRA|7w z2}Wtn&7Y+C6lxXD%qn=g&4`u7l(Fx*s< zVGPn7XBX^ydCSjwcTB+YAGs>*XSpMf8RwP{|{r0p@y&AES8oA{^R)$6_6T`KU=ENAa8w~m|} z4Mr(n9-%ElrF{XK+3hu%Uvju!s12>jW)#vJZK773cqWBYV2sH_{9Ns>UYa0*U~<>u zXgXwiGr|wBIH645pV^@u_Yuv26q8QLOIDifuq3ZoG$TGEEsI!Z(IBfQ)fhiaUJVKI zp|m;=NCtLr5RwCVj(Zg}gd6dG%TYb#8MRyK>w_e!A?}i;HYy)L)HSuaTwWw-zN%^{ zm&N&2lV+w(jUPeX{2M8JUWn1@&P5SnuwGQddPC$kpQytoCU$4k=ouY-PD1RkCvpDc zt3XUhDy8gp_bPw)F3@xQ6yh=8U>A`2hycz;=W_x*#Sccs21Mjwa1R2MSE4y0A-sA8 zS~bB&MZE_}TE5gki_7#a>C3gXsp5+rs30nKemkU8hS?x#mB3Wv_gH|y5|3NsC$I_Ow-z`CImM^+6tjH1QIe%Be zr|^(6>WdPz=*n3@L(xyenPRV_b9PH}U)MP%&kv8K2{_bq7!?PMk=P;VYIa_h#kunr zW>=>uctkJ2%T)qPQhz*i4ww?jOAktqD>F*X3XdsBkfSFU3&uK7`xTTssBRXQQoj2D zbx}1km6DAm1dqVhi|-ys=i&Du-C+-lRa&xmD9Kj6&f?iN_=kvfa{?eYd9}pjn*jVp z=W!a~gSug=D4Ve@6ROuOgv~4>;o(D@W(0@Gqcp;yaPK^$T#yfcN~MfC>HgzBgB=#A z0J=G?*F8s+#o3*f`N$^bZ00%+df-sZNSFslfET3L#kf%u_rhEKjLDlpxWjptvY0iW zGFG^uSh|_67}VsnYu+qf!@l8mX(AW69U$HoDQ9cH_53non`8d8!10$1wvVMTRAe5` zNKq8u0sQaBOmWQtQ2OP!+Rb2=uIh9{B=8&{%dVjviv01qLhrjw9#mGJyr-;Bo(zPZ z);MAUev!ScYN<}B=g;42uTtK7AaAcS@CJj6JMSNy{&TDFGt_wz2q%9oio{($G~N;K zhw?y<>muZ_3skWG{5j`M)|rz0Fvf$Q?&=GXag7EHGSEjU(tm$9$!6}&1m=oHGnc`y z=;JF^tfov0CxI!{{Pp%r@^rD^5^N3xpv&g$8G;bhS!c8`W#-d##S+}Rg(+!iEmTOS za9VI-wawmvt7Zq=V0Ie@q3`$p`6ZI~foa z895ty3x~LyfUY!^xgKpo<)&2LVxzL6w9xDmR8qRAJ?~LTs}HdKU=3bNLUsOas90D& zK_u{6S-K)9P``oUIFcpaY32x~MMP%g<^=2<818{847_G5l z?da-?4Hx1?=w+*@II1DF(EE@*&5ufKWc_!&5za|(h#(9k&iz95T7*Q#xlm6a?Snu0 zQCB?1J(vGjiju6Io)WeVnb+64iImnGee}43QYBP*UCTW@zD3;6@YLOjO}*KgBmA5G zy_Yvp^0$|gy?nPEPcxgTp){-M%)1>6THD+v45PIt+r$-hBr=e4Gz6UwRXap>kA1gM z$+-`JUAS$++tIW0reW+J1B0t#@>;$~_0@o0u>tbp?m(ycN&Co{Ku^c5HZe?4>zF#i zkPx9XRtFhuts{usCy42D9i!_574(o?gpEx$_qfl2`+6=~9a`1U?5eps5}EI1hVlNM zKq&|S@6{v%AgO$i7xD4!vu{<@RwC>OmeL+{q(OjpHU*m}W$oKANc*FY19<~MW?n3{ z2e|re@*<9iT2W4}D->aYUfbDufw(09Qd@P46%ph1{&DL{Q04(jD6b z#@uHSiM#pS!tJ?IR$2ct22!`~PHz#!@!cHJBl~EqVi_e5s2Ll-XVq-l+?!F>UhHh~= z&97YtPNgGp11dR@Kt1xQ>&v4h@Tuhw;+=F{-r2#!*PdI>&N;%ZUFe;!g}DGmd7gui z=%0sp*c(-z+ybpdUe(D%LKy6$zZpxbC&v+|{X&3`Fv& zLW*0oROHp_K!t=alLD>xajh_kkE+d|NZPR%E=%bM)xq$eBnXU8?$OZ^kP$CB4Gw0> zy1FPSV!@JYf;vyXcX$7TVDKs0rGxN0u0ptQ1_rx8n0g+C4a5Y91Ud(^1D6Yj$jNiX z#{+PG?Yy$HV{AY3^YZ3un-B)O0yl=b6OOPF+!a%=z|C5d6t8UZWTBvdq0Hhy1u*GH zkm8BtfauOFB zT^i#5?Zy#R=sHwy<&5B?1P3?WY}Lm5;{c!NgXp!NivOD+o}NJ7n;4;{A7)8v2D{F#xWjf#x;4CgQa~-V zZ@$E}h^|^t=PTTJBQC&GBC5I@kq?}{?D~aGv^n`Hb-f0*U3r+B#b77*!r*C4=%H!NlWz#IUBwpC!LGHZI?Lq3uw zK+KVqkqMniM8w6lpaVyd0Q_bRgtUMYRy?WejmB>CfPMkqG6i1yA0V5dNXwU1MW)Xd zJfWIR)5JBYiU+BCQtasjwBJu5-SQ(oy07PJ^T(>XcFB`|f3*r*_>u&pBK^r9&8s4T z5_H7%yAld$%3y=3lMddpL*lh!YqoC}Av-NRT zTI5&zz9z_qS0X41u}`1XpJ3ipk?Xetq)}-@N!J1;`!C2kx5DD-Ei~io3KoalXLo8o zjx!*JwV;-@XSWC+NP{M=SEf92bBfUO!z-!d-*s9~iIy_++L^bwAKdD8^DpVPq;(!2 zJMovl=XhK97iZVdbtfMS>81`x<&XNg9qHTn^2p+wqU%zYz=hp^g>03al;FjCe0?B$fx)p=G_p{-kXhr@xOikv1eaw)=YkDSk zYq42`l`qUXwXn*h%n2!Z@XToMX22sQ>D~GLJ45Tl?%i`JX*~KAwU`g4feM+%nKspyp&dUCPd2XNecBnu zP&@O>Xd^GaT<)s%omxA;M`#xQ1AT!FrvbvH7VBmiy)1@9>lDgu(o){CWsKK%L7+g} z9b$EnR}Yh;FfncX6?X5*@131f>*%Cd+Q;7E5&%L6fq!qgRQktNjV>o~W#=&L?)yzl z=HRA-HqjpvGC|@kZhBh)q!UEZb69RXV)j{IMaLx#$P7JV56-5)-cyUjTYzaot&YP2 zMhmD&)fXX1wU+3H-hZ^1Yg#7&z09v$yLbku~S1Js-68h*G-%GOkyl#{Q%q_xN&)*Pu@4!35Nma1*^_mt zn5nQAt3;GgTQcYTr;bxmHbUexTw0ZiCcO%$gr=#JLu}Ny;1-t~6NN*SE`C?l+S+<^ zMY`|yh|UiHPVx|@XSEqbMZ4PX1XLRU(!ohWDS^pkf>7YY?R*Xg%lc-=dDzF`H!!%S z_KIOK`TZO67wXWCxUani9VZ4O$#m3f5d(e!>z6H?DHSY$%<^RwZqYc1djRwGS!6dp zChnF1s0^PSsE5%$IDbE1R?zF6;{Sax`Z#$!5NweMaq)QBgD+7LJQd7l1i)2o<7(u`)O`wEs_&e4e*Do9} z?K-`gN)!_gs8Os)M3&=MzLHpgjr2Xm3aqk=AB-ul9~$sIgW7N({PhEoc{Mp%oey2+ zj`rZHwKUcP=&!?}tVlOWLA=?XtHHs+C9b;7%?(mvWO#TRP;@|A$FZq>=wiDreF}#^U!hW)+M#SuGx+nvY{ysht9PbGs%Rf=H#h;kaS@ zEmC~RzxHz&N7*Ssq96D=MSt73xOVB=yUv(x@_1x^+0|UcQTIQx=L++Olgk&I3vBG&sGfqxKFaku!HAatd zu({lzr=~oxLYly~c%ihB&$(GBq=U_I0INccQjGi@@AaY^H%(WqMEqm3ep+3NUKryp zGYZAR5tvHsY;0~X=e1v^OxGG{wvoRs*rtY|%7Y!_aIwg?pPjj%)|oCG17-hqcxX8^ zouLMN0yMy?Nb_b@;abB;VmbSZ28zge1g#s<=#)FJ5k-*gF)M8s8a`AaG*ZP>LFHuadT`|plo#VW#O1S4LUfeJxKh5&k$DeskJRih6g4Z*NCAKWY5(EF&z}O2iE-_CGX)$Rk2eYSY!cDCBgo$O zbVB^)N5mvAg6hy?ld7r{$cM4~2v+U*n+XdP{qul2$Qno7!kFYpy|6nANOk|P?lC77 z{pb#XV#}c7k2451CA8cTmQeT}T1HvoE=s&|dfD=s0R_Niw;~D>Mdx;~07^cDwrjf} z&eRK~q{ZT)ICSP=)&On}AY|7QSyw0Wt_-wc9Frt) zwa{fo5sufbyi}@&kQy+T!Ind0#K6}RS6@;&N?hQeuyJA-)!a83I5;E)bxaO%x5BX` z4w!#8w^ppp#Rxyt#+7s()JGl~8ke-X#{@Blus+0P9pYx8i4epI>_TG|<_eMt@$nW; zkU$0%Uu(r4Ge`R{1QdG%NZ4&074yS(*^M9-OQ`0-1Tf1x=vNMdk_9~f4=FSLD?|dF z@GS>{#-jhoEA$@zxfC>Y^R}A5WK%=<9Cu4{a#@TBIZ&^tb>&Ve*40l){4G`1pJ%0;$Tj;d>;!4_{zTUH4 zOiW6d=mCWD9B;f5iBGgL*9Yh{AnAsNG`8c#$aTF0-2XSKHLG-ys=IKK3PyZ}44UMc z9;esJzXGTBb8926YEO?MLy-+!RI%dsRUd=X=mHJfNhhe899`*3D$$h$VbWt0TyANH zq}gd?fZs{%d4jMreM8yet_p$`_8 z_W{~Xre96^N@7~6HPO$h(&5m3N6YxVbk&x?r{te2$ZJbObNU;|Qw)GxY{&Ckf z%6q&gDee|DPG~Xqt{o60Ovv&DcqVQj&a>@xhU7~M0h>&ro0x=t)xlCKQS-Nz5RG*# ztnf^lPM9TFPg5WnO&DPKK=SA$)|UFdSj~FO&Vlaiqe_z~Q4WBu|6dD9mO_^_Rl8g% znQA7+v5mK#K33>A^(myig*Pql(=Xq=BXXD@N1mY&#eI<*+#8CD6lX58)tz}3<6^R; z1kc(T-&nmSP+@nr(Sy0|y#Icu$4?Y30}C*E!rZE2=BpAVot)2Kc4i39xQ)#u@^IG`p>VAxWdGUO94S#Oi zuU_)V{3~^;VM=xO%cs8fXUi^sn97elLryfdsN>F^{ABU$Z@Q79%RsA6$0Ke(Iuab- z$tW^gDqW9aG;fb4y$o~o>`u#}!2m)CG+{jgi(r4uN96Smz9u!rDWRhC9R^q9@PxbJ zTy;(=wNd3wq0E~fM^@e1$DyGT(+AOtGU3#X#GZRh-bvXI=K%ZVwP?%ieMIcnXId|? z`g&^>FDIyb%vbk?lFXGe__gMG#e(5KXQMI)McXYL9C~4|eYIM`07@kz=4skIx>A*Y z)6jJ6Abc(I*a3jH9zRV}5IKIx6#C|PC=@S z>hArElJw4Tsjg7KMjw{5|12i1;jU<8>^-0;nX8FIvV@S}?I8cVg->0>UZ99bziEJU z^00se;!4uZ-2V-8#_6y$<3(t~v)~O<4Pclu9FsIwljPO1j8|;~@9-`bXLlkH2bW}2 zqO`XT;I#r=p_bsKyzXyU4cH#+Wc<2YmsTSv3|WS_CDT%SA$s}jV@6Jq!)Yq|6%3IX z$b{aYRBUExJhG1+=5{&Sxud@~o{OktqU0%rwodT(Y+Vqt_8Q|+IEL!Zs~UQE&+)*q zV@(fjWwuM~utNbmL_GCH#FhA*zyaSQ(~_4;Z46;vH3?sGF~}(+(e?t9XGmpqAY858 zsfce#W0@m7iR8>nVD4_FD$0rB-dp%H!-VI_{H?=0w>qPUB^xo)Y840*-T2C-<(+Oi z+k*sswah*MjJ%2_+VMSNo8*>@#Ea@&n*n?48IfC7FTD`WktCqNWPe&kFY|$p;x^8N zG-_tlekgUItpjxo5JNjHIXP;J8~Oe19aQ7|Z+2N5;MWKMYAf9*hh%{Nbnkskc5YW< zF96t#BH$EV@B1_ec6(fX@7lzYOQ8EbaR0S`d z5zeUhhwteo@pROC`l6)>#CzCaP+Hyv+XSr`4CjxFkMFNLo$secFTfZsaeN1Id$ZsI z!9qZxx=&)qgJS5?@mz554R>7Cb}E<}X}mIAIA7;lHYRNIAiq;9C1L+vF2-Yn20&ww z+O6%4D6GN+Tkl!H=3|07nfkAmuj0jDUZU|uoIvw}iSe^hDN+*XB!pzjV={V=Fk#kF zm9E$YF^O%Ki5J`>KnetLsVj)Aql;PJW9Ar#CA4W)C0#*SJe$VKxH6p5tG?qt2Py#x z5~~$5$&b|#P|E3CJ3NhAX!P(T0)=0sVg95O@xvl>iFCt?i^Fv})ARZwUwaxtMm(U| zQt>bfCX)&WRg9?mrvHy59*(b=4&Jo6Y6y-yBoVB^MIx;u0qFY}hBof9iTbTmqhcpA zYi{7ReVosVC-}gD&>@kpJ6szP6&Ot!Exx;`g#r4Q*5bwYM^|<|Lk${h_sr-Mnx;U7 z=}=19@xNsUjZW>t72&q(feKx{VFTs7_&Z+TukSho*X;O}&COJz+!AQqOu;0YQSz6w z7|Y~em&SKdyYnddCv4iaC|KGcs}v3+8D|;ga$yXs48;kyvJ~CsnUOjet5FW|V~50! z$6wJNod+-nb2XK-Yl!})2N@wa2~bkD@L-RlCZqZRE%#U^@~QUWQde$17uc3@ zZ)>>AQKV%oc|YVUAC(A@2mBMG%(d!|W((r#VHIc{CcTyHqP~cg4XPZg<0ti5zfF0u zD7$^)Vt);9?C_-Z>%u)2ZDp6`HEai}cG%zC6aD(t=8NtAX0FSYEV7RNe(7G;C)L5h zgLPN!{*Cvhi7T#No!)%9?ijT`yB4GE#uJvr(MXMY6-VOsBw%2J<^ z+NY7-7~`-Z@;Ky1J;Z)@_*oKdRJ^y4$Z&~7DHq4(8Reo~6 z-r>U{L4iG*k?&`p-~JKzf$i|{urm%Ur4WS+D;o|MzfIo@g~Hxyl|Ei-@4uC=S1HX~ zqWO$ zhL*yE)Sf;w~naT-+xVD5FH ziKrTyoD5n&Yr_<99(MOuuQhDGb0N` z;l6-;lU^1s70j+x>9e22)cba?={roG5H4VQNkyZN?^-_AA$@ZVJc8((xXH;8n2Qzx zJ?@I7B4M;EI}KLx4k%UpId|s{9YTOb8A^6^Qqpf&8WXtF?A4T;ya~$Ds3fJX{?0|C9LU)b#jjR=a)j zRs+O0g14*okNC(vi<$F$;n!Gd%aJAZ%9Xz(LLxHnw^8L(vzV)Hsxqx+T;Hb5H1NE%BY9P-~QqlhOk zOU0l1lF8FvCel8L_~5MH*OQY!!B%Tito#H#$?}}kAjOI+P(#^o=lpfYbqS61ST=M` zikn8E6#Ryyzj5R%LPu6Pckwz=yxB#_07Fac1s{0}rZ|{^2*K1_-{KKnVCl0h{UK0eFV1c9*A7%bY~vPSej{hM9WP9@jqAyo zmMU|Nq?}o5XfjD5Y!3%jSv-p4#*&yDtZ$mO7%rDRiMBGp!#=Izxh>K1HM+FpKgvx0 zE}nJiH#BZnSB`F;8`xUpnpbgUw9H~XW^?;u{Ig>}RIk6Kf^T9tB$9`A-rUy@DWMlq z1)LF9FMaVMx&0nFj4PV#wv@AH?{{+s~%C+^K!N+W4|R z-~>byn08=3r%i@!Efk4>ASiI+ZKE(If)FhUFu!dXVKpI@s;5Q9iR*>!jklG77&p%} z&1plVgrH6sBJakwgYMY3OvJ5D`&9Vf$2!LBmQT_T$0l4R$HY4Pm4-&;0Hbudu9?p7 zFxzr2>t~T~+`^ni{OZB}Yk8yA?K=y19T9#cpPPK&@#dxK>6$N{KSS=A9qVgP&?FuP z+22$?Jy4a+pOhd^Z8U0r5|y@u#SsVNG5V)M>0WB;Z_ulc5Hhq_;BJ1C6J{&dhtKmW~@A2GubL$Ja}guoazl`L^3RG^lSO*%Yr)iCHWb(h2c$#*M+5f|dLEC~huk5>Azi=C|dbjz8k)=vWVL?X47e zpo}>;!kN4-B4DZ1+rV;nvQ@lyEbVRj~zaSxQF8;h7_Dn zS46H8k_9pqL;_KbT;)Maow zjZ(oEA0;P4d}a^-nPU+dAb@&gRb9v6QEEi&YOoZU?zqCnhbPgifyTjglR_ox+eRf$ zAbRrv2L~%Jtg%eQGPlINrWdgUr`k+GS#$ayNiZi&fQD)@3ldbI%IJzN)!6v@knXv?Aa zBXymeoc3tS?OMf4ht&=kJ0v(U^9Aqa7sn;`*doLU;qt(9C#LZN?}7Bgw5`4+V!KvG zB~og>6q60X88OtCUV@&qjH-L0isP*6``?pLM~Wj$dwK-Ege4gA*E`XN6CLP)3GS8W z)`$T2qefcjHl|`xPe3DYTaR})pUbWKkrSKLtA5Y6!I)l_g>3&j&JFx4$-CmJlHmJ= zbhlM6?6b0H4OF96`ZX?a8iMZ~M}$W{s`#@Nol%GyygH*uIx0~^`lb$p9mrtcLcE|b zJa!Lzz5l`ZE24P=v(|v}sz^_nT=>DZg~x}x zTJF!pl+vvmH$?3wT<$%3Geo^qwO8PZH+;v>g6%uQ3B;=kf zw{`Ms-7onp&Wak9sSH%LMW9NWJ<*PS$NBRMGJ(0cSLaY>IZ?#R4G%o%Rrky{rSOST zM4ynQXy?h_FS~=^rTcz4nc>%WaS@B7Ou^q^ub`R5f{D*b^@!SF^{x*c+-HGp+Q@j* zAYNE(i2Q&cR*}FbtzKHGwoy(uqEU&Ur{^hFu+tTH)qMK&DkpWb>ZVOuq10z;#&*H~ zfI-cnkVBu))h#JON?-}81l-F^Q?3Qm=wMw_5Q*=`po6&E+N6IqmTMhG-^RgxhnEh_ zhO$Fc0~wl0P4S|u1)xVC;l(o%d@s3GP8^YLG}g^MVU~Y9HQRwOE}k8D4KWe`8t}ku zWqzH}*n~f8B?4WR@#5p~y;b0V$vi~o!!q;-%SZ!=%Y-FvX+w<0{t4O9Z@DdQmJ_(< z889LtpS!_ph5I_BdyvnS>rY zZ<*w!7zka@TNy)20I4@RYUbLtF_#rY-VJG@++z~%csIK_YV=uz%~*;2^tI{1GI>Oq zNF&CpeQ>lwHCn&=^f74RAP>;t&?H#TI1!x;{TdlUA;C6^^qz|Lf={m!F)A}adlLim zi5n-R4x?3-JH$P0&!h$J@KVo3^YVy_U%2*sa$)&q)Yk^sZ*P%|$>c3Ti?q5TJ)KG` zrex@h1-e%e-}Nhc5WfKR(2>0C7FXplzeE{l@N{6emr;)Us%wn;xn+ZfNu+*sS97}6 zB}t4_p|Wa@b2#(Sp@t!Ie4bCo;q}Kb+zg&|{2Z8`n*$XFU7TAQ!A6p{I;z@_NuT&}%+^bO8u0c|TBrE{1e;Wvh2L%w}xkA^92Z8=-)GXiC@V zeRGhMlsq#d;1Hn(?3J?EHB)|BV%z4-%~%ZhR8V*@P?PxPvys8Pw% z*H}ROPl8{GiSn51h&Ok&^5hYi&61G&u#3xWLI8zx4j-ut0OV2HZmY>0qnB+$0|h|q z92DsD1z+ZYFulg)&El6sG*s9BPaekAu5e(Szbp^^Tt0FPriXVR&d|q@c1uP6D{{Sa zwcE>cqA&Zbm2q@MXM-B@qznq@kw|fZdI|YK-pkL0Q0G5bT@fnmL0HaH;n9m1FJ`ki zi-^0ZM&9CZ?+>>cyO7$O)Z){h--0-^fqo<+D1~<1#R-y*c`&;Y_r>HO<)<5&dTBp$ z#NKE!d8A#FH3n-Hlh?8Q3a9#R0IS*@6*%%e&?s%;+0Jg^WWNR9bek*mZ5C2-uX*dy%-Xx+k1(5HT=K8(T`j}S=rtqwNOH94tq!1l@jNf=%Ks5S;$ z^8cghz2mX$`~UINs3;*@gi28;B9vWJDoV->4ax`^$%sQVtWqk-Bs+2i$+-(QQP(I#03_;JacgcJ{qXX<3^+ z0&l>01e=ye$4&#XHX9I}fCczs5-m?&FnA|4AF|wW1MbK-qpFc#SSY}C;QfQ>=>H+; zIJ=x{QxyLW=-DGkmYRiXBmc(z!oX3)bukurPY|Q)c9+UJgWhEYDLofD z&?0c5pwYy7)xzOV3bHZZYWf3n=L{JlK(j4amzl2`&oRxaQ?paJ0`W|G*iDah! zhS>2@SDq1wU;N7V$FMgi(bW`UzJ|2o1S2j!5z7xU6Pm==*V% zq8pJ7rw%JR_liMiO)j%ebLjOxughKL&SiV0gxOz2h|8pAWKic(+WKKouoYi0qrI2X z)yrS7@;AE>r!X;R>I9q>QZ2||!QjBvtNwOGR z{7?)gK!gNwkuB%+qs%eGtYOT%9)2bPH2(0~Mnta?hUkts0B=38@q$O;0?6XWIGIr{ zLB1&kj|2#cFna*i77@T1GG@U?#U7u38ik4$dE;M^LjMuJqIsal0T`1uG~bF7YPtx-rns|IL;=(;(ulVb;14GWfSc-2~PL zHn84;Bzs+`JAiji^F6BKRP`7uL0cCeh_;YDC!jdayaDf-E3-UNeg=4k9d;}%nwhU zKHXZ($Gu{BBw{7wl^s8v6x3l-6pU%w5jYr3!0+g4dlo?*+twdhfm+ale(3f&SJyp& zMxo>bS0*MRCZ;>O>~~kblOXNsB!Svk~Q*!juzlNTQp%I?b#T_AC zV7AV$WWnQ?C%jgE$HsfR9*K{#=tlI0c@&(JC0LRqw+|}EV<3e?X`0P|r{cSp-+J8$ zW85;2Uaw`wI4}B@3roO%tNc@(JukaIvNg=OT16}?X3cNi=+Zl6-@Hmq{X)*8vSJ{&kH8cp658_|)K4IG z2shi#mA4?|F9VGa4af0aD9><}ux(WFeecOB-gt zdMg;8B&?y_R?y=Ixd@o?+PYjlxIAhdwdl>yl*OPG$RR(49MjN5VdLL;z#tFi+h-3( zSVuf}LnEbLb{q%NXzn|Di1aePX33 z!e`~XG(~~*e*N8DkX5Bj$uNDp8fNOeFucaZM1L-q;99*tM$zzk&L`Ter}xtN_|w zjQFpy9VBW7XR1N-0;Pg$|87y;h`Eld$}7tt?i~1VlT|@4@TBC+S1Bn{IM3=Y9rRW2 zpI@Q-z@;`hK&at_TtT44~Vu<$H5v z1)PXqj4jn-{u*bGZMGjx%0cXxgJH~{kd_52Jt^VZWLdUHR}^E;<8nNMT2qBVjMS}! z2EG@=i2cy9pz{aQ>^2HC$b)MODcqmEwGUvH4|3uisN4>MOMU~$`dInjflwX%v{+p( z4-50i<#?}4aKV6rel$HZ^NuH>>XcXRdk>w_cF7RPRF5(GJK|4^f}NcqxnlTj7{h7mLv=Mt%b^#1g;2qag_{Wfk7f_xTg#uhz1^{e&Ci0474{}!DO&a+Hta81z zz^~`k41oL)6AP(Y1qo&gLMcwNWJ*EHZJb?$lX-k)*NWgByPwX4a5bRfH^(?Bnodr; zu=3IAlQI&;Wh(79en-a2aDB|;$q)HgOa_)SSV@x^p0!$tc#O3%#g_uBQ(`kqZdqog zQ|}^4cPIwrc!E>=VdJn07_aWE6tlgSP8iy-S#+4gJ@(-pu}^cDyYhWE(`kp5t{4H= zLVQAdfPpSpgrnqbNb%n*%x-RDdIwTY2ev8&$G*~iH70ac8aIO`8Anr$@2S>?pSGs_ z4HRPmr9p6|;+*M%wyZ!b{O_*d+13ot)-d=}{AYP|Her^@oz>ATAJ|NL~bDv#o(kPs56M%BuRgzrqkON=;Ay&8b_yz zvE}cWJa|DKfERZPNv*tvMuZ?3KA0>CP{@?u{UCT*!O+R1o7oY7LU`>gKLm#88@WNM zUW8F9TvPu*DGw2_Db8X$OcOH_=yyzJ3+{;yiV+qA!UmCnzF)T-%TpumE)vr=9 zQM6?J@BTZV$=)LCfdErg%@TRGdcUIr~VJJS2D#|rr#z|)14)GylWBOXeX?EB38NCTGgw{ zMRgS%KF~7XtwNavUDcT>3dPdcn15Kgft|7m-pI)8z;%c6$tEO;fRMC)ufm$HkvHNv z@nB(LDfjHS9U%G8BuQH*r_~rHys|?G(#UaC;+X9NhT5vyC{LOWZq#}Z360{eqpH-j za6}0*`acJx1#;jc0HPuwfdlny1C^i+CP6@eN)a%U|KiX+??YenjOEx$UZ&b_hyOc< zG@1A>Kk;Gi15^$=|MW}l6(eY6s2G&>PdV$IgF!u%uaMd95N7YctQa%JL?Jm%M}%v2 zbPVEQ^l<%4ZjS)_-G}&H9pfG)J6RYN(M_o!k#I7sb`YPq293nxNuFeqvh!5kw^-MJ zN0v(&63sdy_nb0C@B|prfq8ifvhJAQ)@@YvoPL1%;q9gR;uqQ3S0T-+0CnCN7wrn^ zP3oqwaU0q+<$arJEbwuGEAug_XwJe?N8Zg@ah>Y&V;+6Li8)JUK8Q? zHZR)?TFzYqp4$Th7hb2OsW|1Em5{W}=b%>N6pKgNIc^WN)Kr>jq>YclMw{c?AN8PL zv%-Ob``+Hv^qUU|N#eRzBnK)6M%-xqGc`Gf7%~4@O-FmT!mszW_NuTkW~Jbh3gZb- z0dio}ZX&%JR~$qYXHOpgarLhy4hqoc9RH;N{o9Z$t%P$;a`a6~yf@5V4nbFS9z|+0 z4zc9mokDbS@ov07Xi?oqwK{0SZLr`;?~x=d z{SxK-KFDFTfcZiWY`LY4dA60Lr;q21{dIu!#$1Q9nwzvn{qtvOP2hW8*brmG!%~DC ziZM3M3Zi?%xD9mMDhPE+lGWS=z*89XJl}Mho zw~-c^YQWQW^VR76L*~`k@b{`u?|`AU?~*$lkR+gLY(PLJZ5b$#9*zPxuKlMFeBFp$Q_!Bu zHO@--5U>-&9czw;xE=k@VZb`@2!8iH|BZ9gl zf4=5uN{m+FkHgiG8J2_H$t4M`&HpEGJY0^hOEDVCo}Mq zWSb+&_*1ShW-Eq>-r)G7T5+gj{%vaNCGnm2cR647HFNq>!W*7^!0yMOv3=}vYPB8ihQe+pcemHlY1Axrhn;?{{6d)Gl4)XL>Wwu7O z#aNKy_yt#>Kf8i%RNrhbKFp>87=v2T&0aK<>vTn~ecuk;S z1KgsRSX3m45AA0U8eJnpdiQs9RqhfA)u`E_VllWOO4?lfg~o0InIhV&3pW%*~*5T?5EtvDLGs z(XWS^d3E0S(y5Ct&<8t@LzCNrW!emb07-yWF$#oTO9HoyO0DvJLnwo|@5USgE(*Wh zz$9A1mymb?ad;*k%T;v$Sy|= zblt*smZaNBlJHX#(~US~X!!P?SdcJ`8;|5|A7Kd)w~O{@fYJ;D;&z8GvTUWxlO>yw zqr9(u)Lo=A-ysT4&K!-ikwE0gvFB%uImFj9d}5|cp_RD;_P{2jE`eB;XxC+1(eI4D z!{82a9_l$ZKUwRTzA*H*e69C zT;qR&w9foWnVv+wGxUY{@?`;+_U?}Mb|=hLsD=T=<6$qPv8Cw+NBj#FxU&~udUaJc zJkMX2!$_wBE&^*#@|2}YuDw6#xf`@O@trjrIl#I52JPvT>|Yh(`!RnOJyj1gh}9tb z6BC&CU}zXa{I|F9Le9{C(REqlMGoh<06BaQB$37OFeVU##B8IHuYD~5z%XARd?38 zI+&x%xs4PtQOIELQp7&yj&DUjFZs*MQZLVb1R?N#w12}k6caKH-4k=3ogo8LM8Ny+ zT^OIXv1Y^!qSpR6ICCuc=mR&j=h3g?R{2W<+o{KQz+b%{-ssYGuB+>EV{>S|P6dEe zo6A6m6~yfQ=AbgTtth1u5lH*JAFMxkf`6X+kRYxLBW*F=mKumpof`i8ZyflI!heG^ z6kzJXeDTK!%!r-M1s^tveKCO`q4Ds&joXkoe$APIaQM11l9YnacYgC!r4gan$i)!bC@jD=Wemonf_le}`CPi0ROI9g%y7o|l%c)F9c0NZG``W(;(A2Fj?_57E#XlErb+ z4e4tg_+adM<8k$fTiwj!YE$XY@WwFgh=17w5x8^avr8QDWFe^#1L$m;azp_g`MFxLV_pbfyn71La6UCt`m zgvMcqrIMSp^#ga+wfhq%ehW!m4WrMh-TN2#PO~=z$dpq}#^2@CdqQWPtvrs{P3bTT z_aoRkwjOl*Sjd+#P)XP1UxN;9dC#6b#dw_?>S0DZ)>o!-DaQmR#4y)BX=O#6<-C;! z!lMcZx+nDXHud0g0j$XsT5}*RwF_B167VS6J^|U+_Bz)?VC6($af|KSC#X)HGn{Ww znY!TzbbiX_^5yI5n4{YgP%BjYg^)-cu=gmaD_Lq#W(=z*Wa)RzPogoi04V;BF&&$h z8KE3HoVS)S$5nat>eYfMgjB;=ACWi@ra%v#z=7?80~A8r4`39poPsmrduXrJKDh|r z77J>}r1L)$>2`#!Jfy(@sZY<~w6p{vao957o>vjGS2`-rAK=aKK6(6DVffdtOOVmD zXuzf+4u%nLva&ex^YYk0;2SYGdGf(_mID!=tq+()*5`k_Vga||-f#B#+m~;s!_}z~ z41!B9BsZ3##5hF#*GTwf;T0Q2+K}dP58~r#Z!2i?S@I+@!a*>6=b~g&9w5s!f|vbn z3`R9&S%@^Akbt`nKX&)$uL?3THm25CesOp)x$=AVJV1ji2HGTM?<58JE0!@k;&`6C zl>D7qJLrXo&+Bd%FJ1(UGH;A97!UknoaYFri&gjC2)JD5SVXHI{DiEaVkNHB<4`#I zRly9des02d;nIqs&1(8vuyXOVetv_)B{iBp)zE}fU=v|l)9)l@<-;QnD zl7r6+K>Zzw@W6t^L^1!tzu)HO=4OFLGMGVW`hIv;2RslXXy-eB_4J$#5dYk8z4uxN zC#nmSG6!>|7m9V4EbV*apjiG&d#a;fAh-6WsM3oT@TwT;Ra0kBw(V}+JB@n&!K}|KS6yx z*8YF$5Ul>5{m0HGAbZXnJM5sr>18-P!GgKtd14|AHs#@#B?^YZ+Yv~R-Q$O^vh0G z&cv7m=}n-MNgz1_4Vy7wlEpNn_e_y)EMr5YVqcH#TenuVpnhw2@LHO)v$eGy5oW&&XH*~P8K|4+APT^#252@k z0*dx;zs+HA+Ro@-gd55V);$%7J2naI0|K$nMEWJ@q>I`ONuI7pXh^?70sad|u?<_*jew*P1_VZ=q@*lf>9)sc zNDwV}96OAs8ph^D(4UIF`w3r&yCmTvT!c{jj(d|7<39rQrH25om#I4wVq;ZdGoAMb zbdZ%s$nqL|=z zQtsoA2c)J($?%2Z=GelsRi{KSRkbDcP2_^XZA8SzDML_CcL*VkK?+{$RPPI4r z1`5(Juzbi;uBLn?T@CTpZ=RF=yMm+b5y*P)nCWO}vbqrc<%`+tQ)L+Vw@KG|=osVy zP(sr1OUyW^@8Gljnt_5_#5bDa&ras%4#Q)U;%?#mGyJ?j#1Y~hb-ze>;Q7!r$)i$q zIA2)%JDjjp6KV9b=&&jVe5EF3oJrQv->HlJ8bCx~sQVTwDaDn=M!+6t&1tHQF(#4Q z{?F(Yi0RTQiUPW6mthPK7OAlHP2U8&A7>J$aK=`@-l8x8tpFfs6!Gnf+rT_qD;aWM z2#J2m6x;m!NItkDCXa$0LKk$emvNR}R9_l-@g9rY`1ENqVd>@A5`zJco3*Jvhybvy zNR&K!I^v}idJ85Bpw)WItb!_dE}NAjAD46`PK`+?QlX`kOKaPS7m7uHb+lz0LYdC| zHH7~Ta!@CRl_z(hL1e3{ggM#h^^)Ebus>?G-g5>vz&No$GO;K}a~h0+oghA`k91x1 z>h&92V=>oIr->H6eZ1Oc=3`7ZW8iV%;(RGl7DfdZhq zB3|9syI(4+^c0!!=>^PX9k%ivPG*B!Vl3pq_Ck({!>S(mxiIK7b1`cjb*jb*2}&xY zD!;tSJ;Cn`)HaX?OyX~=0MnTPj@!fm3melzrjhj!bO4vA_&_(%;#?9c7C9uqYNBJH zZyz1`!KLSu^MEr_x8RIci(>nP{)rPrwNpVB8HC5IWeX?cBiF9&#iloML-|_4=wFy5 zi2$!nMz9rBFh~x9UvOIRyN@1#mEOQ#K(I<{_vQoZ*{Ud*KX~KLWW+`tPN+h`wxXc7 zI}WTn8ot*g0GiwAheV>pN7JS2O#5Bw^pt-mq7~jO!Q6Y<((C7w6Oc8_4Uohn5ip*vR+n3Z!W#RIX7N`l2^MkHT zLyYqBN`*j2w;S%u@X>SF=b;Ni8o!Bq@dGX>i8SkZ>a< zH$Jd+(n4LPg1R`RQDv(12Ryw4P}?uSwUoMN+qR#edZjL*NKSyBSavbu*sguUP!iSe z_nwnPIh$?;d12;;t%rti&U1lk#Exo=6l?sUmtceTX)HB|e{{kedjd5~8Vc{-q?II! z4nqQkaDpH3Nh_f3>Ra(V6OcHIal{gAzP@67;Z%zYQUjv>;+J#Og- z2ccYXB0*gcl}|lrJq3u@g`|S0fDitYU&F%{kq;hFNIO?~eBY?3`1n4zf$CtL=O-mo z^7H4bd5zCDr{M}FHQkLd(dfzFz59TJ<~&d$TzF*rhrSBZu}n3tVD~n<;R&_*TEqpt zLuk@&>SW2(I}3;(Lk~Vb`4OxWvgS*$aH-)vL!c>X!=u`yfnL}0rX~dq+sq$a>t>i4 zDS3m;la11Rnj{o0doPUt)4Fyo|16d6h7JQ2bJ2rGkC@=9b}J-gE!YA#L6;LALvJvZ zmRW4Sf?vNd03VF<>zG?cd3@Y%H`-fLK*!->RZvhsmIQlt6B-(#2=Ef$wv9T3v;W`t z6hU7;JdF4Bgwk||4m^J!RPcQ*c&fz!(0dFJIW>co!OV_Hv%+OYinwn9zeN+ zn6U_7?7V~ULd8{D30Cw8tnB=Gm;%KuGzm9xMr2hCL{Gmn$iEs_StfHcSo-oM# zgQn;QE=z$YkXLv^zv7GcwH|9SsF()ddpAQv!zpsafozL3T={=%13A-3 z1u;ZCzWnwd800Mt!kzA9HpZB>xRpF`tu2&;9+MI-D8Cwq*g}}71`SzNryRvN1xUX! zOYDJZ_|<9PbT!+J@TwWic(HdmX>D14`PujiqV27%H_}ehw|=7b7oFm`(pM^ol1ymp z!y{kvi4IGj&jU4~^hH2G{{~XiGXLDEI*(Jr!OqEvcG%5r_C3CWAOG2_T9z>7B@qnt z8Gc}7KA!;m+Y5Z4@)>%9cr^I}3bvf5VG^eVYWpdr}!^`r{izZ({CaF zcoiU)-ds?WcuC3{fr?=tdC}ZtTJr(R?i~1|GAIV^^bnkYs0clTWlO~Fzqa)w& zVRQ={K7J3JGw-qJuR?R;F@KpzT9TmBQxg1&=P(9KIQ~@j2f0htY%$ZpDYNW_L3juL zxD_telhVb1usVlP(j6zGfZv{GZCxVp7I83t70!*o~MIcA590#E4%{Gm3LHR z!WYJU-=u%n5zf(V4@AqB&0W~>8hwm|p%NI_#Z)@EPSkHGlV}NAYi5G}w^oDHf;-y77=0hK z4(t42{zIdYk0%qrJ0A|ZmU%0^-vm@||9>P&7aB|ZZZe1Jhd%>T<`rNm0xBNTI7C1h z-Ux%{%z4zU>unhZ*&e4m`{#UU-dAB8-XY@XmEIt#HO}T>deUv|zvQFstAhyjrX2nB zU7>MeN#7IAFQ+-(Rl_+-ULXZfB8C1%q>D*9;%x0NbJnaz;KeeKAy2Y<@k240=Q00CoXKA}gQ=uSxJVyj0cHs8{Xne_j&$)1y^!wG~*qv>x#ol{|jxxjl|OBDdY z#$cA+7mweu0rv2wZ)l+0vmeL4Ay$BSaNzZmSF#l}JtF;}^jr=O4%WaY6ZFD6Yvf>N z`~f(eT;k-5&U*ctbn5Ja{LiY7)MYo~&X(INA+ZJ!ix4O_3Ho5@k|ge0^s09O1ko3g zLU#q=O>EDAuSO4adD5}*@qU-FatN$x3RJF!u->c1N138kS65RjmfEt)`@p!ciEB5) z%VxK+wqAJ)Sls>;9XpGF(VHPs8FNv|slid!%NN136(S0@C-qWd^bcX7zs}3!L5BQ= zRQj1TBS$|dw)>BqI57o;V8tAP>wUh66iINM!KW#2W!(tUhf^u#Sc;JdF z`Wf6iM*vw{fyC`z-^P57^S{5zqCj!TsE zhE~I%`aLG`e@S`4Ap8U6FbkT?f)``SZ*o+!6?&MB3=}6S+MrQZD2@Co=#jwk5^&|b z6W_g?BXYMDpruTwO0r^t=VH6X5Dl+iB_3mkkM&CZrAjI)%il4A=eTp=c|gM~fn?o6 z4LLcNi|DN178iFJnwjlH6fsR5Qmx+3PGyoRz>2GRNCiuwp9wH(8#V};%j{rE-EEpX z^s}KY^kv1$&)wlnl`BWY_Y49>Q;`L9e`b-86=V)?~k+)Gr^(w6;0@C4K6w%zB`YQpj-D2c@0*7Aje*nD}`0-(Y20o(90T zGnGy*led^6IL%v`n6SX~G3G7CHsd&seqNz#fFtMwFIz?c$^l3?^aWb|*C(r^L_$TS zWRkW#rNKtAw3*yWz>yOEkk8BEj0fKp7mxsei_Tj$_&p9Lh3`YQ8UYJKsGb&Q*?} z>cg0XxSqy=V~fYhw0|mm>S7UHmzrfkl*MmM!E63K@~IR6U3eewZWqP;qG>C&%p7|x&ozKzO*N|FZZpi88- z!}H6Wo15EtLc!;RowG9slctL48#os+EvXF zKuGV>3skMYfj{<=p}Q`AqOErXye8fFsZWeUC4Wvy3ESGT^I=R z-wL1|zQ<5R)I5?naR#^w(obn0Gy6y5d3z27OKgWNw;W`@v@w*< z2|mMd*J*=5oQOiV$BXg5yL*Pt%SD|t(E!25Zx0V!)U{*DRwg=T)LuU7-l(g(1} zQQYD3u5NBfv#10FX$gyni7)89D$3DRqTX-qR$+R&U}R2i2!!6QLR(5G!J>Z&P#JL* z!i8ms-e|Vhh->rC_-;?moI3UA3X)Ql1laBaq0{q52+?LaIXNzP?`E3ir_RC6xb$8o znf%-v`}C>FJpLXHGb=0l#Fr;hk1&K(Ifs|ncUaWd-Isi$q`wTVA`Q|YVg|`+x1L{Q zob?5nY7Po3vQ@#|AJ2S{B6b}!GJ-yW+Pe_4YFyYR*|6sq`QPQj zO4&wf8pB(%GCO^m8NJJGoZA{i)Po1vV-r9Qu3~SIL(nrFbn*s*gN{Pi*!(+EnxBT( zQw+PU$3R4|#LYB~s9m_FrBKVX0U)FO!w<0Gp6%EDElTNXZ6z*?S)p$kEAP1KllXKxsV+-#I{;K7N^sDAT>E(LHnkImW++hR}G5 z&C`cX#wvhT;A1XWf}J@AjnR$kIM)n;E7D3ZaJ`N)V%RQ&PLO{6(#TgPZ5W8UF*^Lm zs;3s|GPn|{KnkS(@69%?e3nQMhiL>41LZN=A`(UdPEz2G@MJ2kwPk##gpIHob0ovE zmT(%UlSo$rYEg2}Bg{JldE_H(pB(L|@D!>-R}|0W-%`*|_?39$#edz~O3dRq$D`{N zF+X{d^WSnmT?G3r1JqjftMMf?;J33OA00dh0b#{7Mqel9SfU}uOfPrU;*?J}VMd&|y&1#Pa z)g|6$YhHW0G;bz?ydsh`)JTsEM$MzhRQ18`r!!FwQ^ZbVj}D{G(ZUef3da=nC&?rI z*3+|6O^zN}D8865F2CsNG8;J?$-97OR9;x9yi%({n<+DQDym6#wi5_#V>#pMW>6oOzl)L%aP6;<{^@{MS(Q{ZPT)BQqs`V#rGc9>WD@h(7A`d6au;NCQS$vCLQ*oSVA`BTkkz zj5miF5=AKb=_WY?xeW#PZSWHB{vIR7xV7i;V!WMj*S6u6S(Qx|k3}Bd^01%0sr4ui z$dL7VbP?yl+W`TH1CW>yR)-lFefg8Px&A6dFM)3?F;A~SBPD^$l4E}$AywHj!l)DTb!h~@XF?dgDJL#dvN_hb1Zwe<3r5!hT_a}2(UC=o8W2&;! z2K<9)@9AL!C&$kNSYkfqs;Zpa%rb6~CrGkh`JhRN$tuanOfXXX&&isg1e-YuGm3wY zcNnfk8~!4bsOazS@@f=;4`aV22qatakiD7w9|InJijtb0at0C~*yzq5)z#gn+eS}q z@K(#rr=c&c$OIWx9!+>H<=js=sT`m*6@YVg7j2K!G?Qb6f&YAWg&(y{aQ0v~g1e%q*CG7oIdj6|w^(3A8(Kq3AY1tvWM=ld*BL9{{t zx-n#JG%t1^T^GAVAI8h18z4~@JH5a34-#kv@c=7|aQHRA4TeVg{ZFhX*01L$Cn+r# z!`0f`y{04>D@TDPC&47TN`BA&m9z5l@*SAx7)H_e;pppZyi^|q+9r`*2kDd}0gyYlT9Y<{Fk`NIvgkQ!a4 zbkR5I^cK=od$PZR2&XS)(WCo%dQ^$4DB26!+uC~N(YU1HCv#aiwV90832#d)qW?cK zff4Df7cdf7JGE$Tv6@+nvwE}125O(vhQ)eIm-p<$yLSd|`f>+? zr2<10_|O;@;uOiLJp#>l3Lm89gqe+xlg${eBL`xo?e?QRqvTF67x`|pJ_T5>ME9_WqG=YK`AcnVd7rP8(QmR z^b`8C-4t@yPx<-=&-Wc>_;@pW7v<%n#F|L*Yw;?$bL+J#@DXM`&qZb3)j!4w28emw z>Y>lYaBuna^qWMdUABXVm2LjI2T#2IWLLdqS(7(&^V#Grqk+g-1+K15#&d!$eCbct zjd@JC+lC6PIINjf%9M^%AQ`w8YBycA5R%xUEc@|IJ$SoEzZjt2C{TIo)OdF;z2$C4eXtDq=0@qWm~o zo5Ps0-Y;oK7H_1Se(@`;rJ%ClyTfazYKq%zT=(bw6w*@|;QQzwY#5X^wbOPa_twLh zyzKYPpYMezNe5JmdIS$@eP{icL_0dlaG36N=gg73TG=G_In`GipNHPvbYYNOo?SWJ zothkv8+3<^E}RYi?o8yAaQ(n5H$>sxJ~v=-AgJ9|>k%c8iEsG8*#|?B z_miosn&(-x2G%Xn3cgY^YR#3BsoyU1Q{(t7Z68^@=(%;F#*yi@iA=!sgakgRs?*5U z-mCY6bci_!~dIq>73$%e2GZW7YNcWQaL`jGwWwDY$8EJFD<2d@%(S2D zRcEQXDH-5itGCEReUM$}b$B)`_>gVWvgxa~19zf~CKUN(j#)YI5)Q3vHO-iL_LsF6 zH>Jh3{LDVq4X>n}jY{)(o%S17E6)j>h~HLu`tPr!GaG|g6H5fu*Y`cXJaC}ep?50_ zNBnK=Qmq6bgULAW1eN@F&kpm?`z4}PJE>lBj-IBR@R?H8p9Qkqx%B1S$YQNZRmD2uUg$WO)kKZ1UkxUle^49GvmBnT2(X^Io zro8DZ9p(DsYo{Y$Um^^-2X9B|=Y?L%rdoCvHI=&x=q%KmW}XV=PfT1u;$m2 z{G|3H(x>W;Z=$JhVav>@>jOvEoAqr&64!+-_bX=bUQ50ElRc{^$*p-%IIe5qUiJDd z3jRI~+**0xBbPtO3+Fy;%FLSIBYw9EH?;h+ zD~R>$j(vJJzs0&|)rR!6)Lxq3>Uz_;jcC`AmNRbsb-sE& z@%EOoaK|B+4a{0S0YV>JosPHmq_u#@{;dF=Sc%OBOW zZyhQN7n+*%%Bvh|UEs}n@VTgO;zXm(!}$Xfe?H|{t}|=RE-stBMTow;(cD_mHhddb zr}%(x?C{XPz~*YVvbUY1XG>URx72Z@D0N++ujTNno4`f7^M>1P=eChNr>kYz^6ozF zX2YM$i}nuw;G2rv$&z%-a`EXm4m+84KeHvR_*KDX&kr9H@lJkWQIl7lk@GciEuKfP zvRzol6HoO56BnPq8;CUJI>tN4d5pCVDkXSIgltgVoZMOQ;Vos4weNJW)Ca~-mG9$L zO*7i;&zO~7$eM0i81M#(XjljGuzea3DoVqpvi%|#y&j4FD!HVP%U( znfC3u>G8WrMQ|xv#o)%~u-UAcrVqFK_;%)fE*EqO{rIoLJucL6j5*kOyldCR9Z|Mo z;rEb|@&-M*2F57T7 zai5boen;wt+cvZMixRI0*Wt>^WA7e0HcM{`(dMu)#%_#={TUIrna{>MM11I}(OGV( zS-vN=>_0UJ9+`9-=PgUIN{qYQ%U=C(-Px?RqqRXktzoKIY3a9=7CG-#HSOfo+MiwG z_gu0P9dTXe_UFlrBVyHgbu3dGJ97>UZb-4bT++WX<8Snk*JYPJ@!D81sLbG}O}O(y zqPhOl=M_R;G!N%>hXQxs;;i<4Ajct9IsNefOVS8@B?A^*K~`^=vuJRGin zyI|lT$dlDs&$Yp2ms1WA9h5TrvWDiVELy!k*4B2z`a_;us{`yAJ~}n=pGtf4u4|Af zRwi%ye&`qZ023y!tDFvdOF4Rj1p}K*dR)SGgKgIqcIOVhW1sP?AgPe;8 zYTvvZ&eQk(n7u?9Yr7D&+@Hf3ChW~#*|X>ALC%!KxnFnLwll;oe%B=OE*gnC4qv{x z>Fk5BQgyTYj>Fyu{#OES$P5^=o)f)9rsYD;Ntj?OmuBUjZZH%fxZ zpCJDkP$b6r!fXC>?cDsmd;?#T%V@xmwvpCBW3iXymYXScjCY5a3UeC&= zDZA+=U;G)v^u*eCr6vAIXV|sjqO?@(p(Fo-A21VFf8E(;@H)<2-9u+iRx5U$Z-2Lo zn7Tf_|eRxxc|TMOCF}oT8*mYue7errtB#$+OjYC;&-hIy)6#8UysUjZFbGDZGx?fmOtwgfud5+C6Yb$I91-8m2!SsCuR_n zye!eYZp)I_*rn^qo?g2Cg^z5l8af$DdYxT!Oy|B-u}>Z@y)mzR`0T3BmpWydPNh#D z_x{{1-WMaOEwbN4zIVgZUQ2vWozp4gX5OT8yvVOEec{dJ$KER1y#+$nE&CcOUI7{I zSewH{xK1>EQm1qScJkgFEpPWNf#zi0|MLGz+SqR+e_pH#(>qsh8JG0w%jS-UiL5^E zi9dr?IOiFLWYR6t&)d2Ydk5}5q(&df4*B)mF2&&rzxJe%0LSVarX1`@cJF?MBVImfNn|FY9lR38D5z`SB#n z5oxMH<92&H(sjoinydT!>`I^@sl}l^V-m?c&ogZq`86-8re@Z8Nxm=u6 z*wQ4F5~kM5IluGBp^txqYM=O128M5Nj-8((G~OC*8^|cPw(cu!GxFrPeWr=BPVB{) z#y38PqED#@lT>X-{_0)%mj7YQs%@^QbSZc{k#BPx*xKmz-PY4<~JnUbvf9 zS|e(Pjd6VgvmBF*uO2>w!iMjr-sY6=eV3jvhKcx^?Ubh(ed%UN+LTb^dPVJiZG**? z0)p+Ds>a`ee?6SDIo`R$w{(w6chr1YKC^@J)NDhg^o1Q+aespHg)c>|GFYQu-h1;Q zlN*lLw8ZKtpUrDGeDvQ#p{S-QI_K}^ZJTS;X1*}{lU47KDtF#mvr<_G%l<8&6&cx_ z_v~1FB~+=-x9w%DeSg^CIZ88A{Iww7e`EXJ6RSDbsJ+yynrKvYV~}WLF5OP`ic?0jRBXZ^!Z6yyH$0t5o$Hmc1 zJrXJ#*Dm==tw8sgww!IANSy~G+r3X^luEx{s;(~Q#*K``)w8`5uXvo@YI#;5pf61{ zXWHl>*ZJye*@oYZ(`2m1`K(PwuM2l}Gwq%Czjpg3aRr-Ze03xB&N(ek%icfj7q%U2 z*}*DSS}0>=9y0rd^AY7@tL|ssPP^)_MPlt$+-m8Z7djWN$ws4*9 z__Ff=`U!MKD(4g%c z9u+2&4EttuCJRdoM4BUSYBKBpF&!-|9eZ)wImiWl>Y=?(O>U|eS08meHBr=basNgM z3y6g|Q=b3Y*EVkTgVnuI=o&TnLRM3MC{;?87z*!gn0#^i{w35K)Rfbg_7j%nSBf$O zq?#EYKC@{Oul#i8WDarr@RY7VukDfB4;h}stN?$cn4G>3gu0u$TUo@8 zUX*JVj$i5Ux$*p$XF5yLWt#mT@$M@Q3)FTO(O0W-q4o?c0QXJg>mwDwKHY4~mle8i{1}-Vk-GiBik(s7}=% zHEWYRv@WdE50z6k(azJXI6s)bDTSSJ^uFQlYaL&d9wxn4>zn$xwRpj-<**xvofom3 z(GlY+b75`C|Hsx}heZ`O|Ks@5APv&pC@o4z!_sXaA+-xqlG1f(mM$eE1woXS?k+*P zI|Zb>;dj>Oc|PCwAHVAYE*5srnKSp)Ywo#cNGSXq&#?!+-$Y=;%@{(?8D)toRdX!} zuTx)U)+1v+Xo;iW^ePU|@dKVg)(nie1x#A&5;DH@cPJrvc2=sC6Xy&JGYBJ*Mu}mR zxw#XH{h8NoU38Q?Bz-Yg-8wU(%hM!G5{`_cN zjv=DyUO*D7jrqtt$;)n&P6})(i5^B*zS@(*qt(-y7xpLl1b5$ZwJu-1C{GJ%fW2V)En@vTy8@4N+zM~n_>Y6TJ!R+@|9NS05RmghJ=lMc};T5J+lzf@- zN!`1GEPt*lkzNVX;ZVR5vl8+*L&E8t;(;LelxH2qtA4t_a@jK2!Q@}pJfeCjV6&W7 zW$S6TA5$iUbeEq0{K0Z06iw_q2a4OO)hUr{CqHfk32B9V%(%JC06X<0+JeB;)w59x z9S!fYgacVQnBQSQ$M$$k)N#qy13c9$wFZiLocX*p)Uo4*JD@kkE28i_q6J}#FO!B} z7biwqaAm|b8)E6ra_;0u$D$ziZp``<%j1}|(Ip1mcleragLJW?^$~ha)kJSF(fwdexHJ^-P1tb$p8c^GyeTab?C#)>X+nYV&P{ zb^0g!?V3H)-Np(Si4XGRVZl$|KAD267wrCZWekV{uw;H|a(k_q<5;Y?n!1P*brhH8 zm3q=qaC9NCjl?BATR1)MhU{!1bO~PX;b%dviclgpOE>I=+vW$jQmknn;3#q^zVc!HB-k$z-*t~AayUIE+dac4S2@LIa2fdVambPs) zW!QgTak9}+=C^qXffxeauST0|@YTurE0#5M&qLMtYyd_xXe>Bw%;RQh)Xr zZlXfy#D{0s&$Lyfptj~ z0`yf2O1G$K-{IPT->sjZ*5ASDiiTZhG1F_5BPxvRJ!m6dr2x?Bs6j<^K4d#mi5t?( zo`L>sEypN9pr7Hm`({41c^a|s?ugr<$D%e&WIsw|g&Ue+t*u{mYdOtOhB=H*4S9Ht z^6XqhqiZ)RU+UYox)}JVn|6;{Wk!)|2Qc)l3GzElX z(N!@jD~~-rUi5htnnhOb!cb?=w55wo4iD8>UHbQ3VXUzipJ3A?0*W@l4_;_g$ zr7z60mnhu6!Mq_z7_x41CEO$!M_ zx33G((=fa5GfG48$Q>bm>mHeV=dF>ruUmq={ho`_HS&^fkXGZGXG2X9rbZFO}6qgkMc*K^HX)Cp~8}j zI@!O>{nV@9U&2YKOn|1MAR8QiQfG^{2o%}7o+?FhskP-wnjNe(e~`w!bz2L#-@z41 zB}gT{)1W84vkyrh)ma9IkG!ub${7~k55w3UfciuyO6*00Zd=VTM$gU-RTA2h>6l=_ zZms2bMh6c>9<9ZGjs$Q;Suq}#&)x7;A+4Djmr`QD*q9$&A=5;D^hgwvdlNh&w?F}D zBGfL3BcJuY`S1rn7r8!AF+$eyuprJd=GwL>;3m{^+=tWQ5~Uff)#$acXKlo)!*YN( ziU>T#)K&DPKdJJ0Twg+!fVz)pSWdzxZA%Ys?-Dm&(nS#%T;PhxG>- z&jKtkI?EkM$2sN+V{f54adwIcxbXmXd6DV~(aSW>o*q4SN?V_mkelz-i=JV8LDBHX zV0Hy{q3cET9&^yujmL^Aw@0_2t65Lgg|0Na@{E02}RbgPGor5aWbR;o*{4@Wu!EZNvPGKl)fnSbWOfgU zuUkHdnQp7wo#HMW_5|T=&)@ZQUTT-~*}KrzE)rieg>Rra097qr1)8q8;zF3%Fnj1} zr`@+}ui8)LrFZMvm3S`P0T{L(*%fb}-qsU48thOjQEG>f!Jy47j=@IcB4xC45n|*v zW$++uxq6rH)6tASh&mxmnOn-D^$h#JzmI@4Fp}s%Is~M9?43|)>(d@hN87eG9Rvw# zn`j(~lJ`*o9Y*ik$xe}Mb)=F@o$yC(JN<#DvC zffdd^OqTF^e%`^bla1e5YW*(ROa9(5TQyc_h>5nxV z=A->X)s?26nxr^@j3NI!pH6ZDZcoH1149o^xi#7o7CNXciX4=PXC;(ghv$2f{0P*~ z0%d7oKz$I?JA(Duy7VNAk4ceMf0g92UTa4j240=C-aaasjUKG`rE2ZRDyrb|OBQz7 z)C?e^kaF#9vIGA+prQtmAB7@I*wt(C43!W@mrcpYj4M1r629T2@He9>lK+G?HkoLg zV)lI0cBON2Qi)lcYm#BvndDKKHu~s%lP* zH=hi8p^q>TdK-Swn4U)HZc~G~%Je5E2YEcN93ezizNCB^%f~rVVlT!Ye4b)7YOi@q zpG-6#6HA;=FZDaMekPVQM2*yU3_$RqvmFLjXA{%x2Wu4M;iV7B_BXb@3V33r90N?D zX=fQ8HP+Nj1v29WB%>0;3W$k%};zH!bgrp)}M;R0vH~MUg3MEVUo8HwTSHz%q6}v+H|7r;& zaUk9@vZk};V~cu2*T7K+c^st8fLOVuF<|hg`SN<8WvFf{$f0$0DESO(sJG%F80@op zt}VO^$DC^rHZJT7NNWk4BGeIqV+d*c{2J$)s4X|yRyA90X(G1Zn6W%v<5u!Hgo<2I zNmp^6aiYjmREr-M$C zAA*zJ9~u-!`nQpaSrT_ddV7%bpX@6nVaUYVC35I=_?A7tuaULIBdT2#z(gFkf+KUf zATqlAm1G9Y3O1y(j$B#P_%T7G7JB#_=t=-p zcAye^9H}Az);eJ1wlpbV-jaO^9Ow>bY~XCz#1^xfc;fd5N5nedg!wFhY+!TI9hD|E zgwB#wJ0uD}V2V`Rr)+kbk`V&Kr78q0+Kb)g_q<$x@^XwZ56G@5u>SNWk(ex#=t;;* z3(_nHg1_kz^~vMvua-T%e&db`IUfP6-$-X4JHY^2N>TrIOA1;Za!!R$t!$KJqq2SI zdizhH3DrjC2>E106}LhJ)7sQYW(q6_R2s|x0qHq>q@SZiLkFLJPa%pXPCp4&o3(%q z0ul=DNj!H)jEkbY%+;_6!KSX-T?dq1FPwySUjLA|DP8vZA;o`h~*}snT?2V zG5rLAbv{s1Fa!djl=6rE3Bb7zyf-O}=U!Ky5>Q{kca)ys@w zJyOp>f;R?bBX|>z_+C~H77x0)`b5h|4nL`V*GWFyf`?^15W120HSdo2nuR0#hl{Y* z=LQ<@2M81d`?wRA3DbZ~QC8kZjpF;P*%+K}YuMTPA)h-Rtwh*$uOaZ?VG}tyYV?yx z14{H2AbCfl>}%hWuyc~GRk=}>3NL?x8z89I=?eQ!rI)2vTR$nyfBW%DA(s1%-D95K z+#J_80d5sC1t9b-LyIoioD-h}?osf-dg~ji#$u3zgeLNZB~VM7uNk~S zO{R&82jiAB{??Lfh!9nEhitz6D^vx7gwnKhoo1w>4kP1o?KLT2Sz;vS?l#YEcEM+x z?)CN2+34f8*g;T;eLxjLDk>qUPD7U8g&!{Du>56gP?7QY{WFMo-Mm6Nh@5jznkWHE zpe~@8-2)g)bgk{5foMwrXg|(uKA;bazHBSz{fch8SHFFnUWfUo6LdDXAY0u{@M148 z!5~h2Y=Y+OaG1CpOi8kI5OT-JNs8tg1G1DR zL-jejwJSo@eM!0>#iQ542#;unEzG+c@J|*T_WBu=z-N&Y${9LEQyK7?GyMe~QCgN5 zsi@l%h{q)Bu+SP_9k(2vs(xiROXjEOh!tEI>pVN0_T=-4=|6xvaN~ihR@lMZf;1rh z|0n2l%TdrJj>6D#jv$!Fpe#?yRcHmh8G4unJ>VH!c+h?XEZs)Hs$7wV6ytwv121x( zHI5NQkDKoz)~@Sd0Y~7zD9qn#S^p^V%48Ld2ZesT!K(EthL9fzklDIYc&kd`fDm}u)Fzj9vn-C0O)F+C1 zwsu8wCTuigD%!r>v)uk8CM-F0q(<6KEu8Oq1sCMt1SKbA9xaFEOjE6K zG0#r929OGFn|71zcn1^-8$I{*mSuMo*G{zH0pK@O%uc0_;qIruBRsmItoTBn*DMrx53*LH$ZY@SPN;`T(8DzUEyO#< zpJ`87Fdv*LpP|CDY6wLs9$jl3v$m_Mc1fMbOS{N&Ivr*qevxayQiz=2Ef2+87)g0ac<} z;<6q+9i)~?evXYP8Z30Q)O3~Nw8dBjEfTU`n? z^fC$%K}*1g;!mo|{gD3!HPVrRG7#Kl%t3x0)XN$g@XbW9T49fK;XxJ5BBosou|Xn< z?dgi_t1;@pi9`VtFiNTi-;JOWpac_6*r2@t{uvAqn$?gM!2L|bO38U#vOek*Gca0B z-P&3pNtB+$1GOK*kBJt*_~)N;6`h6%NT(5k6j11NLu3l&cO%HP_4Vyz%RiE>!}}=t z#s7t4m$Q%5OFxak@Q5}7kT(=Si$q!B1uZoyc+psb{%DjZaNzG#xk0Qr#etu_o0Jt* zktpqG|5ZbxwU6dTo|VWCItqi7&VyV+S%dLoqL*8FysKjS5m_rTh$0lSzD^+53(Wo z)8CRW!Gv2s{#o=f@wVwR3?y2^v4*~`y}~LrB{Hg&7P6klcVG1I*CXDLp247*B2s_8 zigwlXh7?^B=@5rVSc%Ixz*DO8m_-11qA+iaEwyC!DCW&tKq+eezHl}bJj*NGXXr@= zQ7v^Zh7qR7Dt*brr}P4Z3%4b&l6HjZB*zC{_S{hhO*iFlW$GQOYecr+NlGr&vVH#! zEI7WWKvP(==Wvr1uZ&j*L#s5TtPp~-5(fqaVDDFVR*2u>YPXz`QHB}t6`P4fvgzhX z_01Z?KGJz0VLBbsj+(mQ5$#|V$`_fmdHoqZ)tnT#EY7pD-3mZQE}tM`4zbn&#)Du^ z?vJ;4rgtNZpK$;h&l*xzy z%bA)QOhqst9}Q&6e{TmYhgpDFiCDnW7UUXw7bMIc8A`PGP~s`wfD^pFf{faxCIv?$ zC{?sDB@saC3SXQ&M&oM9?`4>e%SH+-DflRe7EmP#B|r`GDy48bR;*m+1qI+kf_a}U zC0YnLc{^_=B0vO`e`Jh{2@TT#>+1)TIjuVYis$oSr=CZ|#9eAicSvE_pyT6=;+O(c zrT=2msAmG0N;j=ET)#SZK%Eo8o$>I!6l*Sdi;jA@mSG@{KK+3&{nY%0bUXd ze8WF2)1?EA4Y_t>Dp}x!4l1bmj>634cK^xYU_uF3)PrOqk)9GXHY;{Wds6ls%$)Fu zA4W}1mcvnNFCTbu4>vZ0xr}&QbjnJOuOBtcB){sUKz9NsJmn}@HdxMuaQvh;!31U% zgVrq2%s9|(O$;5p0Z*ihgKdoV!;b?tBQ|p*M{sF*65UT6r{K&J%)(56@cTWiri53- zzhH1IoIzQudTlp4@v^0kXYjqm(-Nl8GCCz@ktlP=%<%VGx+FV{r?8V*W=)|Z`>8Qg zH_5FX4N6GXpCI=wrS5MNK@S}X8Ymf6ih;+@`X5xnIs(W^eTMhNNga_yfix-D-jH*w z4HmlwQHD-Xh!nDAY~~V)7Wa75m0^nZvFoJ4yXj8McEL1+bCi?^oM`wkQc?;^UrAo( zJRk9Pad>3m5^-fN0rRsIWrxwLoEOX`OFuQ%_PU={K$>p^wW)kxs^YL8Kv~8CYUVI$ z0X$zfT`Kz@!~bjT+*p3NmBaiPC$hVqX$}00OEN0LJ!XlpB@aqE|AREyNO>aa4{rrW zV<64?|D3>z9cUS09imKsP4Pvc=S?%t=#`*+v$d33J{y$>mjDU3AggeGum%h0QAZ#J zjD=)&tqKkXc>WfSF`#w?B9+lA%hfmkqecPl2f{{;7A1Eujb%}{nsY0-RRJERjmf`* zT6xUskvd+Xs7NNzpv(qI5WAQ#ztpIc-0~-|_fxCqr1m7i4iG`jI8DoMHtD8w&OBM! zwqX?&emHzs%J-AJaso(b5a2Mpccx3&*R39qdpe=@*@P>XE>VycG_i$O$p{b5DBN{0 zkhnIveNI?;EGI-~U;N$d5tfM{E+tX~q4uA~_K*@Blh(`L1^P}X7!3R$c7R@O(~&^w zgj28f@C3UNHpFYN7Ypu2I(+6ZC8p!L7{Us0d&rX3(-H}WD8Tl zUsr4E`jemIU$fv6>uDVQjVQ8sGLipXl5;zRnF0>UR6LW}6_I&FH*Z{Oi?J#_9ig7- z^Em7;RJF0prT8P?+5MTUEigcX+w)s&+SiXZ^lMozWR=~W&hIn9+cA@|&+-5a%LJ%E z;5y0XCW46~5K-pl-K|H1V}<_hd?5~}*fH@&{PhI1l&+{=exve~M2I`tn?yzX2aq~! zw^BX?#R~(3;xA1Yz5~yILR2Kqxo6C#IfC{yNkAh#Ppm`mtNxZ zR$%KBt+(&h=?v1rnmVPYS-A0?|8;pp)NwR%Zw-$M*QcHq+GLLi5TiQ+9ELi4oxIN37I1YH@5ri#H73qdOsTVhF||>iU+My#P~`mn0i9cWEJ&odPTkOzUF(bmILt@~6%GEj9tCd3P%dCf#6V0eYS+bD~F=-6zxQFcS>iRYU1(t%IkHH&0EdvI`WEjY+}I~mR-YU;I+?%N^3FM(4(Np zf!~s~B|oYbH|KT|AdoN|9HQrBAxV=B-*wpwj^ChmQaJm(Knv#^2yFzCHutUf%60eU zg|YcJ1Iz?ez_vCpH?$QaX_MwY|1zc>|NMpV8e-x%Y|m`5$~dgwqRHDqL0CEa?O+Bc zobOCw0BcsQ+<>htFiEH6=y0Ltko)b_VqxhJ@h2`FOQx_j({uma;WW#=i$1ys4tA;N zjilo9ce<)n&$Lz)0SK@OfU-G}46NS#M*SsgelgUa z0JaD-HGXZ|99}|jHp>iFIC23;y&iJF352K6#(Flyxg z)NT%+u31?_>t$-RG}e6H?1PEg4@($cYzcUR9FRf)lJ&9LNEThw`%8>!su+!x4|9O< z#mXn`n1(gXW;=&kUC)^Gs=NU2H-A4z~s@ExfX>p@W{ZN)R2g=Dy ztV$Qf4RCJ5+KtRamVYJ7hmZ{MaVnejrR6JM3%cJPmtf0{12Cdx%@xY;_92S60BbXp zuz*9xCK1s*C2?jF!_9jYS@ox!VZ0}{WecjRyV|(-b~ChgZq_2c3xQ(x6pdOU2&Goo*c#J7 z0ldavxqWeXitZ09+`Kvl6z4+3+RH@+AZ%NEk(Q9PLfPSg_|Qc2qjuqASkl00{oLMLpYh=tGNjafsh&9Ky1>ziRZ`7lA4CZ~ER}+v(FaV9p>QYtYhOKdDxFR{9X{u0 z5J46{jOJRfJ&T9v)BaEbwY1uI5T#CD+hT9~nz`zK^5J<0l^=ojpE8=_q1Bm8MaeWt zI{!%j+awoXI&28q==Hgw5MvRr|5NEJU6T#oK!Lqw8W!ZGOV8xdjRZZ2qDZQXRO8pm z0xw_{2Cuj;>oIaVC@OU_LEKnZ=lv6?IQ^!r6YVNjlEg7=LV?m_Nx}Khg!{jFfEBxs zg>zG$tGV!^KV!PThCNu$6pGAo2kAH_yti;7sa0vOge5v+EYASbK1y{_-DEgXOWEBXcV-j5{lh^!@uRNBZf{>>wbU-?KLN;L+7vr&e z=@v1>@8r%WDffKe%ecA8XHSgIDpbi!%=s>HI^|4!=uJ==*k(PxW>T|vS1HOMo;sUM z3bbf^X(op7ufPRr)?Cux^yVH^1>U0hZR{|57Q?Ln>s(9?@wXPCr(L9P#%d@J-_j9V zn7GbS)H-dZX!PA#cVJh7b8UEH(y?Y-c@4N(D^-TH@MEd}QWj_IjV_0bW~}+s^Xv}2 z;*o&`qVFoxz0UBB#tKmG;?c&3I6NOA0KT#84o$dHgC@-3=hn4FRy%XB{Mw7Pshdwh zSdBqpx*Ze+$1!Zi&pf6ua^Ov+6YTHS2E+GNCXK&GDmhR6M&+R9g6E!r#|x0^{trA` zXi3%5V3Ys;GY!&$FUJZqWBdQm3lyEI>7!YafmE z^^WfTI*&>x$n#3o>nj}zDG4J}nGL0nS_MmELq*^*76c;LK~d}7|5GK54Upj1UkW1w z$r-vw8SpJ0zTBSQmml?A>0Kcbz|D99_e-Jg?;+f*e-8 zEJA`2hJ)!{`7$*#jIqG`g+tb!liyno!eAHPw9QgKWy^#tdyP=WQ7N*eq26T8b99SY zrXwb}$-VhEO-0DpXm1h{(k#VLh-^p9Rk@qntGn=IrX~awv%G_%e#8FRyFyo14tJVI zO_uWZ)i1vW>TbUtbZvbQa8kBj^~nGKnng`$0x6&aCD&@GTRTO2>VDr%sGy&fPiOM; z@I@qL>}QFdaVPbtn!AeE5jy9O>uZWSRSYx<&DPRzI%dHIl}#OEYodMrNakfddZP5mtSHGt~A$% z-wm_D`0{@kEr+#m2pkfC%UOG!x{LMk3ctgH^4XBKV1ATKFk|iNV>-EA55&O1OAHtQp+YFrQw_zQSXl1%qVA!HxR-|etbLRj$9hE>wgtInjaS`lGCN8-;GQE-aJlME%=U z)XK5nGD}8(=G%N_Q@560l(AGz=kFf2jtgcFvQ-CtNz!K7WlG@mA{g{a)=|YCku;(= zYu{g*VguFbA)w(dGnAtpeQ?8- z`?_GB0^|oWGlhZ7e}05NF9YH3mMimLtg$mbL?aP~?(2GRai6*rXexMn~DxdB*OC1vFr zhFf25dHtDxi~?!6x|+=h4BftVv6DoB#HM{jKgExlPM;+x0~ViQmY5NIo4yJfxc|i! z+BWZ|@%)i8vB>lo>T;D(4>!t!}jJ#(5FL2(iJsId;NN!Wej0+#V#yb4#%G#Ds z$*F&&lbX4(%CMj-ZB;+xA!qRGf5il=UN^qY8uIel{s{IRiz_$3@_9w*9;?%#nfvuJ zv|oSfiepy(6gugme%fkh$JucEGlZZMry4En&%&!2tbMl)fQ9-kh!v_6P*(8!e0-^b{+&2Wj=)L!PXY8AP=lRlii)oz2%Fx(sM~`f2KsXJuhAx|%UCTaB zl<+}k02FKMCjYUqhn6-rp*>bOBUk6>SJhzeOF0;-^nn>E*yq(TS!4@K3;0SKpFqOI z0*BBReh>XLxW8%f6(cfEmyWP=_tF4kexKw}eylmc*>nB-srw;yP?99y*-Ysm>w*Q# z95A->u}&JL3nt`q_MMePee403vwp7gdl1nA-$b*&bcr#W%72WmNgEQ7hSXJ)R;hD# zlF9Tdvex}bFL1D3Y+~ZX?-{5W&V#HHY?kMVpX{pNkruFp4U=c7 z%%(%Yz>d?>d;f%HgPcTi0HHUE76c&ZkT%gW{k#R0onqIzH30xn7Nc+#O$Pdtvyz^NJO z^W3HZ9QsUUp;+quAT zQ9G?Ybqyiaq+nUfQ3^rFqtD5!(Ahgq^$cXi>w9pk(>lOghvk5Ag6TmvkA7u%We_up zt4HFKohQILvTpWwvb7yVidAyyQZhBAI;}He!J}+;t%FdMiz%lscoXRs>MRzDPS|17 z%p@?4G!RW0HOAMUz4-;-oh4Lh4>fnuYkcb-MK^Vj)oG0u%esv8@@Vk;RXn6}T2rZQi zGh^T4nI1chx^U!|J$3wv5k8)U@h{RrrY0P*_?ns&VEdYt=RY~gA8v;vK6AF5bQ;^S zpQ4X-Zzr&SysH&rDbVqt%YT9oog_0j8Yc(c(LhB_2_jU5*Jr%wDNPNCI6$60dnPy9 zOSBf<56;bVZ9gzgv8ZKcV`Y`mneej{Fk+4qvc#>HTl9SdHr(SdnJR4sdnb#6-Q6i5 zkRfur(7wDIh$PQlDodfM`+4;EN?^+6?BUHkX7~dH6_^Pk1v3<4$n2cei9(y3r0rtCDN-`fW$ITrZGmD*J zqZBxLBJ$!KV<@}7H;*4ufhLW5vYm?ObDitl=`LzvqW^|yAt;D7`RUgCYF2H(1%~?* z$JxncKhgLvTLNEo_foJ0+ z1oDuA0#K^DHSIKv?@j=RyWe*g+g$dKo-2`ZkhNv}j4v-V{TZU>Ct;q6I{1R!rU(7v zsvvzy`9S)^2TJm}dXjA{@URLqKXyqJQKye~JzqWHH5JF(vq1b(?(hwuJ&$aBqcm;V zVeMeKcpuc&4kIw1Bn|qj;%mcK#yhV1k#VH2*P}zpwXg#?WpE!gDIeMUXgi0|>$@}E zI1L|L7!F?V-RE>~pBf2X*Of64*(BH1F>=?q4mr>b*+uXhRFggNEYbImq z|DRkIU|Cz@k;rX5L%8o=gZB*FPCrIIHBs50lyCcSh%8xq3n1qlV<|!c%pW2=vLIlF zbLBoz7OVG!td7Hc0?JmN$3{BrEGcVg`0c+ zIx!+%%22SP%h2NUSvS&^d5KOtJ(9nh1g_n3wCna`3+Kls*>|s&n8FhzpU3)iNA=>iimSl~vk48}kZQ8xQqmTxdH1CTXyq&9 zWdYN%-8lS`CFcaSi?^MfeE$kGN~BasF}c_sTr)dF%rD#AGrbjFO4d)jemVu*-W1sZ zI`@05cbB-C&R&wze=Q-g5IfBsB2!*@;;v`zgKoSqu1`Zy~ zPmONFD=ZdNGfJ)@Z{x8KID0%nfj2HY$f+cFF4QW%T{)D~&0sqhtMJzUn=9DC+S_P>} zBYQSTCSewLLums)@!psqP%t1h(~GLkNh#K{bZyM?<4Oi% zCAS0DRSMwhAgrwsIh?qIFN2jl%GHLLvCqjNo)BmNgb@X*fvWTkWkv(FkQYOmnBDg< zgC(8N2KbYwv^wJ@`zN=I+w6pf8+Jqh$g$a&Ws*E(Yg)MR&{1Zqj|~ z_oIX*(ckk}6=i=0AMouQ>P;Orf=}i=a{4V83y@eC`n5IxK&}rqxJ} zL#<-P=jc1@jGp0tmcra4`|Rdk%4>sxLEdBcesISQH7HmbK}^h#$%-O?*%m`YZt;cl z?JVR`4{U6oiM%s2|<1?z`zvM|#ybM&v`E28Ctb!?BSwjw3h~O7`2yEaX zQ-=v7y86$QeTMS#l=S|cfxUqk^|J<#T^l#BWA%WCt5CaSrs#&a;q5g8zE|SKNVGz> zoHq)@$laaK4Z&}7j!LQ=w3S$T6ZUB8=TO)E+HjfLFS#X}iK-{fZ+E*2U4Z3eQ=oK4 zN*0*vP1tcSKVT%dw`adsB1ks1@dtuZ#i%Rjq1R!kQw#a1ZiKhO|QIDCOZVabWr5F27hudFYvz8m&c4=rF1-EY$6a! z;eWhlWNl#elQe2x%dPVhy~>%Kk5HMcTc&qc9iTwEy;^;BZEwm)&KGDEY4IS1 zU|NduKpWj@d%)kAtO}_Dx@)PtVH0#ANnTv z+C8b-aiM_4aa#^6S@=hbeUlu*8>J=Fm-gn5n2A@;gC5^aX$=j6_PV28@_IEQ!+_*S zzhRprDyvM-*~Lw>O9y7A6QH7bxcBJzvq;yELq!|oh)t4krJabC2=ZZhn@k;_`-(Fv z?kl#rG3uO`U?*C|$MUQ`N;%%ym71G@Gj7v=_w)6JEYY&+C-*G z2n)Ne2PFbtGt6B47Hsj}&s@@!!hC1Kbg)+8I(JzLcG<)N z*^R5TQ5PiY3_*AKKzgWUbEY8%HQ*g1rC&u}b18`*W9O9Dv54Y8dTlQKAp=Gx;CT+)k^E;n7Ac{Tr&*Rd zA}@YYZ5=MF^{k!ReqD_@{S>?6uayb7Nl87uyPyZYI=^NzxA9Nabb^Qzs_{Iq#}lJ> zJr;tznW@{mhzjVdX%7G0xKI1xPU}fA-FSYrD#SRCc_=r)1f`L;JFAN@;HV@PX_&n!v9n zP6VZdug5J}tu#sWtwY4FwM>LhPPTEyO!d(-WA+cbS$s(R%wPKDlKRi9R!n{crpr5i^ZiEi6_MWz+{AN>6YXYO z@c!75bdi1Yc{bEhZbNPTZL^xZtu^V!mHA^~=Yg?bg9E@Tg%w3L+s61Rh1I7eMb&M~)+C_Usk%bonGG#Wj2GYre*4*`AP zC@8tW&7n#F{(+}|hgp_M17l&(^LP6%Oe?=hvIKt?4ij*Rh-ZX_#<1Vk#f(c51$`>r zAtf88WjJY0(#no-u6ItIact$k+G|GWKlB?ulap_yw3T}GQ0?nkySnfQOiDL%IGnF_ zhlc7lyR+%_B9H?ev%KDUFwCNoP+h#_){rd^1PS(0aAh5KpI@xv(4e(o^1CvA;VX5J zbsz=_5pFigw*S714pH0uEDY{{LcQA@3y!iyGfsS%VPiogIp}!d-U67pmI+GNFG!4Y zhdEo>MO4lzze25;(l{Toj3jbC=<)T8uFMb9F|r7j!i05=4JM ze~AOE%ls1lbOq}D`=??~xNO*5Qck)z4#jH}1xc!SsR&N>SlObd(#e5woesYrS8&O$ zM3kW$Y;l5rh+D}6gA4NuEA34&5xN9G5}qNJL-8TO~Hoe})F?3fB| zJ9^Av-j0w31zb8du%jX>08RBJ#esE%G5S6XFptr3c>C^^Hs><)1HP!JbC)Bow@>9; zl-``jmK=Qb>kk7{I8;#KF;By1i#x@9R8`r~-6g!4T%k`KgO9Y?4YC zv0Yu)YN!6@nFqL%V5?+pT&W+ZkuQ20W{!$m7e-@J_JXHZa7`suh`HyLBZr;nUPfF* zkk`@ct2Xe-tNn+^lEmzerTdk%^p>J%Bt~^q?;lI0*%m2VyqvwJ@xUXN=xy}c(jjSg zIZD@bvTp#+gwDqD=-y9j{*BY#H|z6#F_2Cn(jZM2Dh)-A)7{~g~qm3QTj`8bDZrtadZ1#ao53Cdf z9?Od$CGRlJHa-7*u95U^1!toFaf|m52jGL4XkrdwKBYsM*hkAF^Pq(2HiH^@LiYF6 z2z5sz7JC%m#O7WE0~|CM+gzo{{NXMY)Agirqc-yTeA@@_3*lUMeS_zzdGn?5-nOB@ zC4Y2PJmWJnF;Fa|A^w8iUG%H`2ZS$6^MP&; zHf3c%oqiSRANa=$*jcz@kcaa|Z%CqL!(Q?``Ts2fIDcwEnKlS=Xntdpp>ak9Sok?9`>9Gp^Aw%e?fm0Yp*+t^}4{Y=3p9wzx{b`7StP$_+@Fa zw-;Pvpl40}UK{7n&!|Olw4PL!o&Hob-(x)fDpjF0(T|ye7EK3lnzjfpOAQ~q$5pWG zdt0@f34|We>;o>W+iE{Qn6KB#ZxIc{T~QXKXNMIRgFb!uR`oNCo-4y$#I7jS9G6+b zh|4aK=fGi3zkD|WRl$*${>iVV#D`20-3(zDpoxpi*5JSHtaZoc7YgY4v2VjsRe&UA#@nrd)c}4vuj#jSY;ak1h>K{MC6;D&)GYkVLf?hPqOeLrg z@JB#OBmPahXbXpZwDQ8m#qwHI3_}Z>NFdNqqwk9UNk=<8T;rAMz8eyU4TX+-nSEJ*4E%hI%!um5PVrXwA@d^vDd7BVw zy5KtPVdzt%)YDno3b&6Qe330<+D!RL=u_T!VREeH+YP9kZ+mNZF8@*w`RyRln67PQ zWAK4C`R2qGjDI2-^Ux`Cav%Zox56X7`I||WyP+h;vhvO7<$Swh`payz*9zF;`k>dr zfRCSRM%+5Qxz)D*CghJ}0b_{@7>3J!6{4?fiXsWbwh05ya}icIhZ1-0YffATzciLA z!&^S{eMzpFX>X{aargK(q*&NGap(A8Vvw$VA8>p!v6$37(Ihcpoe9I=V?JiH>j6Gp zZe;Nt#C-VOpR%nfAiQ=@0mgKb$CTx!Zj$pIXFrU4GGXKQ(GQ$`fzKZ})J z&kBA{7M=lodF>NKT>O6;%6$tDC$7Ab36RyP|6MuLx@d&JDpA z@4&yk!nREz6vEk3LVJ=LC%I?HYvY?3EXQ2;=(COtGc0EBm1WZA^HT1gn3_qK z`pd#(djj)rqJxW4WY6NJ*5^J(^kP!YwQWwJctOEMh1G%T{7qTyc{+T6L8YrQhq@-B zAA==Y0C(b(y<&Uy;z|MTl=jtsE3*tLAWlIgGpVlyz!t^BdZMGSZldwKcufJ;(<*Qv@@}@5C zbtb@i*2zg(uwx*4XA)#U!#=Vy=c(=oFq0XdsI>mn_hx=hYOhKh%Ejwkeb~1ZzPi5) zq5ptFsE+#JYfQsHOk0@jENflmgaq+}&OBJx`^1#G6}kT8d90#upfO4@@8pD2?J<9d zR&BVn6p>Y7?M`mH<2gR;H74gL^o98LlP#TPLfVV{j73^|(`w78KHUp1T2sJ*kaJ_t z;FSAdw8gtY2H2Y6es&jbWZkwQdwmTA>;Ad1{$MZ{*ZInl@rK}ZCkExZjo4AK+u`p0 z4U^zKF4h9DMaC5>>ud}=YPNDDq23MBW}Rz-UW2&oX#pSZD$}K?>#_( zZ*kwxbKdt{=ew@_LBiU5uQhwhZ)VM!p|T5K0(~R4hM_4@eCa1?Xc{Wb2MOCe$Tm9fw^gtOmF0rDVL95y8*a zX15y~DW_&9q$QhxmuhHV?1=ewXIactpu6wFd!~1;#eNsBNO5bvt2Gck-#iOTBwY8= ztg*X&PPb4-N}OprBzKq#$0q*1aq(}&5HHg43DYxqp`V1I=eO`CZb>sf zWtFbeBSQy!qy~6Pdg^&KBV}8|XWJn{mjeMc-v0Ts)$TXly3%|m)>s#YL z8^V%iSnHSgJ0u($h4qA=-J!KL@z<;9KG)rM-UjxRxS3!Co3PMq44_^AVJ-gyjdIU| zmsmlqroMorGpwt&7sAo26ocskVO-MeSGj2RHUoZn9e&U*o73PScvGh=@3R4;L8O;P zroHNoR)n`Msg%CZm()RapPM;N5f!G;c(XY_T%uoM?;cjsCrmCbS4ooP^OtLJC0nAL z!NS*G&%rM7*h1P{3H@_jZFH-e10^5fL+gFAW2*pdJQa@SMKlC})VQv%P?*cHBjkqN z3u@MTVy2kBR5to|IzUyKa_S!Vwpb?5P2l@%G5fT|L6tV}yH+xrB?y>qM0pv`UHI|Y zB**jn$GwT)4hf&o%D;_a72{WjZl8vK5n#C7|Df5nixqe}uU35aRU*KXyabQnFRcmB z_0gWcW~7%5TtxDCEn5CDIq%v+cGu>>>dW6>ek_0dvT%zM znKAgXqK{$YN|8ld|IK~{^_~5AjX_Cv3)-Y7oK{`A$_jHIC{MoVNE_;566tqtf4yne z_q0gp^1r3uk1}Qrn(kLpT5z0C6!=!voAbV4ald#gSdIqRgf?uNYa{+5+seM#6h$Ns zCfLe~`?|t13(CF3!FPQ}Yx!@|Z6Dq!Rv2d+qk_6g(H>0dbWbI`?~`e=?917uh)O@h zFZ1+RoB}_&^_=A{ni_t~-1*(y^7@>{&@Y61IUNh|D4TQpyT^Lsm|i3_VUR ztM^Me$Ip^0@Bhs!BcC~ZkE;6(JnWlJGLl|U{opFwQ5#wG?FTv;={SvNu3fTTE z-U=!U0Ueuimix*@{y3c{j; z1g?6>nd&pIBoY;}ze{xJ)bU}Lu?c8dglqu8(Qg~LDdpC|NR%raTYo^E{eb0_`MlR4cp z`$C;!2_w%xL@3%Nq5mLQEroG#v7aK%dfUA{&6H{nE} z$6{WftaC_0?^6p03``S=dRTHxBq{s&6YyiEaNS8m*LP_DUHDm~>3@?6#x%)>k(a=2 z3|Q_aTkyGoGz+?x)5@_lfso!9IrE;m;@g0a?dD|z z0!_T8y%zXkG(h7M3!>rN56mIe1tC{Vx zs{Ch|NeoN>zHqFgdU8;q>n-7g{f!`$br?ygT&nt_;g)~3uK&p$>l6zP?15&3OuX6V z1rcWl=F9Xfs-hl~=O@{O+$ru=2wZ94x^L2&46JmT-nZ{B%l`9}KV{zt0sp=J((A*5 z8+j*u4$g%MhJ*>Qeth^+gVT(BSA6TP4)|?)pu)p;K3v zkgP{hAH%fq(*-lKmzhHju=$sf@))u~nG}bG_+FZ7lGB+ECKiph(veVeFWNHK1XT9_ z3}`vKuq`^+xu((beN~Di#0gw#9fe#zaK78f?|8Za+ehw<`vw+87PR+W5>EA zDhc*axw5@AzM9gm8S@zu7vc02=Jd?c2%DVa;#i{JFqP*rC!y~$%|?HR>ZocliYLi0OE_)u zWz;*Abp|O@(0XXDS|SX+qP&EW^_N|p>=pFGM9hvSX9*VN4_r{k2h^ghQ;x>zCG>TC z))abZh(ZZ>K6>uwZ>6p+)UpAuUNvMkzPZRF)THLe>eM%3a=E4EwzVq-PPd^A2}O$T zk>dsUf|-A|p*1g?8dkdEQIy9%l?qzp{SKb6t4k{%(ltfA^%KEx&_`jT@9*9DZh+j{DVVD9z8HSCdgaboD2wSO|J#^I@x4ph zjrsb4RwEN8A@JkVX9}3rY)e*R!{p-GqkmFfZ9_-eb>G8IpG-+nJOnLcNn@ZIC}>ct zqnYC3ePGKX^I~D1mn!>IAW>~qBjlzjSEAGh@>NWVAzj;Sz?<=8%?i7BrRV6hJQ3pj zOIKL&ETA0?m+_4d+drCG6_u=xRIw7LPVlH!w9s_lw*dv*5X)aHK*&?-1kdt%q}=_T zjQbM$_(L@o%&Wr_QvP8c64^H#A@Q4)y5VjZgxC|V=o|nBwF!%?R9^@Zjm1^c*a_Oq8lc5`B_=0XUy3|Z?);L z|NJz}u>dojIExCRW;or_fcC+xk|W1DK<}GS&<9cfR1-uujs0h!K=zg*(8J*Z?`Bx! z=b8m}0@Ve7Zv%>{O}~)y(aK6W@Be<`2A$D`&});S?~BjPIypRrMPh`qBtCeeEe`o_ z_gefPKiuGEd)m+jMO~Jc;h9-uHI_U1Wm~uMAT@pZ02+TQzgWj;V=76uS|vi}(qZTbhWLHrbziWn6`A zu9bdJx=+r9pn$3eW66&z4Yi@cS|6BVE41R4eCACj!S$ z!+G2CcojE+<+ZtAobz9*$I)HYBTE3(@Uq8 z>TQgT(OebdM{U3V_W5%`{@b^wm(~kzddsZn=E-!ghPQls&G(Y?N#C-Uljg{~o==ub zB%5#kZ*sOGnkHb+Jj$$Qco-`dv2Q4scu*5+4FzWj+(MZr4KVBR!=3#!Wra24B_Dm) zI5$~~()5;c_D&u{88RdGIVj`lq!b&rJ|r@$23SB_f^N6Re1ekj=O2?T8vSi;-&k$s z>A&`Q2-+gzns!QyiZ-+xp+IKPyIyj)dzQ>oAzG0+zD%*jbjt(AShPzVwoN>17JJ0u zX~6n{^*h$Kgn8dk^6u8D;FAjJ0vtyZ$`{K7rxue0jBNu zy|;ZYN_)fm<<}=-wJn_(9!53Xe5*v!eFICA^)@UhBNPe@WDVMI12*sPp7fjo_FI!uZjhfz-(lqEKJRTl|gP7+Gcn$3N%PjKR<9#0YP_XQ!Lz5`xKN5|=07_c* z|E9!>Uhxs#dJ>^z2&@f@U~T%5`ey&xMNk+0f@&Am6Xjy@UXuj#iP)b;DBMgPl%&9T zvK*NQF=?Q`HE}}Lu>fupX*}hBPc?)Z--A-9M$U+CI=0;6gJXo~170hA=6ApHT-lug zCK*Gnr3Ey$Ra3V^Bi?lhEo3_a#zbA z&#H=loTE0{dXlAOWA!Sa(7`FQex2@yZ*gd&f5#0o_=%_nMhGOH{I*)3K!?@}7tD>p zUJ-|@=Um?iH{3c|Wp|QtFUO{}-(YU|4+P ztanMx%&IrL2+@EQrs27sg1viEJdy*yFRp1u+(aP~B=*`e{=LDeIxexm6cvBT)WVu- z+kXa~0Cga}l+yBf-_rpfEgB6oR*lvgJ~OXh%=&fEa^fh4@h--XCqJP`Cw7njt+vyo z?CA*30-fk`R^S2}-qd;k+FGYfO!&J3v9dnJa%SSzN}j-Sn8WSrW$19ZP{O?S;jh9s z&f~AJlj4f;PUg2ShRY(YPO}OjQ4K9?R%)uF8rGhoIfW2ySRtQoD;x%~v_PsDY|r;6 zdw^K$%lf&zLT1UE*d)LGp}*&P1N5jmEZe{t^p$#%g&_iZ+;+aJMP6 z#RW4xeDqlOKhI5rvyoi=SJWGmOb^(A{a-5hmD=Kw7k=|+4ao|+ccTWksbWSa)n&( zC>C|kZjB%d!`QgrPvtSlatA;-WSAVaRs)GvNPR}u$F59@?(~`uIwVZc_!+h}8DjZF zZ0A%J!l3?WGBJ3x>c;uLvk604|03OjeQ8thJX||t5_nYR$C=DVm+$MYSpxnqwfb(Y zij9!}_rFR&jmY_WF5y7abN(Dy3QUSyFlU^s1QB@H)GjJhbA3kMoPcQ<|8B^exMp7x zJKc9cR(qwI5apQ6b&=F?v<$jF@MF3zyU2N*FibKYKN(VOE3avXDyv7^ zS`8K1HgpxF5NdK`X9-*lU4>kGRdt;pup&BCg}iJUsTa0l<;)g2RQ%Y=yo$}2GmX$Exy-atLic9r@(w(j2!tP3> zNJruZRyyY^{a3239F-OezOr5iRU0bs+DEsqYK`nw*92&`0)^{;SdbU)w{da$d)%S; zGdtQmnaj+p;V(!+tY~3ar!Gs}KddDZ#afz=lF!vjXYS1uZb>=er*0YwhWy~rWR{xs zq0lQuKd@|~307NrYWF&&@j}t-R`bC%?yXL*$d8vs{0jF)qBNwrjzQ#tFW)M!{8j$I z_XtahY6<-IukV)nU8dRb>QMv&<0}*)FIw9ok;SEvb=4OZKKh2y|IKDuYno{)>~j>P zblX6g_S4X^3RP`pl-=oS*H&u+bzc4(Rf+5?@(?r!(f(wwd9`z~gNELR#gw5szOxNS z=;i!*|4q5F{1omTRICEy(Y}tFmp(7eV7oT%$sQwsqH=%*T*^ECb2k{=mj&1CKqDM* zl)OZy6FzLoz|EsCC@6s!W^LPLzC#dcjO8fFCs44-8iWN8`$R{|b(@=Y)98odE*|jA#(?vClRW0!A_G3u1cT1@DFABd@2{QHK_Z!xZ~EX?$!*GsXcle8+U{8X&V;}RgN z;T;H|fSCx3{&Pn*zp+TlmGcxMh-ERHE9D(DVtxx^Grn<+t4XN}K5oZ(uw>3d{#ft; zdk2+G9i>zBi>LgDfFVwowxRzZcoYfRU2QCMOi}_DFnP7@U|}ZzsKk(K8!|M($ryhJXUaj zXuZ&sw0^kYaX6sz>JS;jYK3C!yE8IX`iNrqD{=&S&Wb}Sx_#g%JENAKM&#gE@H^h; ziwSc{HJ-4)HFq`2H}y3YJvUN;PmPVq%bRFVIp8(oz%$}Z@mE#4uU7+48*j>r#f?7AF6PvBz^<%raX<>>p zit^P3ge5NNr+QChb@#R}EyN^8A3K6P9!=#To%L9>iT72wS_E5-IQL9E{l?5O^G6J^ z@N+uREy^D*tVj;XfDN0o7edb(J$sH`hX-MvOuNC&xFNu3u87i^W!N}>o<(xt=F2Wy zCK1|OFEyF4fwT-+D4QOIpdFWB(!-#Iey3f;46UF5(HY9!t9nM`#)fl!T;(Z(y9jbX zYpSEx&jSBtL;~`Hswvw&%a`s!v=DqBF+*i3h+Cdph#ajkt=67>Qs(Ed7+5K^_jU_L zKv_7UK@(Z;MTEhUUSS(Y9rDMDZ%IR>rN zfsN^rZi1+acf9&-h%~fJP?bCe! z=G8wZ1v;087vx`XGsM%5!0Av)(2B$s3vLv0p)#NlWFp?Lk4kh;!=7?_YFuR>zr3^D z5K6EYJr7nzgB3`2SCyytR1Vipe~U-6-ShX`~Z`-?~lN^VL0yew;LzD&Bg~kIEcc-jNyN?vUZb;HZozPgMFDu`vIT5Zk|BYzIZks08oBPMl7^SN(o>9Ei zs`u1PFbDbtwTCdTu4zM?(80}5-gQ1F*53#&Lf>J!%k&@UMv(aS&#uIOc3Ym&KFytY z{qdWwAO4dEx)L*^14EzxOsa;obwEpNdqNG4RMF$M?h~I<**UVdB)@$WqSY`Hz~7{k zpTM8pnrw#@kpcmM=XNT`M1H)Z)=2R(N0f1@DdN1LZwRhM)`*R{&nhUk&v2A1k#B^T#iLhS zMF!%Qn39a%+*9nS5k$p=!?ABHf(J`a7^lO!d)A!u-(<&?_7JZ^-TYqCjyzzFh$Wyh z#cwI%bio@Zw$`>$l90soid@0&Q#!z~V5)7VMO+T#Ilu2Rl)0#8RLZTSiK%~miAM^p zJ@_&&uRJO)dZa)uQu@Wo=@Yv--8N`s1!(RL%IQ9_=Aky7=wEd5yrc1#XTMsVo{6XQZGOlLk0k9aSpQ+VtfTvm(yKITon;D!Yqb!BnPI3n4~%rkUEx7O&(<}tpbMS|w!=_l zN(ml||4hNUM;T5T5ZM-hb^R?)B!3rUUw3w;8F=xG4GR$xkgOA|`8EPgZ@g6!%87q^tGm**HQLrv@`kYNzjNMc;&xz z29cv|Y%0ILZyc|u3SBxyZaH(4@@SiJ#-oo5IxqBG=qO8+qRb`yr3srAd8|VRwXMi~ zN_>ce#jyzrMA=+tO^Tt$DPJ85XET0!Cn0*UzU4Iv`dX~EY@D&kW7EpX7FWWaQvpZl z7xkQ`ZF7<9KFLeioDpGvST2>|chQF=9ODoXar)aM1o4vcE?vCqUYcugtOF9I-ihIy zKX?mxvXn|CH8AOHgdJVXr`mnVg{MM`j>Vg-l2#~QxaVgHhV%iA`S?)&T){`H{q1G6 z2Y>0I!1pnHtdFQzYU3ZKa> z_kZm9if&&IM|)TmEcR+yE|!49-595LAcbexM`i^r5)dM#wtCl@MK1V5)4N{yOvy-z zfG(X;O$(?4T@(D6BU|pQOXMes`j!_49u*bI{A~ITDQS`>{#ju-NxT8<=AnqY3^f3@ zFUH~QKJq?;*Qi!b;S;1j;N~HN(f7r*oqh>h$_6^C21Mr; z(H;qZyLVtyz5}R&trW9})eEx# zsR()W7xJ(nG1ZP_^t0O%<9_Rm0V_*FOPF0th~;_AL^}5Dxd#(_O}F_Ze~jm}AqPu) zlli3#`UQJby?NCw*x!84UrKOK8%B^`b5~)^ixd&WpUg(ZUwpfa287rp{8@>|s6UP~ zzU#6{=#EYdu7LXpQabVZ-Il`!KSaB(+V0Ioop!Kwh{KR+H+h~W+%1%$YUI0@-lq0( zWc8sUP84Ee;X=ftMg+-CMO({o3q|L|+*9wiz^Lf$`Q^#4>{jA+51G>Cp3!=_=Av%w z?WdCWKjDA4OUWjkR?gM>RN<(bzAXR! zsvItd7jAeg{1i)k%I$U^ajcH$>RTwHd|tPYT5-gAgReO|y9w&Hjms6WXSvbjTzbag z$?b%s`~&kUbP97uWrmCBtfG->i*u&IJDdAwW0d$#CNQ%~t7|)6F;uu38Y;|-(6^6* zeSCWv6<1(b^~~xOpY-=m#%uN#$?2eH7{Vr0PG~|%FXXh)Q0m?L7-UqJ78=SHV(;gW zusn}y^&|x79@^x~{BjI&E?hWcIt3TATV;zW>uOW9XtfPQm<`aaXYYev zrFJJQvB;@}WN6@?+oX_0+s2k*0Tdjk(sjjYnA%cT^tC3IGIyJQo+TAbmw~ zX=SH>(^=}`H@*8t1l0?)t|sTr?jL$TrA%ARHNBsH`G1zXbvdqo))YBr^feE5)6_ga#j z$dxAD=7_`-7w$qoOE;EY_Vqp7VZHPlBZrg{w)C~vJhaOFYMCNg)e_;Si(~{~;`IW} zL9(+Ql2Ndrd9D7v;}5XfxdxLp>w&|U2MJabQHd;a<;H!#$CeLmA(vDpYouNu+vp4x z*RfVkC@BIBNpoN!(^CyFB)A$Z7}nP+Q3v6axz%{SKSr7om{N>I^(ua&LDG|7uupw5 z^pWk47QP=iNUm29FYe%f-*L#Ge@Ic!R#_>br+wmyuy)rSp;3$zGP0z5?z-sMGgDIq zb2HF59H;ryL_t0FE|qt76Jy0W-*F}EdKZrmV{JhRgSu$gXbo(-&9p%D{N{aQPR052 z-1<`5;B)Mg;@!H?`pUeKfsBem7}j8@9)*)XwX4-4(oiP440Cupf;nR{P`o7wixWDEz??7DG8BOPwawOhM(>Yo8-&_Ln!E)!|@m^d%P*66u z4D9a+?ynNhS)O+ps%ignLXPKxi*(gH>dsH_Gajh|YWhqL0_maY$tEe8B9K-RdYgbT zMM!4G#OC(!t#D?3r8w~dXZ;Ko8s?_W*`Pk~NWr9VwYGouu9*?i%BR)N%u-JT^-OBYB6s{(z~8;5qi(A9+fohX&$5K)`va(LEE;UV1d z`|mg4rnXRzoWgZ2;1>J$se-z&*X*TUkbiJC3>7xcn5X=dm=?4Y$9Dx_Qe=nCrnXh&Ku@ly;7?2xVM|r-A+j2c2Julnm?=iF(+VG*kuQLPok`Ogs9NIV3HJlN7 z5`dm=+kPUk;6Q%9obL7|^)FALg0+H2#(s73QbURGFI&RFgnJvhP=ISCeu05gPZB3$ zJ57~2_Z3cX?5uJM_uDz8FxE2YzJdQJ^C(68M^D17SPWv!ES}MN2lrc_61UegsG+2> zOoKlmUt1C=YCD;HHB?$)ePEVpSU~mOj^|y)ee6EdWD{}s%#|%wUODdJCXbYp2T1G9 z?ZZA>%asennghcpHdp!tj{9ihQ5&_60f&WVHb7LLg^JHa*qcz(4) z$v0w~B5J;~41KIr@{&SPBfg=fF44t#-`k=(qZ=eyKN$paHd*!j+B3&8)@Va&)pu$U07VkzVyIqVY+R7@oO@#pMUE5OMd0l(#5(Dk7)1ro>M%r zR7n1HElB&-!_FG_uGT{3*CB5Nb|O|(gc=AeM0gA7#tw-GHY;W8Ns0X3=ad(sQ+q)% z(P+P*^gC|X=KiVJk*J+Q&!qEAr$T{m`FjN)c04!h#$4j6>Ei>>hn~vxP&J8vY-PU=q;BH29lQm73`Sm@{T&LaM>-v>q;tEsg`@cp4{g-{+OCOoN3x0Bq3gM{-Eez)^%=HSdebQAD-!~8pA?Ili(F0|f)l1v{RvhbYFCdz9gc(| z^26C!rc%8S^se?c1@VgM>OKv`Iqwg!vZC9nwg8%M=iz+Bs0QJbE7^C;v!lN0t(!MQ z*P+nGd1p@)0URXZkRvm_Ckla}N~P|Aw~)j5L&xpgS_(#4+=o3`C7b;_t;y2iq#qs0 zSEz(oVHDKU!U=I5zQ}WS3>X|vvcjvh5dB%LYLPy)=k9ZQFg%c)aw8i>2>y6#en(YG zW>HvXjc2x;Wt585cDvIVw$|O^3y89rIil@Pib5~E>LAjQD^d9fT0SG3EJh;idC0|V;^7Gdv2TWw}ssr zoL20=aQ1`*1GJ>Sox#xDvN}9AxLshVm56!P#s-lo)dCGree_8&w>?h~ncJo)Kh)&X zm~*PWUH5Iv>5)QQu>fKT#3tjd*=xmy!=B$r`axqNDlQs3bRq9EEoS>#HC ze!6un<=-TJmo5+yf^X0rd6#LwkF`D;WxESq#*}X(W$*UM|@AM8YAc*p}V@gzlv_$PA#3$k#=9vou zm4XLL^V6o`bM5Bl7H0ECgI>mS#P_=H?>o*c9g_kg+f5 zjso7w;zsetc)fI(Z1FW>?Y;#%I3(L(t=NV8+7%iGf7f zhZ1^HYZa$9Z`8KGh8|Zeeua_=$AwFGMWN!mm%T3Yd}sG4lgXqs4wt&0Ct_b-%r2BI zUV)kWIHV;S?DnQh%P*vx#Ki)FGDzGu^a>}aRs^DP)7RwowV`H&`IB;&+^F>xurgQ# zNH?dtpLuh{YJ}IVyDxEyU-m6}8_-mrf5X%4*#>*rnkPoHMCI@U0y1EH-n)}8%eFk( zh76Ztjw|BKp~`oQGLQ?!_b53uZB*NMcPnVofof9Nl6|s%Oq}AIA;hb~5<*j#jMoY7 zy-KWA9x&b$s%09LX5l+!t=ZK8hkXazQs3oXm`UR8G&j1XyMaqYt& zOJYkc;VL|s4ZI}L^jWX^2jd>G@WiY}xpt-x^_Jtm$hZG_!&VIc$nRqza-7_4$SY$O zb#(MG4P<=I7|om{rU~x_^7?q}kGB&T=T7ral-eQ+*rQHY4+NoK(_R~SnJc>Yg~WX; z|jb)0N$LPy&^;clkH=-SvOB8fUKS z(aA}fl=wRAtWBcl`lr_>JFsURSeauI5)xK;&O4372&lUBBQq*05=x7UC#6oEV)ru` zuV2L4ko3(s%3nZVH@t{oDEA-aSE8RnQ9%b|NnHzu(^)_TO_>L8F;w zXJ;!g=*xEa62iS5qPZSGXGfLU>;Gj&ojDdFnslp3%EeYJ*n zBw+=VI_2YihT(?P-&nD|AKU*D5aYyVB-;P^&n9b3^3yf1*|(8T4smVse%|CPmi&}1 zo1a|#s)r$M#~~$#39 z=Rwl!&%84#qm)PVeDvr&!2%E!vTP1vsAI90;^5$@yQ$Y-W<|OD_|i^o?Ir(~FqZs+ zg3DT3)aJ6Bga=*xkea)@e0p4*Rr{Y&2A=aPzkdBvf_N`IK1r;84nJpYsHssHIU^?= zeDYP-#UGEdraWu*pS-y#Ug%fZq+$V!ym#H$ypZ50klPRTc8}OqSRw}+xBhb->{9ta z5>Ovv1@b_6@emOZBeeX{ben)6DdVJpzSuQNZc?9Jva8UfPK;)nmMvo0`gr1J-t`Ap zu3RB0F4Y7T6vBn$e2g^k^lMLRP&i!Y>Q#*=PtGmXt?PHDDf5698eSs-G$|h*O`m>w z!FB5D)vF@>1oQ9h9UV3=UcMCS_1oDjg`dsMIc&`TW_o$vS>3_m)Loxhu~!!#eL_=n z96uf+)?k-PD!~%cXmB+AUc}|De8cRNwY7%?ottK6gP*tHjoF{stbqymSnv>sr8BRp zjC#n7)vCpd#m7}~?W%<(PU$6ta_zbp5bXi0&-%#njymd=({RJ<()|3Hgh5%t-t@x{ z2FAwX&TAE9nu9NiQagZQhWz&yUr3xY9yHOYNKZ}ew@+WzcaqqPGrDua?cojY9uU)(L;!~Y% z$8rDOqT6qs3kwT(S|d5Li;Ee~ojaFbQt}C`7(&Hec+i!`F^GVUm&2Yz z%9H(PzgFiNe&O8B?9={P|FJM##C?$0>1$?YMr6{`^#WbVXaY||zzDM_oJ z_me<)^M(qrW`1dD8|X;V|Jna+6rW;}s>cEsjxj()QE^aUhXOLIb^*Pu6aZGBzdx&^f`Oh`xIl9G-ew8x2@l#)7A zC+BW&FRAK0P?7S|^vQ!Ll1eM9G4`;isuZ94d)SnhVEFhJBE+^I*Df4AF1%~5`;X2K zBZ(}ie~|T<^~@_1SV(Vbn4b0WEgNo?-7n#1bRKSiEjHWoNI?%rhyj7?=go-kYb=~3 zzJ?R_w+2(Is?GyGQ?}FbIJp-uevPi|5QJ}JhzB{k@mcRmTL7n}v%&xh14)N2FED58 z-??)~&SSw8knMPCYAX7O2U&h04GOmnEi4u}v4G1$UcKTake$yko4>Kyxw+yQ78)8s!%TTU z!@-v#)AB&ht{DEJ+wVhwGMxhUCK|kwJqatoAnP$_fI9E*?~mdhyXxcPQ!RCxx5!vu zI!EHROao?}8-FROgz#D(Uf<=39GAFcc{?dN65Uw!Z*omLtrW#4uxXE2afI3gdxBV2 zDYy_LM@UfpEaPHdc@RjKJtcD3jehrV^2*)1y$A36N8A*?_x6TtZFwA8s3n#;OJf_z zn&pRf3)f$qrM+9qdHyAXN$Fk9(!2FXWg|cSiMIIYp=pbSXTeEJQsn5=7+)Wm>`M=_ z(SZzUdV61lh_jEgN=g{_wwJfHvH8!$*nz6`9d7WGw`xKrBqxhVNgb1vl+?L)P1D*s zOLZ5M0|qC{TBrkZxlMI)111EeHY5ZuVHmszw1HL|9vX@Qn&JLnl{1;obEr|_wZ8ub zJk#x_z#HM$^ZU05kOM$C4e;!_xj6#^1Kf`vMlg@EQ5>dGLyrJ-rnOZB@N@ob*S*|TLUw*NT5`k+1)KWl4Qt0?%mfWbX$CofavV4flPNY=3S?4 zpmm_mPW!)~abS_l#3aFPB32*`;z+i~m?l%5-0DE_=9*921B@dSxT}|TIdB!R85>LK z&7;H!4yiJrjw&iEcebw%cEC|{R)_DqRGQz}b{H5L1%6y^;1LrOOHuK=l;*ppYYy*k zhV%)@Swhjg7X!;}+9;U)XG}~?vNJOgfNY4-6G6vfFT(kS zh3k=q+1fE$*RCfHRUMOo0~TtKU3N4g)lNrJo09304chF6>b$Qz8-k;0y)@1W!;2 zVj6mSdPsx7pio0ApLkpahXN~v$K1PA_N0N$?FLK?ES4a6L7SVKfcZD8fo)=7wgoIJ zXZKx@JVK*NG{O3Dj1<;fG7=3FW)?)rWXag`y?F8B1ZW#!^)vSx*98~zma3k(+Qqyt@Tx`6m z%_n-TzcJ5WyDefHe7V=B;IHf2UXVIn`;oDQ5B96ZEDXx9J)#E1SKGU~+JKQO1B}r5S}{3%OW*10)nn<;pHrwYTjp3tvVzJvC(&qa z4-b!JBXI4uN&V{(kJACliaJ-WtW_uKQyf|Li;t!Rm6iVhqE`!yu_FbK zYy7FOXM?Q9+-HA?!5i9se)Yql0PG&RgA2j?&^|I>W@a6(gHjaNu70CHR1cU*M=LzV3*>D>I~(ApQ6L=VE6myS)pX~4VmlN+yF6QZ`=q1%nba&vz8p<&_P#5 zZS4twzoIpbjg#Qpb9TqZdI2{34<02KN;3$knE$0d|MIKq4r`Z2MV#6dV6yJkv7sYm z3Hyt#PhzTs#*Wn<(3t|5n7H~<(C)C&TLF^`@-v^H%&dNmmbzx;?K8fpT z7+|%_yjHD;+}rpf3JoyL0CA)M^tys8t9x&{U?@$Y=(AyWWSC6GfTU>wh?jQ>*)4qh zE)`xl{>OlX(L^B>e1k@_!Rh_U2C#^Rs;cAqd2GNA!8*FSjdkAZWGXpLq5Rz3PlVFk zT#X%PBYu)RO7@`wTyR{2&)x0HWI0SxAE^{RI1>Abt&@efqm`r%|=dI)2eAwH1 z+a`ONr)ocvwjh+oCqN>L!?MbC_!}kgpj1X&GRU$;WDx2v!Im{NS01^p@K*l=|2+Yi zEH8dNZJ`<-e|Etdm^_xjWFYj%58|(@c>54>2sE$()})oug8_k^ogFSEFS&28E(QVI z0G}|pbLRw5*JXZtTX}HyGapG=*{Ng4j%l(4c76M%1&jmGJU{JcCjnM`rRd2B@QMad z@%O*J;Ml}ul$1nwwYRGQ7xaeF+Tq~GpjfREImVGg7FuP!%c9g$#w{8dMfWrqi^H-) z*?kJ7)fD(tw|jZ!{|*fa#(&PJuI7CG`t{80 zY4psY*EE&)ciSdkv($ zX;s3(LR+c-?szCuK;yE?{$wdyb*EmImP-&D;s?W64;DI0j`n2h?aj@`QMZw$B}M>v zg5Uf`WISH&2QJ8!FQtpoSbaGzcEEi6G1|+Anee&XXIj}l=e{&IQ$GCg>h8haYei!< z%F4>$qt7MT-ga_wB2KScd3kYxy5^<3-=7QLKb!UoBg~SynSodv^sh*xzhkX+mHEw2 z`}$Bl<&zP@)HF2i-rfZLyZ)_zOjAPeE+5#N z-}{Xoej_mAg&5fz-Xaut9MAdl$0ANg^vah40nV(#fn^a9k+8P$U;#<*`I>kCUjS(X zmi)3JhK7a=z4@~{emTKlP`KT0^!N88m&*Zw-U9&0Zw+dHYiq;t@p0W7p$3CN(b3U? z+1c4ANe!RRC$uKL7Z(?pn3#Z~D5fU_WLXx4CoRdcEVS?N*q1@Ny}cD?B|d=sJy~8} z#?jFcR8_^?+#C{#1a@|IN*dFWxp?x@zv^)>?4JMZj$e+I^KT=L-waH^jN2KWh=_=6 z&``%vms9S42+zVrXwd?+?BcVQJ@IzOFQ)Y)a5|mv`FzOba_H{v#>K@2PEJk$l=f1o zr&KB>y1TpeiVj(pMJkojw;Y8+AyJ&9F-u{S-efW<=I7_Jx3>p}!(qvTMk0|Ag?(_W zr~snI)r?6XyXQZ<;}^4f{%y4J*BcWs<93E8A|fJx8yGrop}`${o{L>*BH8-y1oO*^KzLn46oEve|4PlgVIb zX9s6zXNbjOxVpMRHk%EYnS9Zxs;WPTXxn|XelJr~Q_|zZh~cBBHIYc9qQ5OXA<66Y zN{fqsi@3hN#@5zW)v=8j8XA%g4i4b)crY+9AgQVaN{9OvifrpH$lMR+`a9%*1;Kytg?0PU?^A)tSG({;}3CRO#DMZLz79Ust;LH1hVM1&o`{HuY+$GY#wtroOKL_PA|fIpGDkyJzz`YHjHk~>XqtI!MAX_?0W)rAcp@SqvOz;uzz`YH%n6ES u9vcx65fKqlD`5hLh=_=Yh=_>DWd8tRRgFQeAIkdx0000mpGel9C=SuSnX`kn3hB@_v8L`Mf@_b3Wg*RF9onOAVI-0HC#t;z9%Q zk@7;oz&q{pF*pdvllFPXxrD?9pEw#5cQiT*01}GLUv6B=#3MBXt=pbgP2Rw=$oe%D zc>C!vuJJy~IX}_kmUgw@c$qG;SXL z>eyagj8@^{D_%MnTRluD+%8cD_)Qt!BJoWG0I+o3E*IjygyJ99c;UV~m%sRX!#Ui) zace4O9PY<1qfm!-z@+BBP`g9bC%(BsZE>!CxHB3DmJu_8X<`ViT>q~N6y4L03odCU z3vYc%9_!}CcG$%7Orb$P!r%J*m}-0HW)mCA6YZa#E-aBWv!N2ZLYEn!&J?+nM%vi9Y<1t}>%HY+eG2WnpczgQf@v-8zmIZ24NBq2} z_WqEqj#~#3-MPtvy4K&m4l~);zdmctnR1>;*|Rv_XK_6al~t6Q)1VLZwG0>%Is?k! zT}5O?4U{R#d5Z4rpOspe0DMzzGPPs0AngXER6c`;j)b#+S?B}&5^Zv>zfGTW9za#3 zU|6$78x?veU}OWFjP|#A&r`BT0ufIlDt{fc0yzHK?0|=%wP~(u1SuG1M~wcuVhr#b z;N+Nlqu+VCi>N$3&_$7{qm1?W>ICU=JoISGLf&$KpYwMu4zsGCCkCht2X8dG{f13T z=sv)b=UA!3%6+-J#=r>RM_+kQ#t-|QEh2)?oj+;|4W1l%Z=?l`G-SRfp}+fixJLt) zX{lTtmiGcJLL0`E2zUR$QQ|jLgenui`wUsW3qcW+VCya9NSx(}-=40h2@ei0Dtrm? z=mM$a)L2`dq$Pb0O=(>rdFb#8mStR*88E@1**fr@jqBLh(RrHf!Q>?;2ccey=EiB6 z_8j)(AwdmVzhkS*^~MS)VzW$qYoqWObK=Cf>}Im;&-&j_l1n0-`WqhBrzJ9)6=RCC z@)>ce^JLexn{rC!cBA2U+nR=~PN%^MozC3C!ae7@hAi_NOrCc=y!v@Z)p{IYzvv9E$A)Vy_rl|r$k#a zWvLRuxRny^$P}b`%KtJjH1i4-7@MamJ-rGQXz6quCn0Op){3^`*abV^*?DB)D)Z(q z=mur^Y*zAvbgWe=a<3{SP^ApeO4UXPUm1(ZRXXV`Rc0+W_0U_m;Bv`JGo7(%i~Vn} zJ?-RumB`Y*-ho2c+0t zeZS|x_QZvjB=@_vW^Yd2+@Vf6=~26;tJlH&#Dqt_R#+eMISJ+R&)~MlRq&nRz3MMb zdY?Qau}j_AjGo>|h1u{$H#@A44OG(+?UOQj!Q-qI?&$}P_SvG1-s1F5{K+A$BHdy$ za_1!xi>aT44cT=a?d8TUaK7V%7LZWo$d9@~CqgLF@w*xj>sf-tatm(Fes*z%o<5W- zP~Ua)S4M%ifm_}ByV%k*CKRI}-5^qkWovb}s#su_XO_W5VvuW%N-VE-&oam-p4ir; za%Fo<(7KX;D-Ir@D<3ty=FXCh9jj=sv#k+fWpIgsI0MsnE{aIdblhVM+Oydnnrd`$ zU@gJoSw=@E5|Rhl<3g+Nk1|+41_o@c=ka=_xwpq&ZY49vAKP0>uYD>&mF_LZJ(>&9E0=d`T-V&E!~S>u&*-R{ zd8&Gm#9{37#Mqy~`nRJ(s}AeZ9g(yBp>3IMIVNpW*PTlyQkb`%e+}Apwbf@qYM;{X zTf2Zy{w-@t+PmJ@T7QLUXuA#Rna|raAtxX}kpknvipnh#oou!=wl#i+)F}mmOLP zQAekTNP{Q6SO-Xt0BF!&MX&msnEWnT^+1Iz08qQLj@Ph)jjcn$0-)oPMW+|&^9zrG zglboYC=!{@1H;UL;e{`mI1Jc~xa@#5bs+>H1Dk2CKFkn};h}9{11q_!cvG>RqAjh{&vS<Azp}d<{%housqmolj}@Vdwd)UyPF>=GyNlbre~q*0qit{WUS-P{=1m?rynKoJ zJkuDKdJ7K#TSEE}B~z&{yk@>P457G`XJ+kNp4ou3oPX!7MZm0gSKaGxRgzj@Oy>{$_*EW01rIRpq8l4-7dtOoK`u%DN2xHJ<(__n2k? zZ0sH@zW<87D}yjBgyyjnD+kv~Bs#F7!N958VC;hiCOFnN@{hHNJGs$dQcY zHLYd1;SiTRZBjVk=kJB9M5~pgTz<0i>)I1mZm)5OJd~bOzGq`>Ivq(opHe-Yw>{hB zd_N6A8z!I0Dff~exvx*kH8Wk8vRW(e=CTNF;u0x!$ZRI-nif46;l|HgYI>GD8}qq{ zgvBXIMl-!-5s371WhMN+e|9$Dpur0lYj;Zp20qd5ig{NSD&&*y*g7R8O=i48nj-M6T&T=T}l_CO6obgFMFcw_~3xq7(NlLA=( E2UMXECjbBd literal 0 HcmV?d00001 diff --git a/icons/modules/shuttles/effects/shuttle_landing.dmi b/icons/modules/shuttles/effects/shuttle_landing.dmi new file mode 100644 index 0000000000000000000000000000000000000000..550a3bb1e94fbd92bc1cd8bcb463e90319fb7397 GIT binary patch literal 405 zcmV;G0c!qV=-0C=1&$FT~7Fc1ddIrkJlx{GPM-Xamnpzk1OY@f<0}IOlMu9<3Wb+x{)Rf4`olI{-7a(zOzpVzH>8jUGu&3&7UW0sxcy z2BOUp(~=0tr;#kqPJLCyG)@MQd2b~lMi@2e05I_M!H=g9%oNO%5OcNQHUP!=gRgJH z90@Fd1+W1A|7ue7B|jg`k-!uHify2HJUb+y06}~BHLE7T)%$YV4A5IY8-r%Tu&XEQ00000NkvXXu0mjf%0a81 literal 0 HcmV?d00001 diff --git a/icons/modules/shuttles/shuttle_anchor.dmi b/icons/modules/shuttles/shuttle_anchor.dmi new file mode 100644 index 0000000000000000000000000000000000000000..c226c9f8ac7b4ff7f27b585cc6d4c7ec9feb6452 GIT binary patch literal 1999 zcmV;=2Qc`FP)V=-0C=2*%*zVGFc5{|b>=CCb}wGK%|=ori}n>HB%>LmiA)B4eHR5?6?f;r z$KT_5y!aX2KQwHkYowwie}l0mlJ*o<+UoW=&JNw=;R7eZK2|ocF&O{=2K-4xK~#90?VYb~ zCN~hk=Q~9wRSGCQ)&rrZf|66nN6JH5DS3bcVSRyuzChW5K0pFO%0rg4B?qeS1zJ{G za8jj^6huz^dB^t5c>HH~=O;yX+4Y}Y&vS?*!6{9(5XXb|2uASP;%?l;r>S_Tg^;fcHQDC@DhBA3ywb^!rxpf7P^B zV>nJYiDUDG@Op`9|MiQnf0O2=aPi-t=S!^raJW1F_Tw!80Nh_+&hEc^_Z{iE!}?hY zV2puN1jqgLB^(ZS&w`~Y0{~M2!k%3^2QYYqJ>MyUuMn7ZNMUn;jblT=f(T8&gWKzU zOaT^1$s{mjI0f)0Ga>FJQ)zNsoSjLtX6uy-fr>A9t-6L&fN-f3{_cd3Gl#KqfZ%Wm z1?@L>s@}ul?%YqCDyI}JWh5y8w*HT;2vTWE$q8SR)S5e%9#aBtIh1G0!KsV13cv*E z3tUt9*u(qR!X=OU;g(YhR(A`<)P}qayqZ4m+)qgwDWOSo4Ud_+5>tzr)|k0<^N=z3#_czwN&F%%b}8*aEA3)+YM|<%-wl7+@0TFUshQYm*6*kEeqhke<}^9 z%p(Pe#p#9DvERcy?tU&W_a!KeKq)6iSZ?n3Sbed4?}e`DT3$sJ3lI}_Eo%DQHOfww zk%Re6k?_Tl-|w7B7k*i77^qG7rK4jHL6g#=?$DF5kaBAjdc^X09cQ8isApu zwE`s%yLFmH1f_&kGCwdS&|$cUAZ%+`I^O5v=4&%*{TF9v&%rF{Qd0QbM+)Ez4f}s6 z)Y$b{nYpw^dv?<_bv+zvr-S=)0?=n{HcK!DyYFv*-*gYWe)I4apx^fq9KGrvb~C6Y zy}yspv;Jobu+{VNUtYfcs+S-rE2ffX%H_S;pFWxe2#5(Kbp$?kPqGu*nwbJn&&OkX z-u`Y?%rP>&UX zdaJ0Lk)R4>M6>U+xR}6E;OvQT%|E6zRI9|z%eDYm;3F2Gur{#R2mpM}5WDYwZ}rR+ zSPBrHe2oPtEE!BtIU!Q+yRs=uv)KLIcrM8+UIt=ElWO<;+UN5*n_86n+>J2Gd?6-C zXphcaW?AxrS{u7HfVS!BCzAYJL?Hqqcx4ffu=5zmoVqf2T1O zl9u~$XD*USyce*Ah@g}pa{?^M>z5Ix_XUUTDCV}BQ_5ozK?@-a@p9Lx!jIjzh#&+k z@PpHXrFl8zhJ^5$V)rZ}XrV~H%Yfx!Spetz_x=B+A1fXezu~w&xFoO3qnSROOZdzz z0QG!4`jb=kB`$%K*OY){d(o*&0hJ;udi}eJql~hb$X&x+{oeqBU@OI0G zL(Kv}|L-I8tbaF6698=YeEfdDZ&~edoB(Y5e0<9~M`ZT_K6Pt|-lt`5_NR}(z&D## z0+JtqW1hn$i5A>)TMsEqr;)%5gN!!!lp%yp?lrIvConIi>=d5lUNAten? zIZKzSKP(HozIA5Hz|f6ZQaHAqNy(=vtngzArRA*+bPkZ)K;Xg|7Nq7rR1mT;xzVoohnh&fSD z;2I`kYkQv>pq{`U4^oS@y^l80Il!9C<(l3_o1`aDVm51;+LC7p|8G{|h3pW(oz>S^ zx@m=1``3*pvdciJ5PNS2yJwKry%n;Kpb`Q0-VQbgQl8mn5GL@J9zD&?Aj|@pLLAd{ z8Q5|=Si7vX()3_R%k5x;#!LZf3<15igKNCY+CcpPn0b~ooK%p~$zxb|>5_H}%$9-L zYxk1!v_s5I@N=FmfL0`Mt;t-eCosHj%J9Uq0%$czt%j8jBSxB6J&q;=91jsa>u+7} hXq*6S`+WS?`5%ME`SdcO{)_+s002ovPDHLkV1n9K#aaLW literal 0 HcmV?d00001 diff --git a/icons/modules/shuttles/shuttle_anchor_2x2.dmi b/icons/modules/shuttles/shuttle_anchor_2x2.dmi new file mode 100644 index 0000000000000000000000000000000000000000..a35b6a96c84afb9dcad8b25613bd8392639c6090 GIT binary patch literal 3241 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 literal 0 HcmV?d00001 diff --git a/maps/shuttles/README.md b/maps/shuttles/README.md new file mode 100644 index 000000000000..07c580774f8f --- /dev/null +++ b/maps/shuttles/README.md @@ -0,0 +1,33 @@ +# Shuttles + +Shuttle maps & datum defs go in here, as well as their corrosponding code, but not their docks. + +Shuttles may be re-instanced multiple times unless specified otherwise. + +## Bounding Boxes + +Shuttles have: + +- A basic square bounding box used for bounds checks +- Their actual /area bounding box + +The /area's in them that aren't `world.area` are used for the square bounding box allocation, but only the turfs in those said areas will move with the shuttle. + +There is currently, as of December 2023, no way to expand the areas in game without admin intervention. + +## Factions + +Organize as an exmaple like this; + +`maps/shuttles/factions/corporations/nanotrasen/*` +`maps/shuttles/factions/orion/tristar/*` +`maps/shuttles/generic/civillian/*` +`maps/shuttles/generic/outlaw/*` + +So on, so forth. + +Basically, just like the `code/game/content/*` and `icons/content/*` folders. + +# todo + +i'm kind of silly, we should finish the readme later ~silicons diff --git a/maps/shuttles/factions/corporations/nanotrasen/drone_prototype.dm b/maps/shuttles/factions/corporations/nanotrasen/drone_prototype.dm new file mode 100644 index 000000000000..13bc8f1f3c79 --- /dev/null +++ b/maps/shuttles/factions/corporations/nanotrasen/drone_prototype.dm @@ -0,0 +1,17 @@ +/datum/shuttle_template/nanotrasen/drone/prototype + name = "NT-S V1 Sensor Drone" + desc = "Nanotrasen's V1 Prototype Sensor Drone intended for unmanned sector scans in the depths of space. Not habitable." + fluff = "The rather blandly named V1 sensor drone. A prototype design, it is an unmanned craft used \ + for frontier exploration. Definitely not safe for life. As an upside, it runs on ion propulsion that \ + doesn't need to be refuelled for weeks on end." // v1 from ultrakill + id = "nt-drone-v1" + relative_path = "drone_prototype.dmm" + + descriptor = /datum/shuttle_descriptor{ + mass = 5; + } + +// todo: finish map + +/area/shuttle/nanotrasen/drone_prototype + name = "V1 Sensor Drone" diff --git a/maps/shuttles/factions/corporations/nanotrasen/drone_prototype.dmm b/maps/shuttles/factions/corporations/nanotrasen/drone_prototype.dmm new file mode 100644 index 000000000000..eb8a58ae1c4c --- /dev/null +++ b/maps/shuttles/factions/corporations/nanotrasen/drone_prototype.dmm @@ -0,0 +1,412 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/space/basic, +/area/space) +"c" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating/indoors, +/area/shuttle/nanotrasen/drone_prototype) +"d" = ( +/obj/structure/handrail{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/power/terminal{ + dir = 4 + }, +/turf/simulated/floor/plating/indoors, +/area/shuttle/nanotrasen/drone_prototype) +"e" = ( +/obj/structure/handrail{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/simulated/floor/plating/indoors, +/area/shuttle/nanotrasen/drone_prototype) +"g" = ( +/obj/effect/floor_decal/industrial/warning/full, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/simulated/floor/plating/indoors, +/area/shuttle/nanotrasen/drone_prototype) +"h" = ( +/obj/structure/handrail{ + dir = 8 + }, +/turf/simulated/floor/plating/indoors, +/area/shuttle/nanotrasen/drone_prototype) +"i" = ( +/turf/simulated/shuttle/wall/voidcraft, +/area/shuttle/nanotrasen/drone_prototype) +"j" = ( +/obj/machinery/shipsensors, +/obj/effect/floor_decal/industrial/warning/full, +/turf/simulated/floor/plating/outdoors, +/area/shuttle/nanotrasen/drone_prototype) +"k" = ( +/obj/structure/handrail{ + dir = 4 + }, +/turf/simulated/floor/plating/indoors, +/area/shuttle/nanotrasen/drone_prototype) +"l" = ( +/obj/effect/floor_decal/industrial/warning/full, +/obj/machinery/power/apc/south_mount, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/simulated/floor/plating/indoors, +/area/shuttle/nanotrasen/drone_prototype) +"q" = ( +/turf/simulated/wall/rshull, +/area/shuttle/nanotrasen/drone_prototype) +"s" = ( +/obj/effect/floor_decal/industrial/warning/full, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/simulated/floor/plating/indoors, +/area/shuttle/nanotrasen/drone_prototype) +"t" = ( +/obj/structure/railing, +/turf/simulated/floor/plating/indoors, +/area/shuttle/nanotrasen/drone_prototype) +"w" = ( +/obj/effect/floor_decal/industrial/warning/full, +/turf/simulated/floor/plating/indoors, +/area/shuttle/nanotrasen/drone_prototype) +"B" = ( +/obj/spawner/window/low_wall/reinforced/full, +/turf/simulated/floor/plating/indoors, +/area/shuttle/nanotrasen/drone_prototype) +"E" = ( +/turf/simulated/floor/plating/indoors, +/area/shuttle/nanotrasen/drone_prototype) +"I" = ( +/obj/effect/floor_decal/industrial/warning/full, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating/indoors, +/area/shuttle/nanotrasen/drone_prototype) +"L" = ( +/obj/structure/table/rack/shelf, +/turf/simulated/floor/plating/indoors, +/area/shuttle/nanotrasen/drone_prototype) +"M" = ( +/obj/machinery/power/terminal{ + dir = 1 + }, +/turf/simulated/floor/plating/indoors, +/area/shuttle/nanotrasen/drone_prototype) +"N" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/simulated/floor/plating/indoors, +/area/shuttle/nanotrasen/drone_prototype) +"P" = ( +/obj/machinery/door/airlock/external/glass, +/turf/simulated/floor/plating/indoors, +/area/shuttle/nanotrasen/drone_prototype) +"Q" = ( +/obj/effect/floor_decal/industrial/warning/full, +/turf/space/basic, +/area/shuttle/nanotrasen/drone_prototype) + +(1,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(2,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(3,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(4,1,1) = {" +a +a +a +a +a +a +a +a +Q +Q +Q +a +a +a +a +a +"} +(5,1,1) = {" +a +a +a +a +a +a +j +q +B +B +q +a +a +a +a +a +"} +(6,1,1) = {" +a +a +a +a +a +q +B +q +w +w +w +q +w +a +a +a +"} +(7,1,1) = {" +a +a +a +a +q +L +t +k +h +E +E +q +w +a +a +a +"} +(8,1,1) = {" +a +a +a +a +B +w +E +l +i +s +M +P +a +a +a +a +"} +(9,1,1) = {" +a +a +a +a +B +w +E +c +i +I +E +P +a +a +a +a +"} +(10,1,1) = {" +a +a +a +a +q +L +t +e +d +c +E +q +w +a +a +a +"} +(11,1,1) = {" +a +a +a +a +a +q +B +q +g +N +E +q +w +a +a +a +"} +(12,1,1) = {" +a +a +a +a +a +a +Q +q +B +B +q +a +a +a +a +a +"} +(13,1,1) = {" +a +a +a +a +a +a +a +a +Q +Q +Q +a +a +a +a +a +"} +(14,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(15,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(16,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} diff --git a/maps/shuttles/factions/corporations/nanotrasen/sci_vector.dm b/maps/shuttles/factions/corporations/nanotrasen/sci_vector.dm new file mode 100644 index 000000000000..e710836faffa --- /dev/null +++ b/maps/shuttles/factions/corporations/nanotrasen/sci_vector.dm @@ -0,0 +1,34 @@ +/datum/shuttle_template/nanotrasen/science/vector + name = "NT-S Vector" + desc = "A research vessel built for medium-range archeology and analysis missions." + desc = "A newer design in Nanotrasen's lineup of deep-space shuttles, the Vector was built in-house by \ + the Research Division. While lacking most of the luxuries and heavy tooling of other shuttles, it does \ + contain a suite of astronavigational utilities." + id = "nt-vector" + relative_path = "sci_vector.dmm" + + descriptor = /datum/shuttle_descriptor{ + mass = 25; + } + +// todo: finish map + +/area/shuttle/nanotrasen/sci_vector + +/area/shuttle/nanotrasen/sci_vector/engineering + name = "NT-S Vector - Engineering Compartment" + +/area/shuttle/nanotrasen/sci_vector/service + name = "NT-S Vector - Service Compartment" + +/area/shuttle/nanotrasen/sci_vector/cockpit + name = "NT-S Vector - Cockpit" + +/area/shuttle/nanotrasen/sci_vector/crew + name = "NT-S Vector - Crew Compartment" + +/area/shuttle/nanotrasen/sci_vector/excursion + name = "NT-S Vector - Excursion Compartment" + +/area/shuttle/nanotrasen/sci_vector/airlock + name = "NT-S Vector - Airlock" diff --git a/maps/shuttles/factions/corporations/nanotrasen/sci_vector.dmm b/maps/shuttles/factions/corporations/nanotrasen/sci_vector.dmm new file mode 100644 index 000000000000..00050e127214 --- /dev/null +++ b/maps/shuttles/factions/corporations/nanotrasen/sci_vector.dmm @@ -0,0 +1,1233 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aA" = ( +/obj/machinery/door/blast/regular, +/obj/structure/atmospheric_retention_field, +/turf/simulated/floor/plating/indoors, +/area/shuttle/nanotrasen/sci_vector/service) +"aU" = ( +/obj/structure/handrail, +/turf/simulated/floor/plating/indoors, +/area/shuttle/nanotrasen/sci_vector/service) +"aZ" = ( +/obj/structure/handrail, +/turf/space/basic, +/area/shuttle/nanotrasen/sci_vector/excursion) +"bF" = ( +/obj/machinery/power/smes, +/turf/simulated/floor/plating/indoors, +/area/shuttle/nanotrasen/sci_vector/engineering) +"ch" = ( +/obj/machinery/atmospherics/pipe/tank{ + dir = 4 + }, +/turf/simulated/floor/plating/indoors, +/area/shuttle/nanotrasen/sci_vector/engineering) +"cv" = ( +/obj/effect/decal/warning_stripes, +/turf/simulated/floor/plating/indoors, +/area/shuttle/nanotrasen/sci_vector/engineering) +"cW" = ( +/obj/structure/bed/chair/bay/comfy{ + dir = 8 + }, +/turf/simulated/floor/plating/indoors, +/area/shuttle/nanotrasen/sci_vector/excursion) +"dl" = ( +/obj/structure/handrail{ + dir = 8 + }, +/turf/simulated/floor/plating/indoors, +/area/shuttle/nanotrasen/sci_vector/excursion) +"du" = ( +/obj/machinery/door/airlock/glass/research, +/turf/simulated/floor/plating/indoors, +/area/shuttle/nanotrasen/sci_vector/excursion) +"dw" = ( +/obj/machinery/power/apc/east_mount, +/obj/machinery/recharge_station, +/turf/simulated/floor/plating/indoors, +/area/shuttle/nanotrasen/sci_vector/cockpit) +"eh" = ( +/obj/machinery/telecomms/server, +/turf/simulated/floor/plating/indoors, +/area/shuttle/nanotrasen/sci_vector/engineering) +"eu" = ( +/obj/structure/table/rack/shelf/steel, +/turf/simulated/floor/plating/indoors, +/area/shuttle/nanotrasen/sci_vector/crew) +"fc" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/computer/shuttle_control{ + dir = 4 + }, +/turf/simulated/floor/plating/indoors, +/area/shuttle/nanotrasen/sci_vector/cockpit) +"fX" = ( +/turf/simulated/wall/r_wall/prepainted/science, +/area/shuttle/nanotrasen/sci_vector/excursion) +"fY" = ( +/obj/structure/bed/chair/bay/comfy, +/turf/simulated/floor/plating/indoors, +/area/shuttle/nanotrasen/sci_vector/crew) +"hA" = ( +/obj/effect/decal/warning_stripes, +/obj/effect/decal/warning_stripes, +/turf/simulated/floor/plating/indoors, +/area/shuttle/nanotrasen/sci_vector/service) +"jw" = ( +/turf/simulated/floor/plating/indoors, +/area/shuttle/nanotrasen/sci_vector/service) +"kn" = ( +/obj/spawner/window/reinforced/full, +/obj/spawner/window/reinforced/full, +/turf/simulated/floor/plating/indoors, +/area/shuttle/nanotrasen/sci_vector/excursion) +"kR" = ( +/obj/effect/decal/warning_stripes, +/turf/simulated/floor/plating/indoors, +/area/shuttle/nanotrasen/sci_vector/service) +"lE" = ( +/obj/machinery/atmospherics/component/unary/engine/bigger, +/turf/space/basic, +/area/shuttle/nanotrasen/sci_vector/service) +"mY" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/turf/simulated/floor/plating/indoors, +/area/shuttle/nanotrasen/sci_vector/excursion) +"oj" = ( +/obj/structure/closet/secure_closet/xenoarchaeologist, +/obj/machinery/power/apc/east_mount, +/turf/simulated/floor/plating/indoors, +/area/shuttle/nanotrasen/sci_vector/excursion) +"oy" = ( +/obj/spawner/window/reinforced/full, +/turf/simulated/floor/plating/indoors, +/area/shuttle/nanotrasen/sci_vector/crew) +"oG" = ( +/turf/space/basic, +/area/shuttle/nanotrasen/sci_vector/service) +"pj" = ( +/obj/structure/closet/secure_closet/xenoarchaeologist, +/turf/simulated/floor/plating/indoors, +/area/shuttle/nanotrasen/sci_vector/excursion) +"ps" = ( +/obj/machinery/door/airlock/external/glass, +/turf/simulated/floor/plating/indoors, +/area/shuttle/nanotrasen/sci_vector/airlock) +"pu" = ( +/obj/structure/handrail{ + dir = 1 + }, +/turf/simulated/floor/plating/indoors, +/area/shuttle/nanotrasen/sci_vector/engineering) +"qA" = ( +/obj/machinery/suit_storage_unit/exploration, +/turf/simulated/floor/plating/indoors, +/area/shuttle/nanotrasen/sci_vector/cockpit) +"rb" = ( +/obj/structure/bed/chair/bay/comfy{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating/indoors, +/area/shuttle/nanotrasen/sci_vector/crew) +"rw" = ( +/obj/structure/window/reinforced, +/obj/machinery/suit_storage_unit/exploration, +/turf/simulated/floor/plating/indoors, +/area/shuttle/nanotrasen/sci_vector/airlock) +"rQ" = ( +/turf/simulated/floor/plating/indoors, +/area/shuttle/nanotrasen/sci_vector/airlock) +"sl" = ( +/obj/structure/table/rack/shelf, +/turf/simulated/floor/plating/indoors, +/area/shuttle/nanotrasen/sci_vector/crew) +"tF" = ( +/obj/machinery/power/apc/north_mount, +/turf/simulated/floor/plating/indoors, +/area/shuttle/nanotrasen/sci_vector/airlock) +"uA" = ( +/obj/machinery/atmospherics/pipe/tank/air{ + dir = 8 + }, +/turf/simulated/floor/plating/indoors, +/area/shuttle/nanotrasen/sci_vector/engineering) +"vU" = ( +/obj/structure/bed/chair/bay/comfy{ + dir = 8 + }, +/turf/simulated/floor/plating/indoors, +/area/shuttle/nanotrasen/sci_vector/cockpit) +"wr" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/table/rack/shelf, +/turf/simulated/floor/plating/indoors, +/area/shuttle/nanotrasen/sci_vector/cockpit) +"xj" = ( +/obj/machinery/artifact_scanpad, +/turf/simulated/floor/plating/indoors, +/area/shuttle/nanotrasen/sci_vector/crew) +"xr" = ( +/turf/simulated/floor/plating/indoors, +/area/shuttle/nanotrasen/sci_vector/cockpit) +"xv" = ( +/obj/machinery/computer/rdconsole{ + dir = 4 + }, +/turf/simulated/floor/plating/indoors, +/area/shuttle/nanotrasen/sci_vector/excursion) +"xK" = ( +/obj/machinery/r_n_d/server, +/turf/simulated/floor/plating/indoors, +/area/shuttle/nanotrasen/sci_vector/engineering) +"xO" = ( +/obj/effect/decal/warning_stripes, +/turf/simulated/floor/plating/indoors, +/area/shuttle/nanotrasen/sci_vector/airlock) +"yR" = ( +/turf/simulated/wall/r_wall/prepainted/science, +/area/shuttle/nanotrasen/sci_vector/crew) +"zu" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/decal/warning_stripes, +/turf/simulated/floor/plating/indoors, +/area/shuttle/nanotrasen/sci_vector/service) +"zV" = ( +/obj/structure/handrail{ + dir = 1 + }, +/turf/simulated/floor/plating/indoors, +/area/shuttle/nanotrasen/sci_vector/airlock) +"Ce" = ( +/obj/structure/handrail{ + dir = 4 + }, +/turf/simulated/floor/plating/indoors, +/area/shuttle/nanotrasen/sci_vector/airlock) +"CI" = ( +/obj/machinery/suit_storage_unit/exploration, +/turf/simulated/floor/plating/indoors, +/area/shuttle/nanotrasen/sci_vector/airlock) +"CP" = ( +/obj/machinery/computer/nanite_chamber{ + dir = 4 + }, +/turf/simulated/floor/plating/indoors, +/area/shuttle/nanotrasen/sci_vector/service) +"DK" = ( +/obj/structure/bed/chair/bay/comfy{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating/indoors, +/area/shuttle/nanotrasen/sci_vector/crew) +"DR" = ( +/obj/structure/dispenser/oxygen{ + dir = 8 + }, +/turf/simulated/floor/plating/indoors, +/area/shuttle/nanotrasen/sci_vector/excursion) +"DS" = ( +/obj/structure/handrail, +/obj/machinery/power/apc/north_mount, +/turf/simulated/floor/plating/indoors, +/area/shuttle/nanotrasen/sci_vector/service) +"EC" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/simulated/floor/plating, +/area/shuttle/nanotrasen/sci_vector/service) +"EG" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/window{ + dir = 8 + }, +/turf/simulated/floor/plating/indoors, +/area/shuttle/nanotrasen/sci_vector/engineering) +"EQ" = ( +/obj/machinery/mech_recharger, +/turf/simulated/floor/plating/indoors, +/area/shuttle/nanotrasen/sci_vector/service) +"EX" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/decal/warning_stripes, +/turf/simulated/floor/plating/indoors, +/area/shuttle/nanotrasen/sci_vector/service) +"Fx" = ( +/obj/spawner/window/reinforced/full, +/turf/simulated/floor/plating/indoors, +/area/shuttle/nanotrasen/sci_vector/cockpit) +"Gt" = ( +/obj/effect/decal/warning_stripes, +/turf/space/basic, +/area/shuttle/nanotrasen/sci_vector/engineering) +"GQ" = ( +/obj/machinery/artifact_harvester, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating/indoors, +/area/shuttle/nanotrasen/sci_vector/crew) +"Hs" = ( +/obj/machinery/nanite_chamber, +/turf/simulated/floor/plating/indoors, +/area/shuttle/nanotrasen/sci_vector/service) +"HY" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/table/reinforced, +/turf/simulated/floor/plating/indoors, +/area/shuttle/nanotrasen/sci_vector/cockpit) +"Ib" = ( +/obj/machinery/door/airlock/glass/research, +/turf/simulated/floor/plating/indoors, +/area/shuttle/nanotrasen/sci_vector/cockpit) +"Jr" = ( +/obj/machinery/exonet_node, +/obj/machinery/power/apc/west_mount, +/turf/simulated/floor/plating/indoors, +/area/shuttle/nanotrasen/sci_vector/engineering) +"KS" = ( +/obj/machinery/atmospherics/pipe/tank/phoron{ + dir = 8 + }, +/turf/simulated/floor/plating/indoors, +/area/shuttle/nanotrasen/sci_vector/service) +"Lv" = ( +/obj/effect/decal/warning_stripes, +/turf/space/basic, +/area/shuttle/nanotrasen/sci_vector/service) +"LZ" = ( +/obj/spawner/window/reinforced/full, +/turf/simulated/floor/plating/indoors, +/area/shuttle/nanotrasen/sci_vector/excursion) +"Mz" = ( +/turf/space/basic, +/area/space) +"Ps" = ( +/turf/simulated/wall/r_wall/prepainted/science, +/area/shuttle/nanotrasen/sci_vector/service) +"Pt" = ( +/obj/structure/handrail, +/turf/simulated/floor/plating/indoors, +/area/shuttle/nanotrasen/sci_vector/airlock) +"PP" = ( +/obj/structure/handrail{ + dir = 1 + }, +/turf/space/basic, +/area/shuttle/nanotrasen/sci_vector/service) +"Qc" = ( +/obj/structure/table/reinforced, +/turf/simulated/floor/plating/indoors, +/area/shuttle/nanotrasen/sci_vector/crew) +"QF" = ( +/obj/machinery/r_n_d/circuit_imprinter, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating/indoors, +/area/shuttle/nanotrasen/sci_vector/excursion) +"Rk" = ( +/obj/machinery/atmospherics/component/binary/pump/fuel{ + dir = 4 + }, +/turf/simulated/floor/plating/indoors, +/area/shuttle/nanotrasen/sci_vector/service) +"RH" = ( +/obj/structure/closet/crate/freezer/rations, +/turf/simulated/floor/plating/indoors, +/area/shuttle/nanotrasen/sci_vector/crew) +"RR" = ( +/obj/machinery/artifact_analyser, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating/indoors, +/area/shuttle/nanotrasen/sci_vector/crew) +"RX" = ( +/obj/machinery/r_n_d/protolathe, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating/indoors, +/area/shuttle/nanotrasen/sci_vector/excursion) +"Su" = ( +/turf/simulated/wall/r_wall/prepainted/science, +/area/shuttle/nanotrasen/sci_vector/cockpit) +"Ti" = ( +/turf/simulated/wall/r_wall/prepainted/science, +/area/shuttle/nanotrasen/sci_vector/engineering) +"Vu" = ( +/obj/effect/decal/warning_stripes, +/turf/space/basic, +/area/shuttle/nanotrasen/sci_vector/excursion) +"Wl" = ( +/obj/machinery/door/airlock/external/glass, +/turf/simulated/floor/plating/indoors, +/area/shuttle/nanotrasen/sci_vector/engineering) +"WQ" = ( +/turf/simulated/floor/plating/indoors, +/area/shuttle/nanotrasen/sci_vector/crew) +"Xm" = ( +/obj/machinery/door/airlock/glass/research, +/turf/simulated/floor/plating/indoors, +/area/shuttle/nanotrasen/sci_vector/service) +"Yh" = ( +/turf/simulated/floor/plating/indoors, +/area/shuttle/nanotrasen/sci_vector/excursion) +"Yj" = ( +/obj/machinery/door/airlock/glass/research, +/turf/simulated/floor/plating/indoors, +/area/shuttle/nanotrasen/sci_vector/engineering) +"Yl" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/air, +/turf/simulated/floor/plating, +/area/shuttle/nanotrasen/sci_vector/service) +"YQ" = ( +/turf/simulated/floor/plating/indoors, +/area/shuttle/nanotrasen/sci_vector/engineering) +"Zt" = ( +/obj/spawner/window/reinforced/full, +/turf/simulated/floor/plating/indoors, +/area/shuttle/nanotrasen/sci_vector/service) +"ZP" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/decal/warning_stripes, +/obj/machinery/atmospherics/component/binary/pump/fuel{ + dir = 8 + }, +/turf/simulated/floor/plating/indoors, +/area/shuttle/nanotrasen/sci_vector/service) + +(1,1,1) = {" +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +"} +(2,1,1) = {" +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +"} +(3,1,1) = {" +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +"} +(4,1,1) = {" +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +"} +(5,1,1) = {" +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +"} +(6,1,1) = {" +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Vu +Vu +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Lv +Lv +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +"} +(7,1,1) = {" +Mz +Mz +Mz +Mz +Mz +Mz +Mz +yR +oy +fX +fX +LZ +LZ +kn +fX +fX +aZ +Mz +Mz +PP +Ps +Ps +Ps +lE +Mz +Mz +Mz +Mz +Mz +Mz +"} +(8,1,1) = {" +Mz +Mz +Mz +Mz +Mz +Mz +oy +Qc +sl +fX +mY +RX +xv +QF +DR +pj +fX +ps +ps +Ps +Hs +CP +Ps +oG +Mz +Mz +Mz +Mz +Mz +Mz +"} +(9,1,1) = {" +Mz +Mz +Mz +Mz +Mz +yR +Qc +WQ +WQ +du +Yh +Yh +cW +Yh +Yh +pj +LZ +Pt +zV +Ps +jw +hA +kR +Ps +lE +Mz +Mz +Mz +Mz +Mz +"} +(10,1,1) = {" +Mz +Mz +Mz +Mz +Mz +oy +fY +WQ +DK +LZ +Yh +Yh +Yh +dl +Yh +oj +LZ +Pt +zV +Ps +jw +zu +zu +Ps +oG +Mz +Mz +Mz +Mz +Mz +"} +(11,1,1) = {" +Mz +Mz +Mz +Mz +Mz +oy +fY +WQ +rb +Su +Fx +Fx +Fx +Su +du +fX +fX +ps +ps +Ps +aU +EQ +EQ +aA +Mz +Mz +Mz +Mz +Mz +Mz +"} +(12,1,1) = {" +Mz +Mz +Mz +Mz +Mz +yR +RR +WQ +RH +Su +HY +fc +wr +Su +tF +Ce +Ce +rQ +rQ +Xm +jw +EQ +EQ +aA +Mz +Mz +Mz +Mz +Mz +Mz +"} +(13,1,1) = {" +Mz +Mz +Mz +Mz +Mz +oy +xj +WQ +WQ +Fx +xr +vU +xr +Ib +rQ +rQ +rQ +rQ +xO +Zt +jw +EC +Yl +Ps +Mz +Mz +Mz +Mz +Mz +Mz +"} +(14,1,1) = {" +Mz +Mz +Mz +Mz +Mz +yR +GQ +WQ +eu +Su +qA +xr +dw +Su +CI +CI +rw +rQ +rQ +Xm +jw +EQ +EQ +aA +Mz +Mz +Mz +Mz +Mz +Mz +"} +(15,1,1) = {" +Mz +Mz +Mz +Mz +Mz +oy +fY +WQ +DK +Su +Su +Ib +Su +Su +Ti +Ti +Ti +Yj +Ti +Ps +DS +EQ +EQ +aA +Mz +Mz +Mz +Mz +Mz +Mz +"} +(16,1,1) = {" +Mz +Mz +Mz +Mz +Mz +oy +fY +WQ +rb +Ti +ch +YQ +YQ +Ti +Jr +eh +bF +YQ +xK +Ps +Rk +ZP +EX +Ps +lE +Mz +Mz +Mz +Mz +Mz +"} +(17,1,1) = {" +Mz +Mz +Mz +Mz +Mz +yR +Qc +WQ +WQ +Yj +YQ +YQ +YQ +Yj +YQ +YQ +YQ +YQ +YQ +Xm +jw +kR +kR +Ps +oG +Mz +Mz +Mz +Mz +Mz +"} +(18,1,1) = {" +Mz +Mz +Mz +Mz +Mz +Mz +oy +Qc +sl +Ti +uA +Ti +Wl +Ti +bF +EG +cv +cv +cv +Ps +KS +KS +Ps +lE +Mz +Mz +Mz +Mz +Mz +Mz +"} +(19,1,1) = {" +Mz +Mz +Mz +Mz +Mz +Mz +Mz +yR +oy +Ti +Ti +Ti +pu +Ti +Ti +Ti +Ti +Ti +Ti +Ps +Ps +Ps +Ps +oG +Mz +Mz +Mz +Mz +Mz +Mz +"} +(20,1,1) = {" +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Gt +Gt +Ti +Wl +Ti +Mz +Mz +Mz +Mz +Mz +Mz +Lv +Lv +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +"} +(21,1,1) = {" +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +"} +(22,1,1) = {" +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +"} +(23,1,1) = {" +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +"} +(24,1,1) = {" +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +"} +(25,1,1) = {" +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +"} From 102cb6f0eb0b2b1b61967016f8a9aca56fbf27f7 Mon Sep 17 00:00:00 2001 From: GySgtMurphy <79298976+GySgtMurphy@users.noreply.github.com> Date: Thu, 19 Sep 2024 23:45:07 -0400 Subject: [PATCH 18/20] Victory branch (#6762) ## About The Pull Request This is the initial pull request for the new map under rapid development. Everything is currently a work in progress, with a lot of work yet to go. But, this will allow this effort to be rolled together with ongoing system improvements. ## Why It's Good For The Game It's a NEW MAP! ## Changelog --------- Co-authored-by: Niezann Co-authored-by: Shikarasu Co-authored-by: silicons <2003111+silicons@users.noreply.github.com> --- _mapload/victory.dm | 5 + citadel.dme | 16 +- code/game/area/Off Station Areas.dm | 7 - code/game/area/Space Station 13 areas.dm | 3 - code/modules/maps/overmap/space/centcom.dm | 14 - .../space/trade_station/trade_station.dm | 14 +- maps/generic/turbolifts.dm | 16 - .../tradeport_140/levels/tradeport_140.dmm | 2 +- .../tradeport_192/levels/tradeport_192.dmm | 2 +- .../triumph/triumph-overmap.dm | 0 maps/triumph/triumph-sectors.dm | 14 + .../triumph/triumph-shuttle-landmarks.dm | 0 maps/triumph/triumph-turbolifts.dm | 15 + maps/victory/engines.dm | 30 + maps/victory/engines/burn.dmm | 1857 + maps/victory/engines/fission.dmm | 1732 + maps/victory/engines/rust.dmm | 1761 + maps/victory/engines/sme.dmm | 1827 + maps/victory/levels/deck1.dmm | 51656 +++++++++++++ maps/victory/levels/deck2.dmm | 64430 ++++++++++++++++ maps/victory/levels/deck3.dmm | 62778 +++++++++++++++ maps/victory/levels/deck4.dmm | 58614 ++++++++++++++ maps/victory/levels/flagship.dmm | 53920 +++++++++++++ maps/victory/levels/misc.dmm | 39452 ++++++++++ maps/victory/levels/transit.dmm | 37735 +++++++++ maps/victory/sectors.dm | 56 + maps/victory/shuttles.dm | 156 + maps/victory/telecomms.dm | 57 + maps/victory/victory-areas.dm | 184 + maps/victory/victory-overmap.dm | 27 + maps/victory/victory-sectors.dm | 14 + maps/victory/victory-shuttle-landmarks.dm | 161 + maps/victory/victory-turbolifts.dm | 15 + maps/victory/victory.dm | 222 + 34 files changed, 376741 insertions(+), 51 deletions(-) create mode 100644 _mapload/victory.dm rename code/modules/maps/overmap/space/triumph/triumph.dm => maps/triumph/triumph-overmap.dm (100%) create mode 100644 maps/triumph/triumph-sectors.dm rename code/modules/maps/templates/misc_presets/triumph_shuttle_landmarks.dm => maps/triumph/triumph-shuttle-landmarks.dm (100%) create mode 100644 maps/triumph/triumph-turbolifts.dm create mode 100644 maps/victory/engines.dm create mode 100644 maps/victory/engines/burn.dmm create mode 100644 maps/victory/engines/fission.dmm create mode 100644 maps/victory/engines/rust.dmm create mode 100644 maps/victory/engines/sme.dmm create mode 100644 maps/victory/levels/deck1.dmm create mode 100644 maps/victory/levels/deck2.dmm create mode 100644 maps/victory/levels/deck3.dmm create mode 100644 maps/victory/levels/deck4.dmm create mode 100644 maps/victory/levels/flagship.dmm create mode 100644 maps/victory/levels/misc.dmm create mode 100644 maps/victory/levels/transit.dmm create mode 100644 maps/victory/sectors.dm create mode 100644 maps/victory/shuttles.dm create mode 100644 maps/victory/telecomms.dm create mode 100644 maps/victory/victory-areas.dm create mode 100644 maps/victory/victory-overmap.dm create mode 100644 maps/victory/victory-sectors.dm create mode 100644 maps/victory/victory-shuttle-landmarks.dm create mode 100644 maps/victory/victory-turbolifts.dm create mode 100644 maps/victory/victory.dm diff --git a/_mapload/victory.dm b/_mapload/victory.dm new file mode 100644 index 000000000000..f42b00e15e4d --- /dev/null +++ b/_mapload/victory.dm @@ -0,0 +1,5 @@ +#ifdef FORCE_MAP + #error Duplicate FORCE_MAP, what are you doing!? +#endif + +#define FORCE_MAP "victory" diff --git a/citadel.dme b/citadel.dme index e308edc24ad8..66a5e0291145 100644 --- a/citadel.dme +++ b/citadel.dme @@ -3319,11 +3319,9 @@ #include "code\modules\maps\overmap\space\talon\talon_areas.dm" #include "code\modules\maps\overmap\space\trade_station\trade_station.dm" #include "code\modules\maps\overmap\space\trade_station\trade_station_jobs.dm" -#include "code\modules\maps\overmap\space\triumph\triumph.dm" #include "code\modules\maps\templates\badmin_misc\fun.dm" #include "code\modules\maps\templates\badmin_misc\templates.dm" #include "code\modules\maps\templates\misc_presets\rift_shuttle_landmarks.dm" -#include "code\modules\maps\templates\misc_presets\triumph_shuttle_landmarks.dm" #include "code\modules\maps\templates\shuttles\admin_spawn\_generic_shuttles.dm" #include "code\modules\maps\templates\shuttles\admin_spawn\abductor.dm" #include "code\modules\maps\templates\shuttles\admin_spawn\bearcat.dm" @@ -5312,5 +5310,19 @@ #include "maps\triumph\sectors.dm" #include "maps\triumph\shuttles.dm" #include "maps\triumph\telecomms.dm" +#include "maps\triumph\triumph-overmap.dm" +#include "maps\triumph\triumph-sectors.dm" +#include "maps\triumph\triumph-shuttle-landmarks.dm" +#include "maps\triumph\triumph-turbolifts.dm" #include "maps\triumph\triumph.dm" +#include "maps\victory\engines.dm" +#include "maps\victory\sectors.dm" +#include "maps\victory\shuttles.dm" +#include "maps\victory\telecomms.dm" +#include "maps\victory\victory-areas.dm" +#include "maps\victory\victory-overmap.dm" +#include "maps\victory\victory-sectors.dm" +#include "maps\victory\victory-shuttle-landmarks.dm" +#include "maps\victory\victory-turbolifts.dm" +#include "maps\victory\victory.dm" // END_INCLUDE diff --git a/code/game/area/Off Station Areas.dm b/code/game/area/Off Station Areas.dm index e642e0ccdba1..6a6895ba8d5f 100644 --- a/code/game/area/Off Station Areas.dm +++ b/code/game/area/Off Station Areas.dm @@ -160,13 +160,6 @@ name = "\improper Reading Room" /area/triumph/surfacebase/vacant_site name = "\improper Vacant Site" -//Shuttle crashes -/area/shuttle/triumph/crash1 - name = "\improper Crash Site 1" - icon_state = "shuttle2" -/area/shuttle/triumph/crash2 - name = "\improper Crash Site 2" - icon_state = "shuttle2" // Class D world areas /area/class_d diff --git a/code/game/area/Space Station 13 areas.dm b/code/game/area/Space Station 13 areas.dm index b6e274e35629..4c08ba001639 100644 --- a/code/game/area/Space Station 13 areas.dm +++ b/code/game/area/Space Station 13 areas.dm @@ -997,9 +997,6 @@ NOTE: there are two lists of areas in the end of this file: centcom and station name = "Tool Storage Maintenance" icon_state = "maint_tool_storage" -/area/maintenance/triumph_midpoint - name = "\improper Triumph Midpoint Maint" - /area/maintenance/locker_room name = "\improper Locker Room Maintenance" diff --git a/code/modules/maps/overmap/space/centcom.dm b/code/modules/maps/overmap/space/centcom.dm index 04f9e9067d08..ffd0d63bd9d9 100644 --- a/code/modules/maps/overmap/space/centcom.dm +++ b/code/modules/maps/overmap/space/centcom.dm @@ -33,20 +33,6 @@ start_y = pick(8, 9, 11, 12) */ -/obj/overmap/entity/visitable/sector/centcom_triumph - name = "NDV Marksman" - desc = "The NDV Marksman is a Nanotrasen supercarrier that serves as the flagship for the eponymous Marksman Fleet." - scanner_desc = @{"[i]Information[/i]: The NDV Marksman is a Nanotrasen supercarrier that serves as the flagship for the eponymous Marksman Fleet."} - in_space = 1 - known = TRUE - icon = 'icons/modules/overmap/tiled.dmi' - icon_state = "fleet" - color = "#007396" - - initial_restricted_waypoints = list( - "NDV Quicksilver" = list("specops_hangar") - ) - // ERT Shuttle can be found at '/maps/overmap/shuttles/specialops.dm' // EXCLUSIVE NAV POINT FOR DOCKING INSIDE (ERT SHUTTLE ONLY) diff --git a/code/modules/maps/overmap/space/trade_station/trade_station.dm b/code/modules/maps/overmap/space/trade_station/trade_station.dm index fa2eacd230a7..24b4cf9a65c6 100644 --- a/code/modules/maps/overmap/space/trade_station/trade_station.dm +++ b/code/modules/maps/overmap/space/trade_station/trade_station.dm @@ -69,7 +69,7 @@ // Shuttle landmarks. Need to be removed at some point and generic waypoints used -/obj/effect/shuttle_landmark/triumph/trade +/obj/effect/shuttle_landmark/trade name = "Near Nebula Gas Food Mart" landmark_tag = "nebula_space_SW" base_turf = /turf/space @@ -77,31 +77,31 @@ // EXCLUSIVE TRADE PORT NAV POINTS -/obj/effect/shuttle_landmark/triumph/trade/mining +/obj/effect/shuttle_landmark/trade/mining name = "Nebula Gas Landing Pad 2" landmark_tag = "nebula_pad_2" base_turf = /turf/simulated/shuttle/floor/black/airless base_area = /area/tradeport/pads -/obj/effect/shuttle_landmark/triumph/trade/excursion +/obj/effect/shuttle_landmark/trade/excursion name = "Nebula Gas Landing Pad 3" landmark_tag = "nebula_pad_3" base_turf = /turf/simulated/shuttle/floor/black/airless base_area = /area/tradeport/pads -/obj/effect/shuttle_landmark/triumph/trade/pirate +/obj/effect/shuttle_landmark/trade/pirate name = "Nebula Gas Landing Pad 4" landmark_tag = "nebula_pad_4" base_turf = /turf/simulated/shuttle/floor/black/airless base_area = /area/tradeport/pads -/obj/effect/shuttle_landmark/triumph/trade/emt +/obj/effect/shuttle_landmark/trade/emt name = "Nebula Gas Landing Pad 5" landmark_tag = "nebula_pad_5" base_turf = /turf/simulated/shuttle/floor/black/airless base_area = /area/tradeport/pads -/obj/effect/shuttle_landmark/triumph/trade/civvie +/obj/effect/shuttle_landmark/trade/civvie name = "Nebula Gas Landing Pad 6" landmark_tag = "nebula_pad_6" base_turf = /turf/simulated/shuttle/floor/black/airless @@ -109,7 +109,7 @@ // EXCLUSIVE TRADE PORT NAV POINT FOR DOCKING INSIDE -/obj/effect/shuttle_landmark/triumph/trade/hangar +/obj/effect/shuttle_landmark/trade/hangar name = "Beruang Hangar" landmark_tag = "tradeport_hangar" docking_controller = "tradeport_hangar_dock" diff --git a/maps/generic/turbolifts.dm b/maps/generic/turbolifts.dm index 73fd8510eb06..476ad6e2350d 100644 --- a/maps/generic/turbolifts.dm +++ b/maps/generic/turbolifts.dm @@ -61,22 +61,6 @@ /area/turbolift/rwest_mining/surface ) -/obj/turbolift_map_holder/triumph - name = "Triumph Climber" - depth = 4 - lift_size_x = 3 - lift_size_y = 1 - icon = 'icons/obj/turbolift_preview_3x3.dmi' - wall_type = null // Don't make walls - - areas_to_use = list( - /area/turbolift/t_ship/level1, - /area/turbolift/t_ship/level2, - /area/turbolift/t_ship/level3, - /area/turbolift/t_ship/level4 - ) - - /obj/turbolift_map_holder/tether name = "Tether Climber" depth = 6 diff --git a/maps/sectors/tradeport_140/levels/tradeport_140.dmm b/maps/sectors/tradeport_140/levels/tradeport_140.dmm index 04dd84918912..d05c55a656e3 100644 --- a/maps/sectors/tradeport_140/levels/tradeport_140.dmm +++ b/maps/sectors/tradeport_140/levels/tradeport_140.dmm @@ -2070,7 +2070,7 @@ id_tag = "tradeport_hangar_docker"; pixel_x = -25 }, -/obj/effect/shuttle_landmark/triumph/trade/hangar, +/obj/effect/shuttle_landmark/trade/hangar, /obj/overmap/entity/visitable/ship/landable/trade, /turf/simulated/floor/tiled/dark, /area/shuttle/trade_ship/general) diff --git a/maps/sectors/tradeport_192/levels/tradeport_192.dmm b/maps/sectors/tradeport_192/levels/tradeport_192.dmm index 14ff915c4c12..4df6d23e86e4 100644 --- a/maps/sectors/tradeport_192/levels/tradeport_192.dmm +++ b/maps/sectors/tradeport_192/levels/tradeport_192.dmm @@ -10419,7 +10419,7 @@ id_tag = "tradeport_hangar_docker"; pixel_x = -25 }, -/obj/effect/shuttle_landmark/triumph/trade/hangar, +/obj/effect/shuttle_landmark/trade/hangar, /obj/overmap/entity/visitable/ship/landable/trade, /turf/simulated/floor/tiled/dark, /area/shuttle/trade_ship/general) diff --git a/code/modules/maps/overmap/space/triumph/triumph.dm b/maps/triumph/triumph-overmap.dm similarity index 100% rename from code/modules/maps/overmap/space/triumph/triumph.dm rename to maps/triumph/triumph-overmap.dm diff --git a/maps/triumph/triumph-sectors.dm b/maps/triumph/triumph-sectors.dm new file mode 100644 index 000000000000..a469cf659ac2 --- /dev/null +++ b/maps/triumph/triumph-sectors.dm @@ -0,0 +1,14 @@ + +/obj/overmap/entity/visitable/sector/centcom_triumph + name = "NDV Marksman" + desc = "The NDV Marksman is a Nanotrasen supercarrier that serves as the flagship for the eponymous Marksman Fleet." + scanner_desc = @{"[i]Information[/i]: The NDV Marksman is a Nanotrasen supercarrier that serves as the flagship for the eponymous Marksman Fleet."} + in_space = 1 + known = TRUE + icon = 'icons/modules/overmap/tiled.dmi' + icon_state = "fleet" + color = "#007396" + + initial_restricted_waypoints = list( + "NDV Quicksilver" = list("specops_hangar") + ) diff --git a/code/modules/maps/templates/misc_presets/triumph_shuttle_landmarks.dm b/maps/triumph/triumph-shuttle-landmarks.dm similarity index 100% rename from code/modules/maps/templates/misc_presets/triumph_shuttle_landmarks.dm rename to maps/triumph/triumph-shuttle-landmarks.dm diff --git a/maps/triumph/triumph-turbolifts.dm b/maps/triumph/triumph-turbolifts.dm new file mode 100644 index 000000000000..97275f683160 --- /dev/null +++ b/maps/triumph/triumph-turbolifts.dm @@ -0,0 +1,15 @@ + +/obj/turbolift_map_holder/triumph + name = "Triumph Climber" + depth = 4 + lift_size_x = 3 + lift_size_y = 1 + icon = 'icons/obj/turbolift_preview_3x3.dmi' + wall_type = null // Don't make walls + + areas_to_use = list( + /area/turbolift/t_ship/level1, + /area/turbolift/t_ship/level2, + /area/turbolift/t_ship/level3, + /area/turbolift/t_ship/level4 + ) diff --git a/maps/victory/engines.dm b/maps/victory/engines.dm new file mode 100644 index 000000000000..7fe1e2c66679 --- /dev/null +++ b/maps/victory/engines.dm @@ -0,0 +1,30 @@ +/datum/map_template/engine/victory + abstract_type = /datum/map_template/engine/victory + prefix = "maps/victory/engines/" + for_map = /datum/map/station/victory + +/datum/map_template/engine/victory/rust + name = "ProcEngine_Victory_RUST" + desc = "R-UST Fusion Tokamak Engine" + suffix = "rust.dmm" + display_name = list("Budget Star", "Bane of Synthetics", "Glowy Field", "Funny Spinny EM Field", "Protean Rarity Enforcement") + +/datum/map_template/engine/victory/supermatter + name = "ProcEngine_Victory_SME" + desc = "Old Faithful Supermatter" + suffix = "sme.dmm" + display_name = list("Angry Rock", "The Forbidden Rock Candy", "Death Crystal", "Spicy Crystal") + +/datum/map_template/engine/victory/burnchamber + name = "ProcEngine_Victory_Burn" + desc = "Burn Chamber Engine" + suffix = "burn.dmm" + display_name = list("Toxins Lab", "We Knew You Liked Tether Fires, so we Brought One in a Box", "100 Solarmoths", "Teshari's Bane") + +/* +/datum/map_template/engine/victory/fission + name = "ProcEngine_Victory_Fission" + desc = "The Fission Reactor" + suffix = "fission.dmm" + display_name = list("Chernobyl", "Not as Cool as the Stormdrive", "Radiation Rework", "Spicy Sticks") +*/ diff --git a/maps/victory/engines/burn.dmm b/maps/victory/engines/burn.dmm new file mode 100644 index 000000000000..47af7f41b62e --- /dev/null +++ b/maps/victory/engines/burn.dmm @@ -0,0 +1,1857 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"as" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/fire_alarm/north_mount, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"ay" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"aW" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"ba" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/simulated/floor/reinforced/oxygen, +/area/engineering/engine_room) +"bc" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"bf" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"cc" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 5 + }, +/turf/simulated/floor/reinforced/airless, +/area/engineering/engine_room) +"cj" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_room) +"cz" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"cX" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_room) +"dL" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_room) +"es" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/obj/machinery/button/remote/blast_door{ + desc = "A remote control-switch for the engine radiator viewport shutters."; + id = "EngineRadiatorViewport"; + name = "Engine Radiator Viewport Shutters"; + pixel_x = 0; + pixel_y = 25; + req_access = list(10) + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"eu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/item/radio/intercom{ + dir = 2; + pixel_y = -24 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_room) +"ey" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/green{ + dir = 1 + }, +/obj/machinery/meter, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"fg" = ( +/obj/machinery/atmospherics/pipe/vent/high_volume{ + dir = 1 + }, +/turf/simulated/floor/reinforced/oxygen, +/area/engineering/engine_room) +"fv" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_room) +"fE" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"fS" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_room) +"gd" = ( +/obj/machinery/air_sensor{ + frequency = 1437; + id_tag = "engine_sensor"; + output = 63 + }, +/turf/simulated/floor/reinforced/airless, +/area/engineering/engine_room) +"gt" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 4 + }, +/turf/simulated/wall/r_wall, +/area/engineering/engine_room) +"gT" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 5 + }, +/obj/structure/window/phoronreinforced/full, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "EngineRadiatorViewport"; + name = "Engine Radiator Viewport Shutter"; + opacity = 0 + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"gU" = ( +/obj/structure/sign/fire, +/turf/simulated/wall/r_wall, +/area/engineering/engine_room) +"gV" = ( +/turf/template_noop, +/area/template_noop) +"gW" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber{ + id_tag = null; + tag = null + }, +/turf/simulated/floor/reinforced/airless, +/area/engineering/engine_room) +"hD" = ( +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "EngineRadiatorViewport"; + name = "Engine Radiator Viewport Shutter"; + opacity = 0 + }, +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"ip" = ( +/obj/structure/window/phoronreinforced/full, +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 10 + }, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"iB" = ( +/obj/structure/window/phoronreinforced/full, +/obj/machinery/atmospherics/pipe/simple/visible/red, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"iC" = ( +/obj/machinery/atmospherics/component/binary/circulator{ + anchored = 1; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"iF" = ( +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"iV" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/red{ + dir = 4 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"jc" = ( +/obj/machinery/atmospherics/component/binary/circulator{ + anchored = 1; + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"je" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/camera/network/engine{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_room) +"jr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/fire_alarm/south_mount{ + pixel_y = -24 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_room) +"jD" = ( +/obj/machinery/air_alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_room) +"ke" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/power/sensor{ + name = "Powernet Sensor - Engine Output"; + name_tag = "Engine Output" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"kG" = ( +/obj/machinery/atmospherics/component/quaternary/mixer, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"mz" = ( +/obj/machinery/portable_atmospherics/canister/phoron, +/turf/simulated/floor/reinforced/phoron, +/area/engineering/engine_room) +"mF" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"nt" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red, +/turf/simulated/wall/r_wall, +/area/engineering/engine_room) +"nF" = ( +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 9 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"nN" = ( +/obj/machinery/power/apc/south_mount, +/obj/structure/cable/cyan{ + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_room) +"nU" = ( +/obj/structure/window/phoronreinforced/full, +/obj/machinery/atmospherics/pipe/simple/visible/universal{ + dir = 1 + }, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"ox" = ( +/obj/machinery/button/ignition{ + id = "engine_igniter"; + pixel_y = 23 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"oN" = ( +/obj/machinery/atmospherics/valve/digital, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_room) +"oP" = ( +/obj/machinery/shield_diffuser, +/obj/machinery/atmospherics/component/unary/outlet_injector{ + dir = 4; + frequency = 1435; + id = "exhaust_out"; + volume_rate = 100 + }, +/turf/simulated/floor/airless/ceiling, +/area/engineering/engine_room) +"oY" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/camera/network/engine, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"oZ" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 4 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"py" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"pF" = ( +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_room) +"pL" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"pO" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_room) +"pT" = ( +/obj/machinery/light{ + dir = 8; + light_range = 12 + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"qt" = ( +/obj/machinery/button/remote/blast_door{ + dir = 1; + id = "EngineVent"; + name = "Reactor Ventillatory Control"; + pixel_y = -25; + req_access = list(10) + }, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"qH" = ( +/obj/machinery/atmospherics/component/unary/outlet_injector{ + use_power = 1; + volume_rate = 700 + }, +/turf/simulated/floor/reinforced/phoron, +/area/engineering/engine_room) +"rT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_room) +"rX" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"sl" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"sE" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_room) +"tA" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 9 + }, +/obj/machinery/computer/general_air_control/large_tank_control{ + frequency = 1435; + input_tag = "exhaust_out"; + name = "Engine Exhaust Control" + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_room) +"tJ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"tV" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 8 + }, +/obj/structure/window/phoronreinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/vent/high_volume{ + dir = 8 + }, +/turf/simulated/floor/reinforced/airless, +/area/engineering/engine_room) +"uj" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"uF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/fire_alarm/south_mount{ + pixel_y = -24 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_room) +"vm" = ( +/obj/structure/grille, +/obj/structure/window/phoronreinforced/full, +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 4 + }, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "EngineRadiatorViewport"; + name = "Engine Radiator Viewport Shutter"; + opacity = 0 + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"xl" = ( +/obj/machinery/computer/general_air_control/large_tank_control{ + frequency = 1438; + input_tag = "hotloop_in"; + name = "Pressure Chamber Control"; + sensors = list("hotloop_sensor"="Pressure Chamber") + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"xU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_room) +"xY" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"yg" = ( +/obj/machinery/atmospherics/component/unary/outlet_injector{ + dir = 1; + use_power = 1; + volume_rate = 700 + }, +/turf/simulated/floor/reinforced/oxygen, +/area/engineering/engine_room) +"yQ" = ( +/obj/machinery/door/firedoor{ + dir = 2 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/visible/black, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_room) +"zy" = ( +/obj/machinery/atmospherics/pipe/vent/high_volume, +/turf/simulated/floor/reinforced/phoron, +/area/engineering/engine_room) +"zz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_room) +"zD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_room) +"Ah" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_room) +"Aq" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"AG" = ( +/obj/machinery/atmospherics/component/unary/outlet_injector{ + dir = 1; + frequency = 1437; + id = "engine_in"; + volume_rate = 100 + }, +/turf/simulated/floor/reinforced/airless, +/area/engineering/engine_room) +"AX" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible/yellow, +/obj/machinery/air_sensor{ + frequency = 1438; + id_tag = "hotloop_sensor"; + output = 63 + }, +/obj/structure/window/phoronreinforced{ + dir = 4 + }, +/turf/simulated/floor/reinforced/airless, +/area/engineering/engine_room) +"Bc" = ( +/obj/machinery/computer/general_air_control/supermatter_core{ + frequency = 1437; + input_tag = "engine_in"; + name = "Burn Chamber Control"; + sensors = list("engine_sensor"="Burn Chamber") + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"BH" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_room) +"BT" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"BY" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/purple{ + dir = 1 + }, +/obj/structure/grille, +/obj/structure/window/phoronreinforced/full, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "EngineRadiatorViewport"; + name = "Engine Radiator Viewport Shutter"; + opacity = 0 + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"Ce" = ( +/obj/structure/window/phoronreinforced{ + dir = 4 + }, +/obj/structure/window/phoronreinforced{ + dir = 1 + }, +/obj/machinery/atmospherics/component/unary/outlet_injector{ + frequency = 1438; + id = "hotloop_in"; + volume_rate = 100 + }, +/turf/simulated/floor/reinforced/airless, +/area/engineering/engine_room) +"CF" = ( +/obj/machinery/door/firedoor{ + dir = 2 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_room) +"Dc" = ( +/obj/machinery/door/firedoor{ + dir = 2 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_room) +"Dq" = ( +/turf/template_noop, +/area/space) +"DJ" = ( +/obj/machinery/atmospherics/component/binary/circulator{ + anchored = 1 + }, +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"DU" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"ET" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 4 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"FF" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/camera/network/engine{ + dir = 8 + }, +/obj/machinery/door/firedoor{ + dir = 2 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_room) +"FI" = ( +/obj/machinery/door/firedoor{ + dir = 2 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_room) +"Gn" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"Gt" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"Gw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_room) +"Gz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_room) +"GT" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_room) +"HD" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 4 + }, +/obj/structure/grille, +/obj/structure/window/phoronreinforced/full, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "EngineRadiatorViewport"; + name = "Engine Radiator Viewport Shutter"; + opacity = 0 + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"HF" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ + dir = 8 + }, +/turf/simulated/floor/reinforced/airless, +/area/engineering/engine_room) +"Im" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"IP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_room) +"JN" = ( +/obj/machinery/door/blast/regular{ + dir = 2; + id = "EngineVent"; + name = "Reactor Vent" + }, +/obj/machinery/shield_diffuser, +/turf/simulated/floor/reinforced/airless, +/area/engineering/engine_room) +"JQ" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"Ke" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"Ku" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"KN" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"KZ" = ( +/turf/simulated/wall/r_wall, +/area/engineering/engine_room) +"Lp" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"LP" = ( +/turf/simulated/floor/reinforced/oxygen, +/area/engineering/engine_room) +"LX" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging, +/turf/simulated/floor/reinforced/airless, +/area/engineering/engine_room) +"Mo" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"Mx" = ( +/obj/machinery/atmospherics/component/binary/pump{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"NZ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_room) +"Oi" = ( +/obj/machinery/atmospherics/component/binary/pump, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"Ok" = ( +/obj/machinery/power/generator{ + anchored = 1; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"Ol" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/machinery/door/airlock/vault{ + name = "REACTOR ROOM"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/engineering/engine, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"On" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"Or" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_room) +"OG" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 9 + }, +/turf/simulated/floor/reinforced/airless, +/area/engineering/engine_room) +"OY" = ( +/obj/machinery/light, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"Pv" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 4 + }, +/turf/simulated/wall/r_wall, +/area/engineering/engine_room) +"Py" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"PA" = ( +/obj/structure/grille, +/obj/structure/window/phoronreinforced/full, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "EngineRadiatorViewport"; + name = "Engine Radiator Viewport Shutter"; + opacity = 0 + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"PH" = ( +/obj/machinery/atmospherics/component/binary/circulator{ + anchored = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"PL" = ( +/obj/structure/window/phoronreinforced, +/obj/structure/window/phoronreinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/component/unary/outlet_injector{ + dir = 1; + frequency = 1438; + id = "hotloop_in"; + volume_rate = 100 + }, +/turf/simulated/floor/reinforced/airless, +/area/engineering/engine_room) +"PW" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 6 + }, +/obj/machinery/camera/network/engine, +/turf/simulated/floor/reinforced/airless, +/area/engineering/engine_room) +"Qm" = ( +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/table/steel, +/obj/item/paper{ + info = "For anyone who bothers to read this before whining about the new engine, here's how you set it up in the most basic hands-off way:\[list]1. Two cans of phoron in the hot loop\[br]2. Four cans of phoron in the cold loop\[br]3. Turn on the cold loop pump\[br]4. Set mixer N/S Input, W Output\[br]5. Turn on injectors, set to max\[br]6. Hit ignition switch\[/list]\[br]Engine won't burn forever, so don't panic when it goes out. As long as the CO2 in there stays nice and hot, your power output should be solid."; + name = "Engine Instructions" + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"Qu" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"Qw" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/vault{ + name = "REACTOR ROOM"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/engineering/engine, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"Qx" = ( +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"Qy" = ( +/obj/machinery/power/generator{ + anchored = 1; + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"QA" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black, +/obj/structure/grille, +/obj/structure/window/phoronreinforced/full, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "EngineRadiatorViewport"; + name = "Engine Radiator Viewport Shutter"; + opacity = 0 + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"Rn" = ( +/obj/machinery/atmospherics/component/binary/pump{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"RE" = ( +/obj/structure/window/phoronreinforced, +/obj/structure/window/phoronreinforced{ + dir = 4 + }, +/obj/machinery/atmospherics/component/unary/outlet_injector{ + dir = 1; + frequency = 1438; + id = "hotloop_in"; + volume_rate = 100 + }, +/turf/simulated/floor/reinforced/airless, +/area/engineering/engine_room) +"RF" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"RI" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"RU" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"RY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_room) +"SP" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"Tl" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/vault{ + name = "REACTOR ROOM"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/engineering/engine, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"TK" = ( +/turf/simulated/floor/reinforced/phoron, +/area/engineering/engine_room) +"TV" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/red, +/obj/machinery/atmospherics/pipe/simple/visible/red, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"Um" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"Ut" = ( +/obj/structure/window/phoronreinforced{ + dir = 1 + }, +/obj/structure/window/phoronreinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/component/unary/outlet_injector{ + frequency = 1438; + id = "hotloop_in"; + volume_rate = 100 + }, +/turf/simulated/floor/reinforced/airless, +/area/engineering/engine_room) +"Uu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 8 + }, +/obj/machinery/door/airlock/vault{ + name = "REACTOR ROOM"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/engineering/engine, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"UK" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"UP" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/vault{ + name = "REACTOR ROOM"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/engineering/engine, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"UW" = ( +/obj/machinery/igniter{ + id = "engine_igniter"; + on = 0 + }, +/turf/simulated/floor/reinforced/airless, +/area/engineering/engine_room) +"Vd" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red, +/obj/structure/window/phoronreinforced/full, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"Vm" = ( +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_room) +"Vt" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 6 + }, +/obj/structure/grille, +/obj/structure/window/phoronreinforced/full, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "EngineRadiatorViewport"; + name = "Engine Radiator Viewport Shutter"; + opacity = 0 + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"VA" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/black{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"VN" = ( +/obj/structure/window/phoronreinforced/full, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"VO" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 10 + }, +/turf/simulated/floor/reinforced/airless, +/area/engineering/engine_room) +"VQ" = ( +/obj/machinery/atmospherics/component/binary/pump{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"Wm" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/black, +/obj/structure/window/phoronreinforced/full, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "EngineRadiatorViewport"; + name = "Engine Radiator Viewport Shutter"; + opacity = 0 + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"Wr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/vault{ + name = "REACTOR ROOM"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/engineering/engine, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"Ww" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"WF" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"WG" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"WJ" = ( +/obj/structure/grille, +/obj/structure/window/phoronreinforced/full, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "EngineRadiatorViewport"; + name = "Engine Radiator Viewport Shutter"; + opacity = 0 + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"Xs" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/green{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"XH" = ( +/obj/structure/closet/firecloset, +/obj/item/extinguisher, +/turf/template_noop, +/area/template_noop) +"XI" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_room) +"XO" = ( +/obj/machinery/atmospherics/portables_connector, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"Yi" = ( +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "EngineRadiatorViewport"; + name = "Engine Radiator Viewport Shutter"; + opacity = 0 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"YF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_room) +"Zp" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ + dir = 1 + }, +/turf/simulated/floor/reinforced/airless, +/area/engineering/engine_room) +"ZG" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 6 + }, +/turf/simulated/floor/reinforced/airless, +/area/engineering/engine_room) +"ZM" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) + +(1,1,1) = {" +Dq +Dq +Dq +Dq +Dq +KZ +JN +JN +JN +JN +JN +KZ +KZ +KZ +Dq +Dq +Dq +Dq +Dq +"} +(2,1,1) = {" +Dq +Dq +Dq +Dq +Dq +Vt +AG +gd +ZG +cc +gW +QA +OY +KZ +Dq +Dq +Dq +Dq +Dq +"} +(3,1,1) = {" +Dq +Dq +Dq +Dq +Dq +BY +AG +ZG +LX +LX +cc +PA +qt +KZ +Dq +oP +Dq +Dq +Dq +"} +(4,1,1) = {" +KZ +Yi +Yi +Yi +KZ +HD +PW +LX +LX +LX +OG +PA +Ku +KZ +Yi +hD +Yi +KZ +KZ +"} +(5,1,1) = {" +KZ +es +Qx +Ww +pT +HD +VO +LX +LX +LX +Zp +gT +VA +yQ +oN +tA +cj +pF +gU +"} +(6,1,1) = {" +UP +Xs +VQ +WG +Mx +HD +UW +VO +OG +HF +gW +Wm +Im +Dc +Vm +Vm +RY +zD +Ol +"} +(7,1,1) = {" +gU +Xs +Oi +WG +ZM +gt +WJ +WJ +WJ +vm +WJ +Pv +BH +FF +zz +Gw +xU +nN +KZ +"} +(8,1,1) = {" +KZ +DU +Qx +pL +oZ +BT +sl +Qx +Ut +tV +PL +Py +GT +KZ +KZ +gU +Tl +Uu +KZ +"} +(9,1,1) = {" +KZ +ey +Gn +mF +cz +KN +Lp +Qx +Ce +AX +RE +Py +jD +KZ +gV +gV +gV +gV +gV +"} +(10,1,1) = {" +KZ +UK +jc +Mo +JQ +iC +Mo +Qx +Qx +ay +RU +Aq +eu +KZ +gV +gV +gV +gV +gV +"} +(11,1,1) = {" +KZ +as +Qy +tJ +xY +Ok +ke +fE +fE +bc +RF +Um +fS +KZ +gV +gV +gV +gV +gV +"} +(12,1,1) = {" +KZ +oY +PH +On +Ke +DJ +On +Mx +Rn +ay +Py +Qx +je +KZ +gV +gV +gV +gV +gV +"} +(13,1,1) = {" +KZ +bf +WF +py +Gt +Qu +ET +SP +SP +uj +Py +Qx +uF +KZ +gV +gV +gV +gV +gV +"} +(14,1,1) = {" +KZ +ip +iB +nt +iV +TV +nt +Vd +iB +nt +nF +iF +IP +KZ +gV +gV +gV +gV +gV +"} +(15,1,1) = {" +KZ +TK +zy +nU +RI +kG +nU +fg +LP +KZ +Bc +xl +rT +KZ +gV +gV +gV +gV +gV +"} +(16,1,1) = {" +KZ +mz +qH +nU +WG +XO +nU +yg +ba +KZ +ox +rX +jr +KZ +gV +gV +gV +gV +gV +"} +(17,1,1) = {" +KZ +VN +VN +KZ +Qx +Qx +KZ +VN +VN +KZ +Qm +aW +fv +gU +XH +XH +gV +gV +gV +"} +(18,1,1) = {" +KZ +Vm +Vm +pO +XI +NZ +YF +Gz +Gz +FI +Ah +dL +Or +Qw +gV +gV +gV +gV +gV +"} +(19,1,1) = {" +KZ +Vm +Vm +sE +cX +Vm +Vm +Vm +Vm +CF +cX +sE +Vm +Wr +gV +gV +gV +gV +gV +"} diff --git a/maps/victory/engines/fission.dmm b/maps/victory/engines/fission.dmm new file mode 100644 index 000000000000..c4eadd621c44 --- /dev/null +++ b/maps/victory/engines/fission.dmm @@ -0,0 +1,1732 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "EngineRadiatorViewport"; + name = "Engine Radiator Viewport Shutter"; + opacity = 0 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"ab" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 5 + }, +/obj/machinery/button/remote/blast_door{ + desc = "A remote control-switch for the engine radiator viewport shutters."; + id = "EngineRadiatorViewport"; + name = "Engine Radiator Viewport Shutters"; + pixel_x = -25; + req_access = list(10) + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"ad" = ( +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"as" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_room) +"bh" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"bl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/visible/black{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_room) +"bM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"cB" = ( +/obj/structure/sign/warning/radioactive{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"cQ" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_room) +"dO" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/reinforced, +/area/engineering/engine_room) +"eJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/turf/simulated/wall/r_lead, +/area/engineering/engine_room) +"eT" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"fi" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"gd" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/green{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"gH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 8 + }, +/obj/machinery/door/airlock/vault{ + name = "REACTOR ROOM"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/engineering/engine, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"gN" = ( +/obj/machinery/atmospherics/valve/digital{ + dir = 4; + name = "Emergency Cooling Valve 1" + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"hi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_room) +"hE" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/simulated/floor/reinforced, +/area/engineering/engine_room) +"hG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/power/sensor{ + name = "Powernet Sensor - Engine Output"; + name_tag = "Engine Output" + }, +/obj/machinery/fire_alarm/east_mount, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"hO" = ( +/obj/machinery/power/rad_collector, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/engineering/engine_room) +"hS" = ( +/obj/machinery/light, +/obj/machinery/fire_alarm/south_mount{ + pixel_y = -24 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_room) +"iK" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 5 + }, +/turf/simulated/floor/reinforced, +/area/engineering/engine_room) +"iT" = ( +/obj/machinery/camera/network/engine, +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"iW" = ( +/obj/machinery/button/remote/blast_door{ + desc = "A remote control-switch for the engine charging port."; + id = "SupermatterVent"; + name = "REACTOR EMERGENCY VENTING"; + pixel_y = -26; + req_access = list(10) + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_room) +"jx" = ( +/obj/structure/sign/vacuum, +/turf/simulated/wall/r_wall, +/area/engineering/engine_room) +"kW" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/green{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"lk" = ( +/obj/machinery/atmospherics/component/binary/pump/high_power, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"lY" = ( +/obj/item/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 26 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"mm" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 9 + }, +/turf/simulated/floor/reinforced, +/area/engineering/engine_room) +"mv" = ( +/obj/machinery/camera/network/engineering{ + dir = 4 + }, +/obj/machinery/door/firedoor{ + dir = 2 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"mV" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/camera/network/engine{ + dir = 4 + }, +/obj/machinery/atmospherics/component/unary/outlet_injector{ + dir = 1; + frequency = 1441; + id = "atmos_out"; + power_rating = 5000; + use_power = 1 + }, +/turf/simulated/floor/reinforced, +/area/engineering/engine_room) +"mX" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/phoronreinforced/full, +/obj/machinery/door/blast/regular{ + dir = 2; + id = "SupermatterPort"; + name = "Reactor Blast Door" + }, +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"nd" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/obj/item/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 26 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"nD" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red, +/turf/simulated/floor/reinforced, +/area/engineering/engine_room) +"nP" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"nS" = ( +/obj/machinery/door/blast/regular{ + dir = 2; + id = "SupermatterVent"; + name = "Reactor Blast Door" + }, +/turf/simulated/floor/reinforced, +/area/engineering/engine_room) +"pl" = ( +/obj/machinery/light, +/obj/item/radio/intercom{ + pixel_y = -24 + }, +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/machinery/fire_alarm/west_mount{ + pixel_x = -26 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"qX" = ( +/obj/structure/closet/radiation, +/obj/item/clothing/glasses/meson, +/obj/item/clothing/glasses/meson, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_room) +"rF" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"rL" = ( +/obj/structure/dispenser/phoron, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_room) +"rX" = ( +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_room) +"tm" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"tJ" = ( +/obj/structure/closet/radiation, +/obj/item/clothing/glasses/meson, +/obj/item/clothing/glasses/meson, +/obj/machinery/camera/network/engine, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_room) +"tW" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_room) +"uq" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"uy" = ( +/obj/structure/closet/radiation, +/obj/item/clothing/glasses/meson, +/obj/item/clothing/glasses/meson, +/obj/machinery/fire_alarm/west_mount{ + pixel_x = -26 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_room) +"vw" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/button/remote/blast_door{ + desc = "A remote control-switch for the engine charging port."; + dir = 4; + id = "SupermatterPort"; + name = "Reactor Blast Doors"; + pixel_x = -26; + pixel_y = -25; + req_access = list(10) + }, +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/reinforced, +/area/engineering/engine_room) +"wH" = ( +/turf/template_noop, +/area/template_noop) +"wN" = ( +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"xH" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"xL" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"xY" = ( +/obj/machinery/power/rad_collector, +/obj/structure/cable/yellow, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/reinforced, +/area/engineering/engine_room) +"xZ" = ( +/obj/machinery/door/blast/regular{ + dir = 2; + id = "SupermatterPort"; + name = "Reactor Blast Door" + }, +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/reinforced, +/area/engineering/engine_room) +"yQ" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"zy" = ( +/obj/machinery/portable_atmospherics/canister/phoron, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_room) +"zz" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 10 + }, +/obj/machinery/meter, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"zC" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_room) +"zI" = ( +/obj/structure/table/standard, +/obj/machinery/recharger, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_room) +"zN" = ( +/obj/structure/sign/warning{ + name = "\improper DANGER: ENGINE EXHAUST" + }, +/turf/simulated/wall/r_wall, +/area/engineering/engine_room) +"zY" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"AC" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"AI" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/button/remote/blast_door{ + desc = "A remote control-switch for the engine charging port."; + id = "SupermatterPort"; + name = "Reactor Blast Doors"; + req_access = list(10) + }, +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"Bg" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"Bx" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red, +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/phoronreinforced/full, +/obj/machinery/door/blast/regular{ + dir = 2; + id = "SupermatterPort"; + name = "Reactor Blast Door" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"BW" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/visible/red, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"Cr" = ( +/turf/simulated/floor/reinforced, +/area/engineering/engine_room) +"Cu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/machinery/door/airlock/vault{ + name = "REACTOR ROOM"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/engineering/engine, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"CF" = ( +/obj/structure/sign/warning/radioactive, +/turf/simulated/wall/r_wall, +/area/engineering/engine_room) +"CT" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/valve/digital{ + dir = 4; + name = "Emergency Cooling Valve 2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"Dm" = ( +/obj/machinery/atmospherics/component/binary/circulator{ + anchored = 1; + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"Ea" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 10 + }, +/turf/simulated/floor/reinforced, +/area/engineering/engine_room) +"Ek" = ( +/obj/structure/closet/radiation, +/turf/template_noop, +/area/template_noop) +"Ew" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/component/binary/pump, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"EG" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/simulated/floor/reinforced, +/area/engineering/engine_room) +"ER" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/vault{ + name = "REACTOR ROOM"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/engineering/engine, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"Fp" = ( +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"Hc" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/red{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"Hj" = ( +/obj/machinery/power/apc/south_mount, +/obj/structure/cable/cyan{ + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"HA" = ( +/obj/structure/closet/crate/secure/engineering, +/obj/machinery/door/window/northleft{ + dir = 4; + name = "Reflector Rods"; + req_access = list(11) + }, +/obj/structure/window/reinforced, +/obj/item/storage/briefcase/fission/reflectormixed, +/obj/item/storage/briefcase/fission/tungstencarbide, +/obj/item/storage/briefcase/fission/beryllium, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_room) +"In" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"Iz" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"II" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/machinery/door/firedoor{ + dir = 2 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"IP" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/visible/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"IT" = ( +/obj/machinery/power/rad_collector, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/atmospherics/component/unary/vent_pump{ + dir = 8; + external_pressure_bound = 0; + external_pressure_bound_default = 0; + icon_state = "map_vent_in"; + initialize_directions = 1; + internal_pressure_bound = 4000; + internal_pressure_bound_default = 4000; + pressure_checks = 2; + pressure_checks_default = 2; + pump_direction = 0; + on = 1 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/reinforced, +/area/engineering/engine_room) +"Jd" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/phoronreinforced/full, +/obj/machinery/door/blast/regular{ + dir = 2; + id = "SupermatterPort"; + name = "Reactor Blast Door" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"Jm" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/vault{ + name = "REACTOR ROOM"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/engineering/engine, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"JB" = ( +/obj/structure/fans/tiny, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/map_helper/access_helper/airlock/station/maintenance, +/obj/machinery/door/airlock/hatch{ + req_one_access = null + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"JR" = ( +/obj/machinery/atmospherics/component/binary/pump, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"Kp" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"Ks" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"KF" = ( +/turf/simulated/wall/r_lead, +/area/engineering/engine_room) +"KI" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/button/remote/blast_door{ + desc = "A remote control-switch for the engine charging port."; + dir = 8; + id = "SupermatterPort"; + name = "Reactor Blast Doors"; + pixel_x = 26; + pixel_y = 26; + req_access = list(10) + }, +/turf/simulated/floor/reinforced, +/area/engineering/engine_room) +"Lc" = ( +/obj/machinery/light{ + dir = 8; + light_range = 12 + }, +/obj/machinery/atmospherics/component/unary/freezer{ + dir = 4; + name = "Reactor Room Cooling" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"LH" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_room) +"Mg" = ( +/turf/template_noop, +/area/space) +"Ms" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/visible/cyan, +/obj/machinery/meter, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"MK" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_room) +"MW" = ( +/obj/machinery/button/remote/driver{ + dir = 8; + id = "enginecore"; + name = "Emergency Core Eject"; + pixel_x = -21 + }, +/obj/structure/window/basic, +/obj/structure/window/basic{ + dir = 4 + }, +/obj/structure/window/basic{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_room) +"Ny" = ( +/obj/machinery/fire_alarm/south_mount{ + pixel_y = -24 + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"ND" = ( +/obj/machinery/power/generator{ + anchored = 1; + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"Oe" = ( +/obj/machinery/computer/fission_monitor, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/sign/warning/radioactive{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"Ok" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"Ol" = ( +/obj/machinery/atmospherics/component/binary/circulator{ + anchored = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"Oo" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"Op" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/phoronreinforced/full, +/obj/machinery/door/blast/regular{ + dir = 2; + id = "SupermatterPort"; + name = "Reactor Blast Door" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"OB" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/engineering/engine_room) +"OG" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"ON" = ( +/turf/simulated/wall/r_wall, +/area/engineering/engine_room) +"Ps" = ( +/obj/structure/closet/radiation, +/obj/item/clothing/glasses/meson, +/obj/item/clothing/glasses/meson, +/obj/machinery/camera/network/engine{ + dir = 9 + }, +/obj/machinery/atmospherics/component/binary/pump/on{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_room) +"PN" = ( +/obj/structure/table/standard, +/obj/item/multitool, +/obj/item/tool/wrench, +/obj/item/stack/cable_coil/yellow, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_room) +"Qq" = ( +/obj/machinery/shield_diffuser, +/obj/machinery/door/blast/regular{ + dir = 2; + id = "SupermatterVent"; + name = "Reactor Blast Door" + }, +/turf/simulated/floor/reinforced, +/area/engineering/engine_room) +"Qt" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"QP" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"QW" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"Ro" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/phoronreinforced/full, +/obj/structure/window/phoronreinforced, +/obj/structure/window/phoronreinforced{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"Rz" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/vault{ + name = "REACTOR ROOM"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/engineering/engine, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"RH" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"RJ" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/mass_driver{ + dir = 8; + id = "enginecore" + }, +/obj/machinery/power/fission, +/obj/structure/window/phoronreinforced{ + dir = 1 + }, +/obj/structure/window/phoronreinforced{ + dir = 4 + }, +/obj/structure/window/phoronreinforced, +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/red, +/turf/simulated/floor/reinforced, +/area/engineering/engine_room) +"Sv" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"SD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/vault{ + name = "REACTOR ROOM"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/engineering/engine, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"Td" = ( +/obj/structure/closet/crate/secure/engineering, +/obj/item/storage/briefcase/fission/uranium, +/obj/item/storage/briefcase/fission/uranium, +/obj/machinery/door/window/northleft{ + dir = 2; + name = "Fuel Rods"; + req_access = list(11) + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/storage/briefcase/fission/plutonium, +/obj/item/storage/briefcase/fission/plutonium, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_room) +"Tf" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/engineering/engine_room) +"Tx" = ( +/obj/machinery/door/firedoor{ + dir = 2 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"TN" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/obj/machinery/atmospherics/component/binary/pump/high_power{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"TO" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"TV" = ( +/obj/machinery/meter, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"Ug" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/phoronreinforced/full, +/obj/structure/window/phoronreinforced, +/obj/structure/window/phoronreinforced{ + dir = 1 + }, +/obj/structure/sign/warning/radioactive{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"Uq" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"UP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"UW" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"Vc" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/engineering/engine_room) +"Vd" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 5 + }, +/turf/simulated/floor/reinforced, +/area/engineering/engine_room) +"Vf" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/red, +/turf/simulated/floor/reinforced, +/area/engineering/engine_room) +"Vi" = ( +/obj/structure/fans/tiny, +/obj/machinery/atmospherics/pipe/simple/visible/black, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/map_helper/access_helper/airlock/station/maintenance, +/obj/machinery/door/airlock/hatch{ + req_one_access = null + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"Vv" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/red{ + dir = 4 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"VR" = ( +/obj/machinery/atmospherics/portables_connector, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"VZ" = ( +/obj/structure/closet/crate/secure/engineering, +/obj/item/storage/briefcase/fission/boron, +/obj/machinery/door/window/northleft{ + dir = 4; + name = "Control Rods"; + req_access = list(11) + }, +/obj/structure/window/reinforced, +/obj/item/storage/briefcase/fission/controlmixed, +/obj/item/storage/briefcase/fission/silver, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_room) +"Wi" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"Wn" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow, +/obj/machinery/meter, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"Ws" = ( +/obj/machinery/atmospherics/component/binary/pump{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"WS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"Xe" = ( +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/atmospherics/portables_connector, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"Xo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_room) +"XC" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"Yi" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 6 + }, +/turf/simulated/floor/reinforced, +/area/engineering/engine_room) +"YL" = ( +/obj/machinery/power/rad_collector, +/obj/structure/cable/yellow, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/engineering/engine_room) +"YY" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"ZE" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"ZJ" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/red{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"ZX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor{ + dir = 2 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) + +(1,1,1) = {" +Mg +Mg +Mg +Mg +Mg +ON +ON +ON +jx +nS +jx +ON +ON +ON +Mg +Mg +Mg +Mg +Mg +"} +(2,1,1) = {" +Mg +Mg +Mg +Mg +Mg +ON +MW +uy +Ro +Cr +Ro +VZ +HA +ON +Mg +Mg +Mg +Mg +Mg +"} +(3,1,1) = {" +Mg +Mg +Mg +Mg +Mg +ON +zC +rX +Ro +Cr +Ro +rX +hS +ON +Mg +Mg +Mg +Mg +Mg +"} +(4,1,1) = {" +ON +aa +aa +aa +ON +ON +rL +iW +ON +Qq +ON +Td +rX +ON +aa +aa +aa +ON +ON +"} +(5,1,1) = {" +ON +nd +wN +zY +ab +Lc +zy +rX +Ro +Cr +Ro +tJ +rX +Tx +wN +wN +yQ +ad +CF +"} +(6,1,1) = {" +ER +kW +JR +TO +TN +eT +tW +cQ +zN +Cr +zN +MK +as +Tx +wN +wN +Ks +WS +Cu +"} +(7,1,1) = {" +CF +kW +Ws +TO +AC +zz +LH +bl +Vi +hE +JB +hi +Xo +ZX +hG +bM +UP +Hj +ON +"} +(8,1,1) = {" +ON +TV +Wi +ZE +Kp +wN +qX +Ps +Ro +KI +Ug +PN +zI +ON +ON +CF +Rz +gH +ON +"} +(9,1,1) = {" +ON +kW +gd +Dm +Ms +In +KF +eJ +KF +xZ +KF +KF +KF +ON +wH +wH +wH +wH +wH +"} +(10,1,1) = {" +ON +Sv +gN +ND +CT +Ok +KF +IT +dO +vw +mV +xY +KF +ON +wH +wH +wH +wH +wH +"} +(11,1,1) = {" +ON +iT +ZJ +Ol +IP +Ny +KF +Yi +nD +iK +Cr +Cr +KF +ON +wH +wH +wH +wH +wH +"} +(12,1,1) = {" +ON +Sv +Hc +tm +BW +XC +Bx +Vf +Yi +RJ +Vd +Cr +KF +ON +wH +wH +wH +wH +wH +"} +(13,1,1) = {" +ON +Sv +UW +ZE +uq +Uq +KF +Ea +mm +Vc +OB +Cr +KF +ON +wH +wH +wH +wH +wH +"} +(14,1,1) = {" +ON +rF +QW +Dm +fi +Bg +KF +hO +dO +EG +Tf +YL +KF +ON +wH +wH +wH +wH +wH +"} +(15,1,1) = {" +ON +wN +Qt +ND +OG +wN +KF +KF +Op +mX +Jd +KF +KF +ON +wH +wH +wH +wH +wH +"} +(16,1,1) = {" +ON +lY +QP +Ol +Wn +wN +mv +cB +wN +nP +nP +Oe +pl +ON +wH +wH +wH +wH +wH +"} +(17,1,1) = {" +ON +wN +Xe +Ew +Oo +wN +Tx +bh +lk +Vv +YY +AI +Fp +CF +Ek +Ek +wH +wH +wH +"} +(18,1,1) = {" +ON +xH +VR +Ws +Iz +xL +II +RH +wN +wN +wN +wN +wN +Jm +wH +wH +wH +wH +wH +"} +(19,1,1) = {" +ON +wN +wN +wN +wN +wN +Tx +wN +wN +wN +wN +wN +wN +SD +wH +wH +wH +wH +wH +"} diff --git a/maps/victory/engines/rust.dmm b/maps/victory/engines/rust.dmm new file mode 100644 index 000000000000..0038d472160c --- /dev/null +++ b/maps/victory/engines/rust.dmm @@ -0,0 +1,1761 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"ab" = ( +/obj/machinery/atmospherics/component/binary/circulator{ + anchored = 1; + dir = 8 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"ac" = ( +/obj/machinery/power/generator{ + anchored = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"ad" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4; + icon_state = "warning" + }, +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"ae" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"af" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 10; + icon_state = "intact" + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"ah" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"ai" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"aj" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"ak" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"al" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"am" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"an" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 4 + }, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"ao" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"ap" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/red{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"aq" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4; + icon_state = "warning" + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"ar" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"as" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"at" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4; + icon_state = "warning" + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"au" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/visible/red, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"av" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 9; + icon_state = "intact" + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"aw" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"ax" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"ay" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"az" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"aB" = ( +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "EngineRadiatorViewport"; + name = "Engine Radiator Viewport Shutter"; + opacity = 0 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"aC" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/obj/machinery/button/remote/blast_door{ + desc = "A remote control-switch for the engine radiator viewport shutters."; + id = "EngineRadiatorViewport"; + name = "Engine Radiator Viewport Shutters"; + pixel_x = 0; + pixel_y = 25; + req_access = list(10) + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"aD" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"aE" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"aF" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"aG" = ( +/obj/structure/cable/cyan{ + icon_state = "1-4" + }, +/obj/machinery/light, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"aH" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"aI" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"aJ" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4; + icon_state = "warning" + }, +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"aP" = ( +/obj/structure/sign/warning/radioactive, +/turf/simulated/wall/r_wall, +/area/engineering/engine_room) +"aY" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/green{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"bz" = ( +/obj/machinery/power/fusion_core/mapped{ + id_tag = "engine" + }, +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/obj/structure/cable/cyan{ + icon_state = "0-4" + }, +/obj/structure/cable/cyan{ + icon_state = "0-8" + }, +/turf/simulated/floor/reinforced, +/area/engineering/engine_room) +"ck" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/high_volume{ + frequency = 1438; + id_tag = "cooling_out"; + pump_direction = 0; + on = 1 + }, +/turf/simulated/floor/reinforced, +/area/engineering/engine_room) +"cx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 8 + }, +/obj/machinery/door/airlock/vault{ + name = "REACTOR ROOM"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/engineering/engine, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"dB" = ( +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"dG" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"ev" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/red{ + dir = 8 + }, +/obj/machinery/camera/network/engine{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/engineering/engine_room) +"eD" = ( +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"fd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/button/remote/blast_door{ + id = "EngineVent"; + name = "Reactor Ventillatory Control"; + pixel_x = 0; + pixel_y = -25; + req_access = list(10) + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"fm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable/cyan{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"fn" = ( +/obj/machinery/atmospherics/component/binary/circulator{ + anchored = 1; + dir = 4 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"fN" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"gr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/vault{ + name = "REACTOR ROOM"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/engineering/engine, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"gu" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"hP" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"ij" = ( +/obj/machinery/air_sensor{ + frequency = 1438; + id_tag = "engine_sensor"; + output = 63 + }, +/turf/simulated/floor/reinforced, +/area/engineering/engine_room) +"iw" = ( +/obj/structure/closet/radiation, +/turf/template_noop, +/area/template_noop) +"iE" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor, +/area/engineering/engine_room) +"jt" = ( +/obj/machinery/atmospherics/component/binary/pump/high_power{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"jU" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"kt" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor, +/area/engineering/engine_room) +"kv" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"kB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"kF" = ( +/obj/machinery/door/blast/regular{ + dir = 4; + icon_state = "pdoor1"; + id = "EngineVent"; + name = "Reactor Vent" + }, +/turf/simulated/floor/reinforced, +/area/engineering/engine_room) +"kJ" = ( +/obj/machinery/computer/fusion_fuel_control{ + id_tag = "engine-i" + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"kP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"kR" = ( +/obj/structure/cable/cyan{ + icon_state = "1-8" + }, +/obj/structure/cable/cyan{ + icon_state = "2-8" + }, +/obj/structure/cable/cyan{ + icon_state = "0-8" + }, +/obj/machinery/power/emitter/gyrotron/anchored{ + dir = 8; + id_tag = "engine-g" + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"kW" = ( +/obj/structure/cable/cyan{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"lu" = ( +/obj/machinery/power/apc/south_mount, +/obj/structure/cable/cyan{ + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 8 + }, +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"lC" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"mu" = ( +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/obj/machinery/button/remote/airlock{ + id = "engine_access_hatch"; + name = "Door Bolt Control"; + pixel_x = -4; + pixel_y = -28; + req_access = list(10); + specialfunctions = 4 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"mF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"mX" = ( +/obj/structure/cable/cyan, +/obj/machinery/power/emitter/gyrotron/anchored{ + dir = 8; + id_tag = "engine-g" + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"nf" = ( +/obj/item/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 26 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"nq" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/obj/machinery/camera/network/engine, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"op" = ( +/obj/structure/window/phoronreinforced/full{ + icon_state = "phoronwindow0" + }, +/obj/structure/grille, +/turf/simulated/floor, +/area/engineering/engine_room) +"os" = ( +/turf/simulated/wall/r_wall, +/area/engineering/engine_room) +"oE" = ( +/obj/structure/cable/cyan{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor{ + dir = 2 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"oN" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/green{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"oV" = ( +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"pp" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"qB" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor, +/area/engineering/engine_room) +"rl" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"rH" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 10; + icon_state = "intact" + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"rM" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/obj/machinery/fire_alarm/north_mount, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"rX" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"sq" = ( +/obj/structure/window/phoronreinforced/full{ + icon_state = "phoronwindow0" + }, +/obj/structure/grille, +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"ss" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/engineering/engine_room) +"sH" = ( +/obj/structure/cable/cyan{ + icon_state = "1-2" + }, +/obj/machinery/fusion_fuel_injector/mapped{ + dir = 8; + id_tag = "engine-i" + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"te" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"tn" = ( +/obj/machinery/computer/gyrotron_control{ + id_tag = "engine-g" + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"tw" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"ue" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"vj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"vm" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"vV" = ( +/obj/machinery/door/airlock/hatch{ + icon_state = "door_locked"; + id_tag = "engine_access_hatch"; + locked = 1; + name = "Fusion Core Access"; + req_access = list(11) + }, +/obj/structure/cable/cyan{ + icon_state = "1-2" + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"wb" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"wL" = ( +/obj/machinery/atmospherics/component/binary/pump{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"xe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/fire_alarm/south_mount{ + pixel_y = -24 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"xg" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/machinery/door/firedoor{ + dir = 2 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"xH" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"xM" = ( +/turf/template_noop, +/area/space) +"yw" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"Ab" = ( +/turf/simulated/floor/reinforced, +/area/engineering/engine_room) +"At" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"Ay" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"CC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/cyan{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"CN" = ( +/obj/machinery/atmospherics/component/unary/outlet_injector{ + dir = 1; + frequency = 1438; + id = "cooling_in"; + use_power = 1 + }, +/turf/simulated/floor/reinforced, +/area/engineering/engine_room) +"EG" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"Fy" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/valve/digital{ + name = "Emergency Cooling Valve 2" + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"FL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/camera/network/engine{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"Gf" = ( +/obj/fiftyspawner/tritium, +/obj/structure/table/reinforced, +/obj/fiftyspawner/deuterium, +/obj/fiftyspawner/deuterium, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"Gq" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/power/sensor{ + name = "Powernet Sensor - Engine Output"; + name_tag = "Engine Output" + }, +/obj/structure/cable/yellow, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"GL" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"GQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"Hw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/machinery/door/airlock/vault{ + name = "REACTOR ROOM"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/engineering/engine, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"HR" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"Ie" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/item/radio/intercom{ + dir = 2; + pixel_y = -24 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"Jy" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"JD" = ( +/obj/machinery/door/firedoor{ + dir = 2 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"Ke" = ( +/obj/machinery/computer/fusion_core_control{ + id_tag = "engine" + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"Ki" = ( +/obj/structure/cable/cyan{ + icon_state = "1-2" + }, +/turf/simulated/floor/reinforced, +/area/engineering/engine_room) +"Kt" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/vault{ + name = "REACTOR ROOM"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/engineering/engine, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"Ll" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/fire_alarm/east_mount, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"Ln" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 8 + }, +/turf/simulated/floor/reinforced, +/area/engineering/engine_room) +"Lz" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4; + icon_state = "warning" + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"LQ" = ( +/obj/machinery/light{ + dir = 8; + light_range = 12 + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"Mh" = ( +/obj/structure/window/phoronreinforced/full{ + icon_state = "phoronwindow0" + }, +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 4 + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"MW" = ( +/obj/machinery/atmospherics/component/binary/pump, +/turf/simulated/floor, +/area/engineering/engine_room) +"Nc" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/vault{ + name = "REACTOR ROOM"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/engineering/engine, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"Nf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"NE" = ( +/obj/machinery/fusion_fuel_compressor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"NM" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/vault{ + name = "REACTOR ROOM"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/engineering/engine, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"NY" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"OF" = ( +/obj/machinery/air_alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"OJ" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"Pb" = ( +/obj/machinery/power/emitter/gyrotron/anchored{ + dir = 8; + id_tag = "engine-g" + }, +/obj/structure/cable/cyan{ + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"PT" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"PY" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"Qk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"Qo" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/camera/network/engine{ + dir = 8 + }, +/obj/machinery/door/firedoor{ + dir = 2 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"Qv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"Rm" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4; + icon_state = "warning" + }, +/obj/machinery/atmospherics/valve/digital{ + dir = 2; + name = "Emergency Cooling Valve 1" + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"Ru" = ( +/obj/structure/cable/cyan{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/component/unary/vent_pump/high_volume{ + dir = 1; + frequency = 1438; + id_tag = "cooling_out"; + pump_direction = 0; + on = 1 + }, +/turf/simulated/floor/reinforced, +/area/engineering/engine_room) +"RC" = ( +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"Sg" = ( +/obj/machinery/door/firedoor{ + dir = 2 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"Sw" = ( +/turf/simulated/floor, +/area/engineering/engine_room) +"SQ" = ( +/obj/machinery/computer/general_air_control/supermatter_core{ + dir = 1; + frequency = 1438; + input_tag = "cooling_in"; + name = "Engine Cooling Control"; + output_tag = "cooling_out"; + pressure_setting = 100; + sensors = list("engine_sensor"="Engine Core") + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"Tf" = ( +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/component/unary/outlet_injector{ + frequency = 1438; + id = "cooling_in"; + use_power = 1 + }, +/turf/simulated/floor/reinforced, +/area/engineering/engine_room) +"Th" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"TY" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"Ua" = ( +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/turf/simulated/floor/reinforced, +/area/engineering/engine_room) +"UA" = ( +/obj/machinery/atmospherics/component/binary/pump{ + dir = 1 + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"Vg" = ( +/obj/structure/cable/cyan{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 4 + }, +/obj/machinery/fusion_fuel_injector/mapped{ + dir = 8; + id_tag = "engine-i" + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"VD" = ( +/turf/template_noop, +/area/template_noop) +"XA" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"XG" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"Yd" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/green{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"Ye" = ( +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"Yy" = ( +/obj/structure/window/phoronreinforced/full{ + icon_state = "phoronwindow0" + }, +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"YK" = ( +/obj/machinery/atmospherics/component/binary/pump, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"Zi" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"ZF" = ( +/obj/structure/cable/cyan{ + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) + +(1,1,1) = {" +xM +xM +xM +xM +xM +os +os +os +os +kF +os +os +os +os +xM +xM +xM +xM +xM +"} +(2,1,1) = {" +xM +xM +xM +xM +xM +os +ck +ev +Ru +Ki +Ki +vV +aG +os +xM +xM +xM +xM +xM +"} +(3,1,1) = {" +xM +xM +xM +xM +xM +os +Ab +ss +Ua +Ab +Ab +op +mu +os +xM +xM +xM +xM +xM +"} +(4,1,1) = {" +os +aB +aB +aB +os +os +Ab +ss +bz +ij +Ab +op +RC +os +aB +aB +aB +os +os +"} +(5,1,1) = {" +os +aC +Sw +wb +LQ +op +Ab +ss +Ua +Ab +Ab +op +RC +JD +NE +Gf +yw +oV +aP +"} +(6,1,1) = {" +Nc +pp +Sw +wb +Sw +op +Ab +ss +Tf +Ln +CN +op +ZF +oE +kW +kW +fm +CC +Hw +"} +(7,1,1) = {" +aP +pp +dB +jt +dB +op +op +Mh +sq +Yy +op +op +GL +Qo +Ll +Nf +Qv +lu +os +"} +(8,1,1) = {" +os +lC +Sw +fN +dB +dB +Pb +Vg +kR +sH +mX +dB +xH +os +os +aP +Kt +cx +os +"} +(9,1,1) = {" +os +pp +Sw +fN +dB +dB +dB +hP +dB +aH +dB +dB +OF +os +VD +VD +VD +VD +VD +"} +(10,1,1) = {" +os +eD +dB +EG +tw +dG +dG +Zi +XG +aI +Gq +aw +Ie +os +VD +VD +VD +VD +VD +"} +(11,1,1) = {" +os +rM +NY +Lz +Rm +ad +ah +am +aq +aJ +at +ax +PT +os +VD +VD +VD +VD +VD +"} +(12,1,1) = {" +os +nq +gu +fn +ac +ab +aj +an +fn +ac +ab +ay +FL +os +VD +VD +VD +VD +VD +"} +(13,1,1) = {" +os +Yd +HR +aY +XA +ae +ak +ao +aY +Fy +au +az +mF +os +VD +VD +VD +VD +VD +"} +(14,1,1) = {" +os +oN +UA +qB +dB +af +al +ap +ar +ar +av +dB +xe +os +VD +VD +VD +VD +VD +"} +(15,1,1) = {" +os +rH +MW +qB +dB +dB +as +iE +iE +iE +OJ +iE +Th +os +VD +VD +VD +VD +VD +"} +(16,1,1) = {" +os +nf +dB +PY +wL +aa +aD +iE +SQ +tn +Ke +kJ +fd +os +VD +VD +VD +VD +VD +"} +(17,1,1) = {" +os +rl +Jy +PY +YK +aa +aE +kt +GQ +vj +kP +jU +kv +aP +iw +iw +VD +VD +VD +"} +(18,1,1) = {" +os +rX +TY +rl +rl +ai +aF +xg +kB +vm +Ye +te +Ye +NM +VD +VD +VD +VD +VD +"} +(19,1,1) = {" +os +Ye +Ye +Ye +Ye +Qk +At +Sg +ue +Ye +Ye +Ay +Ye +gr +VD +VD +VD +VD +VD +"} diff --git a/maps/victory/engines/sme.dmm b/maps/victory/engines/sme.dmm new file mode 100644 index 000000000000..adce34d916ae --- /dev/null +++ b/maps/victory/engines/sme.dmm @@ -0,0 +1,1827 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "EngineRadiatorViewport"; + name = "Engine Radiator Viewport Shutter"; + opacity = 0 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"ab" = ( +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "EngineRadiatorViewport"; + name = "Engine Radiator Viewport Shutter"; + opacity = 0 + }, +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"at" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"aT" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/visible/black, +/obj/machinery/door/firedoor{ + dir = 2 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"bb" = ( +/obj/structure/grille, +/obj/structure/window/phoronreinforced, +/obj/structure/window/phoronreinforced{ + dir = 1 + }, +/obj/structure/window/phoronreinforced{ + dir = 8 + }, +/obj/structure/window/phoronreinforced{ + dir = 4 + }, +/obj/machinery/door/blast/regular{ + dir = 4; + id = "SupermatterPort"; + name = "Reactor Blast Door" + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"bK" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/power/sensor{ + name = "Powernet Sensor - Engine Output"; + name_tag = "Engine Output" + }, +/obj/structure/cable/yellow, +/turf/simulated/floor, +/area/engineering/engine_room) +"cn" = ( +/obj/machinery/meter, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 10 + }, +/turf/simulated/floor/tiled/monotile, +/area/engineering/engine_room) +"cu" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"cx" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/obj/machinery/light, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"cI" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"dF" = ( +/obj/machinery/door/blast/regular{ + dir = 4; + id = "EngineVent"; + name = "Reactor Vent" + }, +/turf/simulated/floor/reinforced/nitrogen{ + initial_gas_mix = "n2=82.1472;TEMP=293.15" + }, +/area/engineering/engine_room) +"fp" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"gg" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor, +/area/engineering/engine_room) +"gC" = ( +/obj/machinery/atmospherics/component/trinary/filter, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"hh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"hC" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"hG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/camera/network/engine{ + dir = 8 + }, +/obj/machinery/door/firedoor{ + dir = 2 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"hJ" = ( +/obj/structure/sign/vacuum, +/turf/simulated/wall/r_wall, +/area/engineering/engine_room) +"hR" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/green{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"ix" = ( +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"iG" = ( +/obj/structure/grille, +/obj/structure/window/phoronreinforced, +/obj/structure/window/phoronreinforced{ + dir = 8 + }, +/obj/structure/window/phoronreinforced{ + dir = 1 + }, +/obj/machinery/door/blast/regular{ + dir = 2; + id = "SupermatterPort"; + name = "Reactor Blast Door" + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"iK" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 5 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"iU" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"jf" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"jg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"jA" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/red{ + dir = 4 + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"jJ" = ( +/obj/machinery/button/remote/driver{ + dir = 8; + id = "enginecore"; + name = "Emergency Core Eject"; + pixel_x = -21 + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"jZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/cyan{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"kr" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"kO" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/obj/machinery/fire_alarm/south_mount{ + pixel_y = -24 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"lb" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/visible/black, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"lk" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"lJ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/vault{ + name = "REACTOR ROOM"; + req_one_access = list(10) + }, +/obj/map_helper/access_helper/airlock/station/engineering/engine, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"lS" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/obj/item/radio/intercom{ + pixel_y = -24 + }, +/obj/structure/cable/cyan{ + icon_state = "1-8" + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"mh" = ( +/obj/machinery/atmospherics/component/binary/pump{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"ms" = ( +/obj/structure/closet/radiation, +/obj/item/clothing/glasses/meson, +/obj/item/clothing/glasses/meson, +/turf/template_noop, +/area/template_noop) +"mQ" = ( +/obj/machinery/camera/network/engine{ + dir = 1 + }, +/obj/machinery/atmospherics/component/binary/pump{ + dir = 8 + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"mU" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"nh" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"ns" = ( +/obj/effect/floor_decal/industrial/warning/cee{ + dir = 8 + }, +/obj/machinery/camera/network/engine{ + dir = 4 + }, +/turf/simulated/floor/reinforced/nitrogen{ + initial_gas_mix = "n2=82.1472;TEMP=293.15" + }, +/area/engineering/engine_room) +"nG" = ( +/obj/machinery/button/remote/blast_door{ + desc = "A remote control-switch for the engine charging port."; + id = "SupermatterPort"; + name = "Reactor Blast Doors"; + pixel_x = -25; + pixel_y = -5; + req_access = list(10) + }, +/obj/machinery/button/remote/blast_door{ + desc = "A remote control-switch for the engine control room blast doors."; + id = "EngineBlast"; + name = "Engine Monitoring Room Blast Doors"; + pixel_x = -25; + pixel_y = 5; + req_access = list(10) + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"nV" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 4 + }, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"oh" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/green{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor, +/area/engineering/engine_room) +"oR" = ( +/obj/machinery/power/supermatter{ + layer = 4 + }, +/obj/machinery/mass_driver{ + dir = 8; + id = "enginecore" + }, +/turf/simulated/floor/greengrid/nitrogen, +/area/engineering/engine_room) +"py" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"qb" = ( +/obj/structure/sign/warning/radioactive, +/turf/simulated/wall/r_wall, +/area/engineering/engine_room) +"qc" = ( +/obj/machinery/shield_diffuser, +/obj/machinery/atmospherics/component/unary/outlet_injector{ + dir = 4; + frequency = 1439; + id = "waste_out"; + name = "Waste Ejector"; + pixel_y = 1; + power_rating = 30000; + use_power = 1; + volume_rate = 700 + }, +/turf/simulated/floor/airless, +/area/engineering/engine_room) +"re" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"rE" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"rL" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"so" = ( +/obj/machinery/atmospherics/component/binary/pump, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"sY" = ( +/obj/machinery/fire_alarm/north_mount, +/obj/machinery/atmospherics/pipe/manifold/visible/green{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"td" = ( +/turf/template_noop, +/area/template_noop) +"tj" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/engine{ + dir = 1; + external_pressure_bound = 100; + external_pressure_bound_default = 0; + frequency = 1438; + icon_state = "map_vent_in"; + id_tag = "cooling_out"; + initialize_directions = 4; + pump_direction = 0; + on = 1 + }, +/obj/effect/floor_decal/industrial/warning/cee{ + dir = 8 + }, +/turf/simulated/floor/reinforced/nitrogen{ + initial_gas_mix = "n2=82.1472;TEMP=293.15" + }, +/area/engineering/engine_room) +"uo" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"uL" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/obj/structure/cable/cyan{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"uN" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"uR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"vb" = ( +/obj/machinery/atmospherics/component/binary/circulator{ + anchored = 1 + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"vd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"vi" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 9 + }, +/obj/machinery/light, +/turf/simulated/floor, +/area/engineering/engine_room) +"vz" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/red, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"vS" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/obj/machinery/camera/network/engine, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"vX" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/reinforced/nitrogen{ + initial_gas_mix = "n2=82.1472;TEMP=293.15" + }, +/area/engineering/engine_room) +"wa" = ( +/obj/machinery/atmospherics/component/binary/circulator{ + anchored = 1; + dir = 1 + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"ws" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"wF" = ( +/obj/structure/grille, +/obj/structure/window/phoronreinforced, +/obj/structure/window/phoronreinforced{ + dir = 4 + }, +/obj/structure/window/phoronreinforced{ + dir = 1 + }, +/obj/machinery/door/blast/regular{ + dir = 2; + id = "SupermatterPort"; + name = "Reactor Blast Door" + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"xG" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 5 + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"yh" = ( +/obj/machinery/button/remote/blast_door{ + id = "EngineVent"; + name = "Reactor Ventillatory Control"; + pixel_y = -25; + req_access = list(10) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/cee, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"za" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"zu" = ( +/obj/machinery/atmospherics/valve/digital{ + dir = 4; + name = "Emergency Cooling Valve 2" + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"zC" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"zU" = ( +/obj/structure/grille, +/obj/structure/window/phoronreinforced, +/obj/structure/window/phoronreinforced{ + dir = 1 + }, +/obj/structure/window/phoronreinforced{ + dir = 8 + }, +/obj/structure/window/phoronreinforced{ + dir = 4 + }, +/obj/machinery/door/blast/regular{ + dir = 4; + id = "SupermatterPort"; + name = "Reactor Blast Door" + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"zW" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"Aj" = ( +/obj/machinery/power/generator{ + anchored = 1; + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"Ak" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"AV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/camera/network/engine, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"Bp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"Ck" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"Cu" = ( +/obj/machinery/light, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"Dh" = ( +/obj/machinery/power/generator{ + anchored = 1; + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"Dm" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 10 + }, +/obj/item/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 26 + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"Dq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/computer/general_air_control/supermatter_core{ + dir = 1; + input_tag = "cooling_in"; + name = "Engine Cooling Control"; + output_tag = "cooling_out"; + sensors = list("engine_sensor"="Engine Core") + }, +/obj/machinery/fire_alarm/east_mount, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"Dv" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/red{ + dir = 4 + }, +/obj/machinery/meter, +/turf/simulated/floor, +/area/engineering/engine_room) +"DC" = ( +/obj/machinery/power/emitter{ + anchored = 1; + dir = 8; + id = "EngineEmitter"; + pixel_y = 8; + state = 2 + }, +/obj/structure/cable/cyan{ + icon_state = "0-4" + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 5 + }, +/turf/simulated/floor/tiled/monotile, +/area/engineering/engine_room) +"Eb" = ( +/obj/item/radio/intercom{ + pixel_y = -24 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"Eq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"Ev" = ( +/obj/machinery/power/apc/south_mount, +/obj/structure/cable/cyan{ + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 8 + }, +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"EU" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/reinforced/nitrogen{ + initial_gas_mix = "n2=82.1472;TEMP=293.15" + }, +/area/engineering/engine_room) +"Fa" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"Fb" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor, +/area/engineering/engine_room) +"Fv" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"FN" = ( +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"FO" = ( +/obj/machinery/door/airlock/hatch{ + icon_state = "door_locked"; + id_tag = "engine_access_hatch"; + locked = 1; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/engineering/engine, +/turf/simulated/floor/reinforced, +/area/engineering/engine_room) +"FV" = ( +/obj/structure/cable/cyan{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor{ + dir = 2 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"Gp" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"HA" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"HL" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central4{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/monotile, +/area/engineering/engine_room) +"HU" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"If" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor, +/area/engineering/engine_room) +"Is" = ( +/obj/machinery/button/remote/blast_door{ + desc = "A remote control-switch for the engine radiator viewport shutters."; + id = "EngineRadiatorViewport"; + name = "Engine Radiator Viewport Shutters"; + pixel_x = -25; + req_access = list(10) + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"IJ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"Jo" = ( +/turf/simulated/floor, +/area/engineering/engine_room) +"Jw" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"JR" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/cable/cyan{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"Lc" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"LJ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"MT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 8 + }, +/obj/machinery/door/airlock/vault{ + name = "REACTOR ROOM"; + req_one_access = list(10) + }, +/obj/map_helper/access_helper/airlock/station/engineering/engine, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"MW" = ( +/obj/structure/cable/cyan{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"Ne" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"Oj" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"Oz" = ( +/obj/structure/grille, +/obj/structure/window/phoronreinforced, +/obj/structure/window/phoronreinforced{ + dir = 1 + }, +/obj/machinery/door/blast/regular{ + dir = 2; + id = "SupermatterPort"; + name = "Reactor Blast Door" + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"OV" = ( +/turf/simulated/floor/greengrid/nitrogen, +/area/engineering/engine_room) +"Pw" = ( +/obj/structure/grille, +/obj/structure/window/phoronreinforced, +/obj/structure/window/phoronreinforced{ + dir = 8 + }, +/obj/structure/window/phoronreinforced{ + dir = 1 + }, +/obj/machinery/door/blast/regular{ + dir = 2; + id = "SupermatterPort"; + name = "Reactor Blast Door" + }, +/obj/machinery/atmospherics/pipe/simple/visible/red, +/turf/simulated/floor, +/area/engineering/engine_room) +"Qf" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"QV" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/obj/machinery/air_alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"Rg" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"Rm" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/vault{ + name = "REACTOR ROOM"; + req_one_access = list(10) + }, +/obj/map_helper/access_helper/airlock/station/engineering/engine, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"Ry" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"Rz" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 4 + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"Sj" = ( +/obj/machinery/atmospherics/component/binary/pump/high_power{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"Sn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"SE" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/obj/item/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 26 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"SI" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"SN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"SS" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 6 + }, +/obj/machinery/camera/network/engine{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"SW" = ( +/obj/machinery/atmospherics/component/unary/outlet_injector{ + dir = 4; + frequency = 1438; + id = "cooling_in"; + name = "Coolant Injector"; + pixel_y = 1; + power_rating = 30000; + use_power = 1; + volume_rate = 700 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/reinforced/nitrogen{ + initial_gas_mix = "n2=82.1472;TEMP=293.15" + }, +/area/engineering/engine_room) +"To" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/monotile, +/area/engineering/engine_room) +"TK" = ( +/obj/structure/cable/cyan{ + icon_state = "2-8" + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"TQ" = ( +/obj/machinery/air_sensor{ + frequency = 1438; + id_tag = "engine_sensor"; + output = 63 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/reinforced/nitrogen{ + initial_gas_mix = "n2=82.1472;TEMP=293.15" + }, +/area/engineering/engine_room) +"UR" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"Vc" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"Vh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"Vn" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/vault{ + name = "REACTOR ROOM"; + req_one_access = list(10) + }, +/obj/map_helper/access_helper/airlock/station/engineering/engine, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"VH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"VI" = ( +/obj/structure/cable/cyan{ + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"VK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/machinery/door/airlock/vault{ + name = "REACTOR ROOM"; + req_one_access = list(10) + }, +/obj/map_helper/access_helper/airlock/station/engineering/engine, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"VS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"WT" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"WY" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor, +/area/engineering/engine_room) +"WZ" = ( +/turf/simulated/wall/r_wall, +/area/engineering/engine_room) +"Xc" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"Xi" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 6 + }, +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"Xn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"XW" = ( +/obj/structure/cable/cyan{ + icon_state = "1-2" + }, +/obj/machinery/computer/general_air_control/large_tank_control{ + frequency = 1439; + name = "Reactor Waste Port"; + output_tag = "waste_out"; + sensors = null + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"Yg" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"Yi" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"Yj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/vault{ + name = "REACTOR ROOM"; + req_one_access = list(10) + }, +/obj/map_helper/access_helper/airlock/station/engineering/engine, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"Yr" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"YK" = ( +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/cable/cyan{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"Za" = ( +/turf/template_noop, +/area/space) + +(1,1,1) = {" +Za +Za +Za +Za +Za +WZ +WZ +WZ +hJ +dF +hJ +WZ +WZ +WZ +Za +Za +Za +Za +Za +"} +(2,1,1) = {" +Za +Za +Za +Za +Za +WZ +SS +Pw +tj +OV +ns +iG +FN +WZ +Za +Za +Za +Za +Za +"} +(3,1,1) = {" +Za +Za +Za +Za +Za +WZ +Jw +Oz +EU +oR +EU +Oz +Cu +WZ +Za +qc +Za +Za +Za +"} +(4,1,1) = {" +WZ +aa +aa +aa +WZ +WZ +IJ +wF +TQ +vX +SW +wF +FN +WZ +aa +ab +aa +WZ +WZ +"} +(5,1,1) = {" +WZ +zW +FN +uo +jJ +Is +nV +WZ +FO +bb +zU +WZ +VI +FV +XW +uL +JR +YK +qb +"} +(6,1,1) = {" +Vn +iU +FN +FN +Sj +FN +zC +nG +To +HL +cn +Vc +Xi +aT +lb +Lc +UR +Ck +VK +"} +(7,1,1) = {" +qb +vS +FN +FN +WT +FN +rE +Ry +cu +DC +FN +VS +Xn +hG +Dq +SN +Sn +Ev +WZ +"} +(8,1,1) = {" +WZ +SE +FN +FN +WT +FN +rE +FN +IJ +TK +MW +jZ +lS +WZ +WZ +qb +Rm +MT +WZ +"} +(9,1,1) = {" +WZ +sY +so +HA +WT +FN +rE +FN +IJ +FN +FN +VH +cx +WZ +td +td +td +td +td +"} +(10,1,1) = {" +WZ +hR +mh +HA +WT +FN +rE +FN +IJ +FN +FN +VH +QV +WZ +td +td +td +td +td +"} +(11,1,1) = {" +WZ +iU +FN +nh +Gp +py +iK +FN +IJ +FN +FN +VH +kO +WZ +td +td +td +td +td +"} +(12,1,1) = {" +WZ +oh +Ne +Xc +WY +Oj +Yg +Jo +IJ +mU +so +uR +Fa +WZ +td +td +td +td +td +"} +(13,1,1) = {" +WZ +If +wa +HU +If +wa +Yi +xG +IJ +mU +mh +uR +mQ +WZ +td +td +td +td +td +"} +(14,1,1) = {" +WZ +Fb +Aj +uN +jf +Dh +bK +zu +IJ +fp +za +re +yh +WZ +td +td +td +td +td +"} +(15,1,1) = {" +WZ +ws +vb +kr +gg +vb +kr +Rz +IJ +Ak +gC +hh +vi +WZ +td +td +td +td +td +"} +(16,1,1) = {" +WZ +Dm +LJ +vz +Dv +LJ +vz +jA +SI +hC +FN +Vh +Eb +WZ +td +td +td +td +td +"} +(17,1,1) = {" +WZ +rL +Fv +Yr +Qf +Qf +lk +Qf +Qf +cI +FN +vd +rL +qb +ms +ms +td +td +td +"} +(18,1,1) = {" +WZ +AV +Bp +jg +jg +jg +jg +jg +jg +jg +jg +Rg +Eq +lJ +td +td +td +td +td +"} +(19,1,1) = {" +WZ +at +ix +ix +ix +ix +ix +ix +ix +ix +ix +ix +at +Yj +td +td +td +td +td +"} diff --git a/maps/victory/levels/deck1.dmm b/maps/victory/levels/deck1.dmm new file mode 100644 index 000000000000..9764cdf3dd7b --- /dev/null +++ b/maps/victory/levels/deck1.dmm @@ -0,0 +1,51656 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 6 + }, +/obj/structure/closet/toolcloset, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/locker_room) +"ac" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_monitoring) +"ad" = ( +/turf/simulated/floor/carpet/blucarpet, +/area/crew_quarters/heads/chief) +"ae" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/engi_engine) +"af" = ( +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/electrical, +/obj/item/storage/toolbox/electrical, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/storage) +"ag" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -23 + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway) +"ah" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/obj/effect/floor_decal/techfloor/orange{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway) +"aj" = ( +/obj/landmark{ + name = "carpspawn" + }, +/turf/space, +/area/space) +"ak" = ( +/obj/effect/floor_decal/techfloor/orange, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_monitoring) +"am" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/machinery/door/airlock/glass/engineeringatmos{ + name = "Atmospherics"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/engineering/atmospherics, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"an" = ( +/obj/machinery/light/small/emergency{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/engineering) +"ap" = ( +/obj/machinery/shieldgen, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/storage) +"aq" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/catwalk, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/engineering/hallway/lower) +"ar" = ( +/obj/structure/catwalk, +/obj/effect/floor_decal/spline/fancy/wood/cee{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/engineering/hallway/lower) +"as" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central7, +/obj/effect/floor_decal/techfloor/orange/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/station/stairs_one) +"au" = ( +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 8 + }, +/obj/machinery/door/airlock/hatch{ + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/engineering/department, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_airlock) +"aw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -23 + }, +/obj/machinery/light{ + dir = 8; + light_range = 12 + }, +/turf/simulated/floor/tiled/techmaint, +/area/space) +"ax" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/engineering/break_room) +"ay" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor/orange, +/turf/simulated/floor/tiled, +/area/engineering/hallway/lower) +"aC" = ( +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black, +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/obj/effect/paint_stripe/sun, +/turf/simulated/floor/plating, +/area/tcommsat/computer) +"aD" = ( +/obj/machinery/power/grid_checker, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_smes) +"aF" = ( +/obj/structure/railing, +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/trash_pit) +"aG" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/engineering/atmos) +"aH" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/shunt) +"aI" = ( +/obj/landmark/spawnpoint/job/ai/secondary, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/bluegrid, +/area/ai) +"aJ" = ( +/obj/structure/table/steel, +/obj/machinery/cell_charger{ + pixel_y = 5 + }, +/obj/item/multitool, +/turf/simulated/floor, +/area/storage/tech) +"aL" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/drone_fabrication) +"aM" = ( +/obj/structure/table/reinforced, +/obj/item/rcd/advanced, +/obj/item/rcd_ammo/large, +/obj/item/rcd_ammo/large, +/obj/item/rcd_ammo/large, +/obj/item/rcd_ammo/large, +/obj/item/rcd_ammo/large, +/obj/item/rcd_ammo/large, +/obj/item/rcd_ammo/large, +/obj/item/rcd_ammo/large, +/obj/item/rcd_ammo/large, +/obj/item/rcd_ammo/large, +/obj/item/rcd_ammo/large, +/obj/item/rcd_ammo/large, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/chief) +"aO" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"aS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/power/apc/south_mount, +/obj/structure/cable/cyan{ + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 9 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_airlock) +"aT" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Trash Pit" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techmaint, +/area/maintenance/trash_pit) +"aU" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible/yellow, +/obj/machinery/meter, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"aX" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/engineering{ + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/engineering/department, +/turf/simulated/floor/tiled, +/area/engineering/hallway) +"aY" = ( +/obj/structure/table/steel, +/obj/item/integrated_electronics/debugger{ + pixel_x = -5 + }, +/obj/item/integrated_electronics/wirer{ + pixel_x = 5 + }, +/turf/simulated/floor, +/area/storage/tech) +"aZ" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging, +/turf/space, +/area/space) +"bb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/effect/floor_decal/techfloor/orange{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway/lower) +"bc" = ( +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "eng_sec_lockdown"; + name = "Security Checkpoint Blast Doors"; + opacity = 0 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/spawner/window/low_wall/borosillicate/reinforced/full/firelocks, +/obj/effect/paint_stripe/sun, +/turf/simulated/floor/plating, +/area/storage/tech) +"bd" = ( +/obj/machinery/space_heater, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/rust, +/obj/machinery/camera/network/engineering{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/engineering/atmos/storage) +"be" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/engineering/starboardnacelle) +"bh" = ( +/turf/simulated/floor/tiled/dark, +/area/tcommsat/computer) +"bi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/engineering) +"bj" = ( +/obj/structure/table/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/circuitboard/borgupload{ + pixel_x = -1; + pixel_y = 1 + }, +/obj/item/circuitboard/aiupload{ + pixel_x = 2; + pixel_y = -2 + }, +/obj/item/circuitboard/transhuman_resleever{ + pixel_x = 5; + pixel_y = -5 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/storage/tech) +"bm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 8 + }, +/obj/structure/catwalk, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/engi_engine) +"bn" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/vehicle_old/train/trolley, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/storage) +"bo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/effect/floor_decal/techfloor/orange, +/obj/machinery/camera/network/engineering{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway) +"br" = ( +/turf/simulated/wall/prepainted/engineering, +/area/engineering/locker_room) +"bs" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/locker_room) +"bv" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/turf/simulated/floor/plating, +/area/engineering/engine_eva) +"bw" = ( +/obj/structure/sink{ + pixel_y = 22 + }, +/obj/structure/mirror{ + dir = 4; + pixel_y = 33 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/engineering/foyer_mezzenine) +"by" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"bA" = ( +/turf/simulated/wall/prepainted/engineering, +/area/engineering/drone_fabrication) +"bB" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/engineering/atmos) +"bC" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/component/binary/pump{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/engineering/atmos) +"bD" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/engineering) +"bE" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/empty, +/obj/machinery/door/window/westleft, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/engineering/atmos) +"bF" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/simulated/floor/plating, +/area/maintenance/engi_engine) +"bH" = ( +/turf/simulated/wall/r_wall/prepainted/command, +/area/ai_upload) +"bI" = ( +/obj/structure/table/reinforced, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/briefcase/inflatable, +/obj/item/storage/briefcase/inflatable, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/storage) +"bK" = ( +/obj/structure/cable/cyan{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/bluegrid, +/area/ai) +"bL" = ( +/obj/machinery/vending/nifsoft_shop{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/engineering/hallway/lower) +"bM" = ( +/obj/structure/closet/secure_closet/engineering_chief, +/obj/item/clothing/accessory/poncho/roles/cloak/ce, +/obj/machinery/requests_console/preset/ce{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/chief) +"bQ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black, +/obj/spawner/window/low_wall/borosillicate/reinforced/full/firelocks, +/turf/simulated/floor/plating, +/area/engineering/atmos) +"bT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/aux, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"cb" = ( +/obj/machinery/atmospherics/component/binary/pump, +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"cd" = ( +/obj/structure/lattice, +/turf/space/basic, +/area/space) +"ce" = ( +/obj/machinery/door/airlock/glass/engineeringatmos{ + name = "Atmospherics"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/engineering/atmospherics, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/techmaint, +/area/space) +"ci" = ( +/obj/machinery/portable_atmospherics/canister/phoron, +/turf/simulated/floor/plating, +/area/maintenance/engi_engine) +"cj" = ( +/obj/structure/catwalk, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/map_helper/access_helper/airlock/station/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/engineering) +"ck" = ( +/obj/structure/table/steel, +/obj/item/storage/bag/circuits/basic, +/turf/simulated/floor, +/area/storage/tech) +"cl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/plating, +/area/station/stairs_one) +"cm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/effect/floor_decal/corner_techfloor_grid{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/storage) +"cn" = ( +/obj/machinery/power/apc/south_mount, +/obj/effect/floor_decal/techfloor/orange{ + dir = 10 + }, +/obj/structure/cable/green, +/obj/machinery/lathe/autolathe, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/storage) +"cp" = ( +/obj/structure/table/reinforced, +/obj/item/tool/crowbar, +/obj/item/tool/screwdriver, +/obj/item/tool/wrench, +/turf/simulated/floor/tiled/steel_ridged, +/area/engineering/atmos/storage) +"cq" = ( +/turf/simulated/floor, +/area/storage/tech) +"cr" = ( +/obj/machinery/light{ + dir = 8; + light_range = 12 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_airlock) +"cs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/item/stack/material/plastic{ + amount = 50 + }, +/obj/item/stack/material/plastic{ + amount = 50 + }, +/obj/item/stack/material/plasteel{ + amount = 10 + }, +/obj/item/stack/material/plasteel{ + amount = 10 + }, +/obj/item/stack/material/plasteel{ + amount = 10 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/storage) +"ct" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 5 + }, +/obj/structure/lattice, +/obj/map_helper/engine_loader, +/turf/space, +/area/space) +"cu" = ( +/turf/simulated/wall/r_wall/prepainted/engineering, +/area/engineering/shunt) +"cA" = ( +/obj/machinery/computer/power_monitor, +/turf/simulated/floor/tiled, +/area/engineering/engine_monitoring) +"cC" = ( +/obj/machinery/computer/telecomms/monitor, +/turf/simulated/floor/tiled/techmaint, +/area/tcommsat/computer) +"cD" = ( +/turf/simulated/wall/r_wall/prepainted/engineering, +/area/engineering/engine_room) +"cE" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor/orange{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway/lower) +"cO" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/techfloor/orange, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway/lower) +"cS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/break_room) +"cT" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"cV" = ( +/obj/structure/table/standard, +/obj/item/multitool, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/tcommsat/computer) +"cW" = ( +/obj/structure/catwalk, +/obj/effect/floor_decal/spline/fancy/wood, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/engineering/hallway/lower) +"cZ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/blue, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"dc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/engineering) +"de" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/lattice, +/obj/structure/railing{ + dir = 8 + }, +/turf/space, +/area/space) +"dh" = ( +/obj/machinery/holopad, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/locker_room) +"di" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/tcommsat/powercontrol) +"dj" = ( +/obj/map_helper/airlock/door/int_door, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/obj/machinery/door/airlock/glass_external{ + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/external_airlock, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/atmos/storage) +"dn" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/visible/universal, +/turf/simulated/floor/plating, +/area/engineering/atmos) +"dq" = ( +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/tcommsat/computer) +"ds" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"dt" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/engi_engine) +"du" = ( +/obj/structure/cable/green, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 2; + icon_state = "pdoor0"; + id = "engsec_ld_c"; + name = "CE Office Blast Doors"; + opacity = 0 + }, +/obj/effect/paint_stripe/sun, +/turf/simulated/floor/plating, +/area/crew_quarters/heads/chief) +"dv" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/visible/universal{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/engineering/atmos) +"dw" = ( +/turf/simulated/wall/r_wall/prepainted/engineering/atmos, +/area/engineering/atmos/storage) +"dy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/table/woodentable, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/engineering/break_room) +"dz" = ( +/obj/machinery/door/airlock/glass/engineeringatmos{ + name = "Atmospherics"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/engineering/atmospherics, +/obj/machinery/door/firedoor/glass{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/blue{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"dB" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/space) +"dD" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/engineering/atmos) +"dE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/machinery/door/airlock/glass/engineering{ + name = "Engineering Equipment"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/engineering/equipment, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/storage) +"dG" = ( +/obj/machinery/power/smes/buildable{ + charge = 5000; + input_attempt = 1; + input_level = 200; + output_level = 200 + }, +/obj/structure/cable/cyan{ + icon_state = "0-4" + }, +/turf/simulated/floor/bluegrid, +/area/ai) +"dN" = ( +/turf/simulated/wall/prepainted/engineering, +/area/engineering/storage) +"dP" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/atmospherics/component/binary/passive_gate/on{ + pressure_resistance = 80; + regulate_mode = 1; + target_pressure = 80 + }, +/turf/simulated/floor/plating, +/area/maintenance/trash_pit) +"dQ" = ( +/turf/simulated/floor/wood, +/area/maintenance/dormitory) +"dR" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/glass/engineering{ + name = "Telecomms Control Room"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/engineering/department, +/turf/simulated/floor/tiled{ + icon_state = "techmaint" + }, +/area/engineering/drone_fabrication) +"dT" = ( +/obj/structure/catwalk, +/obj/effect/floor_decal/spline/fancy/wood, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/engineering/hallway/lower) +"dU" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/sign/vacuum{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"dW" = ( +/obj/machinery/computer/general_air_control/large_tank_control{ + dir = 1; + name = "Phoron Supply Control"; + output_tag = "engtox_out"; + sensors = list("tox_sensor"="Tank") + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"dX" = ( +/obj/landmark/spawnpoint/job/ai, +/obj/machinery/requests_console{ + department = "AI"; + departmentType = 5; + pixel_x = 30; + pixel_y = 32 + }, +/obj/machinery/newscaster/security_unit{ + pixel_x = -32; + pixel_y = 32 + }, +/obj/item/radio/intercom/locked/ai_private{ + dir = 4; + pixel_x = 32 + }, +/obj/item/radio/intercom{ + broadcasting = 1; + dir = 8; + name = "Common Channel"; + pixel_x = -21 + }, +/obj/item/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 21 + }, +/obj/machinery/camera/network/command, +/turf/simulated/floor/bluegrid, +/area/ai) +"ea" = ( +/obj/machinery/turretid/stun{ + check_synth = 1; + name = "AI Chamber turret control"; + pixel_y = -32 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ai_upload) +"eb" = ( +/turf/simulated/wall/r_wall, +/area/space) +"ec" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"ee" = ( +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/bluegrid, +/area/ai) +"eg" = ( +/obj/machinery/message_server, +/turf/simulated/floor/tiled/techfloor, +/area/ai_server_room) +"eh" = ( +/obj/structure/dispenser{ + phorontanks = 0 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"el" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/engineering/portnacelle) +"em" = ( +/obj/machinery/button/remote/driver{ + dir = 4; + id = "enginecore"; + name = "Emergency Core Eject"; + pixel_x = 22 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/chief) +"eo" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/engineering{ + name = "Shield Room"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/engineering/department, +/turf/simulated/floor/tiled, +/area/engineering/break_room) +"es" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"et" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/techfloor/orange{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway) +"eu" = ( +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"ev" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 6 + }, +/turf/space, +/area/space) +"ex" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 8 + }, +/obj/machinery/fire_alarm/south_mount{ + pixel_y = -24 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_airlock) +"ey" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 9 + }, +/turf/simulated/wall/prepainted/engineering/atmos, +/area/engineering/atmos/storage) +"eA" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/station/stairs_one) +"eD" = ( +/obj/spawner/window/low_wall/borosillicate/reinforced/full/firelocks, +/turf/simulated/floor/plating, +/area/engineering/atmos) +"eI" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/techfloor/orange{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway/lower) +"eL" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/drone_fabrication) +"eP" = ( +/obj/effect/floor_decal/corner/lightorange/bordercee{ + dir = 4 + }, +/obj/machinery/atmospherics/component/binary/pump{ + dir = 4; + name = "Fuel Line to Thrusters" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"eQ" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/high_volume{ + dir = 8 + }, +/obj/map_helper/airlock/sensor/chamber_sensor, +/obj/map_helper/airlock/atmos/chamber_pump, +/obj/machinery/airlock_sensor{ + dir = 8; + id_tag = "deck1_airlock2"; + pixel_x = 22 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/atmos/storage) +"eR" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 8 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/engineering/hallway/lower) +"eS" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"eU" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/engineering/foyer_mezzenine) +"eW" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/catwalk, +/obj/effect/floor_decal/spline/fancy/wood, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/engineering/hallway/lower) +"eX" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/techmaint, +/area/space) +"eY" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 10 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"fa" = ( +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/machinery/door/airlock/maintenance/engi{ + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/maintenance, +/turf/simulated/floor/tiled/techmaint, +/area/maintenance/engineering) +"fb" = ( +/turf/simulated/floor/plating, +/area/engineering/engine_airlock) +"fc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/engineering/hallway/lower) +"fe" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/porta_turret/ai_defense, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai) +"fg" = ( +/obj/structure/reagent_dispensers/water_cooler/full, +/turf/simulated/floor/carpet/blucarpet, +/area/engineering/break_room) +"fi" = ( +/obj/machinery/air_alarm{ + frequency = 1441; + pixel_y = 22 + }, +/obj/machinery/camera/network/engineering, +/obj/effect/floor_decal/techfloor/orange{ + dir = 5 + }, +/obj/structure/table/rack{ + dir = 8; + layer = 2.6 + }, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/glass, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/storage) +"fj" = ( +/obj/structure/railing, +/turf/simulated/floor/plating, +/area/maintenance/engi_engine) +"fk" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/drone_fabrication) +"fm" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor/orange, +/turf/simulated/floor/tiled, +/area/station/stairs_one) +"fn" = ( +/obj/machinery/atmospherics/pipe/simple/visible/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"fr" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/tcommsat/powercontrol) +"ft" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/window/phoronreinforced{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/tank/phoron{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/space) +"fv" = ( +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 5 + }, +/obj/item/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 26 + }, +/obj/machinery/vending/wallmed_airlock{ + name = "Toxi Treatment NanoMed"; + pixel_x = 32 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_airlock) +"fA" = ( +/obj/structure/cable/cyan{ + icon_state = "2-8" + }, +/obj/machinery/power/sensor{ + name = "Powernet Sensor - Engine Output"; + name_tag = "Engine Circuit" + }, +/obj/structure/cable/cyan{ + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_smes) +"fE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_airlock) +"fF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black, +/turf/simulated/floor/bluegrid{ + initial_gas_mix = "n2=100;TEMP=80"; + name = "Mainframe Base" + }, +/area/tcommsat/chamber) +"fG" = ( +/turf/simulated/wall/r_wall/prepainted/engineering, +/area/tcommsat/chamber) +"fH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 8 + }, +/obj/machinery/door/airlock/hatch{ + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/engineering/department, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_smes) +"fI" = ( +/obj/machinery/status_display{ + pixel_y = 30 + }, +/obj/machinery/door/airlock/glass/engineering, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway) +"fJ" = ( +/turf/simulated/floor/plating, +/area/engineering/starboardnacelle) +"fK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/techfloor/orange{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/station/stairs_one) +"fL" = ( +/obj/structure/railing, +/obj/structure/lattice, +/turf/space, +/area/space) +"fN" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/workshop) +"fO" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"fP" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/fire_alarm/west_mount{ + pixel_x = -24 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"fQ" = ( +/turf/simulated/wall/r_wall/prepainted/engineering, +/area/engineering/hallway) +"fR" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/effect/floor_decal/techfloor/orange{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway) +"fS" = ( +/obj/machinery/power/apc/south_mount{ + cell_type = /obj/item/cell/super + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"fV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/catwalk, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/engineering) +"fW" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"fY" = ( +/obj/machinery/telecomms/hub/preset/victory, +/turf/simulated/floor/tiled/dark{ + initial_gas_mix = "n2=100;TEMP=80" + }, +/area/tcommsat/chamber) +"ga" = ( +/obj/structure/lattice, +/obj/structure/grille, +/obj/structure/railing, +/turf/space, +/area/space) +"gf" = ( +/obj/machinery/atmospherics/component/unary/vent_pump{ + dir = 4; + external_pressure_bound = 140; + external_pressure_bound_default = 140; + icon_state = "map_vent_out"; + pressure_checks = 0; + pressure_checks_default = 0; + on = 1 + }, +/turf/simulated/floor/bluegrid{ + initial_gas_mix = "n2=100;TEMP=80"; + name = "Mainframe Base" + }, +/area/tcommsat/chamber) +"gh" = ( +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -23 + }, +/obj/machinery/light{ + dir = 8; + light_range = 12 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"gi" = ( +/obj/machinery/door/blast/regular{ + density = 0; + dir = 2; + icon_state = "pdoor0"; + id = "engsec_ld_c"; + name = "CE Office Blast Doors"; + opacity = 0 + }, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/obj/effect/paint_stripe/sun, +/turf/simulated/floor/plating, +/area/crew_quarters/heads/chief) +"gj" = ( +/obj/structure/lattice, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/space, +/area/space) +"gk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor/orange{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway/lower) +"gn" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/item/book/manual/fission_engine, +/obj/item/book/manual/rust_engine, +/obj/item/book/manual/supermatter_engine, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_monitoring) +"go" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 1 + }, +/obj/machinery/camera/network/engineering, +/turf/simulated/floor/tiled, +/area/engineering/hallway/lower) +"gp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/effect/floor_decal/techfloor/orange{ + dir = 8 + }, +/obj/machinery/camera/network/engineering{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway) +"gq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/airlock/glass/engineeringatmos{ + name = "Atmospherics"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/engineering/atmospherics, +/obj/machinery/door/firedoor/glass{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"gr" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/effect/floor_decal/spline/fancy/wood, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/engineering/hallway/lower) +"gt" = ( +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/machinery/power/smes/buildable/tcomms, +/turf/simulated/floor/plating, +/area/tcommsat/powercontrol) +"gv" = ( +/obj/structure/table/rack{ + dir = 8; + layer = 2.6 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/tank/jetpack/carbondioxide, +/obj/machinery/door/window/southright{ + name = "Jetpack Storage"; + req_one_access = list(11,24) + }, +/obj/item/tank/jetpack/carbondioxide, +/obj/item/tank/jetpack/carbondioxide, +/obj/effect/floor_decal/techfloor/orange{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/storage) +"gx" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"gy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/effect/floor_decal/spline/fancy/wood, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/engineering/hallway/lower) +"gE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/structure/table/reinforced, +/obj/item/stack/material/glass/phoronrglass{ + amount = 40 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/storage) +"gJ" = ( +/obj/structure/ladder/up, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/maintenance/engi_engine) +"gL" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 4 + }, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway) +"gM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_monitoring) +"gN" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"gO" = ( +/obj/effect/floor_decal/techfloor{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ai_upload_foyer) +"gP" = ( +/obj/machinery/atmospherics/component/unary/vent_pump{ + external_pressure_bound = 0; + external_pressure_bound_default = 0; + frequency = 1441; + icon_state = "map_vent_in"; + id_tag = "co2_out"; + initialize_directions = 1; + internal_pressure_bound = 4000; + internal_pressure_bound_default = 4000; + pressure_checks = 2; + pressure_checks_default = 2; + pump_direction = 0; + on = 1 + }, +/turf/simulated/floor/reinforced/carbon_dioxide, +/area/space) +"gQ" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 8 + }, +/obj/machinery/fire_alarm/west_mount{ + pixel_x = -24 + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway) +"gV" = ( +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/maintenance/engineering) +"gW" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway/lower) +"ha" = ( +/obj/machinery/fire_alarm/north_mount, +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/red, +/turf/simulated/floor/tiled/techmaint, +/area/space) +"hb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"hd" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"he" = ( +/turf/space/basic, +/area/space) +"hf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/floor_decal/corner_techfloor_grid{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/storage) +"hh" = ( +/obj/machinery/atmospherics/component/unary/freezer{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch{ + color = "#00B8B2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/space) +"hi" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -23 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/storage) +"hj" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/item/stool/padded, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"hl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/chief) +"hn" = ( +/obj/spawner/window/low_wall/borosillicate/reinforced/full/firelocks, +/obj/machinery/atmospherics/pipe/manifold/visible/blue{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/engineering/atmos) +"hp" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/bluegrid, +/area/ai_upload) +"hr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/effect/floor_decal/spline/fancy/wood, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/engineering/hallway/lower) +"hw" = ( +/obj/structure/table/standard, +/obj/item/paper/monitorkey, +/turf/simulated/floor/tiled/techfloor, +/area/ai_server_room) +"hx" = ( +/turf/simulated/floor/tiled/techmaint, +/area/engineering/storage) +"hz" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"hA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/machinery/door/airlock/engineering{ + name = "Tech Storage"; + req_one_access = list() + }, +/obj/map_helper/access_helper/airlock/station/technical_storage, +/turf/simulated/floor/tiled/dark, +/area/storage/tech) +"hB" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/power/apc/south_mount, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/maintenance/trash_pit) +"hC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai) +"hD" = ( +/obj/random/trash_pile, +/obj/structure/railing, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/engi_engine) +"hG" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor/orange{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway/lower) +"hI" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/techfloor/orange{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/engineering/hallway) +"hK" = ( +/obj/random/trash_pile, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/light/small/emergency{ + dir = 4 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/engineering) +"hL" = ( +/obj/effect/shuttle_landmark/victory/deck1/port, +/turf/space, +/area/space) +"hM" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai) +"hP" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 10 + }, +/obj/machinery/shower{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/window/northleft{ + name = "Shower"; + req_access = list() + }, +/obj/structure/curtain/open/shower/engineering, +/turf/simulated/floor/tiled, +/area/engineering/foyer_mezzenine) +"hQ" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 4 + }, +/turf/simulated/wall/r_wall/prepainted/engineering/atmos, +/area/engineering/atmos) +"hR" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/engineering/starboardnacelle) +"hS" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/station/stairs_one) +"hT" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/engineering) +"hV" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/workshop) +"hW" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/fire_alarm/south_mount{ + pixel_y = -24 + }, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/maintenance/trash_pit) +"hX" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/tcommsat/computer) +"hY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/carpet/blucarpet, +/area/crew_quarters/heads/chief) +"hZ" = ( +/obj/machinery/computer/general_air_control/large_tank_control{ + dir = 4; + input_tag = "tox_in"; + name = "Phoron Supply Control"; + output_tag = "tox_out"; + sensors = list("tox_sensor"="Tank") + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"ib" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"id" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/black, +/obj/machinery/light, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"if" = ( +/obj/structure/sign/warning/fire, +/turf/simulated/wall/r_wall/prepainted, +/area/engineering/portnacelle) +"ig" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_airlock) +"ih" = ( +/obj/machinery/vending/snack, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/carpet/blucarpet, +/area/engineering/break_room) +"ii" = ( +/obj/machinery/atmospherics/component/binary/passive_gate{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"ij" = ( +/turf/simulated/wall/prepainted/engineering, +/area/engineering/engine_eva) +"in" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/engineering) +"ir" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/techfloor/orange{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway) +"it" = ( +/obj/effect/floor_decal/corner_techfloor_grid{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/storage) +"iu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/closet/firecloset, +/turf/simulated/floor/tiled/steel_dirty, +/area/engineering/atmos/storage) +"iv" = ( +/turf/simulated/wall/r_wall/prepainted/engineering/atmos, +/area/engineering/atmos/monitoring) +"iw" = ( +/obj/item/flashlight{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/item/flashlight{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/item/flash, +/obj/item/flash, +/obj/structure/table/steel, +/obj/machinery/air_alarm{ + dir = 1; + pixel_y = -25 + }, +/turf/simulated/floor/plating, +/area/storage/tech) +"iy" = ( +/obj/structure/railing, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/turf/simulated/floor/plating, +/area/maintenance/trash_pit) +"iz" = ( +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/obj/structure/curtain/black, +/turf/simulated/floor/plating, +/area/maintenance/dormitory) +"iB" = ( +/obj/structure/undies_wardrobe, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/engineering/foyer_mezzenine) +"iC" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"iE" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/techfloor/orange{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway/lower) +"iF" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 5 + }, +/turf/simulated/floor/reinforced/airless, +/area/space) +"iG" = ( +/obj/machinery/power/thermoregulator, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/engineering/atmos/storage) +"iH" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/engineering) +"iI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/obj/machinery/status_display{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled/techmaint, +/area/tcommsat/computer) +"iJ" = ( +/obj/machinery/camera/network/command{ + dir = 9 + }, +/obj/structure/closet/hydrant{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ai_upload) +"iK" = ( +/obj/structure/cable/cyan{ + icon_state = "0-8" + }, +/obj/machinery/power/sensor{ + name = "Powernet Sensor - AI Subgrid"; + name_tag = "AI Subgrid" + }, +/obj/structure/cable/cyan{ + icon_state = "0-4" + }, +/turf/simulated/floor/bluegrid, +/area/ai) +"iL" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/trash_pit) +"iO" = ( +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -23 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/chief) +"iP" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 9 + }, +/obj/machinery/status_display{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway/lower) +"iR" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 10 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/engineering/hallway/lower) +"iS" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/engineering) +"iT" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/tcommsat/computer) +"iW" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 6 + }, +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"iY" = ( +/turf/simulated/wall/r_wall, +/area/engineering/engine_room) +"ja" = ( +/obj/structure/table/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/storage/toolbox/electrical{ + pixel_x = 1; + pixel_y = -1 + }, +/obj/item/clothing/gloves/yellow, +/obj/item/t_scanner, +/obj/item/clothing/glasses/meson, +/obj/item/multitool, +/obj/machinery/ai_status_display{ + pixel_y = -32 + }, +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/storage/tech) +"jd" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/engineering/atmos) +"je" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway) +"jf" = ( +/obj/machinery/power/apc/south_mount, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_eva) +"jg" = ( +/turf/simulated/floor/carpet/blucarpet, +/area/engineering/break_room) +"jh" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/effect/floor_decal/techfloor/orange{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/engineering/hallway) +"jj" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"jk" = ( +/obj/machinery/holopad, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"jl" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"jm" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 1 + }, +/obj/machinery/status_display{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway) +"jn" = ( +/obj/machinery/shield_diffuser, +/obj/machinery/atmospherics/pipe/manifold/visible/fuel{ + dir = 4 + }, +/turf/simulated/wall/r_wall/prepainted/engineering, +/area/space) +"jo" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/black, +/turf/simulated/floor/tiled/techmaint, +/area/tcommsat/computer) +"jr" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/maintenance/engi_engine) +"js" = ( +/turf/simulated/wall/r_wall/prepainted/engineering, +/area/tcommsat/computer) +"jt" = ( +/obj/structure/catwalk, +/obj/structure/handrail{ + dir = 1 + }, +/turf/simulated/floor/airless/ceiling, +/area/space) +"ju" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/bluegrid, +/area/ai_upload) +"jv" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"jw" = ( +/obj/machinery/porta_turret/ai_defense, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai) +"jx" = ( +/obj/structure/cable/cyan{ + icon_state = "0-2" + }, +/obj/machinery/power/apc/east_mount, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/bluegrid, +/area/ai) +"jy" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/engi_engine) +"jz" = ( +/obj/machinery/drone_fabricator{ + fabricator_tag = "Atmos" + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/drone_fabrication) +"jA" = ( +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_airlock) +"jC" = ( +/obj/item/storage/briefcase/inflatable, +/obj/item/storage/briefcase/inflatable, +/obj/structure/table/reinforced, +/obj/item/storage/briefcase/inflatable, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/engineering/atmos/storage) +"jD" = ( +/obj/machinery/telecomms/bus/preset_four, +/turf/simulated/floor/tiled/dark{ + initial_gas_mix = "n2=100;TEMP=80" + }, +/area/tcommsat/chamber) +"jF" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/storage) +"jH" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/engineering/atmos) +"jJ" = ( +/obj/structure/table/reinforced, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/photocopier/faxmachine{ + department = "CMO's Office" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/chief) +"jL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/machinery/door/airlock/glass/engineering{ + name = "Engineering Hallway"; + req_one_access = null + }, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway/lower) +"jN" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/engineering/foyer_mezzenine) +"jP" = ( +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/obj/machinery/atmospherics/component/unary/freezer{ + dir = 8; + icon_state = "freezer_1"; + set_temperature = 73; + use_power = 1; + power_setting_legacy = 25 + }, +/turf/simulated/floor/tiled/techmaint, +/area/tcommsat/computer) +"jR" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/obj/item/stamp/ce, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/chief) +"jU" = ( +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "starboardnacelle_blastdoor"; + opacity = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/grille, +/obj/structure/window/phoronreinforced/full{ + icon_state = "phoronwindow0" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"jW" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/engineering) +"jX" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor/orange{ + dir = 1 + }, +/obj/machinery/status_display{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway/lower) +"jY" = ( +/obj/structure/closet/firecloset, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/tcommsat/powercontrol) +"ka" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/wood, +/area/engineering/hallway/lower) +"kb" = ( +/obj/structure/sink{ + pixel_y = 22 + }, +/obj/structure/mirror{ + dir = 4; + pixel_y = 33 + }, +/turf/simulated/floor/tiled/white, +/area/engineering/foyer_mezzenine) +"kc" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/catwalk, +/obj/effect/floor_decal/spline/fancy/wood, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/engineering/hallway/lower) +"ke" = ( +/obj/machinery/camera/network/command{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai) +"kf" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/techfloor/orange{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway/lower) +"kg" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"kh" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 4 + }, +/turf/simulated/floor/reinforced/airless, +/area/space) +"kk" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway/lower) +"km" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor/orange{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/station/stairs_one) +"kn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/catwalk, +/obj/effect/floor_decal/spline/fancy/wood/cee{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/engineering/hallway/lower) +"ko" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai) +"kp" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"ks" = ( +/obj/machinery/power/apc/west_mount{ + cell_type = /obj/item/cell/super + }, +/obj/structure/cable, +/turf/simulated/floor/plating, +/area/maintenance/engineering) +"ku" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/dark{ + initial_gas_mix = "n2=100;TEMP=80" + }, +/area/tcommsat/chamber) +"kv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/blue{ + dir = 6 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"kw" = ( +/turf/simulated/wall/r_wall/prepainted/engineering, +/area/space) +"ky" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 4 + }, +/obj/structure/closet/hydrant{ + pixel_x = 32 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_monitoring) +"kz" = ( +/obj/machinery/computer/station_alert/all, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/chief) +"kD" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/break_room) +"kE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_smes) +"kG" = ( +/obj/machinery/camera/network/engineering{ + dir = 4 + }, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/button/remote/blast_door{ + id = "eng_sec_lockdown"; + dir = 4; + pixel_x = -26 + }, +/turf/simulated/floor/tiled/dark, +/area/storage/tech) +"kH" = ( +/obj/structure/table/steel, +/obj/item/cell/high{ + maxcharge = 15000 + }, +/obj/item/stack/cable_coil, +/obj/machinery/camera/network/engineering{ + dir = 8 + }, +/turf/simulated/floor, +/area/storage/tech) +"kI" = ( +/obj/structure/closet/hydrant{ + pixel_y = 32 + }, +/turf/simulated/floor/plating, +/area/maintenance/engi_engine) +"kM" = ( +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai) +"kO" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/storage) +"kQ" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/tcommsat/computer) +"kR" = ( +/obj/structure/lattice, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/space, +/area/space) +"kS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/workshop) +"kT" = ( +/obj/structure/table/bench/padded, +/obj/landmark/spawnpoint/job/station_engineer, +/obj/effect/floor_decal/techfloor/orange{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/locker_room) +"kU" = ( +/obj/machinery/atmospherics/component/unary/outlet_injector{ + frequency = 1441; + id = "o2_in"; + power_rating = 5000; + use_power = 1 + }, +/turf/simulated/floor/reinforced/oxygen, +/area/space) +"kV" = ( +/obj/machinery/door/firedoor/glass{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"kY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/storage/tech) +"lc" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/engineering) +"ld" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/engi_engine) +"le" = ( +/obj/effect/floor_decal/techfloor/orange, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/engineering/hallway/lower) +"lh" = ( +/obj/structure/closet/firecloset, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/workshop) +"li" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/storage/tech) +"lj" = ( +/turf/simulated/floor/reinforced/n20, +/area/space) +"lk" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/power/shield_generator, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/workshop) +"ll" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled/techfloor, +/area/ai_server_room) +"lq" = ( +/obj/machinery/drone_fabricator{ + fabricator_tag = "Atmos" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/drone_fabrication) +"lr" = ( +/obj/item/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 26 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/power/emitter{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/storage) +"ls" = ( +/obj/machinery/atmospherics/component/unary/vent_pump{ + external_pressure_bound = 0; + external_pressure_bound_default = 0; + frequency = 1443; + icon_state = "map_vent_in"; + id_tag = "air_out"; + initialize_directions = 1; + internal_pressure_bound = 4000; + internal_pressure_bound_default = 4000; + pressure_checks = 2; + pressure_checks_default = 2; + pump_direction = 0; + on = 1 + }, +/turf/simulated/floor/reinforced/airmix, +/area/space) +"lt" = ( +/obj/structure/sign/department/ass, +/turf/simulated/wall/prepainted/engineering, +/area/engineering/storage) +"lw" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 5 + }, +/obj/machinery/fire_alarm/east_mount{ + dir = 4; + pixel_x = -21 + }, +/obj/machinery/light{ + dir = 8; + light_range = 12 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"lz" = ( +/obj/structure/closet/crate, +/obj/item/stock_parts/subspace/amplifier, +/obj/item/stock_parts/subspace/analyzer, +/obj/item/stock_parts/subspace/ansible, +/obj/item/stock_parts/subspace/crystal, +/obj/item/stock_parts/subspace/sub_filter, +/obj/item/stock_parts/subspace/transmitter, +/obj/item/stock_parts/subspace/treatment, +/turf/simulated/floor/tiled/dark, +/area/tcommsat/computer) +"lB" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/visible/red, +/turf/simulated/floor/plating, +/area/engineering/atmos) +"lC" = ( +/obj/machinery/camera/network/command{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ai_server_room) +"lI" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ai_upload) +"lK" = ( +/obj/structure/stairs/spawner/west, +/obj/structure/railing, +/turf/simulated/floor/plating, +/area/maintenance/dormitory) +"lL" = ( +/obj/machinery/light, +/obj/effect/floor_decal/techfloor/orange, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/locker_room) +"lM" = ( +/obj/machinery/ai_slipper, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai) +"lN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/cable/green, +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/obj/effect/paint_stripe/sun, +/turf/simulated/floor/plating, +/area/tcommsat/computer) +"lO" = ( +/obj/structure/table/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/circuitboard/crew{ + pixel_x = -1; + pixel_y = 1 + }, +/obj/item/circuitboard/card{ + pixel_x = 2; + pixel_y = -2 + }, +/obj/item/circuitboard/communications{ + pixel_x = 5; + pixel_y = -5 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/dark, +/area/storage/tech) +"lP" = ( +/obj/structure/cable/green, +/obj/machinery/power/apc/west_mount{ + cell_type = /obj/item/cell/super + }, +/obj/structure/table/rack{ + dir = 8; + layer = 2.6 + }, +/obj/item/storage/toolbox/electrical, +/turf/simulated/floor/tiled/dark, +/area/tcommsat/computer) +"lR" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/catwalk, +/obj/effect/floor_decal/spline/fancy/wood/cee{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/stairs_one) +"lT" = ( +/obj/machinery/power/apc/north_mount{ + cell_type = /obj/item/cell/super + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/drone_fabrication) +"lU" = ( +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/engineering/engine_smes) +"lV" = ( +/obj/structure/closet/radiation, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_monitoring) +"lZ" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/structure/table/reinforced, +/obj/item/storage/box/lights/mixed, +/obj/item/clothing/gloves/black, +/obj/item/tool/crowbar, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/junction/yjunction{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/storage) +"ma" = ( +/obj/machinery/telecomms/server/presets/medical, +/turf/simulated/floor/tiled/dark{ + initial_gas_mix = "n2=100;TEMP=80" + }, +/area/tcommsat/chamber) +"mb" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/storage/tech) +"mc" = ( +/obj/machinery/airlock_sensor{ + dir = 8; + id_tag = "deck1_airlock"; + pixel_x = 22 + }, +/obj/machinery/atmospherics/component/unary/vent_pump/high_volume{ + dir = 8; + id_tag = "deck1_airlock" + }, +/obj/map_helper/airlock/sensor/chamber_sensor, +/obj/map_helper/airlock/atmos/chamber_pump, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_eva) +"md" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 1 + }, +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway) +"me" = ( +/obj/effect/floor_decal/techfloor/orange, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/locker_room) +"mf" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 1 + }, +/obj/item/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 26 + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway) +"mg" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_smes) +"mi" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on, +/obj/structure/closet/hydrant{ + pixel_x = 32 + }, +/obj/effect/floor_decal/techfloor/orange{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/station/stairs_one) +"mj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/effect/floor_decal/techfloor/orange, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway) +"mk" = ( +/turf/simulated/floor/carpet, +/area/maintenance/dormitory) +"ml" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/turf/simulated/floor/plating, +/area/engineering/atmos) +"mm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"mn" = ( +/obj/machinery/shieldwallgen, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/storage) +"mo" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/engineering/atmos/storage) +"mp" = ( +/obj/machinery/camera/network/engineering, +/obj/machinery/atmospherics/valve/digital{ + dir = 4; + name = "Reserve Fuel" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"mq" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/drone_fabrication) +"mv" = ( +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/chief) +"mz" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/atmos/storage) +"mA" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/drone_fabrication) +"mB" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/maintenance/engi{ + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/maintenance, +/turf/simulated/floor/plating, +/area/tcommsat/powercontrol) +"mC" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/atmospherics/portables_connector, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/machinery/portable_atmospherics/powered/pump, +/turf/simulated/floor/tiled/steel_ridged, +/area/engineering/atmos/storage) +"mD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/tcommsat/powercontrol) +"mE" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/engineering) +"mG" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "portnacelle_blastdoor"; + opacity = 0 + }, +/obj/effect/paint_stripe/sun, +/obj/structure/window/phoronreinforced/full{ + icon_state = "phoronwindow0" + }, +/obj/structure/grille, +/turf/simulated/floor/reinforced/airless, +/area/space) +"mJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"mK" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/tcommsat/computer) +"mL" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/engi_engine) +"mM" = ( +/obj/structure/lattice, +/obj/structure/railing{ + dir = 4 + }, +/turf/space, +/area/space) +"mN" = ( +/turf/simulated/floor/tiled/techmaint, +/area/engineering/workshop) +"mS" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/techfloor/orange{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway) +"mT" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/black, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"mU" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/station/stairs_one) +"mV" = ( +/turf/simulated/wall/prepainted/engineering, +/area/tcommsat/computer) +"mW" = ( +/obj/structure/cable/cyan{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/bluegrid, +/area/ai) +"mX" = ( +/obj/machinery/atmospherics/component/binary/pump, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"mY" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/machinery/power/apc/east_mount, +/obj/structure/table/rack{ + dir = 8; + layer = 2.6 + }, +/obj/item/storage/toolbox/mechanical, +/turf/simulated/floor/plating, +/area/maintenance/engi_engine) +"mZ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/universal, +/turf/simulated/floor/plating, +/area/engineering/atmos) +"nd" = ( +/obj/structure/table/woodentable, +/obj/random/maintenance, +/turf/simulated/floor/carpet, +/area/maintenance/dormitory) +"ne" = ( +/obj/machinery/computer/atmos_alert, +/turf/simulated/floor/tiled, +/area/engineering/engine_monitoring) +"nf" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/bed/chair/comfy/beige{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/engineering/break_room) +"nj" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/catwalk, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/engineering/engine_smes) +"nl" = ( +/obj/structure/table/rack, +/obj/structure/plushie/carp, +/turf/simulated/floor/plating, +/area/maintenance/engineering) +"nm" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/techfloor/orange{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway) +"nn" = ( +/obj/machinery/air_alarm{ + dir = 8; + pixel_x = 25 + }, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"no" = ( +/obj/structure/sign/department/telecoms, +/turf/simulated/wall/r_wall/prepainted/engineering, +/area/tcommsat/computer) +"nq" = ( +/turf/simulated/wall/prepainted, +/area/maintenance/engi_engine) +"ns" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway/lower) +"nt" = ( +/obj/machinery/camera/network/engineering, +/obj/structure/table/reinforced, +/obj/machinery/cell_charger{ + pixel_y = 5 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"nu" = ( +/obj/machinery/camera/network/command, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai) +"nw" = ( +/obj/structure/reagent_dispensers/beerkeg, +/turf/simulated/floor/plating, +/area/maintenance/engineering) +"ny" = ( +/turf/simulated/floor/reinforced/nitrogen, +/area/space) +"nA" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"nC" = ( +/obj/spawner/window/low_wall/borosillicate/reinforced/full/firelocks, +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/engineering/atmos) +"nE" = ( +/turf/simulated/floor/tiled/techmaint, +/area/engineering/locker_room) +"nF" = ( +/turf/simulated/floor/plating, +/area/engineering/atmos) +"nI" = ( +/obj/machinery/atmospherics/component/binary/pump, +/obj/machinery/atmospherics/pipe/simple/visible/blue{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"nJ" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"nK" = ( +/obj/machinery/camera/network/outside{ + dir = 5 + }, +/turf/space, +/area/space) +"nL" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"nN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/effect/floor_decal/spline/fancy/wood/cee{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/engineering/hallway/lower) +"nO" = ( +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/turf/simulated/floor/plating, +/area/engineering/storage) +"nQ" = ( +/obj/effect/floor_decal/corner/paleblue/border, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_airlock) +"nR" = ( +/obj/spawner/window/low_wall/borosillicate/reinforced/full/firelocks, +/obj/machinery/atmospherics/pipe/simple/visible/black, +/turf/simulated/floor/plating, +/area/engineering/atmos) +"nS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/glass/engineering{ + name = "Engineering Equipment"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/engineering/equipment, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/storage) +"nT" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/machinery/door/airlock/maintenance/engi{ + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/engineering/equipment, +/turf/simulated/floor/plating, +/area/maintenance/engi_engine) +"nX" = ( +/obj/structure/bed/chair/sofa/left, +/obj/item/reagent_containers/food/drinks/bottle/small/beer{ + pixel_x = -7; + pixel_y = -7 + }, +/obj/item/reagent_containers/food/drinks/bottle/small/beer{ + pixel_x = 9 + }, +/turf/simulated/floor/plating, +/area/maintenance/engineering) +"nY" = ( +/obj/machinery/holopad, +/turf/simulated/floor/carpet/blucarpet, +/area/crew_quarters/heads/chief) +"oa" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/wood, +/area/maintenance/dormitory) +"oe" = ( +/obj/structure/table/woodentable, +/obj/random/maintenance, +/turf/simulated/floor/wood, +/area/maintenance/dormitory) +"of" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/maintenance, +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/stairs_one) +"og" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 8 + }, +/turf/simulated/wall/prepainted/engineering/atmos, +/area/engineering/atmos/storage) +"oh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 8 + }, +/obj/structure/catwalk, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/engi_engine) +"oj" = ( +/obj/structure/lattice, +/obj/structure/grille, +/obj/structure/railing, +/obj/structure/railing{ + dir = 8 + }, +/turf/space, +/area/space) +"ol" = ( +/obj/structure/closet/firecloset, +/obj/item/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 26 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_monitoring) +"om" = ( +/obj/machinery/computer/aifixer, +/turf/simulated/floor/tiled/techfloor, +/area/ai_server_room) +"oo" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"oq" = ( +/obj/effect/floor_decal/techfloor/orange, +/turf/simulated/floor/tiled, +/area/space) +"or" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/obj/spawner/window/low_wall/borosillicate/full/firelocks, +/obj/effect/paint_stripe/sun, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"ot" = ( +/turf/simulated/wall/prepainted/engineering, +/area/engineering/hallway/lower) +"oy" = ( +/obj/structure/catwalk, +/turf/simulated/floor/airless/ceiling, +/area/space) +"oz" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/carpet/blucarpet, +/area/crew_quarters/heads/chief) +"oC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_monitoring) +"oD" = ( +/obj/machinery/computer/guestpass{ + dir = 1; + pixel_y = -28 + }, +/turf/simulated/floor/tiled, +/area/engineering/break_room) +"oG" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 8 + }, +/obj/machinery/door/airlock/maintenance, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/maintenance/engi_engine) +"oH" = ( +/obj/effect/floor_decal/techfloor/orange/corner, +/obj/effect/floor_decal/techfloor/orange, +/turf/simulated/floor/tiled, +/area/engineering/hallway/lower) +"oI" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"oJ" = ( +/obj/machinery/atmospherics/component/quaternary/atmos_filter{ + name = "Waste CO2 Filter"; + tag_east = 5; + tag_south = 2; + tag_west = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"oK" = ( +/obj/item/stack/cable_coil/green{ + pixel_y = 4 + }, +/obj/item/stack/cable_coil/green{ + pixel_y = 4 + }, +/obj/item/stack/cable_coil/green{ + pixel_y = 4 + }, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/structure/closet/crate, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"oL" = ( +/obj/effect/floor_decal/techfloor/orange, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/engineering/hallway/lower) +"oN" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"oP" = ( +/obj/spawner/window/low_wall/borosillicate/reinforced/full/firelocks, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/engineering/atmos) +"oQ" = ( +/obj/structure/catwalk, +/obj/structure/handrail{ + dir = 4 + }, +/turf/simulated/floor/airless/ceiling, +/area/space) +"oR" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 5 + }, +/obj/structure/table/bench/padded, +/obj/landmark/spawnpoint/job/station_engineer, +/obj/item/storage/toolbox/lunchbox/nt, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/locker_room) +"oS" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"oV" = ( +/obj/machinery/air_alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ai_upload) +"oY" = ( +/obj/machinery/computer/ship/navigation/telescreen{ + pixel_y = -37 + }, +/obj/effect/floor_decal/techfloor/orange, +/obj/machinery/camera/network/engineering{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/locker_room) +"oZ" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/shunt) +"pa" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"pc" = ( +/obj/machinery/fire_alarm/south_mount{ + pixel_y = -24 + }, +/turf/simulated/floor/plating, +/area/maintenance/engi_engine) +"pe" = ( +/obj/machinery/vending/assist, +/turf/simulated/floor, +/area/storage/tech) +"pf" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/techfloor/orange{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway) +"pg" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/techfloor/orange/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway/lower) +"pk" = ( +/obj/spawner/window/low_wall/borosillicate/reinforced/full/firelocks, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/engineering/atmos) +"pm" = ( +/obj/machinery/door/firedoor{ + dir = 2 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/techfloor/orange/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/station/stairs_one) +"po" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/effect/floor_decal/techfloor/orange{ + dir = 9 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/locker_room) +"pr" = ( +/obj/effect/floor_decal/techfloor/orange, +/turf/simulated/floor/tiled, +/area/engineering/hallway/lower) +"ps" = ( +/obj/machinery/fire_alarm/south_mount{ + pixel_y = -24 + }, +/obj/effect/floor_decal/techfloor/orange, +/turf/simulated/floor/tiled, +/area/engineering/hallway/lower) +"pt" = ( +/obj/structure/table/rack{ + dir = 8; + layer = 2.6 + }, +/obj/item/storage/belt, +/obj/item/storage/belt, +/obj/item/storage/belt, +/obj/item/storage/belt, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/locker_room) +"pv" = ( +/obj/structure/table/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/circuitboard/transhuman_synthprinter{ + pixel_x = -3; + pixel_y = 4 + }, +/obj/item/circuitboard/rdconsole{ + pixel_y = 2 + }, +/obj/item/circuitboard/destructive_analyzer, +/obj/item/circuitboard/protolathe{ + pixel_x = 3; + pixel_y = -2 + }, +/obj/item/circuitboard/rdserver{ + pixel_x = 6; + pixel_y = -4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/power/apc/west_mount, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/storage/tech) +"pw" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/cable/green, +/obj/machinery/power/apc/south_mount, +/turf/simulated/floor/tiled/techfloor, +/area/ai_upload) +"py" = ( +/obj/machinery/power/apc/west_mount, +/obj/structure/cable/green, +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/chief) +"pz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/engineering/break_room) +"pA" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai) +"pB" = ( +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/electrical{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/item/storage/toolbox/mechanical, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/air_alarm{ + frequency = 1441; + pixel_y = 22 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"pG" = ( +/obj/machinery/atmospherics/component/unary/heater{ + dir = 4; + name = "fuel pre-heater" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"pJ" = ( +/obj/machinery/portable_atmospherics/canister/phoron, +/turf/simulated/floor/plating, +/area/engineering/portnacelle) +"pK" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/machinery/fire_alarm/south_mount{ + pixel_y = -24 + }, +/obj/effect/floor_decal/industrial/outline/red, +/turf/simulated/floor/tiled/techmaint, +/area/space) +"pN" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/engineering/starboardnacelle) +"pO" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"pP" = ( +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/obj/machinery/holopad, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/bluegrid, +/area/ai) +"pR" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/engineering/hallway) +"pT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/engineering) +"pX" = ( +/obj/machinery/camera/network/outside{ + dir = 1 + }, +/turf/space, +/area/space) +"qb" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/techfloor/orange/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway/lower) +"qc" = ( +/obj/machinery/light/small/emergency{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/engi_engine) +"qe" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/obj/effect/floor_decal/techfloor/orange, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/locker_room) +"qf" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"qh" = ( +/obj/structure/table/standard, +/obj/item/storage/box/donkpockets{ + pixel_y = 3 + }, +/turf/simulated/floor/tiled, +/area/engineering/break_room) +"qi" = ( +/obj/machinery/button/ignition{ + id = "portnacelle_igniter"; + pixel_y = -28 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"qj" = ( +/obj/structure/lattice, +/obj/structure/railing, +/obj/structure/railing{ + dir = 4 + }, +/turf/space, +/area/space) +"ql" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/techfloor/orange{ + dir = 4 + }, +/obj/machinery/door/firedoor{ + dir = 2 + }, +/turf/simulated/floor/tiled, +/area/station/stairs_one) +"qm" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"qo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"qp" = ( +/obj/machinery/air_alarm{ + frequency = 1441; + pixel_y = 22 + }, +/obj/effect/floor_decal/techfloor/orange{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor/orange{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway/lower) +"qq" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance/engi{ + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/maintenance, +/turf/simulated/floor/plating, +/area/engineering/atmos/storage) +"qr" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold/visible/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"qt" = ( +/obj/machinery/portable_atmospherics/powered/scrubber, +/turf/simulated/floor/plating, +/area/maintenance/engineering) +"qu" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/techfloor/orange, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway) +"qv" = ( +/obj/structure/catwalk, +/obj/effect/floor_decal/spline/fancy/wood, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/engineering/hallway/lower) +"qy" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/engineering/atmos) +"qz" = ( +/obj/machinery/atmospherics/pipe/tank, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"qA" = ( +/obj/machinery/power/smes/buildable{ + RCon_tag = "Engineering"; + cur_coils = 4 + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/maintenance/engi_engine) +"qC" = ( +/obj/item/radio/intercom{ + dir = 4; + name = "Station Intercom (General)"; + pixel_x = 23 + }, +/turf/simulated/floor/tiled/techmaint, +/area/tcommsat/computer) +"qE" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/effect/floor_decal/spline/fancy/wood/cee{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/engineering/hallway/lower) +"qG" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/drone_fabrication) +"qL" = ( +/obj/structure/closet/hydrant{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"qN" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/techfloor/orange{ + dir = 10 + }, +/obj/machinery/camera/network/engineering{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway/lower) +"qO" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/engineering/hallway) +"qP" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/drone_fabrication) +"qQ" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/floor_decal/techfloor/orange{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway) +"qT" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor/orange{ + dir = 1 + }, +/obj/structure/closet/hydrant{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway/lower) +"qU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_smes) +"qW" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/techfloor/orange, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/machinery/door/airlock/glass/engineering{ + name = "Engineering Hallway"; + req_one_access = null + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway/lower) +"qX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock, +/turf/simulated/floor/tiled/white, +/area/engineering/foyer_mezzenine) +"qY" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor/orange{ + dir = 1 + }, +/obj/item/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 26 + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway/lower) +"qZ" = ( +/turf/simulated/floor/reinforced/phoron, +/area/engineering/atmos) +"ra" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"rb" = ( +/obj/machinery/atmospherics/component/quaternary/atmos_filter, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"rc" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 4 + }, +/turf/space, +/area/space) +"re" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ai_server_room) +"ri" = ( +/obj/machinery/portable_atmospherics/canister/phoron/engine_setup, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_airlock) +"rn" = ( +/obj/machinery/computer/rcon, +/turf/simulated/floor/tiled, +/area/engineering/engine_monitoring) +"ro" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/obj/machinery/light/small/emergency{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/atmos/storage) +"rp" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/machinery/door/window/westleft, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_airlock) +"rr" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/engineering/engine_smes) +"rs" = ( +/obj/structure/bed/chair, +/turf/simulated/floor/plating, +/area/maintenance/engineering) +"rt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/maintenance/trash_pit) +"ru" = ( +/obj/machinery/atmospherics/pipe/vent, +/turf/simulated/floor/plating, +/area/maintenance/trash_pit) +"rv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/powered/scrubber, +/turf/simulated/floor/plating, +/area/engineering/engine_eva) +"rx" = ( +/obj/machinery/telecomms/receiver/preset_right/victory, +/turf/simulated/floor/tiled/dark{ + initial_gas_mix = "n2=100;TEMP=80" + }, +/area/tcommsat/chamber) +"ry" = ( +/obj/machinery/atmospherics/pipe/simple/visible/blue, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"rA" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/drone_fabrication) +"rB" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/table/reinforced, +/obj/machinery/cell_charger, +/obj/item/cell/high{ + maxcharge = 15000 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/storage) +"rF" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"rG" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/workshop) +"rH" = ( +/obj/machinery/vending/wallmed1{ + pixel_x = 32 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_airlock) +"rK" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/phoron/engine_setup, +/obj/machinery/door/window/westright, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_airlock) +"rL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 8 + }, +/obj/structure/catwalk, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/engi_engine) +"rN" = ( +/obj/effect/paint_stripe/sun, +/obj/machinery/power/apc/north_mount{ + cell_type = /obj/item/cell/super + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"rQ" = ( +/obj/structure/table/standard, +/obj/machinery/microwave, +/turf/simulated/floor/tiled, +/area/engineering/break_room) +"rR" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/closet/secure_closet/engineering_welding, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/locker_room) +"rT" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/red{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"rU" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ai_server_room) +"rW" = ( +/obj/machinery/power/thermoregulator, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/rust, +/obj/machinery/light, +/turf/simulated/floor/plating, +/area/engineering/atmos/storage) +"rZ" = ( +/obj/structure/closet/emcloset, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/engineering) +"sc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/engineering/hallway/lower) +"sd" = ( +/obj/structure/railing, +/obj/structure/railing{ + dir = 8 + }, +/turf/space, +/area/space) +"se" = ( +/obj/machinery/computer/drone_control{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/drone_fabrication) +"sf" = ( +/obj/structure/railing, +/turf/simulated/floor/plating, +/area/engineering/starboardnacelle) +"sh" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/locker_room) +"si" = ( +/obj/machinery/atmospherics/pipe/zpipe/up/supply{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/door/firedoor, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing, +/turf/simulated/floor/plating, +/area/maintenance/engineering) +"sj" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/computer/ship/navigation/telescreen{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/locker_room) +"sk" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/turf/simulated/floor/plating, +/area/engineering/atmos) +"sn" = ( +/obj/machinery/exonet_node{ + anchored = 1 + }, +/turf/simulated/floor/tiled{ + icon_state = "techmaint" + }, +/area/tcommsat/chamber) +"sr" = ( +/obj/machinery/light/small/emergency{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/engineering) +"st" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/maintenance/dormitory) +"su" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 4 + }, +/turf/simulated/floor/reinforced/airless, +/area/space) +"sy" = ( +/obj/machinery/vending/snack, +/turf/simulated/floor/wood, +/area/engineering/hallway/lower) +"sz" = ( +/turf/simulated/floor/tiled/techfloor, +/area/ai_upload) +"sA" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/red, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"sB" = ( +/obj/structure/sink{ + pixel_y = 22 + }, +/turf/simulated/floor/wood, +/area/maintenance/dormitory) +"sD" = ( +/obj/machinery/portable_atmospherics/canister/empty, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_airlock) +"sE" = ( +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/turf/simulated/floor, +/area/engineering/atmos/storage) +"sG" = ( +/obj/machinery/light/small/emergency{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/engi_engine) +"sH" = ( +/obj/structure/railing, +/turf/space, +/area/space) +"sI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/catwalk, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/engineering) +"sJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/techfloor/orange{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/station/stairs_one) +"sK" = ( +/obj/machinery/floodlight, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/engineering/atmos/storage) +"sL" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/engi_engine) +"sM" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/item/storage/box/nifsofts_engineering, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/storage) +"sP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/station/stairs_one) +"sQ" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/techfloor/orange{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/station/stairs_one) +"sS" = ( +/obj/structure/catwalk, +/obj/machinery/air_alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/engi_engine) +"sU" = ( +/obj/machinery/telecomms/broadcaster/preset_right/victory, +/turf/simulated/floor/tiled/dark{ + initial_gas_mix = "n2=100;TEMP=80" + }, +/area/tcommsat/chamber) +"sW" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/tcommsat/computer) +"sX" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_monitoring) +"sY" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/techfloor/orange, +/turf/simulated/floor/tiled, +/area/engineering/hallway/lower) +"tb" = ( +/obj/machinery/atmospherics/component/unary/outlet_injector{ + frequency = 1443; + id = "air_in"; + power_rating = 5000; + use_power = 1 + }, +/turf/simulated/floor/reinforced/airmix, +/area/space) +"tc" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/engineering/starboardnacelle) +"te" = ( +/obj/structure/catwalk, +/obj/machinery/door/airlock/maintenance/engi, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/engi_engine) +"tf" = ( +/obj/machinery/atmospherics/component/unary/vent_pump{ + dir = 1; + external_pressure_bound = 0; + external_pressure_bound_default = 0; + frequency = 1441; + icon_state = "map_vent_in"; + id_tag = "engtox_out"; + initialize_directions = 1; + internal_pressure_bound = 4000; + internal_pressure_bound_default = 4000; + pressure_checks = 2; + pressure_checks_default = 2; + pump_direction = 0; + on = 1 + }, +/turf/simulated/floor/reinforced/phoron, +/area/engineering/atmos) +"tg" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/obj/machinery/light/small/emergency{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_eva) +"tj" = ( +/obj/structure/table/standard, +/obj/item/multitool, +/obj/effect/floor_decal/techfloor/orange, +/obj/random/powercell, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_monitoring) +"tk" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/black, +/obj/machinery/computer/general_air_control/large_tank_control{ + input_tag = "nitrous_in"; + name = "Nitrous Oxide Supply Control"; + output_tag = "nitrous_out"; + sensors = list("nitrous_sensor"="Tank") + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"tm" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/effect/floor_decal/techfloor/orange, +/turf/simulated/floor/tiled, +/area/engineering/hallway/lower) +"tn" = ( +/obj/structure/sign/department/drones, +/turf/simulated/wall/prepainted/engineering, +/area/engineering/drone_fabrication) +"to" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/holopad, +/obj/structure/catwalk, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/engineering/engine_smes) +"tq" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/storage) +"tr" = ( +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "starboardnacelle_blastdoor"; + opacity = 0 + }, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ + dir = 4 + }, +/obj/structure/grille, +/obj/structure/window/phoronreinforced/full{ + icon_state = "phoronwindow0" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"ts" = ( +/obj/effect/floor_decal/techfloor/orange, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway) +"tt" = ( +/obj/structure/cable/cyan{ + icon_state = "0-4" + }, +/obj/machinery/power/smes/buildable/engine/rust, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_smes) +"tu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/blue, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"tv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/machinery/door/airlock/glass/engineering{ + name = "Engineering Equipment"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/engineering/equipment, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/storage) +"ty" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/holopad, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/storage/tech) +"tA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 6 + }, +/turf/simulated/wall/r_wall/prepainted/engineering, +/area/space) +"tB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/engi_engine) +"tC" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ai_upload) +"tD" = ( +/obj/machinery/power/apc/west_mount, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/corner_techfloor_grid{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ai_upload_foyer) +"tE" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/vault{ + name = "Shunt Drive"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/engineering/department, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/shunt) +"tF" = ( +/obj/machinery/computer/guestpass{ + dir = 4; + pixel_x = -28 + }, +/obj/effect/floor_decal/techfloor/orange{ + dir = 8 + }, +/obj/structure/closet/secure_closet/engineering_electrical, +/obj/item/clothing/gloves/yellow, +/obj/machinery/camera/network/engineering{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/locker_room) +"tG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 10 + }, +/turf/simulated/floor/bluegrid{ + initial_gas_mix = "n2=100;TEMP=80"; + name = "Mainframe Base" + }, +/area/tcommsat/chamber) +"tJ" = ( +/obj/structure/table/steel, +/obj/item/module/power_control, +/obj/item/airlock_electronics, +/obj/machinery/light/small, +/turf/simulated/floor, +/area/storage/tech) +"tK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/techfloor/orange, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway) +"tL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/holopad, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_monitoring) +"tM" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"tN" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway/lower) +"tP" = ( +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -23 + }, +/obj/machinery/atmospherics/component/unary/vent_pump/on, +/turf/simulated/floor/tiled/techmaint, +/area/maintenance/trash_pit) +"tV" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/dark{ + initial_gas_mix = "n2=100;TEMP=80" + }, +/area/tcommsat/chamber) +"tW" = ( +/obj/machinery/atmospherics/pipe/simple/visible/fuel{ + dir = 4 + }, +/turf/space, +/area/space) +"tX" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/engineering/break_room) +"tY" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"tZ" = ( +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "eng_sec_lockdown"; + name = "Security Checkpoint Blast Doors"; + opacity = 0 + }, +/obj/spawner/window/low_wall/borosillicate/reinforced/full/firelocks, +/obj/effect/paint_stripe/sun, +/turf/simulated/floor, +/area/storage/tech) +"ub" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"ue" = ( +/obj/machinery/door/airlock/glass/engineeringatmos{ + name = "Atmospherics"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/engineering/atmospherics, +/obj/machinery/door/firedoor/glass{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"ul" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 8 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/engi_engine) +"um" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"up" = ( +/obj/structure/catwalk, +/obj/effect/floor_decal/spline/fancy/wood, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/engineering/hallway/lower) +"uq" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 4 + }, +/obj/structure/lattice, +/turf/space, +/area/space) +"us" = ( +/turf/simulated/floor/plating, +/area/engineering/portnacelle) +"ut" = ( +/obj/structure/lattice, +/turf/space/basic, +/area/engineering/portnacelle) +"uu" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 1 + }, +/obj/machinery/door/firedoor{ + dir = 2 + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway/lower) +"uv" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/door/firedoor{ + dir = 2 + }, +/obj/effect/floor_decal/techfloor/orange{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/station/stairs_one) +"uw" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/techfloor/orange{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/engineering/hallway/lower) +"ux" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/catwalk, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/engineering/hallway/lower) +"uy" = ( +/obj/machinery/air_sensor{ + frequency = 1441; + id_tag = "n2_sensor" + }, +/turf/simulated/floor/reinforced/nitrogen, +/area/space) +"uC" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/effect/floor_decal/techfloor/orange{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway/lower) +"uF" = ( +/obj/machinery/telecomms/server/presets/common, +/turf/simulated/floor/tiled/dark{ + initial_gas_mix = "n2=100;TEMP=80" + }, +/area/tcommsat/chamber) +"uG" = ( +/obj/machinery/telecomms/relay/preset/victory/deck_two, +/obj/machinery/light/small, +/turf/simulated/floor/tiled/dark{ + initial_gas_mix = "n2=100;TEMP=80" + }, +/area/tcommsat/chamber) +"uH" = ( +/obj/machinery/turretid/stun{ + control_area = "\improper AI Upload Chamber"; + name = "AI Upload turret control"; + pixel_y = -26 + }, +/obj/machinery/power/apc/west_mount, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/techfloor, +/area/ai_server_room) +"uJ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/locker_room) +"uK" = ( +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/workshop) +"uL" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance/engi{ + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/maintenance, +/turf/simulated/floor/plating, +/area/engineering/drone_fabrication) +"uM" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/engi_engine) +"uP" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/techfloor/orange{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway) +"uQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"uR" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai) +"uS" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance/engi{ + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/engineering) +"uU" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ + dir = 8 + }, +/turf/space, +/area/space) +"uV" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 1 + }, +/obj/machinery/air_alarm{ + frequency = 1441; + pixel_y = 22 + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway/lower) +"uW" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/window/westright, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_airlock) +"uZ" = ( +/obj/machinery/portable_atmospherics/canister/phoron/engine_setup, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_airlock) +"vb" = ( +/obj/machinery/computer/borgupload, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ai_upload) +"vd" = ( +/turf/simulated/wall/r_wall/prepainted/engineering/atmos, +/area/space) +"ve" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/bluegrid, +/area/ai_upload) +"vg" = ( +/obj/structure/table/rack{ + dir = 8; + layer = 2.6 + }, +/obj/item/stack/material/steel{ + amount = 50 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/drone_fabrication) +"vh" = ( +/obj/structure/table/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/circuitboard/secure_data{ + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/circuitboard/security{ + pixel_x = 1; + pixel_y = -1 + }, +/obj/item/circuitboard/skills{ + pixel_x = 4; + pixel_y = -3 + }, +/turf/simulated/floor/plating, +/area/storage/tech) +"vj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/space) +"vm" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 1 + }, +/obj/machinery/mineral/equipment_vendor/engineering, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/storage) +"vn" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging, +/turf/space, +/area/space) +"vo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/techfloor/orange{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/station/stairs_one) +"vp" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/techfloor/orange{ + dir = 8 + }, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway) +"vr" = ( +/obj/effect/shuttle_landmark/victory/deck1/starboard, +/turf/space, +/area/space) +"vs" = ( +/obj/random/trash_pile, +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/engineering) +"vv" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/techmaint, +/area/space) +"vy" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway/lower) +"vz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor, +/area/ai_server_room) +"vA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"vC" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/camera/network/engine, +/obj/structure/catwalk, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/engineering/engine_smes) +"vG" = ( +/obj/machinery/camera/network/command{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ai_server_room) +"vI" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/empty, +/obj/machinery/door/window/westright, +/turf/simulated/floor/plating, +/area/engineering/atmos) +"vK" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/engineering/engine_monitoring) +"vL" = ( +/obj/machinery/power/sensor{ + name = "Powernet Sensor - Engineering Subgrid"; + name_tag = "Engineering Subgrid" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/engi_engine) +"vN" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/black, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"vP" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor/orange{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway) +"vQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 5 + }, +/turf/simulated/floor/tiled/techmaint, +/area/tcommsat/computer) +"vS" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/workshop) +"vU" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"vV" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/techfloor/orange, +/turf/simulated/floor/tiled, +/area/engineering/hallway/lower) +"vW" = ( +/obj/machinery/atmospherics/component/unary/vent_pump{ + external_pressure_bound = 0; + external_pressure_bound_default = 0; + frequency = 1441; + icon_state = "map_vent_in"; + id_tag = "nitrous_out"; + initialize_directions = 1; + internal_pressure_bound = 4000; + internal_pressure_bound_default = 4000; + pressure_checks = 2; + pressure_checks_default = 2; + pump_direction = 0; + on = 1 + }, +/turf/simulated/floor/reinforced/n20, +/area/space) +"vY" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/vent, +/turf/simulated/floor/plating, +/area/maintenance/trash_pit) +"vZ" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/engineering/foyer_mezzenine) +"wb" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"wc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/storage) +"wd" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/engineering/atmos) +"we" = ( +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/hatch{ + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/engineering/department, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_smes) +"wf" = ( +/obj/structure/closet/secure_closet/atmos_personal, +/obj/machinery/power/apc/west_mount, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/effect/floor_decal/corner_techfloor_grid{ + dir = 9 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"wh" = ( +/turf/simulated/wall/prepainted/engineering/atmos, +/area/engineering/foyer_mezzenine) +"wi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black, +/obj/machinery/holopad, +/turf/simulated/floor/bluegrid{ + initial_gas_mix = "n2=100;TEMP=80"; + name = "Mainframe Base" + }, +/area/tcommsat/chamber) +"wj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor/orange{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/station/stairs_one) +"wk" = ( +/obj/structure/catwalk, +/obj/machinery/light/small/emergency{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/engineering) +"wl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/atmos/storage) +"wn" = ( +/obj/random/trash_pile, +/turf/simulated/floor/plating, +/area/maintenance/engineering) +"wo" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 1 + }, +/obj/item/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 26 + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway/lower) +"wq" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/fire_alarm/south_mount{ + pixel_y = -24 + }, +/turf/simulated/floor/tiled/white, +/area/engineering/foyer_mezzenine) +"wr" = ( +/obj/effect/floor_decal/techfloor{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ai_upload_foyer) +"ws" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/locker_room) +"ww" = ( +/obj/machinery/computer/ship/navigation/telescreen{ + pixel_x = -32 + }, +/turf/simulated/floor/carpet/blucarpet, +/area/engineering/break_room) +"wy" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/techfloor/orange, +/obj/machinery/computer/general_air_control/supermatter_core{ + dir = 1; + input_tag = "cooling_in"; + name = "Engine Cooling Control"; + output_tag = "cooling_out"; + sensors = list("engine_sensor"="Engine Core") + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_monitoring) +"wA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/techfloor/orange, +/turf/simulated/floor/tiled, +/area/engineering/hallway/lower) +"wB" = ( +/obj/structure/table/steel, +/obj/item/aicard, +/obj/item/aiModule/reset, +/turf/simulated/floor, +/area/storage/tech) +"wE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"wF" = ( +/obj/machinery/telecomms/processor/preset_four, +/turf/simulated/floor/tiled/dark{ + initial_gas_mix = "n2=100;TEMP=80" + }, +/area/tcommsat/chamber) +"wG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/space) +"wJ" = ( +/obj/structure/table/standard, +/obj/machinery/recharger, +/obj/effect/floor_decal/techfloor/orange, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_monitoring) +"wK" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"wL" = ( +/obj/structure/lattice, +/obj/structure/railing{ + dir = 1 + }, +/turf/space, +/area/space) +"wM" = ( +/obj/machinery/air_sensor{ + frequency = 1443; + id_tag = "air_sensor"; + output = 7 + }, +/turf/simulated/floor/reinforced/airmix, +/area/space) +"wN" = ( +/obj/structure/table/rack{ + dir = 8; + layer = 2.6 + }, +/obj/machinery/door/window/southright{ + dir = 8; + name = "Jetpack Storage"; + req_one_access = list(11,24) + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/item/tank/jetpack/carbondioxide, +/obj/item/tank/jetpack/carbondioxide, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"wO" = ( +/obj/effect/floor_decal/techfloor{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ai_upload_foyer) +"wP" = ( +/obj/machinery/air_alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai) +"wQ" = ( +/obj/machinery/atmospherics/pipe/tank{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_eva) +"wS" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/empty, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/window/westleft, +/turf/simulated/floor/plating, +/area/engineering/atmos) +"wT" = ( +/obj/machinery/power/smes/buildable/main, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/engineering/engine_smes) +"wU" = ( +/obj/machinery/ai_slipper, +/obj/machinery/turretid/stun{ + check_synth = 1; + name = "AI Chamber turret control"; + pixel_x = 30; + pixel_y = 24 + }, +/obj/machinery/flasher{ + id = "AI"; + pixel_x = -24; + pixel_y = 25 + }, +/obj/machinery/button/remote/blast_door{ + desc = "A remote control-switch for the AI core maintenance door."; + id = "AICore"; + name = "AI Maintenance Hatch"; + pixel_x = 8; + pixel_y = -25; + req_access = list(16) + }, +/obj/machinery/light/small, +/obj/machinery/holopad, +/turf/simulated/floor/tiled/dark, +/area/ai) +"wW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner_techfloor_grid{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ai_upload_foyer) +"wY" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/purple{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"xa" = ( +/turf/space/basic, +/area/engineering/atmos/monitoring) +"xb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/techfloor/orange, +/turf/simulated/floor/tiled, +/area/engineering/hallway) +"xd" = ( +/obj/machinery/door/airlock/maintenance/engi, +/turf/simulated/floor/plating, +/area/space) +"xe" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/engineering{ + name = "Engineering Break Room"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/engineering/department, +/turf/simulated/floor/tiled, +/area/engineering/break_room) +"xf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/effect/floor_decal/techfloor/orange{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway/lower) +"xh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/catwalk, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/engineering/engine_smes) +"xi" = ( +/obj/machinery/atmospherics/component/unary/outlet_injector{ + dir = 8; + frequency = 2345; + id = "starboardnacelle_in"; + power_rating = 5000 + }, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 5 + }, +/turf/simulated/floor/reinforced/airless, +/area/space) +"xk" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/red, +/turf/simulated/wall/prepainted/engineering/atmos, +/area/engineering/atmos/storage) +"xm" = ( +/obj/machinery/vending/coffee, +/turf/simulated/floor/carpet/blucarpet, +/area/engineering/break_room) +"xn" = ( +/obj/landmark/spawnpoint/job/cyborg, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ai_server_room) +"xp" = ( +/obj/machinery/air_alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ai_server_room) +"xq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/power/apc/south_mount, +/obj/structure/cable/green, +/obj/effect/floor_decal/techfloor/orange, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway) +"xs" = ( +/obj/machinery/atmospherics/component/unary/vent_pump{ + external_pressure_bound = 0; + external_pressure_bound_default = 0; + icon_state = "map_vent_in"; + initialize_directions = 1; + internal_pressure_bound = 4000; + internal_pressure_bound_default = 4000; + pressure_checks = 2; + pressure_checks_default = 2; + pump_direction = 0; + on = 1 + }, +/turf/simulated/floor/bluegrid{ + initial_gas_mix = "n2=100;TEMP=80"; + name = "Mainframe Base" + }, +/area/tcommsat/chamber) +"xu" = ( +/obj/structure/catwalk, +/obj/machinery/shield_diffuser, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/airless/ceiling, +/area/space) +"xv" = ( +/turf/simulated/wall/prepainted/engineering, +/area/engineering/workshop) +"xw" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"xz" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/bed/chair/comfy/beige{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/engineering/break_room) +"xA" = ( +/obj/structure/catwalk, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/engineering) +"xB" = ( +/obj/machinery/camera/network/engine, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/empty, +/obj/machinery/door/window/westright, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_airlock) +"xC" = ( +/turf/simulated/wall/prepainted/engineering/atmos, +/area/space) +"xE" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"xI" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/atmospherics/component/binary/pump{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/engineering/atmos) +"xK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black, +/turf/simulated/floor/tiled/dark{ + initial_gas_mix = "n2=100;TEMP=80" + }, +/area/tcommsat/chamber) +"xM" = ( +/obj/structure/table/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/circuitboard/arcade/orion_trail{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/circuitboard/jukebox, +/obj/item/circuitboard/message_monitor{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/circuitboard/arcade/battle{ + pixel_x = 6; + pixel_y = -5 + }, +/turf/simulated/floor/plating, +/area/storage/tech) +"xQ" = ( +/obj/structure/catwalk, +/obj/machinery/camera/network/outside{ + dir = 1 + }, +/turf/simulated/floor/airless/ceiling, +/area/space) +"xS" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/landmark/free_ai_shell, +/turf/simulated/floor/bluegrid, +/area/ai_upload) +"xT" = ( +/obj/machinery/telecomms/server/presets/engineering, +/turf/simulated/floor/tiled/dark{ + initial_gas_mix = "n2=100;TEMP=80" + }, +/area/tcommsat/chamber) +"xU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"xV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_airlock) +"xX" = ( +/turf/simulated/wall/r_wall/prepainted/engineering/atmos, +/area/engineering/atmos) +"xY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/map_helper/airlock/door/int_door, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/door/airlock/glass_external{ + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/external_airlock, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_eva) +"ye" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/tcommsat/computer) +"yh" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 10 + }, +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"yj" = ( +/obj/machinery/status_display{ + pixel_y = 30 + }, +/obj/structure/dispenser/phoron, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"ym" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/space) +"yn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/effect/floor_decal/spline/fancy/wood, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/space) +"yq" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 1 + }, +/obj/machinery/door/airlock/engineering{ + name = "Reactor Control Room"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/engineering/department, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_monitoring) +"yt" = ( +/obj/structure/closet/secure_closet/atmos_personal, +/obj/effect/floor_decal/corner_techfloor_grid{ + dir = 9 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"yu" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor/orange{ + dir = 1 + }, +/obj/item/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 26 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/locker_room) +"yv" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/carpet/blucarpet, +/area/crew_quarters/heads/chief) +"yw" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/engi_engine) +"yy" = ( +/obj/machinery/door/airlock/glass/engineeringatmos{ + name = "Atmospherics"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/engineering/atmospherics, +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"yz" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/engineering) +"yA" = ( +/obj/machinery/power/apc/south_mount, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark{ + initial_gas_mix = "n2=100;TEMP=80" + }, +/area/tcommsat/chamber) +"yD" = ( +/turf/simulated/floor/plating, +/area/maintenance/engineering) +"yE" = ( +/obj/structure/catwalk, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/engi_engine) +"yF" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/engineering/portnacelle) +"yG" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor/orange, +/obj/machinery/fire_alarm/south_mount{ + pixel_y = -24 + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway/lower) +"yJ" = ( +/turf/simulated/wall/r_wall/prepainted/engineering, +/area/crew_quarters/heads/chief) +"yM" = ( +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/obj/effect/floor_decal/techfloor/orange{ + dir = 1 + }, +/obj/machinery/atmospherics/component/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/station/stairs_one) +"yP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 8 + }, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/engineering/hallway/lower) +"yR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/glass/engineering{ + name = "Engineering Equipment"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/engineering/equipment, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/locker_room) +"yS" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/space, +/area/space) +"yU" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/phoron/engine_setup, +/obj/machinery/door/window/westleft, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_airlock) +"yV" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/glass/engineeringatmos{ + name = "Atmospherics"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/engineering/atmospherics, +/turf/simulated/floor/tiled, +/area/space) +"yZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/camera/network/command{ + dir = 1 + }, +/obj/machinery/media/jukebox, +/turf/simulated/floor/bluegrid, +/area/ai) +"zb" = ( +/obj/structure/table/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/circuitboard/powermonitor{ + pixel_y = 3 + }, +/obj/item/circuitboard/stationalert_engineering{ + pixel_x = 2; + pixel_y = 1 + }, +/obj/item/circuitboard/security/engineering{ + pixel_x = 5; + pixel_y = -1 + }, +/obj/item/circuitboard/atmos_alert{ + pixel_x = 6; + pixel_y = -3 + }, +/turf/simulated/floor/plating, +/area/storage/tech) +"zc" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/purple, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"zd" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/workshop) +"ze" = ( +/obj/machinery/power/apc/south_mount, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/effect/floor_decal/techfloor/orange, +/obj/machinery/light, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_monitoring) +"zg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/bluegrid, +/area/ai_upload) +"zi" = ( +/obj/machinery/air_alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/structure/table/woodentable, +/turf/simulated/floor/wood, +/area/engineering/break_room) +"zj" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 5 + }, +/turf/simulated/wall/r_wall/prepainted/engineering/atmos, +/area/engineering/atmos) +"zl" = ( +/obj/machinery/computer/atmos_alert, +/obj/machinery/camera/network/engineering, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/chief) +"zn" = ( +/turf/simulated/floor/tiled/techfloor, +/area/ai_server_room) +"zo" = ( +/obj/structure/railing, +/obj/machinery/door/firedoor{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor/orange, +/turf/simulated/floor/tiled, +/area/station/stairs_one) +"zq" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window/northright, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/engineering/atmos) +"zr" = ( +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"zs" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/obj/machinery/light_construct/small{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/maintenance/dormitory) +"zu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"zv" = ( +/turf/simulated/wall/prepainted/engineering, +/area/maintenance/trash_pit) +"zy" = ( +/obj/machinery/fire_alarm/south_mount{ + pixel_y = -24 + }, +/obj/structure/table/bench/wooden, +/obj/machinery/computer/guestpass{ + dir = 8; + pixel_x = 30 + }, +/turf/simulated/floor/wood, +/area/engineering/hallway/lower) +"zz" = ( +/turf/simulated/wall/r_wall/prepainted/command, +/area/ai_server_room) +"zA" = ( +/obj/machinery/shield_diffuser, +/obj/map_helper/airlock/door/ext_door, +/obj/machinery/access_button/airlock_exterior{ + frequency = 1380; + master_tag = "deck1_airlock"; + pixel_x = 24 + }, +/obj/machinery/door/airlock/glass_external{ + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/external_airlock, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_eva) +"zB" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_airlock) +"zC" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_monitoring) +"zE" = ( +/obj/item/deck/cards, +/obj/structure/table/gamblingtable, +/turf/simulated/floor/plating, +/area/maintenance/engineering) +"zG" = ( +/obj/structure/sign/warning, +/turf/simulated/wall/r_wall, +/area/space) +"zH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"zI" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/engi_engine) +"zJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/blue{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"zM" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 6 + }, +/turf/simulated/floor/reinforced/airless, +/area/space) +"zN" = ( +/obj/machinery/computer/aiupload, +/turf/simulated/floor/tiled/techfloor, +/area/ai_upload) +"zO" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/engineering/atmos) +"zQ" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/engineering) +"zR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/techfloor/orange{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/storage) +"zT" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospheric_field_generator/perma, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/tcommsat/computer) +"zV" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"zX" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor/orange{ + dir = 1 + }, +/obj/machinery/air_alarm{ + frequency = 1441; + pixel_y = 22 + }, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway/lower) +"zY" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + dir = 4; + id_tag = "deck1_airlock2"; + pixel_x = -26 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/atmos/storage) +"zZ" = ( +/turf/simulated/floor/bluegrid{ + initial_gas_mix = "n2=100;TEMP=80"; + name = "Mainframe Base" + }, +/area/tcommsat/chamber) +"Aa" = ( +/obj/structure/catwalk, +/obj/machinery/camera/network/outside, +/turf/simulated/floor/airless/ceiling, +/area/space) +"Ag" = ( +/obj/machinery/vending/coffee, +/turf/simulated/floor/plating, +/area/maintenance/engineering) +"Ak" = ( +/obj/structure/cable/cyan{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/engineering/engine_smes) +"Al" = ( +/obj/machinery/power/terminal, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/engi_engine) +"An" = ( +/obj/machinery/shield_diffuser, +/obj/map_helper/airlock/door/ext_door, +/obj/machinery/access_button/airlock_exterior{ + master_tag = "deck1_airlock2"; + pixel_x = 24 + }, +/obj/machinery/door/airlock/glass_external{ + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/external_airlock, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/atmos/storage) +"Ap" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/space, +/area/space) +"Ar" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/techfloor/orange, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/locker_room) +"As" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/glass/engineeringatmos{ + name = "Damage Control Storage"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/engineering/atmospherics, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"Au" = ( +/obj/machinery/atmospherics/component/unary/outlet_injector{ + frequency = 1441; + id = "nitrous_in"; + pixel_y = 1; + power_rating = 5000; + use_power = 1 + }, +/turf/simulated/floor/reinforced/n20, +/area/space) +"Aw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/phoron, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"Ax" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/drone_fabrication) +"Ay" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"Az" = ( +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/engineering/starboardnacelle) +"AA" = ( +/obj/structure/sign/department/ass{ + pixel_x = 29 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/techfloor/orange{ + dir = 4 + }, +/obj/machinery/door/firedoor{ + dir = 2 + }, +/turf/simulated/floor/tiled, +/area/station/stairs_one) +"AB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/techfloor/orange{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway) +"AD" = ( +/obj/structure/table/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/matter_bin, +/obj/item/stock_parts/matter_bin, +/obj/item/stock_parts/capacitor, +/obj/item/stock_parts/capacitor, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/storage/tech) +"AF" = ( +/obj/machinery/ntnet_relay, +/obj/machinery/camera/network/tcomms, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled{ + icon_state = "techmaint" + }, +/area/tcommsat/chamber) +"AJ" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled/white, +/area/engineering/foyer_mezzenine) +"AL" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance/engi{ + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/engineering/department, +/turf/simulated/floor/plating, +/area/engineering/engine_monitoring) +"AN" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/engineering) +"AP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/techfloor/orange/corner, +/turf/simulated/floor/tiled, +/area/engineering/hallway) +"AR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/tcommsat/computer) +"AT" = ( +/obj/machinery/atmospherics/pipe/simple/visible/universal{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"AV" = ( +/obj/machinery/atmospherics/component/quaternary/atmos_filter{ + name = "Waste N2 Filter"; + tag_east = 1; + tag_south = 2; + tag_west = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"AX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/fire_alarm/east_mount{ + dir = 4; + pixel_x = -21 + }, +/obj/machinery/light{ + dir = 8; + light_range = 12 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"Bc" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/engineering/atmos) +"Be" = ( +/obj/machinery/washing_machine, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/obj/machinery/power/apc/west_mount{ + cell_type = /obj/item/cell/super + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/white, +/area/engineering/foyer_mezzenine) +"Bf" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/closet/hydrant{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 8 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/engi_engine) +"Bi" = ( +/obj/machinery/atmospherics/pipe/simple/visible/fuel{ + dir = 10 + }, +/obj/machinery/shield_diffuser, +/turf/simulated/wall/r_wall/prepainted/engineering, +/area/space) +"Bk" = ( +/obj/machinery/atmospherics/component/unary/heater{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch{ + color = "#FF0000" + }, +/turf/simulated/floor/tiled/techmaint, +/area/space) +"Bl" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway) +"Bm" = ( +/obj/machinery/space_heater, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/engineering/atmos/storage) +"Bo" = ( +/obj/effect/floor_decal/techfloor/orange/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/station/stairs_one) +"Bp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 8 + }, +/obj/structure/grille, +/obj/structure/window/phoronreinforced/full{ + icon_state = "phoronwindow0" + }, +/turf/simulated/floor/reinforced/airless, +/area/space) +"Bq" = ( +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"Bs" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/engineering/break_room) +"Bt" = ( +/obj/structure/railing, +/turf/simulated/floor/plating, +/area/maintenance/dormitory) +"Bu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + dir = 4; + frequency = 1380; + id_tag = "deck1_airlock"; + pixel_x = -26 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_eva) +"Bv" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/engineering) +"Bw" = ( +/obj/machinery/telecomms/relay/preset/victory/deck_three, +/turf/simulated/floor/tiled/dark{ + initial_gas_mix = "n2=100;TEMP=80" + }, +/area/tcommsat/chamber) +"Bx" = ( +/obj/structure/grille, +/obj/structure/window/phoronreinforced/full{ + icon_state = "phoronwindow0" + }, +/turf/simulated/floor/reinforced/airless, +/area/engineering/portnacelle) +"Bz" = ( +/obj/structure/sign/warning{ + name = "\improper DANGER: ENGINE EXHAUST" + }, +/turf/simulated/wall/r_wall/prepainted/engineering, +/area/space) +"BB" = ( +/obj/machinery/atmospherics/component/unary/outlet_injector{ + dir = 8; + frequency = 2346; + id = "portnacelle_in"; + power_rating = 5000 + }, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 6 + }, +/turf/simulated/floor/reinforced/airless, +/area/space) +"BC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/effect/floor_decal/techfloor/orange{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway) +"BF" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/effect/floor_decal/techfloor/orange{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/locker_room) +"BG" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/engineering/portnacelle) +"BH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techmaint, +/area/maintenance/trash_pit) +"BI" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"BJ" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ + dir = 4 + }, +/turf/simulated/floor/reinforced/airless, +/area/space) +"BM" = ( +/obj/machinery/button/remote/blast_door{ + id = "starboardnacelle_blastdoor"; + pixel_y = 24 + }, +/obj/machinery/atmospherics/component/binary/pump{ + dir = 4; + name = "Fuel Line to Thrusters" + }, +/obj/effect/floor_decal/corner/lightorange/bordercee{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/space) +"BO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/fire_alarm/south_mount{ + pixel_y = -24 + }, +/obj/effect/floor_decal/techfloor/orange{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway) +"BR" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/engi_engine) +"BV" = ( +/obj/machinery/ai_slipper, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai) +"BY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/turf/simulated/wall/r_wall/prepainted/engineering, +/area/space) +"BZ" = ( +/turf/simulated/floor/holofloor/tiled/dark, +/area/engineering/hallway/lower) +"Cb" = ( +/turf/space/basic, +/area/maintenance/engineering) +"Cf" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/shunt) +"Cg" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/rust, +/obj/machinery/shield_capacitor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/storage) +"Ch" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/engi_engine) +"Ci" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/turf/simulated/wall/r_wall/prepainted/engineering/atmos, +/area/engineering/atmos/storage) +"Cj" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/effect/floor_decal/techfloor/orange{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway) +"Cl" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/techfloor/orange, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway/lower) +"Cm" = ( +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "eng_sec_lockdown"; + name = "Security Checkpoint Blast Doors"; + opacity = 0 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/spawner/window/low_wall/borosillicate/reinforced/full/firelocks, +/obj/effect/paint_stripe/sun, +/turf/simulated/floor/plating, +/area/storage/tech) +"Cn" = ( +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/turf/simulated/floor/plating, +/area/station/stairs_one) +"Co" = ( +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/workshop) +"Cu" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 5 + }, +/obj/structure/lattice, +/turf/space, +/area/space) +"Cv" = ( +/obj/structure/closet/secure_closet/atmos_personal, +/obj/effect/floor_decal/corner_techfloor_grid{ + dir = 6 + }, +/obj/structure/window/reinforced/tinted/frosted{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"Cw" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/highsecurity{ + name = "AI Upload Access"; + req_one_access = list() + }, +/obj/map_helper/access_helper/airlock/station/command/ai_upload, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor, +/area/ai_server_room) +"Cx" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 6 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"Cy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 8 + }, +/turf/simulated/wall/r_wall/prepainted/engineering, +/area/space) +"CA" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/techfloor/orange{ + dir = 8 + }, +/obj/machinery/vending/wallmed_airlock{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway) +"CB" = ( +/turf/simulated/wall/prepainted, +/area/maintenance/dormitory) +"CF" = ( +/turf/simulated/floor/reinforced/airmix, +/area/space) +"CG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/storage) +"CI" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/blue{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"CJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/structure/closet/firecloset, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/engineering/atmos/storage) +"CL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/bluegrid, +/area/ai) +"CM" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/wall/prepainted/engineering, +/area/engineering/engine_monitoring) +"CN" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/random/trash_pile, +/turf/simulated/floor/plating, +/area/maintenance/engineering) +"CO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"CP" = ( +/obj/machinery/door/airlock{ + name = "Shell Recharging" + }, +/turf/simulated/floor/tiled/white, +/area/engineering/foyer_mezzenine) +"CR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/effect/floor_decal/spline/fancy/wood, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/engineering/hallway/lower) +"CS" = ( +/obj/random/trash_pile, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/engineering) +"CT" = ( +/obj/structure/lattice, +/turf/space, +/area/space) +"CU" = ( +/obj/machinery/cryopod/robot, +/turf/simulated/floor/tiled/techfloor, +/area/ai_server_room) +"CY" = ( +/obj/machinery/telecomms/relay/preset/victory/deck_four, +/turf/simulated/floor/tiled/dark{ + initial_gas_mix = "n2=100;TEMP=80" + }, +/area/tcommsat/chamber) +"CZ" = ( +/obj/landmark{ + name = "carpspawn" + }, +/obj/structure/lattice, +/turf/space, +/area/space) +"Dd" = ( +/obj/machinery/atmospherics/pipe/vent{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/engineering/atmos) +"Dk" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 6 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_airlock) +"Dl" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/fire_alarm/south_mount{ + pixel_y = -24 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/shunt) +"Dm" = ( +/obj/machinery/fire_alarm/south_mount{ + pixel_y = -24 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/workshop) +"Dn" = ( +/turf/space/basic, +/area/engineering/starboardnacelle) +"Do" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/visible/blue{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/engineering/atmos) +"Dp" = ( +/turf/simulated/wall/r_wall/prepainted/engineering, +/area/engineering/engine_eva) +"Dq" = ( +/obj/machinery/vending/wallmed1{ + pixel_x = 32 + }, +/obj/structure/table/bench/wooden, +/turf/simulated/floor/wood, +/area/engineering/hallway/lower) +"Dr" = ( +/obj/structure/table/standard, +/obj/structure/bedsheetbin, +/obj/random/soap, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/engineering/foyer_mezzenine) +"Ds" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/catwalk, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/engineering/hallway/lower) +"Dt" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 1 + }, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/machinery/door/airlock/glass/engineering{ + name = "Engineering Hallway"; + req_one_access = null + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway/lower) +"Du" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/storage) +"Dy" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 10 + }, +/turf/simulated/wall/r_wall/prepainted/engineering/atmos, +/area/space) +"Dz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/fire_alarm/south_mount{ + pixel_y = -24 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_smes) +"DA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_airlock) +"DD" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/wall/prepainted/engineering, +/area/engineering/drone_fabrication) +"DE" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden, +/turf/simulated/wall/r_wall/prepainted/engineering/atmos, +/area/engineering/atmos/storage) +"DF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/mob/living/simple_mob/animal/passive/snake/noodle, +/turf/simulated/floor/carpet/blucarpet, +/area/crew_quarters/heads/chief) +"DG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/storage) +"DH" = ( +/obj/spawner/window/low_wall/borosillicate/reinforced/full/firelocks, +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 10; + icon_state = "intact" + }, +/turf/simulated/floor/plating, +/area/engineering/atmos) +"DI" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/techfloor/orange{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway) +"DK" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/crate, +/obj/item/stack/material/phoron{ + amount = 25 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/storage) +"DL" = ( +/obj/structure/disposalpipe/up{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/engi_engine) +"DR" = ( +/obj/structure/ladder/up, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/engineering) +"DS" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/tcommsat/computer) +"DU" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/engineering/portnacelle) +"DV" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway/lower) +"DX" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/trash_pit) +"DY" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/drone_fabrication) +"Eb" = ( +/obj/machinery/door/firedoor/glass{ + dir = 8 + }, +/obj/machinery/atmospherics/valve{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"Ed" = ( +/turf/simulated/floor/wood, +/area/engineering/hallway/lower) +"Ef" = ( +/obj/machinery/telecomms/processor/preset_two, +/turf/simulated/floor/tiled/dark{ + initial_gas_mix = "n2=100;TEMP=80" + }, +/area/tcommsat/chamber) +"Ei" = ( +/obj/machinery/computer/general_air_control/large_tank_control{ + frequency = 2346; + input_tag = "portnacelle_in"; + name = "Burn Chamber Air Control"; + output_tag = ""; + pressure_setting = 0; + sensors = list("portnacelle_sensor"="Burn Chamber"); + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"Ej" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/techfloor/orange, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway/lower) +"Ek" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/glasses/meson, +/obj/item/clothing/glasses/welding/superior, +/obj/structure/closet/hydrant{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/chief) +"El" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway) +"Em" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/engineering/break_room) +"Eo" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing, +/turf/simulated/floor/plating, +/area/maintenance/engineering) +"Es" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 10 + }, +/obj/structure/lattice, +/turf/space, +/area/space) +"Eu" = ( +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/engineering/engine_smes) +"Ev" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/item/radio/off, +/obj/item/radio/off{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/item/radio/off{ + pixel_y = 6 + }, +/obj/item/radio/off{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/storage) +"Ew" = ( +/obj/machinery/atmospherics/component/unary/outlet_injector{ + frequency = 1441; + id = "n2_in"; + power_rating = 5000; + use_power = 1 + }, +/turf/simulated/floor/reinforced/nitrogen, +/area/space) +"EA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor/orange{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/locker_room) +"EB" = ( +/obj/structure/table/standard, +/obj/item/aiModule/asimov, +/obj/item/aiModule/freeformcore, +/obj/item/aiModule/corp, +/obj/item/aiModule/paladin, +/obj/item/aiModule/robocop, +/turf/simulated/floor/tiled/techfloor, +/area/ai_upload) +"EC" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway) +"ED" = ( +/turf/simulated/floor/tiled/techmaint, +/area/maintenance/trash_pit) +"EG" = ( +/obj/machinery/shield_diffuser, +/obj/map_helper/airlock/door/ext_door, +/obj/machinery/door/airlock/glass_external{ + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/external_airlock, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_eva) +"EK" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/space, +/area/space) +"EL" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/wood/broken, +/area/maintenance/dormitory) +"EN" = ( +/turf/simulated/shuttle/wall/voidcraft/blue, +/area/engineering/hallway/lower) +"EP" = ( +/obj/machinery/atmospherics/pipe/simple/visible/blue{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"ER" = ( +/turf/simulated/floor/airless/ceiling, +/area/space) +"ES" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor/orange{ + dir = 4 + }, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway) +"EV" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 10 + }, +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/engineering/hallway/lower) +"EW" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black, +/obj/machinery/atmospherics/pipe/simple/visible/blue{ + dir = 4 + }, +/obj/machinery/computer/general_air_control/large_tank_control{ + input_tag = "o2_in"; + name = "Oxygen Supply Control"; + output_tag = "o2_out"; + sensors = list("o2_sensor"="Tank") + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"EX" = ( +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/engineering/engine_smes) +"EY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 5 + }, +/turf/simulated/wall/r_wall/prepainted/engineering, +/area/space) +"EZ" = ( +/turf/simulated/wall/r_wall/prepainted/engineering, +/area/engineering/portnacelle) +"Fa" = ( +/obj/machinery/computer/fission_monitor, +/obj/effect/floor_decal/techfloor/orange{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/engineering/engine_monitoring) +"Fb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"Ff" = ( +/obj/landmark/spawnpoint/job/atmospheric_technician, +/obj/item/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 26 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/engineering/atmos/storage) +"Fi" = ( +/obj/machinery/air_sensor{ + frequency = 2346; + id_tag = "portnacelle_sensor" + }, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 10 + }, +/turf/simulated/floor/reinforced/airless, +/area/space) +"Fj" = ( +/turf/simulated/wall/r_wall/prepainted/engineering, +/area/engineering/engine_monitoring) +"Fl" = ( +/obj/machinery/light/small/emergency{ + dir = 1 + }, +/obj/structure/railing, +/turf/simulated/floor/plating, +/area/maintenance/engi_engine) +"Fm" = ( +/obj/machinery/telecomms/relay/preset/victory/deck_one, +/turf/simulated/floor/tiled/dark{ + initial_gas_mix = "n2=100;TEMP=80" + }, +/area/tcommsat/chamber) +"Fn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/storage) +"Fo" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 1 + }, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/structure/table/rack{ + dir = 8; + layer = 2.6 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/storage) +"Fq" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/camera/network/engineering, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_airlock) +"Fs" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/techfloor/orange{ + dir = 8 + }, +/obj/machinery/camera/network/engineering{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway) +"Ft" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/closet/firecloset, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/engineering/atmos/storage) +"Fu" = ( +/obj/machinery/air_alarm{ + frequency = 1441; + pixel_y = 22 + }, +/obj/random/trash_pile, +/turf/simulated/floor/plating, +/area/maintenance/engineering) +"Fw" = ( +/turf/simulated/wall/prepainted/engineering, +/area/maintenance/engi_engine) +"Fx" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/table/rack{ + dir = 8; + layer = 2.6 + }, +/obj/machinery/door/window/northright{ + name = "Engineering Hardsuits"; + req_access = list(11) + }, +/obj/item/clothing/head/helmet/space/void/atmos, +/obj/item/clothing/head/helmet/space/void/atmos, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/suit/space/void/atmos, +/obj/item/clothing/suit/space/void/atmos, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/obj/effect/floor_decal/techfloor/orange, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/storage) +"Fy" = ( +/obj/machinery/vending/coffee, +/turf/simulated/floor/wood, +/area/engineering/hallway/lower) +"FA" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/holopad, +/turf/simulated/floor/tiled/techfloor, +/area/ai_upload_foyer) +"FB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"FC" = ( +/obj/structure/table/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/circuitboard/security/mining{ + pixel_x = 1; + pixel_y = 3 + }, +/obj/item/circuitboard/machine/lathe/autolathe, +/obj/item/circuitboard/scan_consolenew{ + pixel_x = 6; + pixel_y = -3 + }, +/turf/simulated/floor/plating, +/area/storage/tech) +"FF" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 10 + }, +/turf/simulated/floor/reinforced/airless, +/area/space) +"FH" = ( +/obj/structure/catwalk, +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/engineering) +"FJ" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood/cee, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/engineering/hallway) +"FK" = ( +/obj/machinery/porta_turret/ai_defense, +/turf/simulated/floor/tiled/techfloor, +/area/ai_upload) +"FO" = ( +/obj/machinery/fire_alarm/east_mount{ + dir = 4; + pixel_x = -21 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"FP" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/maintenance/engineering) +"FQ" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/engineering/starboardnacelle) +"FS" = ( +/obj/machinery/light/small/emergency{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/engineering) +"FT" = ( +/obj/spawner/window/low_wall/borosillicate/reinforced/full/firelocks, +/obj/machinery/atmospherics/pipe/manifold/visible/red{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/engineering/atmos) +"FU" = ( +/obj/machinery/telecomms/processor/preset_three, +/turf/simulated/floor/tiled/dark{ + initial_gas_mix = "n2=100;TEMP=80" + }, +/area/tcommsat/chamber) +"FV" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled, +/area/engineering/hallway) +"FX" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 5 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"FY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/engineering{ + name = "Engineering Break Room"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/engineering/department, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/break_room) +"FZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/turf/simulated/floor/plating, +/area/maintenance/engi_engine) +"Ga" = ( +/obj/structure/cable, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/workshop) +"Gb" = ( +/obj/effect/floor_decal/techfloor/orange, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway/lower) +"Gc" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"Gd" = ( +/obj/machinery/air_alarm{ + frequency = 1441; + pixel_y = 22 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"Gh" = ( +/obj/structure/lattice, +/obj/structure/lattice, +/turf/space/basic, +/area/space) +"Gl" = ( +/obj/structure/barricade, +/turf/simulated/floor/wood/broken, +/area/maintenance/dormitory) +"Gm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/hatch{ + name = "Starboard Nacelle"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/engineering/department, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/portnacelle) +"Gn" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"Gp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/map_helper/access_helper/airlock/station/head_office/chief_engineer, +/obj/machinery/door/airlock/command{ + name = "Chief Engineer"; + req_one_access = null + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/chief) +"Gq" = ( +/turf/simulated/wall/r_wall/prepainted/command, +/area/ai_upload_foyer) +"Gt" = ( +/obj/machinery/light, +/obj/structure/bed/chair/comfy/beige{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/engineering/break_room) +"Gv" = ( +/obj/structure/table/rack{ + dir = 8; + layer = 2.9 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/item/clothing/mask/breath, +/obj/item/hardsuit/ce/equipped{ + req_access = list(56) + }, +/obj/machinery/fire_alarm/west_mount{ + pixel_x = -24 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/chief) +"Gy" = ( +/turf/simulated/wall/prepainted, +/area/station/stairs_one) +"Gz" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/wall/prepainted/engineering, +/area/maintenance/engi_engine) +"GB" = ( +/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/cable{ + icon_state = "16-0" + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/door/firedoor, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing, +/turf/simulated/floor/plating, +/area/maintenance/engineering) +"GE" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/tcommsat/computer) +"GF" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/techfloor/orange{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway/lower) +"GG" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor/orange, +/turf/simulated/floor/tiled, +/area/engineering/hallway/lower) +"GI" = ( +/obj/effect/floor_decal/techfloor{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ai_upload_foyer) +"GJ" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/visible/black, +/obj/machinery/computer/general_air_control/large_tank_control{ + input_tag = "co2_in"; + name = "Carbon Dioxide Supply Control"; + output_tag = "co2_out"; + sensors = list("co2_sensor"="Tank") + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"GM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/locker_room) +"GO" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/spray/cleaner, +/obj/item/multitool{ + pixel_x = 5 + }, +/obj/item/t_scanner, +/obj/item/floor_painter, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/storage) +"GP" = ( +/obj/machinery/fire_alarm/south_mount{ + pixel_y = -24 + }, +/obj/structure/ladder/up, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/maintenance/engi_engine) +"GQ" = ( +/obj/machinery/door/airlock, +/turf/simulated/floor/tiled/white, +/area/engineering/foyer_mezzenine) +"GS" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 10 + }, +/obj/machinery/computer/general_air_control/large_tank_control{ + frequency = 2345; + input_tag = "starboardnacelle_in"; + name = "Burn Chamber Air Control"; + output_tag = ""; + pressure_setting = 0; + sensors = list("starboardnacelle_sensor"="Burn Chamber") + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"GV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"GZ" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"Ha" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/power/apc/south_mount, +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/obj/structure/cable/cyan{ + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_smes) +"Hc" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/locker_room) +"Hd" = ( +/obj/machinery/vending/fitness, +/turf/simulated/floor/carpet/blucarpet, +/area/engineering/break_room) +"He" = ( +/obj/structure/lattice, +/obj/structure/lattice, +/turf/space, +/area/space) +"Hf" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/techfloor/orange{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway) +"Hg" = ( +/turf/simulated/wall/r_wall/prepainted/engineering, +/area/maintenance/engi_engine) +"Hj" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/engineering/hallway) +"Hk" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/storage) +"Hl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 8 + }, +/obj/machinery/light/small, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"Hr" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/catwalk, +/obj/effect/floor_decal/spline/fancy/wood/cee, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/engineering/hallway/lower) +"Hs" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 1 + }, +/obj/landmark/spawnpoint/job/chief_engineer, +/turf/simulated/floor/carpet/blucarpet, +/area/crew_quarters/heads/chief) +"Ht" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/techfloor/orange, +/turf/simulated/floor/tiled, +/area/station/stairs_one) +"Hu" = ( +/obj/machinery/camera/network/engineering, +/obj/effect/floor_decal/techfloor/orange{ + dir = 1 + }, +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway/lower) +"Hv" = ( +/obj/machinery/light/small/emergency{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/engi_engine) +"Hw" = ( +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "portnacelle_blastdoor"; + opacity = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ + dir = 4 + }, +/obj/effect/paint_stripe/sun, +/obj/structure/window/phoronreinforced/full{ + icon_state = "phoronwindow0" + }, +/obj/structure/grille, +/turf/simulated/floor/reinforced/airless, +/area/space) +"Hx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"Hz" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_monitoring) +"HC" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/engineering/break_room) +"HE" = ( +/turf/space/basic, +/area/engineering/atmos/storage) +"HG" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/engineering/atmos) +"HH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/table/standard, +/obj/machinery/button/remote/emitter{ + desc = "A remote control-switch for the engine emitter."; + id = "EngineEmitter"; + name = "Engine Emitter"; + pixel_x = 6; + pixel_y = 7; + req_access = list(10) + }, +/obj/machinery/button/remote/blast_door{ + desc = "A remote control-switch for the engine charging port."; + id = "SupermatterPort"; + name = "Reactor Blast Doors"; + pixel_x = -6; + pixel_y = 7; + req_access = list(10) + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/engineering/engine_monitoring) +"HI" = ( +/obj/structure/table/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/plant_analyzer, +/obj/item/healthanalyzer, +/obj/item/atmos_analyzer, +/obj/item/atmos_analyzer, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/storage/tech) +"HL" = ( +/obj/structure/railing, +/turf/simulated/floor/plating, +/area/engineering/portnacelle) +"HM" = ( +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/obj/machinery/atmospherics/pipe/simple/visible/black, +/turf/simulated/floor/plating, +/area/engineering/atmos) +"HN" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 10 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"HP" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"HS" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/drone_fabrication) +"HV" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black, +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"HW" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Trash Pit" + }, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/maintenance/trash_pit) +"HY" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"HZ" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"Ia" = ( +/obj/structure/table/reinforced, +/obj/machinery/computer/skills, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/chief) +"Ic" = ( +/turf/simulated/floor/plating, +/area/engineering/engine_smes) +"Id" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 4 + }, +/turf/simulated/wall/r_wall/prepainted/engineering/atmos, +/area/space) +"Ie" = ( +/obj/machinery/shield_diffuser, +/obj/map_helper/airlock/door/ext_door, +/obj/machinery/door/airlock/glass_external{ + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/external_airlock, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/atmos/storage) +"Ig" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled, +/area/engineering/hallway) +"Ih" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai) +"Ik" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "eng_sec_lockdown"; + name = "Security Checkpoint Blast Doors"; + opacity = 0 + }, +/obj/spawner/window/low_wall/borosillicate/reinforced/full/firelocks, +/obj/effect/paint_stripe/sun, +/turf/simulated/floor, +/area/storage/tech) +"Il" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_monitoring) +"Im" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/crate, +/obj/item/inducer, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/storage) +"In" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/visible/black{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/engineering/atmos) +"Io" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/carpet/blucarpet, +/area/crew_quarters/heads/chief) +"Iq" = ( +/turf/simulated/floor/tiled/techmaint, +/area/tcommsat/computer) +"It" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 6 + }, +/obj/machinery/door/window/northright{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/engineering/atmos) +"Iu" = ( +/obj/machinery/camera/network/command{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai) +"Iw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/suit_cycler/engineering, +/obj/effect/floor_decal/techfloor/orange, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/storage) +"Ix" = ( +/obj/machinery/power/sensor{ + name = "Powernet Sensor - Telecomms Subgrid"; + name_tag = "Telecomms Subgrid" + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/tcommsat/powercontrol) +"Iz" = ( +/obj/machinery/telecomms/server/presets/supply, +/turf/simulated/floor/tiled/dark{ + initial_gas_mix = "n2=100;TEMP=80" + }, +/area/tcommsat/chamber) +"IB" = ( +/obj/machinery/door/firedoor{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/techfloor/orange/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/station/stairs_one) +"IC" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/blue, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"ID" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/effect/floor_decal/spline/fancy/wood, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/engineering/hallway/lower) +"IG" = ( +/obj/machinery/air_sensor{ + frequency = 1441; + id_tag = "co2_sensor" + }, +/turf/simulated/floor/reinforced/carbon_dioxide, +/area/space) +"IH" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/techfloor/orange, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway/lower) +"IM" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"IO" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 9 + }, +/turf/space, +/area/space) +"IP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/white, +/area/engineering/foyer_mezzenine) +"IR" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/engineering/engine_eva) +"IS" = ( +/obj/machinery/computer/security/engineering, +/obj/machinery/camera/network/engineering, +/turf/simulated/floor/tiled, +/area/engineering/engine_monitoring) +"IT" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/storage) +"IU" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_monitoring) +"IV" = ( +/obj/random/trash_pile, +/turf/simulated/floor/plating, +/area/maintenance/engi_engine) +"IW" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/obj/effect/floor_decal/techfloor/orange{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway/lower) +"IX" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/engineering/engine_smes) +"IY" = ( +/turf/simulated/wall/prepainted, +/area/maintenance/engineering) +"IZ" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/trash_pit) +"Ja" = ( +/obj/machinery/light/small/emergency{ + dir = 1 + }, +/obj/random/trash_pile, +/obj/structure/railing, +/turf/simulated/floor/plating, +/area/maintenance/engineering) +"Jd" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"Jf" = ( +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "eng_sec_lockdown"; + name = "Security Checkpoint Blast Doors"; + opacity = 0 + }, +/obj/spawner/window/low_wall/borosillicate/reinforced/full/firelocks, +/obj/effect/paint_stripe/sun, +/turf/simulated/floor, +/area/storage/tech) +"Jg" = ( +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/machinery/door/airlock/hatch{ + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/engineering/department, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_airlock) +"Ji" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/obj/effect/floor_decal/techfloor/orange{ + dir = 1 + }, +/obj/structure/table/rack{ + dir = 8; + layer = 2.6 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/tank/jetpack/carbondioxide, +/obj/item/tank/jetpack/carbondioxide, +/obj/item/tank/jetpack/carbondioxide, +/obj/machinery/door/window/northleft{ + dir = 2; + name = "Jetpack Storage"; + req_access = list(24) + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/storage) +"Jj" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/engineering/atmos) +"Jl" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/engineering/break_room) +"Jm" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/machinery/door/airlock/maintenance/engi{ + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/maintenance, +/turf/simulated/floor/tiled/techmaint, +/area/tcommsat/computer) +"Jn" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 10 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"Jo" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 1 + }, +/obj/machinery/door/airlock/glass/engineering{ + name = "Engineering Hallway"; + req_one_access = null + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway) +"Jp" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green, +/obj/machinery/atmospherics/component/binary/pump{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"Jr" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/workshop) +"Jt" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/machinery/atmospherics/portables_connector, +/turf/simulated/floor/plating, +/area/engineering/atmos) +"Ju" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/engineering/hallway/lower) +"Jx" = ( +/obj/machinery/button/ignition{ + id = "starboardnacelle_igniter"; + pixel_y = -28 + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/item/trash/popcorn, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"Jy" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"JA" = ( +/obj/structure/cable/cyan{ + icon_state = "2-8" + }, +/turf/simulated/floor/bluegrid, +/area/ai) +"JB" = ( +/obj/structure/table/rack{ + dir = 8; + layer = 2.6 + }, +/obj/item/storage/belt, +/obj/item/storage/belt, +/obj/item/storage/belt, +/obj/machinery/camera/network/engineering{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"JC" = ( +/obj/structure/window/reinforced, +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/obj/machinery/shower{ + dir = 8; + name = "emergency shower" + }, +/turf/simulated/floor/tiled, +/area/engineering/engine_airlock) +"JD" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_airlock) +"JE" = ( +/turf/simulated/wall/prepainted/engineering, +/area/space) +"JF" = ( +/obj/structure/table/standard, +/obj/item/aiModule/oxygen, +/obj/item/aiModule/oneHuman, +/obj/item/aiModule/purge, +/obj/item/aiModule/antimov, +/obj/item/aiModule/teleporterOffline, +/turf/simulated/floor/tiled/techfloor, +/area/ai_upload) +"JG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 4 + }, +/turf/simulated/wall/prepainted/engineering/atmos, +/area/engineering/atmos/storage) +"JI" = ( +/obj/machinery/camera/network/engineering, +/obj/landmark/spawnpoint/job/atmospheric_technician, +/turf/simulated/floor/tiled/steel_dirty, +/area/engineering/atmos/storage) +"JJ" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/window/phoronreinforced, +/obj/machinery/atmospherics/pipe/tank/phoron, +/turf/simulated/floor/tiled/techmaint, +/area/space) +"JM" = ( +/obj/machinery/air_alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/item/tool/wrench, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"JN" = ( +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "eng_sec_lockdown"; + name = "Security Checkpoint Blast Doors"; + opacity = 0 + }, +/obj/structure/cable, +/obj/spawner/window/low_wall/borosillicate/reinforced/full/firelocks, +/obj/effect/paint_stripe/sun, +/turf/simulated/floor/plating, +/area/storage/tech) +"JP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/techfloor/orange, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway) +"JR" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/engineering) +"JT" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/catwalk, +/obj/effect/floor_decal/spline/fancy/wood/cee{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/station/stairs_one) +"JV" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 5 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"JW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/catwalk, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/engineering/hallway/lower) +"JX" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging, +/turf/simulated/floor/reinforced/airless, +/area/space) +"Kb" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/blue{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"Kd" = ( +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -23 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"Ke" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_monitoring) +"Kg" = ( +/obj/structure/lattice, +/obj/structure/grille, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing, +/turf/space, +/area/space) +"Ki" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ai_server_room) +"Ko" = ( +/obj/machinery/telecomms/server/presets/command, +/turf/simulated/floor/tiled/dark{ + initial_gas_mix = "n2=100;TEMP=80" + }, +/area/tcommsat/chamber) +"Kq" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/storage) +"Kr" = ( +/turf/simulated/floor/tiled/techmaint, +/area/engineering/drone_fabrication) +"Ks" = ( +/obj/machinery/blackbox_recorder, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark{ + initial_gas_mix = "n2=100;TEMP=80" + }, +/area/tcommsat/chamber) +"Kv" = ( +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/engineering/atmos) +"Kx" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway/lower) +"KA" = ( +/obj/structure/catwalk, +/obj/structure/handrail, +/turf/simulated/floor/airless/ceiling, +/area/space) +"KE" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/effect/floor_decal/industrial/outline/red, +/obj/machinery/portable_atmospherics/powered/scrubber, +/turf/simulated/floor/tiled/steel_ridged, +/area/engineering/atmos/storage) +"KG" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/table/rack{ + dir = 8; + layer = 2.6 + }, +/obj/machinery/door/window/northright{ + name = "Engineering Hardsuits"; + req_access = list(11) + }, +/obj/item/hardsuit/eva/equipped, +/obj/item/hardsuit/eva/equipped, +/obj/item/hardsuit/eva/equipped, +/obj/effect/floor_decal/techfloor/orange, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/storage) +"KI" = ( +/obj/machinery/pda_multicaster, +/turf/simulated/floor/tiled/dark{ + initial_gas_mix = "n2=100;TEMP=80" + }, +/area/tcommsat/chamber) +"KJ" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on, +/obj/effect/floor_decal/techfloor/orange{ + dir = 5 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway/lower) +"KK" = ( +/turf/simulated/floor/reinforced/oxygen, +/area/space) +"KM" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/table/rack/shelf/steel, +/obj/item/book/manual/evaguide, +/obj/item/book/manual/atmospipes, +/obj/item/book/manual/engineering_guide, +/obj/item/book/manual/engineering_construction, +/obj/item/book/manual/supermatter_engine, +/obj/item/book/manual/rust_engine, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_monitoring) +"KO" = ( +/obj/random/trash_pile, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/engineering) +"KP" = ( +/obj/structure/railing, +/turf/simulated/floor/plating, +/area/maintenance/engineering) +"KQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/carpet/blucarpet, +/area/crew_quarters/heads/chief) +"KU" = ( +/obj/structure/table/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/stock_parts/matter_bin, +/obj/item/stock_parts/matter_bin, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/console_screen, +/obj/item/circuitboard/machine/lathe/autolathe, +/turf/simulated/floor, +/area/storage/tech) +"KV" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/machinery/door/window/westleft, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_airlock) +"KW" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/floor_decal/corner_techfloor_grid{ + dir = 6 + }, +/obj/machinery/camera/network/command{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ai_upload_foyer) +"KX" = ( +/turf/simulated/wall/prepainted/engineering, +/area/tcommsat/powercontrol) +"KY" = ( +/obj/effect/floor_decal/techfloor/orange, +/obj/structure/table/rack{ + dir = 8; + layer = 2.6 + }, +/obj/item/suit_cooling_unit, +/obj/item/suit_cooling_unit, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/storage) +"KZ" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/engineering/engine_eva) +"La" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled, +/area/engineering/hallway) +"Lb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"Lc" = ( +/obj/machinery/atmospherics/pipe/simple/visible/blue, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"Ld" = ( +/obj/structure/filingcabinet, +/turf/simulated/floor/tiled/dark, +/area/tcommsat/computer) +"Le" = ( +/obj/machinery/telecomms/bus/preset_two/victory, +/turf/simulated/floor/tiled/dark{ + initial_gas_mix = "n2=100;TEMP=80" + }, +/area/tcommsat/chamber) +"Lg" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/trash_pit) +"Lh" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor/orange{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/locker_room) +"Li" = ( +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/camera/network/command{ + dir = 1 + }, +/turf/simulated/floor/bluegrid, +/area/ai) +"Lj" = ( +/obj/machinery/atmospherics/component/quaternary/mixer{ + tag_east = 2; + tag_south = 1; + tag_south_con = 0.21; + tag_west = 1; + tag_west_con = 0.79 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"Ll" = ( +/obj/machinery/fire_alarm/south_mount{ + pixel_y = -24 + }, +/obj/machinery/computer/ship/navigation/telescreen{ + pixel_x = -32 + }, +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/storage) +"Lq" = ( +/obj/machinery/door/airlock/maintenance/engi, +/turf/simulated/floor/plating, +/area/engineering/starboardnacelle) +"Lt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"Lv" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/item/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 26 + }, +/obj/structure/catwalk, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/engineering/engine_smes) +"Lx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/locker_room) +"Ly" = ( +/obj/machinery/camera/network/engineering, +/obj/effect/floor_decal/techfloor/orange{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway/lower) +"Lz" = ( +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 2; + icon_state = "pdoor0"; + id = "engsec_ld_c"; + name = "CE Office Blast Doors"; + opacity = 0 + }, +/obj/effect/paint_stripe/sun, +/turf/simulated/floor/plating, +/area/crew_quarters/heads/chief) +"LB" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/engineering/engine_monitoring) +"LC" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/camera/network/tcomms{ + dir = 9 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/drone_fabrication) +"LD" = ( +/obj/spawner/window/low_wall/borosillicate/reinforced/full/firelocks, +/obj/machinery/atmospherics/pipe/simple/visible/green, +/turf/simulated/floor/plating, +/area/engineering/atmos) +"LE" = ( +/obj/machinery/atmospherics/pipe/simple/visible/blue{ + dir = 5 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"LH" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 5 + }, +/turf/simulated/floor/reinforced/airless, +/area/space) +"LJ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/engineering/atmos) +"LL" = ( +/obj/machinery/air_alarm{ + frequency = 1441; + pixel_y = 22 + }, +/obj/effect/floor_decal/techfloor/orange{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway) +"LM" = ( +/turf/simulated/wall/r_wall/prepainted/command, +/area/ai) +"LN" = ( +/obj/machinery/sparker{ + id = "starboardnacelle_igniter"; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 9 + }, +/obj/machinery/sparker{ + id = "starboardnacelle_igniter"; + pixel_x = 24 + }, +/turf/simulated/floor/reinforced/airless, +/area/space) +"LP" = ( +/obj/structure/table/reinforced, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/recharger, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/chief) +"LQ" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/storage) +"LR" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"LS" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/table/rack{ + dir = 8; + layer = 2.6 + }, +/obj/machinery/door/window/northleft{ + name = "Engineering Hardsuits"; + req_access = list(11) + }, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/suit/space/void/engineering, +/obj/item/clothing/mask/breath, +/obj/item/clothing/head/helmet/space/void/engineering, +/obj/item/clothing/head/helmet/space/void/engineering, +/obj/item/clothing/mask/breath, +/obj/item/clothing/suit/space/void/engineering, +/obj/item/clothing/shoes/magboots, +/obj/machinery/light, +/obj/effect/floor_decal/techfloor/orange, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/storage) +"LX" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 10 + }, +/obj/machinery/sparker{ + id = "portnacelle_igniter"; + pixel_x = 24 + }, +/turf/simulated/floor/reinforced/airless, +/area/space) +"LY" = ( +/obj/machinery/telecomms/server/presets/science, +/turf/simulated/floor/tiled/dark{ + initial_gas_mix = "n2=100;TEMP=80" + }, +/area/tcommsat/chamber) +"LZ" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/engi_engine) +"Mb" = ( +/obj/structure/railing, +/obj/machinery/door/firedoor, +/obj/machinery/computer/guestpass{ + dir = 4; + pixel_x = -28 + }, +/obj/effect/floor_decal/techfloor/orange{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/station/stairs_one) +"Mc" = ( +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/turf/simulated/floor/plating, +/area/maintenance/engineering) +"Mh" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/glass/engineeringatmos{ + name = "Damage Control Storage"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/engineering/atmospherics, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"Mj" = ( +/obj/machinery/light/small, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"Ml" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 1 + }, +/obj/machinery/door/airlock/hatch{ + name = "Port Nacelle"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/engineering/department, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/portnacelle) +"Mn" = ( +/obj/machinery/atmospherics/component/unary/outlet_injector{ + frequency = 1441; + id = "co2_in"; + pixel_y = 1; + power_rating = 5000; + use_power = 1 + }, +/turf/simulated/floor/reinforced/carbon_dioxide, +/area/space) +"Mp" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/dark, +/area/storage/tech) +"Mq" = ( +/obj/machinery/shield_diffuser, +/obj/machinery/atmospherics/pipe/simple/visible/fuel{ + dir = 9 + }, +/turf/simulated/wall/r_wall/prepainted/engineering, +/area/space) +"Ms" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/tcommsat/powercontrol) +"Mt" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 10 + }, +/turf/space, +/area/space) +"Mu" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/obj/spawner/window/low_wall/borosillicate/full/firelocks, +/obj/effect/paint_stripe/sun, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"Mv" = ( +/obj/machinery/atmospherics/component/quaternary/atmos_filter{ + name = "Waste O2 Filter"; + tag_north = 1; + tag_south = 2; + tag_west = 3 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"Mw" = ( +/turf/simulated/shuttle/wall/voidcraft/hard_corner, +/area/engineering/hallway/lower) +"Mx" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/component/unary/vent_pump/on, +/obj/effect/floor_decal/techfloor/orange{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway) +"My" = ( +/obj/machinery/camera/network/tcomms, +/turf/simulated/floor/tiled/techmaint, +/area/tcommsat/computer) +"Mz" = ( +/obj/structure/table/rack/shelf/steel, +/obj/item/flashlight, +/obj/item/flashlight, +/obj/item/flashlight, +/turf/simulated/floor/tiled/dark, +/area/tcommsat/computer) +"MB" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"MC" = ( +/obj/random/trash_pile, +/obj/structure/railing, +/turf/simulated/floor/plating, +/area/maintenance/engineering) +"MD" = ( +/obj/machinery/ai_slipper, +/obj/structure/cable/cyan{ + icon_state = "1-4" + }, +/obj/effect/floor_decal/techfloor/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/bluegrid, +/area/ai) +"ME" = ( +/turf/simulated/floor/plating, +/area/maintenance/engi_engine) +"MF" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/catwalk, +/obj/effect/floor_decal/spline/fancy/wood, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/engineering/hallway/lower) +"MH" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"MI" = ( +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/machinery/door/airlock/glass/engineering{ + name = "Engineering Equipment"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/engineering/equipment, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/storage) +"MK" = ( +/obj/machinery/air_alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/structure/table/standard, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/effect/floor_decal/techfloor/orange, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = 3 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_monitoring) +"MM" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/light, +/turf/simulated/floor/plating, +/area/engineering/atmos) +"MN" = ( +/obj/machinery/atmospherics/component/trinary/mixer/m_mixer{ + dir = 4 + }, +/obj/machinery/light/small, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"MP" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/white, +/area/engineering/foyer_mezzenine) +"MR" = ( +/obj/machinery/porta_turret/crescent{ + density = 1; + faction = "neutral" + }, +/turf/simulated/floor/airless/ceiling, +/area/ai) +"MS" = ( +/obj/machinery/atmospherics/component/unary/vent_pump{ + external_pressure_bound = 0; + external_pressure_bound_default = 0; + frequency = 1441; + icon_state = "map_vent_in"; + id_tag = "o2_out"; + initialize_directions = 1; + internal_pressure_bound = 4000; + internal_pressure_bound_default = 4000; + pressure_checks = 2; + pressure_checks_default = 2; + pump_direction = 0; + on = 1 + }, +/turf/simulated/floor/reinforced/oxygen, +/area/space) +"MU" = ( +/obj/machinery/shieldgen, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/camera/network/engineering, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/storage) +"MV" = ( +/obj/machinery/power/apc/west_mount, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/turf/simulated/floor/wood, +/area/engineering/break_room) +"MZ" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_airlock) +"Na" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_monitoring) +"Nb" = ( +/obj/machinery/keycard_auth{ + pixel_y = -28 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/chief) +"Ne" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"Nf" = ( +/turf/simulated/wall/r_wall/prepainted/engineering, +/area/engineering/engine_smes) +"Ng" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/catwalk, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/engineering/hallway/lower) +"Nh" = ( +/obj/structure/closet/hydrant{ + pixel_x = 32 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/engineering/break_room) +"Ni" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 1 + }, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway/lower) +"Nj" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_smes) +"Nm" = ( +/turf/simulated/wall/r_wall/prepainted/engineering, +/area/engineering/drone_fabrication) +"Nn" = ( +/turf/space/basic, +/area/engineering/atmos) +"No" = ( +/obj/structure/table/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/circuitboard/unary_atmos/heater, +/obj/item/circuitboard/unary_atmos/cooler{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/circuitboard/massive_gas_pump, +/obj/item/circuitboard/massive_heat_pump{ + pixel_x = 3; + pixel_y = -3 + }, +/turf/simulated/floor/plating, +/area/storage/tech) +"Nq" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/map_helper/access_helper/airlock/station/engineering/equipment, +/obj/machinery/door/airlock/glass/engineering{ + name = "Engineering Equipment"; + req_one_access = null + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/storage) +"Nr" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 10 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_monitoring) +"Nu" = ( +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_airlock) +"Nw" = ( +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "starboardnacelle_blastdoor"; + opacity = 0 + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/structure/grille, +/obj/structure/window/phoronreinforced/full{ + icon_state = "phoronwindow0" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"Nx" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor, +/area/storage/tech) +"Nz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/engineering/foyer_mezzenine) +"NB" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"NH" = ( +/obj/structure/table/reinforced, +/obj/fiftyspawner/wood, +/obj/fiftyspawner/wood, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/storage) +"NI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/vending/wallmed1{ + pixel_x = 32 + }, +/obj/effect/floor_decal/techfloor/orange{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/station/stairs_one) +"NJ" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor/orange{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway/lower) +"NK" = ( +/turf/space/basic, +/area/engineering/portnacelle) +"NN" = ( +/obj/machinery/air_sensor{ + frequency = 1441; + id_tag = "tox_sensor" + }, +/turf/simulated/floor/reinforced/phoron, +/area/engineering/atmos) +"NP" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 9 + }, +/obj/machinery/vending/engivend, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/storage) +"NR" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/closet/firecloset, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_eva) +"NS" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/techfloor/orange, +/obj/machinery/fire_alarm/south_mount{ + pixel_y = -24 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/engineering/hallway/lower) +"NU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/effect/floor_decal/techfloor/orange{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/storage) +"NV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/break_room) +"NW" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/ai_server_room) +"NY" = ( +/obj/machinery/blackbox_recorder, +/turf/simulated/floor/tiled/techfloor, +/area/ai_server_room) +"Oc" = ( +/turf/simulated/wall/prepainted, +/area/maintenance/trash_pit) +"Of" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"Og" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 1 + }, +/obj/machinery/camera/network/engineering, +/turf/simulated/floor/tiled, +/area/engineering/hallway) +"Ok" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"Ol" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 9 + }, +/obj/effect/floor_decal/corner_techfloor_grid{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/storage) +"Om" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/maintenance/engi_engine) +"On" = ( +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/effect/floor_decal/techfloor/orange{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/storage) +"Oq" = ( +/turf/simulated/wall/r_wall/prepainted/engineering, +/area/engineering/starboardnacelle) +"Or" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/blue, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"Os" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/engineering) +"Ot" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black, +/obj/machinery/fire_alarm/east_mount, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"Ou" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/dispenser{ + phorontanks = 0 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"Ov" = ( +/obj/machinery/power/apc/east_mount, +/obj/effect/floor_decal/techfloor/orange{ + dir = 4 + }, +/obj/structure/cable/green, +/obj/structure/closet/toolcloset, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/locker_room) +"Ox" = ( +/turf/simulated/wall/r_wall/prepainted/engineering, +/area/maintenance/engineering) +"Oy" = ( +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/engineering) +"Oz" = ( +/obj/structure/table/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/circuitboard/robotics{ + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/circuitboard/mecha_control{ + pixel_x = 1; + pixel_y = -1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/storage/tech) +"OA" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor/orange{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway) +"OC" = ( +/obj/machinery/button/remote/blast_door{ + id = "portnacelle_blastdoor"; + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"OD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/effect/floor_decal/spline/fancy/wood, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/engineering/hallway/lower) +"OG" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/storage/tech) +"OI" = ( +/obj/structure/table/standard, +/obj/machinery/recharger, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/engineering/engine_monitoring) +"OK" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/bluegrid, +/area/ai_upload) +"ON" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 9 + }, +/turf/simulated/floor/reinforced/airless, +/area/space) +"OO" = ( +/obj/machinery/camera/network/engineering{ + dir = 4 + }, +/obj/machinery/vending/wallmed1{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled/techmaint, +/area/maintenance/trash_pit) +"OP" = ( +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "portnacelle_blastdoor"; + opacity = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/paint_stripe/sun, +/obj/structure/window/phoronreinforced/full{ + icon_state = "phoronwindow0" + }, +/obj/structure/grille, +/turf/simulated/floor/reinforced/airless, +/area/space) +"OR" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/locker_room) +"OS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"OT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/effect/floor_decal/spline/fancy/wood/corner, +/turf/simulated/floor/plating, +/area/engineering/hallway/lower) +"OU" = ( +/obj/structure/table/reinforced, +/obj/item/paper{ + info = "If you're reading this, then congratulations. The company somehow figured this station, or ship, is of enough importance that they have a shield system already built-in for you to just flip a switch on! Well... Almost at least. There's a quick checklist you'll need to go through to make sure you don't end up killing everyone on this polished scrapheap. Listen.. Read.. Eh.. Whatever you use to pay attention, start paying attention. You need to make sure those blocks jutting out around that shield are set to max to pull in as much back-up power as possible for when something goes belly-up. Next is the core shield itself. You might think smacking everything to the highest setting and leaving it is the smart move, huh? Welp, no. You'll just pull your entire facilities power to this machine and end up killing everyone trying to protect them. Ironic, isn't it? Nah, what you want is to set a nice middle-ground for this. Also that vertical range? Make sure it's covering every single floor of your facility so no where is at risk. Last... Range. Depends on the structure, but going a LITTLE past the structures size isn't a bad thing, hell it'll even protect ships that fly in if they're small and close enough if you got the range for it. Hope it's not a hostile ship though.Well that's all the critical stuff you need to know about this, now do us proud and don't blow up the dang place on your first shift like many others.Senior Chief Engineer --- (The name seems to of been scribbled out.)" + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/workshop) +"OY" = ( +/obj/machinery/door/airlock/glass/engineering{ + name = "Engineering Hallway"; + req_one_access = null + }, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway/lower) +"Pa" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/green, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"Pc" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/storage) +"Pe" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 8 + }, +/obj/machinery/door/airlock/maintenance/engi, +/obj/structure/catwalk, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/engi_engine) +"Pg" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/power/apc/west_mount{ + cell_type = /obj/item/cell/super + }, +/turf/simulated/floor/plating, +/area/maintenance/engineering) +"Pi" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor/orange, +/obj/machinery/power/crypto_miner{ + anchored = 0 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/storage) +"Pm" = ( +/obj/item/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 26 + }, +/obj/effect/floor_decal/techfloor/orange{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway) +"Pn" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/high_volume{ + dir = 8 + }, +/obj/map_helper/airlock/atmos/chamber_pump, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/atmos/storage) +"Ps" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/obj/structure/window/phoronreinforced/full{ + icon_state = "phoronwindow0" + }, +/obj/structure/grille, +/turf/simulated/floor/reinforced/airless, +/area/space) +"Pt" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 9 + }, +/obj/structure/lattice, +/turf/space, +/area/space) +"Pz" = ( +/obj/machinery/atmospherics/pipe/simple/visible/blue, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"PC" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"PE" = ( +/obj/structure/table/reinforced, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/item/storage/toolbox/mechanical, +/obj/item/storage/toolbox/mechanical, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/storage) +"PJ" = ( +/obj/structure/table/woodentable, +/obj/machinery/light_construct{ + dir = 8 + }, +/obj/random/maintenance, +/turf/simulated/floor/carpet, +/area/maintenance/dormitory) +"PL" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/techmaint, +/area/maintenance/trash_pit) +"PM" = ( +/obj/machinery/shield_diffuser, +/turf/simulated/floor/airless/ceiling, +/area/space) +"PN" = ( +/obj/machinery/portable_atmospherics/canister/phoron, +/turf/simulated/floor/plating, +/area/engineering/starboardnacelle) +"PQ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/blue, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"PS" = ( +/obj/machinery/camera/network/command, +/turf/simulated/floor/tiled/techfloor, +/area/ai_upload) +"PT" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/holopad, +/obj/effect/floor_decal/techfloor/orange{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/station/stairs_one) +"PW" = ( +/obj/machinery/door/airlock/hatch{ + icon_state = "door_locked"; + locked = 1; + name = "AI Core"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/command/ai_core, +/turf/simulated/floor/tiled/dark, +/area/ai) +"PX" = ( +/obj/effect/floor_decal/techfloor/orange, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway) +"PY" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan, +/obj/effect/floor_decal/corner_techfloor_grid{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/storage) +"PZ" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/tcommsat/powercontrol) +"Qa" = ( +/obj/structure/sign/greencross{ + pixel_y = 32 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_airlock) +"Qc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/space) +"Qd" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 8 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/engi_engine) +"Qe" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/locker_room) +"Qf" = ( +/obj/structure/lattice, +/obj/structure/grille, +/obj/structure/railing{ + dir = 1 + }, +/turf/space, +/area/space) +"Qh" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing, +/turf/simulated/floor/plating, +/area/engineering/starboardnacelle) +"Qj" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/locker_room) +"Qk" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/drone_fabrication) +"Qm" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing, +/turf/simulated/floor/plating, +/area/maintenance/engineering) +"Qn" = ( +/obj/machinery/atmospherics/component/unary/engine/biggest{ + dir = 4 + }, +/turf/space, +/area/space) +"Qp" = ( +/obj/machinery/fire_alarm/north_mount, +/obj/effect/floor_decal/techfloor/orange{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/locker_room) +"Qq" = ( +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_airlock) +"Qr" = ( +/obj/map_helper/airlock/door/int_door, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/access_button/airlock_interior{ + master_tag = "deck1_airlock2"; + pixel_x = 24 + }, +/obj/machinery/door/airlock/glass_external{ + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/external_airlock, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/atmos/storage) +"Qt" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/wood, +/area/engineering/hallway/lower) +"Qu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"Qw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/techfloor/orange{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/station/stairs_one) +"Qy" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/plating, +/area/maintenance/engi_engine) +"Qz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"QB" = ( +/turf/simulated/floor/plating, +/area/space) +"QC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/workshop) +"QE" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 8 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/engi_engine) +"QF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/item/tool/wrench, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"QH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/vehicle_old/train/engine{ + dir = 8; + key_type = /obj/item/key + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/storage) +"QK" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/engineering/portnacelle) +"QM" = ( +/obj/spawner/window/low_wall/borosillicate/reinforced/full/firelocks, +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/engineering/atmos) +"QN" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/engineering{ + name = "Engineering Hallway"; + req_one_access = null + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway) +"QO" = ( +/obj/machinery/camera/network/engineering{ + dir = 8 + }, +/obj/effect/floor_decal/techfloor/orange{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/locker_room) +"QP" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/highsecurity{ + name = "AI Upload"; + req_one_access = list() + }, +/obj/map_helper/access_helper/airlock/station/command/ai_upload, +/turf/simulated/floor/tiled/techfloor, +/area/ai_upload) +"QZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/engineering{ + name = "Telecomms Control Room"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/engineering/department, +/turf/simulated/floor/tiled{ + icon_state = "techmaint" + }, +/area/tcommsat/computer) +"Rc" = ( +/turf/simulated/wall/r_wall/prepainted/engineering, +/area/storage/tech) +"Re" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"Rf" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ai_server_room) +"Rg" = ( +/obj/machinery/atmospherics/component/binary/pump{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"Rh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/light, +/obj/effect/floor_decal/techfloor/orange, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway) +"Rj" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/obj/item/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 26 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"Rk" = ( +/turf/simulated/wall/prepainted/engineering/atmos, +/area/engineering/atmos/monitoring) +"Rn" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/turf/simulated/floor/carpet/blucarpet, +/area/crew_quarters/heads/chief) +"Rp" = ( +/obj/structure/filingcabinet, +/obj/machinery/camera/network/tcomms{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/tcommsat/computer) +"Rr" = ( +/obj/structure/table/rack{ + dir = 8; + layer = 2.6 + }, +/obj/item/storage/toolbox/emergency, +/turf/simulated/floor/tiled/dark, +/area/tcommsat/computer) +"Rs" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging, +/obj/structure/lattice, +/turf/space, +/area/space) +"Ru" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/camera/network/tcomms{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/tcommsat/powercontrol) +"Rv" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/drone_fabrication) +"Rw" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"Rx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"Ry" = ( +/obj/machinery/atmospherics/pipe/simple/visible/blue{ + dir = 10 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"RA" = ( +/obj/machinery/telecomms/bus/preset_one, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark{ + initial_gas_mix = "n2=100;TEMP=80" + }, +/area/tcommsat/chamber) +"RD" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/simulated/floor/plating, +/area/engineering/starboardnacelle) +"RE" = ( +/obj/machinery/holopad, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/drone_fabrication) +"RI" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/carpet/blucarpet, +/area/crew_quarters/heads/chief) +"RJ" = ( +/obj/machinery/atmospherics/component/trinary/mixer{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"RK" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 1 + }, +/obj/machinery/status_display{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway/lower) +"RM" = ( +/turf/simulated/floor/tiled/white, +/area/engineering/foyer_mezzenine) +"RP" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"RR" = ( +/obj/structure/dispenser{ + phorontanks = 0 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/storage) +"RS" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black, +/obj/machinery/power/apc/east_mount, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"RT" = ( +/obj/structure/table/woodentable, +/obj/machinery/microwave, +/turf/simulated/floor/wood, +/area/maintenance/dormitory) +"RV" = ( +/obj/machinery/power/breakerbox/activated{ + RCon_tag = "ENGINEERING" + }, +/turf/simulated/floor/plating, +/area/maintenance/engi_engine) +"RW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/effect/floor_decal/techfloor/orange, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway) +"RX" = ( +/obj/machinery/camera/network/engineering{ + dir = 4 + }, +/obj/item/radio/intercom{ + dir = 8; + name = "Station Intercom (General)"; + pixel_x = -26 + }, +/obj/machinery/vending/cola, +/obj/machinery/light{ + dir = 8; + light_range = 12 + }, +/turf/simulated/floor/wood, +/area/engineering/hallway/lower) +"RY" = ( +/obj/structure/lattice, +/obj/structure/grille, +/turf/space, +/area/space) +"RZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner_techfloor_grid{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ai_upload_foyer) +"Sa" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/engineering) +"Sc" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/item/radio/beacon, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/catwalk, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/plating, +/area/station/stairs_one) +"Sd" = ( +/obj/structure/bed/chair/sofa/right, +/turf/simulated/floor/plating, +/area/maintenance/engineering) +"Se" = ( +/obj/structure/disposalpipe/junction/yjunction{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/effect/floor_decal/techfloor/orange, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway) +"Sh" = ( +/obj/machinery/telecomms/bus/preset_three, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark{ + initial_gas_mix = "n2=100;TEMP=80" + }, +/area/tcommsat/chamber) +"Sj" = ( +/obj/machinery/power/apc/east_mount{ + cell_type = /obj/item/cell/super + }, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/tcommsat/powercontrol) +"Sk" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/engineering{ + name = "Engineering Hallway"; + req_one_access = null + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway) +"Sn" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/storage) +"Sq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/engineering/foyer_mezzenine) +"Ss" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"St" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/maintenance/engi{ + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/engineering/equipment, +/turf/simulated/floor/plating, +/area/engineering/engine_eva) +"Su" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor/orange{ + dir = 10 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/station/stairs_one) +"Sw" = ( +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/turf/simulated/floor/plating, +/area/engineering/atmos) +"Sx" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black, +/obj/machinery/computer/general_air_control/large_tank_control{ + frequency = 1443; + input_tag = "air_in"; + name = "Mixed Air Supply Control"; + output_tag = "air_out"; + pressure_setting = 2000; + sensors = list("air_sensor"="Tank") + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"SA" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/dark, +/area/tcommsat/computer) +"SD" = ( +/obj/landmark/spawnpoint/job/atmospheric_technician, +/turf/simulated/floor/tiled/steel_dirty, +/area/engineering/atmos/storage) +"SG" = ( +/obj/structure/sign/electricshock, +/turf/simulated/wall/r_wall/prepainted/engineering, +/area/engineering/engine_smes) +"SH" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/effect/floor_decal/spline/fancy/wood, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/engineering/hallway/lower) +"SJ" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/engineering/hallway/lower) +"SL" = ( +/turf/simulated/wall/prepainted/engineering, +/area/maintenance/engineering) +"SO" = ( +/obj/structure/stairs/spawner/west, +/turf/simulated/floor/tiled, +/area/station/stairs_one) +"SP" = ( +/obj/structure/grille, +/obj/structure/window/phoronreinforced/full{ + icon_state = "phoronwindow0" + }, +/turf/simulated/floor/reinforced/airless, +/area/space) +"SQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/techfloor/orange, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway) +"SR" = ( +/obj/structure/lattice, +/obj/structure/railing{ + dir = 8 + }, +/turf/space, +/area/space) +"ST" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black, +/obj/machinery/computer/general_air_control/large_tank_control{ + input_tag = "n2_in"; + name = "Nitrogen Supply Control"; + output_tag = "n2_out"; + sensors = list("n2_sensor"="Tank") + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"SV" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/empty, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/window/westright, +/turf/simulated/floor/plating, +/area/space) +"SW" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/engineering/portnacelle) +"SX" = ( +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/visible/universal{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/engineering/atmos) +"SY" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/storage) +"SZ" = ( +/obj/landmark/spawnpoint/job/cyborg, +/turf/simulated/floor/tiled/techfloor, +/area/ai_server_room) +"Ta" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/table/rack{ + dir = 8; + layer = 2.6 + }, +/obj/item/storage/toolbox/electrical, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/engi_engine) +"Tb" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/maintenance/engi_engine) +"Tf" = ( +/obj/machinery/shield_diffuser, +/obj/machinery/atmospherics/pipe/manifold4w/visible/fuel, +/turf/simulated/wall/r_wall/prepainted/engineering, +/area/space) +"Tg" = ( +/obj/machinery/light/small/emergency{ + dir = 1 + }, +/obj/structure/railing, +/turf/simulated/floor/plating, +/area/maintenance/engineering) +"Tk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/steel_dirty, +/area/engineering/atmos/storage) +"Tl" = ( +/obj/machinery/air_sensor{ + frequency = 2345; + id_tag = "starboardnacelle_sensor" + }, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 9 + }, +/turf/simulated/floor/reinforced/airless, +/area/space) +"Tm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 8 + }, +/obj/structure/catwalk, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/engi_engine) +"To" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 1 + }, +/obj/structure/sign/vacuum{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway) +"Tp" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/obj/effect/floor_decal/techfloor/orange{ + dir = 9 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/station/stairs_one) +"Tq" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/power/shield_generator, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/storage) +"Tr" = ( +/obj/machinery/camera/network/engineering, +/obj/effect/floor_decal/techfloor/orange{ + dir = 1 + }, +/obj/item/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 26 + }, +/obj/machinery/vending/tool, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/storage) +"Tu" = ( +/turf/simulated/wall/prepainted/engineering, +/area/engineering/break_room) +"Tv" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/power/port_gen/pacman{ + anchored = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/storage) +"Tw" = ( +/obj/structure/cable/cyan{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/engineering/engine_smes) +"Ty" = ( +/obj/structure/catwalk, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/engineering) +"TA" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 1 + }, +/obj/structure/closet/hydrant{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway/lower) +"TB" = ( +/obj/machinery/telecomms/server/presets/unused, +/turf/simulated/floor/tiled/dark{ + initial_gas_mix = "n2=100;TEMP=80" + }, +/area/tcommsat/chamber) +"TC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 9 + }, +/obj/structure/closet/firecloset, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/engineering/atmos/storage) +"TE" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"TF" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 6 + }, +/turf/simulated/floor/reinforced/airless, +/area/space) +"TJ" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/techfloor/orange{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/station/stairs_one) +"TK" = ( +/obj/structure/table/standard, +/obj/item/aiModule/nanotrasen, +/obj/item/aiModule/reset, +/obj/item/aiModule/freeform, +/turf/simulated/floor/tiled/techfloor, +/area/ai_upload) +"TL" = ( +/obj/item/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 26 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/workshop) +"TN" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/item/clothing/mask/smokable/cigarette/cigar, +/turf/simulated/floor/plating, +/area/maintenance/engineering) +"TO" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/engi_engine) +"TP" = ( +/turf/space, +/area/space) +"TS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/engi_engine) +"TU" = ( +/turf/simulated/wall/r_wall/prepainted/engineering, +/area/maintenance/dormitory) +"TV" = ( +/obj/structure/table/reinforced, +/obj/item/toy/plushie/carp/nebula, +/obj/machinery/camera/network/engineering{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/workshop) +"TW" = ( +/obj/structure/table/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/circuitboard/transhuman_clonepod{ + pixel_x = -2; + pixel_y = 3 + }, +/obj/item/circuitboard/resleeving_control{ + pixel_y = 1 + }, +/obj/item/circuitboard/med_data{ + pixel_x = 5; + pixel_y = -3 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/storage/tech) +"TX" = ( +/obj/machinery/computer/ship/engines{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"TZ" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 5 + }, +/turf/space, +/area/space) +"Ua" = ( +/obj/machinery/fire_alarm/west_mount{ + pixel_x = -24 + }, +/turf/simulated/floor/plating, +/area/maintenance/engineering) +"Ub" = ( +/obj/item/storage/box/glasses/mug, +/turf/simulated/floor/plating, +/area/maintenance/engineering) +"Uc" = ( +/obj/machinery/light{ + dir = 8; + light_range = 12 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/tcommsat/computer) +"Ud" = ( +/obj/machinery/power/apc/south_mount, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/shunt) +"Ue" = ( +/turf/simulated/wall/durasteel, +/area/ai) +"Uh" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 5 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/engi_engine) +"Ui" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/power/sensor{ + name = "Powernet Sensor - Master Grid"; + name_tag = "Master" + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_smes) +"Uj" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/carpet/blucarpet, +/area/crew_quarters/heads/chief) +"Un" = ( +/obj/structure/catwalk, +/obj/machinery/air_alarm{ + frequency = 1441; + pixel_y = 22 + }, +/turf/simulated/floor/plating, +/area/maintenance/engineering) +"Uo" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"Us" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/bluegrid, +/area/ai_upload) +"Ut" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 6 + }, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"Uw" = ( +/turf/simulated/wall/prepainted/engineering/atmos, +/area/engineering/atmos/storage) +"Ux" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 6 + }, +/obj/machinery/power/apc/east_mount, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway/lower) +"Uy" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/highsecurity{ + name = "AI Chamber"; + req_one_access = list() + }, +/obj/map_helper/access_helper/airlock/station/command/ai_core, +/turf/simulated/floor/bluegrid, +/area/ai) +"Uz" = ( +/obj/structure/table/reinforced, +/obj/machinery/camera/network/engineering{ + dir = 8 + }, +/obj/item/storage/box/snakesnackbox, +/obj/machinery/button/remote/blast_door{ + id = "engsec_ld_c"; + name = "Access Lockdown"; + pixel_x = 25 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/chief) +"UA" = ( +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/table/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/storage/toolbox/electrical{ + pixel_x = 1; + pixel_y = -1 + }, +/obj/item/multitool, +/obj/item/clothing/glasses/meson, +/turf/simulated/floor, +/area/storage/tech) +"UC" = ( +/obj/item/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 26 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"UE" = ( +/turf/simulated/wall/r_wall/prepainted/engineering, +/area/engineering/engine_airlock) +"UG" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/storage) +"UI" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/machinery/light/small/emergency{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/engi_engine) +"UK" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood, +/area/engineering/hallway/lower) +"UL" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/storage) +"UM" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/bluegrid, +/area/ai_upload) +"UQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/structure/catwalk, +/obj/effect/floor_decal/spline/fancy/wood, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/engineering/hallway/lower) +"UR" = ( +/obj/machinery/atmospherics/component/unary/vent_pump{ + dir = 4; + external_pressure_bound = 0; + external_pressure_bound_default = 0; + frequency = 1441; + icon_state = "map_vent_in"; + id_tag = "tox_out"; + initialize_directions = 1; + internal_pressure_bound = 4000; + internal_pressure_bound_default = 4000; + pressure_checks = 2; + pressure_checks_default = 2; + pump_direction = 0; + on = 1 + }, +/turf/simulated/floor/reinforced/phoron, +/area/engineering/atmos) +"UV" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"UX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/tcommsat/computer) +"UY" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/shunt) +"UZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock{ + name = "Restroom" + }, +/turf/simulated/floor/tiled/white, +/area/engineering/foyer_mezzenine) +"Va" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Engineering Storage"; + req_one_access = null + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/map_helper/access_helper/airlock/station/engineering/equipment, +/turf/simulated/floor/tiled, +/area/engineering/storage) +"Vc" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 10 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"Vd" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/power/breakerbox{ + RCon_tag = "TELECOMMS" + }, +/turf/simulated/floor/plating, +/area/tcommsat/powercontrol) +"Ve" = ( +/obj/machinery/computer/message_monitor, +/turf/simulated/floor/tiled/techfloor, +/area/ai_server_room) +"Vf" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "AI Upload Access"; + req_one_access = list() + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/map_helper/access_helper/airlock/station/command/ai_upload, +/turf/space/basic, +/area/ai_upload_foyer) +"Vg" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/component/binary/pump{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/engineering/atmos) +"Vh" = ( +/turf/simulated/wall/prepainted/engineering, +/area/engineering/engine_monitoring) +"Vi" = ( +/obj/machinery/fire_alarm/south_mount{ + pixel_y = -24 + }, +/obj/effect/floor_decal/techfloor/orange{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/station/stairs_one) +"Vj" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/bluegrid, +/area/ai) +"Vk" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor/orange{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway/lower) +"Vl" = ( +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"Vo" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/air_alarm{ + frequency = 1441; + pixel_y = 22 + }, +/obj/effect/floor_decal/techfloor/orange{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway) +"Vq" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 10 + }, +/obj/machinery/shower{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window/northleft{ + name = "Shower"; + req_access = list() + }, +/obj/structure/curtain/open/shower/engineering, +/turf/simulated/floor/tiled, +/area/engineering/foyer_mezzenine) +"Vr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/glass/engineering{ + name = "Engineering Hallway"; + req_one_access = null + }, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway/lower) +"Vs" = ( +/obj/structure/table/bench/wooden, +/turf/simulated/floor/wood, +/area/engineering/hallway/lower) +"Vu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 4 + }, +/turf/simulated/wall/prepainted/engineering/atmos, +/area/engineering/atmos/storage) +"Vv" = ( +/obj/machinery/vending/cigarette, +/obj/item/barrier_tape_segment/engineering, +/turf/simulated/floor/plating, +/area/maintenance/engineering) +"VA" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/storage) +"VB" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging, +/turf/simulated/floor/reinforced/airless, +/area/space) +"VG" = ( +/obj/spawner/window/low_wall/borosillicate/reinforced/full/firelocks, +/obj/machinery/atmospherics/pipe/simple/visible/blue{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/engineering/atmos) +"VL" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/high_volume{ + dir = 8; + id_tag = "deck1_airlock" + }, +/obj/map_helper/airlock/atmos/chamber_pump, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_eva) +"VP" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/engineering/break_room) +"VQ" = ( +/obj/map_helper/airlock/door/int_door, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/access_button/airlock_interior{ + frequency = 1380; + master_tag = "deck1_airlock"; + pixel_x = 24 + }, +/obj/machinery/door/airlock/glass_external{ + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/external_airlock, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_eva) +"VT" = ( +/obj/structure/toilet{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/turf/simulated/floor/tiled/white, +/area/engineering/foyer_mezzenine) +"VU" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/random/trash_pile, +/turf/simulated/floor/plating, +/area/maintenance/engi_engine) +"VV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 8 + }, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/machinery/door/airlock/glass/engineering{ + name = "Engineering Hallway"; + req_one_access = null + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway/lower) +"VX" = ( +/obj/machinery/air_alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/shunt) +"VY" = ( +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/power/apc/west_mount{ + cell_type = /obj/item/cell/super + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/workshop) +"VZ" = ( +/obj/effect/floor_decal/techfloor/orange, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway/lower) +"Wa" = ( +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/shunt) +"Wb" = ( +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"Wc" = ( +/obj/structure/toilet{ + dir = 4 + }, +/obj/machinery/light/small, +/obj/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/turf/simulated/floor/tiled/white, +/area/engineering/foyer_mezzenine) +"Wd" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"Wf" = ( +/obj/structure/table/rack/shelf/steel, +/obj/item/radio/off, +/obj/item/radio/off, +/obj/item/radio/off, +/obj/item/radio/off, +/turf/simulated/floor/tiled/dark, +/area/tcommsat/computer) +"Wg" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/workshop) +"Wh" = ( +/obj/structure/table/woodentable, +/obj/random/maintenance/security, +/turf/simulated/floor/wood, +/area/maintenance/dormitory) +"Wi" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/hidden/aux, +/turf/simulated/floor/plating, +/area/engineering/atmos) +"Wj" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/effect/floor_decal/techfloor/orange{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway) +"Wl" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/camera/network/engineering, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 8 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/engi_engine) +"Wm" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/drone_fabrication) +"Wn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/tcommsat/computer) +"Wr" = ( +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/power/apc/north_mount{ + cell_type = /obj/item/cell/super + }, +/obj/effect/floor_decal/techfloor/orange{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/station/stairs_one) +"Wt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/engineering/break_room) +"Wu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/air_alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_airlock) +"Wv" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/effect/floor_decal/techfloor/orange, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway) +"Wx" = ( +/obj/structure/disposaloutlet{ + dir = 1 + }, +/obj/structure/railing, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/maintenance/trash_pit) +"WB" = ( +/obj/machinery/ai_slipper, +/obj/structure/cable/cyan{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/bluegrid, +/area/ai) +"WC" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/engineering/engine_smes) +"WD" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance, +/turf/simulated/floor/plating, +/area/engineering/hallway/lower) +"WH" = ( +/obj/structure/closet/crate, +/obj/item/circuitboard/smes, +/obj/item/smes_coil, +/obj/item/smes_coil, +/obj/item/smes_coil/super_capacity, +/obj/item/smes_coil/super_capacity, +/obj/item/smes_coil/super_io, +/obj/item/smes_coil/super_io, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/storage) +"WL" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor/orange{ + dir = 1 + }, +/obj/machinery/camera/network/engineering, +/turf/simulated/floor/tiled, +/area/engineering/hallway/lower) +"WM" = ( +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/obj/effect/floor_decal/techfloor/orange{ + dir = 1 + }, +/obj/structure/table/bench/padded, +/obj/landmark/spawnpoint/job/station_engineer, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/locker_room) +"WO" = ( +/obj/machinery/air_sensor{ + frequency = 1441; + id_tag = "nitrous_sensor" + }, +/turf/simulated/floor/reinforced/n20, +/area/space) +"WQ" = ( +/obj/machinery/telecomms/processor/preset_one, +/turf/simulated/floor/tiled/dark{ + initial_gas_mix = "n2=100;TEMP=80" + }, +/area/tcommsat/chamber) +"WS" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/component/unary/vent_pump/on, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/engineering/engine_smes) +"WT" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/maintenance, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled, +/area/station/stairs_one) +"WU" = ( +/obj/machinery/telecomms/server/presets/security, +/turf/simulated/floor/tiled/dark{ + initial_gas_mix = "n2=100;TEMP=80" + }, +/area/tcommsat/chamber) +"Xa" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 6 + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/storage) +"Xc" = ( +/obj/spawner/window/low_wall/borosillicate/full/firelocks, +/obj/effect/paint_stripe/sun, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"Xi" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"Xj" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"Xk" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 1 + }, +/obj/machinery/vending/assist, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/storage) +"Xm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/tcommsat/computer) +"Xp" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"Xq" = ( +/obj/machinery/camera/network/engineering{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/techfloor/orange{ + dir = 4 + }, +/obj/machinery/vending/weeb{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/station/stairs_one) +"Xr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/storage) +"Xs" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 5 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"Xt" = ( +/obj/structure/cable/cyan{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/bluegrid, +/area/ai) +"Xu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/machinery/door/airlock/glass/engineeringatmos{ + name = "Damage Control Storage"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/engineering/atmospherics, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/monitoring) +"Xw" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_airlock) +"Xx" = ( +/obj/structure/lattice, +/obj/structure/railing, +/turf/space, +/area/space) +"Xz" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/effect/floor_decal/techfloor/orange{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway) +"XA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"XB" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 6 + }, +/obj/machinery/air_alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/recharge_station, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_monitoring) +"XC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/fire_alarm/south_mount{ + pixel_y = -24 + }, +/obj/effect/floor_decal/techfloor/orange, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway) +"XD" = ( +/obj/machinery/vending/cola, +/turf/simulated/floor/carpet/blucarpet, +/area/engineering/break_room) +"XE" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/engineering/hallway) +"XI" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on, +/turf/simulated/floor/carpet/blucarpet, +/area/crew_quarters/heads/chief) +"XJ" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/techfloor/orange, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_monitoring) +"XK" = ( +/turf/simulated/floor/tiled, +/area/station/stairs_one) +"XL" = ( +/obj/machinery/telecomms/server/presets/service/victory, +/turf/simulated/floor/tiled/dark{ + initial_gas_mix = "n2=100;TEMP=80" + }, +/area/tcommsat/chamber) +"XM" = ( +/obj/landmark/spawnpoint/job/ai/secondary, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/bluegrid, +/area/ai) +"XO" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai) +"XP" = ( +/obj/machinery/photocopier, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/chief) +"XR" = ( +/obj/structure/closet/crate, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/glass, +/turf/simulated/floor/plating, +/area/maintenance/engineering) +"XT" = ( +/obj/structure/table/rack/shelf/steel, +/obj/item/radio/off, +/obj/item/radio/off, +/obj/item/radio/off, +/obj/item/radio/off, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"XU" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway) +"XV" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/turf/simulated/floor, +/area/storage/tech) +"XW" = ( +/obj/spawner/window/low_wall/borosillicate/reinforced/full/firelocks, +/obj/machinery/atmospherics/pipe/manifold/visible/purple{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/engineering/atmos) +"XY" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/highsecurity{ + name = "Secure Tech Storage"; + req_one_access = list() + }, +/obj/map_helper/access_helper/airlock/station/technical_storage/secure, +/turf/simulated/floor/tiled/dark, +/area/storage/tech) +"XZ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/plating, +/area/station/stairs_one) +"Ya" = ( +/obj/machinery/atmospherics/valve/digital, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"Yb" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 10 + }, +/obj/structure/closet/secure_closet/engineering_electrical, +/obj/item/clothing/gloves/yellow, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/locker_room) +"Yc" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_airlock) +"Yf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/engi_engine) +"Yg" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/fire_alarm/west_mount{ + pixel_x = -24 + }, +/turf/simulated/floor/tiled/white, +/area/engineering/foyer_mezzenine) +"Yi" = ( +/obj/machinery/air_sensor{ + frequency = 1441; + id_tag = "o2_sensor" + }, +/turf/simulated/floor/reinforced/oxygen, +/area/space) +"Yj" = ( +/obj/structure/table/reinforced, +/obj/machinery/cell_charger, +/obj/item/cell/high{ + maxcharge = 15000 + }, +/obj/item/tool/wrench, +/obj/item/cell/high{ + maxcharge = 15000 + }, +/obj/item/cell/high{ + maxcharge = 15000 + }, +/obj/item/cell/high{ + maxcharge = 15000 + }, +/obj/effect/floor_decal/techfloor/orange, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/locker_room) +"Yk" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 8 + }, +/obj/structure/closet/secure_closet/engineering_personal, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/locker_room) +"Yl" = ( +/obj/spawner/window/low_wall/borosillicate/reinforced/full/firelocks, +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/engineering/atmos) +"Ym" = ( +/obj/machinery/atmospherics/component/binary/pump, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"Yn" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 6 + }, +/obj/structure/lattice, +/turf/space, +/area/space) +"Yo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 8 + }, +/obj/effect/floor_decal/techfloor/orange{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway/lower) +"Yr" = ( +/obj/machinery/atmospherics/component/unary/outlet_injector{ + dir = 1; + frequency = 1441; + id = "tox_in"; + pixel_y = 1; + power_rating = 5000; + use_power = 1 + }, +/turf/simulated/floor/reinforced/phoron, +/area/engineering/atmos) +"Ys" = ( +/obj/spawner/window/low_wall/borosillicate/reinforced/full/firelocks, +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/engineering/atmos) +"Yt" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/red{ + dir = 8 + }, +/turf/simulated/wall/prepainted/engineering/atmos, +/area/engineering/atmos/storage) +"Yu" = ( +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/turf/simulated/floor, +/area/maintenance/engineering) +"Yv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/station/stairs_one) +"Yy" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/engineering) +"Yz" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"YA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor/orange, +/obj/machinery/door/airlock/glass/engineering, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway) +"YB" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/engineering/portnacelle) +"YD" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 1 + }, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/structure/table/bench/padded, +/obj/landmark/spawnpoint/job/station_engineer, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/locker_room) +"YG" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway/lower) +"YI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera/network/outside{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/techfloor/orange, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway) +"YN" = ( +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/structure/reagent_dispensers/watertank, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/power/apc/west_mount, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/storage) +"YR" = ( +/obj/spawner/window/reinforced/full/firelocks, +/turf/simulated/floor, +/area/maintenance/engineering) +"YT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ai_server_room) +"YU" = ( +/obj/structure/closet/firecloset, +/turf/simulated/floor/tiled/dark, +/area/tcommsat/computer) +"YX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/cyan{ + icon_state = "1-8" + }, +/obj/structure/cable/cyan{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_smes) +"YY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"YZ" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"Za" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/window/westright, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_airlock) +"Zb" = ( +/obj/structure/closet/emcloset, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_eva) +"Ze" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/maintenance/engi_engine) +"Zh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance/engi{ + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/trash_pit) +"Zi" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor/orange{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway/lower) +"Zm" = ( +/obj/structure/grille, +/obj/structure/window/phoronreinforced/full{ + icon_state = "phoronwindow0" + }, +/turf/simulated/floor/reinforced/airless, +/area/engineering/starboardnacelle) +"Zq" = ( +/obj/machinery/computer/telecomms/server, +/turf/simulated/floor/tiled/techmaint, +/area/tcommsat/computer) +"Zr" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/storage) +"Zs" = ( +/obj/machinery/holopad, +/obj/machinery/camera/network/engineering{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/engineering/break_room) +"Zu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/mob/living/simple_mob/animal/passive/bird/parrot/polly, +/turf/simulated/floor/carpet/blucarpet, +/area/crew_quarters/heads/chief) +"Zv" = ( +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/tcommsat/powercontrol) +"Zx" = ( +/obj/machinery/air_alarm{ + frequency = 1441; + pixel_y = 22 + }, +/turf/simulated/floor/plating, +/area/maintenance/engineering) +"Zy" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/maintenance/engineering) +"Zz" = ( +/obj/structure/table/standard, +/obj/item/storage/box/lights/mixed, +/obj/effect/floor_decal/techfloor/orange, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_monitoring) +"ZA" = ( +/obj/effect/floor_decal/techfloor/orange/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway) +"ZC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/maintenance/trash_pit) +"ZD" = ( +/obj/structure/table/rack{ + dir = 8; + layer = 2.6 + }, +/obj/item/storage/belt, +/obj/item/storage/belt, +/obj/item/storage/belt, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"ZE" = ( +/obj/structure/sign/fire, +/turf/simulated/wall/r_wall/prepainted, +/area/engineering/portnacelle) +"ZF" = ( +/obj/machinery/atmospherics/component/unary/vent_pump{ + external_pressure_bound = 0; + external_pressure_bound_default = 0; + frequency = 1441; + icon_state = "map_vent_in"; + id_tag = "n2_out"; + initialize_directions = 1; + internal_pressure_bound = 4000; + internal_pressure_bound_default = 4000; + pressure_checks = 2; + pressure_checks_default = 2; + pump_direction = 0; + on = 1 + }, +/turf/simulated/floor/reinforced/nitrogen, +/area/space) +"ZH" = ( +/obj/effect/floor_decal/techfloor/orange, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/engineering/hallway/lower) +"ZI" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/catwalk, +/obj/effect/floor_decal/spline/fancy/wood/cee{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/engineering/hallway) +"ZK" = ( +/obj/structure/table/reinforced, +/obj/item/flashlight/lamp, +/obj/item/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 26 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/chief) +"ZM" = ( +/turf/simulated/floor/reinforced/carbon_dioxide, +/area/space) +"ZN" = ( +/obj/structure/lattice, +/obj/structure/grille, +/obj/structure/railing{ + dir = 8 + }, +/turf/space, +/area/space) +"ZO" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black, +/obj/machinery/atmospherics/pipe/simple/visible/blue{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"ZP" = ( +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -23 + }, +/obj/machinery/light{ + dir = 8; + light_range = 12 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/drone_fabrication) +"ZR" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 8 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/engineering/hallway/lower) +"ZS" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/engi_engine) +"ZT" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/blue, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"ZW" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/storage) +"ZX" = ( +/obj/turbolift_map_holder/victory, +/turf/simulated/floor/holofloor/tiled/dark, +/area/engineering/hallway/lower) +"ZY" = ( +/obj/machinery/fire_alarm/west_mount{ + pixel_x = -24 + }, +/obj/effect/floor_decal/techfloor/orange{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/engineering/engine_monitoring) +"ZZ" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/obj/machinery/shower{ + dir = 8; + name = "emergency shower" + }, +/turf/simulated/floor/tiled, +/area/engineering/engine_airlock) + +(1,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(2,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(3,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(4,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(5,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(6,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(7,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(8,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(9,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(10,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +eb +cd +eb +cd +he +he +he +he +he +he +cd +eb +cd +eb +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +eb +cd +eb +cd +he +he +he +he +he +he +cd +eb +cd +eb +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(11,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +cd +he +cd +he +he +he +he +he +he +cd +he +cd +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +cd +he +cd +he +he +he +he +he +he +cd +he +cd +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(12,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +eb +cd +cd +cd +Gh +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +eb +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +eb +cd +cd +cd +Gh +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +eb +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(13,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +cd +he +cd +he +he +he +he +he +he +cd +he +cd +he +he +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +cd +he +cd +he +he +he +he +he +he +cd +he +cd +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(14,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +cd +he +cd +he +he +he +he +he +he +cd +he +cd +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +cd +he +cd +he +he +he +he +he +he +cd +he +cd +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(15,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +cd +he +cd +he +he +he +he +he +he +cd +he +cd +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +cd +he +cd +he +he +he +he +he +he +cd +he +cd +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(16,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +CT +TP +CT +TP +TP +TP +TP +TP +TP +CT +TP +CT +TP +TP +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +CT +TP +CT +TP +TP +TP +TP +TP +TP +CT +TP +CT +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(17,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +eb +CT +CT +CT +He +CT +CT +CT +CT +CT +CZ +CT +CT +CT +CT +eb +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +eb +CT +CT +CT +He +CT +CT +CT +CT +CT +CZ +CT +CT +CT +CT +eb +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(18,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +TP +TP +CT +he +cd +he +he +he +he +he +he +cd +he +cd +he +TP +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +CT +he +cd +he +he +he +he +he +he +cd +he +cd +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(19,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +TP +TP +CT +he +cd +he +he +he +he +he +he +cd +he +cd +he +TP +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +CT +he +cd +he +he +he +he +he +he +cd +he +cd +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(20,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +cd +he +cd +TP +TP +Qn +TP +TP +Qn +CT +he +cd +he +he +he +he +TP +TP +TP +aj +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +CT +he +CT +TP +TP +Qn +TP +TP +Qn +cd +he +cd +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(21,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +kw +kw +kw +kw +tW +TP +TP +tW +TP +TP +CT +he +cd +cd +cd +cd +cd +CT +CT +eb +CT +CT +eb +CT +CT +eb +CT +TP +TP +TP +CT +eb +CT +CT +eb +CT +CT +eb +CT +CT +eb +CT +CT +eb +CT +he +CT +tW +TP +TP +tW +TP +TP +kw +kw +kw +kw +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(22,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +kw +kw +kw +kw +tW +TP +TP +tW +TP +TP +CT +he +cd +he +he +he +he +TP +TP +CT +TP +TP +CT +TP +TP +TP +CT +TP +TP +TP +CT +TP +TP +TP +CT +TP +TP +CT +TP +TP +CT +TP +TP +TP +CT +he +CT +tW +TP +TP +tW +TP +TP +kw +kw +kw +kw +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(23,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +kw +kw +kw +kw +Bi +jn +Tf +jn +jn +Mq +cd +he +cd +he +he +he +he +ev +Rs +Rs +aZ +aZ +Rs +aZ +aZ +aZ +vn +aZ +aZ +aZ +vn +aZ +aZ +aZ +Rs +aZ +aZ +Rs +TZ +TP +CT +TP +TP +TP +CT +he +cd +Bi +jn +jn +Tf +jn +Mq +kw +kw +kw +kw +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(24,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +kw +kw +kw +kw +TX +AT +pG +kw +Bz +kw +he +cd +cd +cd +cd +cd +uq +Yn +Rs +Rs +Rs +Rs +Rs +Rs +Rs +vn +aZ +aZ +aZ +vn +TZ +ev +aZ +Rs +aZ +aZ +Rs +IO +TP +CT +TP +TP +TP +CT +he +kw +Bz +kw +TX +AT +pG +kw +Bz +kw +kw +he +he +TP +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(25,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +kw +kw +kw +hj +eS +Mj +kw +kw +kw +he +cd +he +he +he +he +rc +Es +Rs +aZ +aZ +Rs +aZ +aZ +TZ +CT +TP +aj +TP +CT +uq +Es +Rs +Rs +Rs +Rs +Rs +Cu +CT +CT +CT +CT +CT +CT +he +kw +kw +kw +hj +eS +Mj +kw +kw +kw +he +he +he +TP +he +he +he +he +he +he +he +TP +TP +TP +vr +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(26,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +kw +kw +JJ +gN +gx +Jd +ft +kw +kw +he +cd +he +he +he +he +rc +Yn +Rs +aZ +aZ +Rs +aZ +aZ +IO +CT +TP +TP +TP +CT +rc +ev +aZ +Rs +aZ +aZ +aZ +IO +TP +CT +TP +TP +TP +CT +he +kw +kw +JJ +gN +gx +Jd +ft +kw +kw +he +he +he +TP +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(27,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +kw +kw +JJ +qr +MH +eS +ft +kw +kw +kw +cd +he +he +he +he +rc +Es +Rs +aZ +aZ +Rs +aZ +aZ +TZ +CT +TP +TP +TP +CT +uq +Es +Rs +Rs +aZ +aZ +aZ +TZ +TP +CT +TP +TP +TP +CT +kw +kw +kw +JJ +qr +MH +eS +ft +kw +kw +he +he +he +TP +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(28,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +kw +kw +kw +mp +ii +MH +kw +kw +kw +kw +cd +he +he +he +he +rc +Yn +Rs +aZ +aZ +Rs +aZ +aZ +IO +CT +TP +TP +TP +CT +rc +ev +aZ +Rs +aZ +aZ +aZ +IO +TP +CT +TP +TP +TP +kw +kw +kw +kw +kw +mp +ii +MH +kw +kw +kw +he +he +he +TP +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(29,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +kw +kw +kw +HP +aU +Mj +eu +eu +kw +kw +cd +cd +cd +cd +cd +uq +Es +Rs +Rs +Rs +Rs +Rs +Rs +Cu +CT +TP +TP +TP +CT +uq +Es +Rs +Rs +Rs +Rs +Rs +Cu +CT +cd +cd +cd +cd +kw +kw +kw +kw +kw +GS +aU +Mj +kw +kw +kw +he +he +he +TP +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(30,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +kw +kw +kw +Rj +QF +hz +eu +Ei +EZ +EZ +EZ +NK +NK +NK +he +Mt +TZ +Yn +aZ +aZ +Rs +aZ +aZ +IO +CT +TP +TP +TP +CT +rc +ev +aZ +Rs +aZ +aZ +aZ +IO +TP +cd +NK +NK +EZ +EZ +EZ +EZ +kw +kw +Rj +wE +hz +kw +kw +kw +he +he +he +TP +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(31,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +kw +kw +tA +Wb +Hx +eu +eu +fS +EZ +us +EZ +EZ +NK +NK +he +TP +rc +Es +aZ +aZ +Rs +aZ +aZ +TZ +CT +CT +CT +CT +CT +rc +Mt +aZ +Rs +aZ +aZ +Rs +TZ +TP +cd +NK +EZ +EZ +SW +SW +EZ +rN +eu +eu +GV +JM +EY +kw +kw +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(32,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +kw +kw +BY +ha +Lb +Lt +Rx +ds +Ml +el +us +EZ +NK +NK +he +TP +rc +Yn +Rs +Rs +Rs +Rs +Rs +Pt +CT +zG +PM +zG +CT +uq +Yn +Rs +Rs +Rs +Rs +Rs +Pt +TP +cd +NK +EZ +HL +QK +yF +Gm +wG +zH +mJ +qo +pK +Cy +kw +kw +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(33,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +kw +kw +BY +RJ +eX +Hl +eu +eu +if +BG +us +EZ +EZ +NK +he +TP +rc +Es +aZ +aZ +Rs +aZ +aZ +TZ +CT +TP +ER +TP +CT +rc +Mt +aZ +Rs +aZ +aZ +Rs +TZ +TP +cd +EZ +EZ +HL +YB +us +ZE +eu +eu +YZ +vv +MN +Cy +kw +kw +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(34,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +kw +kw +kw +BY +OC +Aw +eP +qi +EZ +EZ +BG +us +us +EZ +ut +cd +CT +uq +Yn +Rs +Rs +Rs +Rs +Rs +Pt +CT +CT +ER +CT +CT +uq +Yn +Rs +Rs +Rs +Rs +Rs +Pt +CT +cd +EZ +us +HL +YB +pJ +EZ +Oq +kw +BM +zu +Jx +Cy +kw +kw +kw +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(35,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +kw +kw +SP +Ps +mG +OP +Hw +SP +Bx +EZ +BG +us +us +EZ +NK +he +TP +rc +Es +aZ +aZ +Rs +aZ +aZ +TZ +CT +TP +ER +TP +CT +rc +Mt +aZ +Rs +aZ +aZ +Cu +TP +TP +cd +Oq +fJ +sf +hR +PN +Oq +Zm +SP +tr +jU +Nw +Bp +SP +kw +kw +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(36,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +kw +kw +SP +BJ +BB +iF +Fi +LH +Bx +EZ +BG +us +us +EZ +EZ +he +TP +rc +Yn +aZ +aZ +Rs +aZ +aZ +IO +CT +TP +ER +TP +CT +Mt +aZ +TZ +Yn +aZ +aZ +Pt +TP +TP +kw +Oq +fJ +sf +hR +RD +Oq +Zm +TF +Tl +zM +xi +BJ +SP +kw +kw +he +he +aj +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(37,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +kw +kw +SP +kh +kh +FF +JX +ON +Bx +EZ +BG +us +us +us +EZ +he +TP +rc +Es +aZ +aZ +Cu +TP +cD +cD +cD +cD +iY +cD +cD +cD +cD +rc +Es +aZ +aZ +ct +TP +TP +kw +fJ +fJ +sf +hR +RD +Oq +Zm +FF +JX +ON +kh +kh +SP +kw +kw +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(38,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +kw +kw +SP +FF +VB +JX +JX +LH +Bx +EZ +BG +us +us +us +EZ +kw +CT +Es +Rs +TZ +TP +uq +TP +cD +Bq +Bq +Bq +Bq +Bq +Bq +Bq +cD +Mt +vn +aZ +aZ +Pt +CT +kw +kw +fJ +fJ +sf +hR +fJ +Oq +Zm +TF +JX +JX +su +ON +SP +kw +kw +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(39,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +kw +kw +SP +TF +su +JX +JX +ON +SP +EZ +BG +us +us +us +QB +kw +kw +TP +CT +uU +TP +uU +TP +cD +Bq +Bq +Bq +Bq +Bq +Bq +Bq +cD +TP +CT +TP +TP +CT +kw +kw +QB +QB +fJ +sf +hR +fJ +Oq +SP +FF +JX +JX +su +LH +SP +kw +kw +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(40,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +kw +kw +SP +FF +su +JX +JX +LH +SP +EZ +BG +us +us +us +QB +ME +Hg +Hg +cD +or +Xc +Mu +cD +cD +Bq +Bq +Bq +Bq +Bq +Bq +Bq +cD +Xc +Xc +Xc +cD +cD +Hg +ME +ME +QB +fJ +sf +hR +fJ +Oq +SP +TF +JX +JX +su +ON +SP +kw +kw +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(41,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +kw +kw +SP +SP +LX +JX +JX +ON +SP +EZ +BG +us +us +us +us +ME +ci +bF +cD +Bq +Bq +Bq +Bq +Bq +Bq +Bq +Bq +Bq +Bq +Bq +Bq +Bq +Bq +Bq +Bq +Bq +cD +ZS +VU +ZS +tc +tc +Qh +hR +fJ +Oq +SP +FF +JX +JX +LN +SP +SP +kw +kw +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(42,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +kw +kw +kw +SP +SP +SP +SP +SP +SP +EZ +DU +yF +yF +yF +yF +mL +Uh +ME +Bq +Bq +Bq +Bq +Bq +Bq +Bq +Bq +Bq +Bq +Bq +Bq +Bq +Bq +Bq +Bq +Bq +Bq +Bq +FZ +TS +mL +pN +pN +pN +be +fJ +Oq +SP +SP +SP +SP +SP +SP +kw +kw +kw +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(43,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +kw +kw +kw +kw +kw +kw +kw +kw +kw +EZ +us +us +us +us +us +ME +Qd +ME +cD +Bq +Bq +Bq +Bq +Bq +Bq +Bq +Bq +Bq +Bq +Bq +Bq +Bq +Bq +Bq +Bq +Bq +cD +ME +yE +ME +fJ +fJ +fJ +Az +fJ +Oq +kw +kw +kw +kw +kw +kw +kw +kw +kw +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(44,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +kw +kw +kw +QB +QB +QB +us +us +us +us +us +us +us +us +us +Wl +pc +cD +Bq +Bq +Bq +Bq +Bq +Bq +Bq +Bq +Bq +Bq +Bq +Bq +Nf +Nf +Nf +Ic +Ic +Nf +LZ +yE +Ze +FQ +FQ +FQ +Lq +FQ +FQ +fJ +fJ +QB +QB +QB +kw +kw +kw +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(45,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +kw +kw +kw +QB +us +us +us +us +us +us +us +us +us +QE +ME +cD +Bq +Bq +Bq +Bq +Bq +Bq +Bq +Bq +Bq +Bq +Bq +Bq +Nf +tt +Eu +rr +qU +Nf +kI +yE +Ze +fJ +fJ +fJ +fJ +fJ +FQ +fJ +fJ +QB +QB +kw +kw +kw +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(46,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +kw +kw +us +us +us +us +us +us +us +us +us +ul +ME +cD +Bq +Bq +Bq +Bq +Bq +Bq +Bq +Bq +Bq +Bq +Bq +Bq +Nf +fA +Ak +Tw +YX +Nf +ME +yE +Ze +fJ +fJ +fJ +fJ +fJ +FQ +fJ +fJ +QB +kw +kw +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(47,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +kw +kw +EZ +us +us +us +us +us +us +us +us +Pe +Ze +cD +Bq +Bq +Bq +Bq +Bq +Bq +Bq +Bq +Bq +Bq +Bq +Bq +Nf +wT +EX +nj +qU +Nf +hD +yE +Ze +fJ +fJ +fJ +fJ +fJ +Lq +fJ +fJ +kw +kw +kw +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(48,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +EZ +EZ +EZ +us +us +us +us +us +us +Qd +IV +cD +Bq +Bq +Bq +Bq +Bq +Bq +Bq +Bq +Bq +Bq +Bq +Bq +Nf +vC +WC +to +Dz +Nf +ME +yE +Ze +fJ +fJ +fJ +fJ +fJ +FQ +fJ +Oq +kw +kw +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(49,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +NK +EZ +EZ +us +us +us +us +us +us +Bf +ME +cD +Bq +Bq +Bq +Bq +Bq +Bq +Bq +Bq +Bq +Bq +Bq +Bq +Nf +Lv +WS +xh +Ha +Nf +qc +yE +Ze +fJ +fJ +fJ +fJ +fJ +FQ +fJ +Oq +kw +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(50,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +NK +NK +EZ +us +us +us +us +us +us +Qd +ME +cD +Bq +Bq +Bq +Bq +Bq +Bq +Bq +Bq +Bq +Bq +Bq +Bq +Nf +aD +IX +lU +kE +Nf +fj +yE +Ze +fJ +fJ +fJ +fJ +fJ +FQ +fJ +Oq +he +he +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(51,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +NK +NK +EZ +us +us +us +us +us +us +Qd +ME +cD +Bq +Bq +Bq +Bq +Bq +Bq +Bq +Bq +Bq +Bq +Bq +Bq +Nf +Ui +mg +Nj +kE +Nf +nq +te +Ze +fJ +fJ +fJ +fJ +fJ +FQ +Oq +Oq +he +TP +TP +TP +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(52,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +NK +NK +EZ +us +us +us +us +us +us +QE +ME +cD +Bq +Bq +Bq +Bq +Bq +Bq +Bq +Bq +Bq +Bq +Bq +Bq +Nf +Nf +SG +we +fH +Nf +fj +yE +Ze +fJ +fJ +fJ +fJ +fJ +FQ +Oq +Dn +he +he +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(53,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +NK +EZ +us +us +us +us +us +us +Wl +ME +cD +Bq +Bq +Bq +Bq +Bq +Bq +Bq +Bq +Bq +Bq +Bq +Bq +UE +Nu +cr +MZ +Wu +UE +fj +yE +Ze +xd +st +st +st +st +st +TU +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(54,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +Hg +ME +ME +ME +ME +QB +ME +Qd +ME +cD +Bq +Bq +Bq +Bq +Bq +Bq +Bq +Bq +Bq +Bq +Bq +Bq +fb +jA +jA +MZ +ex +UE +fj +sS +Ze +oy +st +lK +PJ +mk +mk +iz +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(55,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +Hg +ME +ME +ME +ME +QB +ME +Bf +GP +cD +Bq +Bq +Bq +Bq +Bq +Bq +Bq +Bq +Bq +Bq +Bq +Bq +fb +DA +xV +Dk +aS +UE +Fl +yE +Ze +oy +st +Bt +nd +mk +mk +iz +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(56,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +Hg +ME +ME +ME +ME +QB +ME +Ch +Om +UE +xB +uW +rp +KV +Za +rK +yU +rK +yU +UE +Qa +nQ +UE +Fq +JD +fE +jA +UE +gJ +yE +Ze +oy +st +Gl +mk +mk +mk +iz +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(57,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +Hg +ME +ME +ME +ME +QB +ME +Ch +IV +UE +sD +zB +ig +Yc +Qq +ri +uZ +ri +uZ +UE +fv +rH +UE +ZZ +JC +fE +Xw +UE +Tb +yE +Ze +oy +st +dQ +mk +mk +mk +st +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(58,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +Hg +ME +ME +ME +ME +QB +ME +Ch +DL +Hg +Hg +Hg +Hg +UE +UE +UE +UE +UE +UE +UE +UE +UE +UE +UE +UE +au +Jg +UE +ME +yE +Ze +oy +st +CB +oe +Wh +dQ +st +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(59,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +Hg +ME +ME +ME +ME +QB +ME +UI +Yf +ME +Hv +ME +he +he +he +he +he +sy +Fy +RX +bL +ka +Vh +Fa +ZY +sX +Nr +AL +dt +sL +Ze +oy +st +sB +dQ +dQ +dQ +st +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(60,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +Hg +ME +ME +ME +ME +QB +ME +ul +Yf +ME +ME +ME +he +he +he +he +he +DV +gW +YG +Ed +Ed +Vh +rn +LB +gM +wJ +Vh +IV +ME +Ze +oy +st +RT +oa +EL +zs +st +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(61,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +kw +QB +QB +QB +QB +QB +ME +oh +Yf +ME +ME +Qy +he +he +he +he +he +uu +ar +oL +UK +SJ +Vh +ne +HH +ac +tj +Vh +ME +IV +Ze +oy +st +st +st +st +st +st +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(62,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +kw +QB +QB +QB +QB +QB +ME +Tm +tB +BR +BR +uM +he +he +he +he +he +uu +ID +Gb +Vs +Vs +Vh +cA +vK +gM +MK +Vh +Ze +Ze +Ze +oy +oy +oy +oy +oy +oy +oy +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(63,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +kw +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +Vh +IS +OI +tL +Zz +Fj +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(64,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +kw +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +Vh +ol +zC +gM +ze +Fj +he +he +he +he +he +he +he +he +vd +vd +vd +vd +xX +xX +xX +xX +ue +yy +xX +xX +xX +xX +xX +xX +xX +xX +xX +Nn +Nn +Nn +Nn +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(65,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +kw +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +Vh +lV +zC +gM +wy +Fj +he +he +he +he +he +he +he +he +ce +Qc +aw +vj +FB +AX +FB +Fb +ra +OS +ec +FO +Kd +Xj +vA +Jt +bC +wd +xX +Nn +Nn +Nn +Nn +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(66,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +kw +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +CM +KM +IU +Hz +XJ +Fj +he +he +he +he +he +he +he +he +vd +Bk +hh +SV +bE +vI +wS +by +Ut +HV +oS +HY +Of +cT +LR +PC +ib +id +xX +Nn +Nn +Nn +Nn +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(67,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +Zy +Zy +Zy +Zy +Zy +Zy +Zy +Zy +Zy +Zy +YR +YR +Ox +Ox +Ox +Ox +Ox +Ox +Ox +Ox +he +ij +ij +ij +he +he +he +he +he +he +ym +yn +oq +he +he +he +he +he +he +he +he +he +yq +Na +oC +Ke +ak +Fj +he +he +he +he +he +he +he +he +vd +Dy +Id +Id +hQ +hQ +hQ +zj +rF +Ss +xX +xX +xX +xX +xX +xX +kV +Eb +HM +Nn +Nn +Nn +Nn +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(68,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +Zy +MC +Oy +Oy +Oy +Oy +Oy +Oy +Oy +Oy +Oy +xA +Ty +Ty +Ty +Ty +Ty +Ty +Ty +cj +he +ij +bv +NR +he +he +he +he +he +he +ym +yn +oq +he +he +he +he +he +he +he +he +he +Vh +Il +gn +ky +XB +Fj +he +he +he +he +he +he +he +he +vd +lj +lj +vW +XW +wY +jv +wK +zc +Gn +Ya +LD +tf +qZ +qZ +eD +xU +Jn +HM +Dd +Nn +Nn +Nn +Nn +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(69,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +Zy +Tg +Oy +yD +yD +iH +JR +Oy +KO +Eo +Sd +hT +Ub +hK +CN +AN +sr +nl +qt +SL +he +St +IR +jf +he +he +he +he +he +he +ym +yn +oq +he +he +he +he +he +he +he +he +he +he +he +ym +yn +oq +he +he +Tu +Tu +Tu +FY +Tu +Tu +JE +vd +lj +WO +lj +QM +cb +tM +IM +wb +MB +dW +eD +qZ +NN +qZ +eD +XA +BI +Sw +Nn +Nn +Nn +Nn +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(70,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +Zy +KP +Oy +Oc +Oc +Oc +Oc +HW +Oc +Oc +nX +hT +nw +bA +bA +bA +bA +bA +bA +bA +he +ij +rv +Zb +he +he +he +he +he +he +ym +yn +oq +he +he +he +he +he +he +he +he +he +he +he +ym +yn +oq +he +he +Tu +XD +ww +NV +MV +Zs +xC +vd +lj +lj +Au +nR +tk +oo +Uo +rb +vN +oo +bQ +Yr +qZ +UR +eD +mm +Jy +Sw +Nn +Nn +Nn +Nn +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(71,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +Zy +Zx +Oy +aT +ED +OO +tP +BH +ZC +zv +KX +mB +KX +bA +se +jz +ZP +lq +se +bA +he +ij +wQ +ij +he +he +he +he +he +he +ym +yn +oq +he +he +he +he +he +he +he +he +he +he +he +ym +yn +oq +he +he +Tu +xm +jg +NV +nf +VP +xC +vd +vd +vd +vd +xX +yh +mX +iC +Jn +vN +Xs +xX +eD +eD +Yl +xX +tY +Vl +xX +Nn +Nn +Nn +Nn +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(72,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +Zy +XR +Oy +Oc +vY +DX +dP +iy +PL +Zh +mD +Ru +PZ +DD +fk +qP +Kr +rA +fk +bA +he +dN +dN +dN +hi +rB +YN +Ll +dN +he +ym +yn +oq +he +he +he +he +he +he +he +he +he +he +he +ym +yn +oq +he +he +Tu +Hd +jg +Wt +dy +zi +xC +vd +ZM +ZM +gP +Ys +xw +qf +Wd +qf +jl +Xp +lw +hZ +Cx +Pa +gh +Vl +Vl +xX +Nn +Nn +Nn +Nn +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(73,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +Zy +KP +Oy +Oc +ru +rt +Lg +Wx +hB +zv +Ix +di +jY +bA +lT +aL +RE +qG +HS +tn +he +dN +Tq +Cg +hx +SY +LQ +hx +dN +he +ym +yn +oq +he +he +he +he +he +he +he +he +he +he +he +ym +yn +oq +he +he +Tu +ih +jg +cS +xz +Gt +xC +vd +ZM +IG +ZM +pk +Ym +tM +nA +Xi +fW +xE +Rg +aO +Jp +Pa +Vl +Vl +Vl +xX +xX +Nn +Nn +Nn +Nn +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(74,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +Zy +Ja +Oy +Oc +iL +IZ +IZ +aF +hW +zv +gt +Zv +fr +uL +Rv +Ax +DY +mA +eL +dR +he +dN +lr +Hk +hx +kO +Zr +VA +Va +he +ym +yn +oq +he +he +he +he +he +he +he +he +he +he +he +ym +yn +oq +he +he +Tu +fg +jg +pz +ax +Bs +xC +vd +ZM +ZM +Mn +nR +GJ +oo +mT +oo +vN +oJ +HN +qf +hd +NB +qf +FX +Vl +Vl +xX +xX +Nn +Nn +Nn +Nn +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(75,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +Zy +KP +Oy +Oc +Oc +Oc +Oc +Oc +Oc +zv +Vd +Ms +Sj +bA +vg +LC +mq +Qk +Wm +Nm +he +dN +MU +Fn +QH +jF +Xr +DK +lt +he +ym +yn +oq +he +he +he +he +he +he +he +he +he +he +he +ym +yn +oq +he +he +xe +tX +tX +HC +Em +oD +xC +vd +vd +vd +vd +xX +Vc +mX +iC +Vl +oI +zc +jv +jv +JV +jj +Vl +Yz +HG +dD +aG +Sw +Nn +Nn +Nn +Nn +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(76,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +Zy +KP +Oy +fG +fG +fG +fG +fG +fG +fG +fG +fG +js +js +js +js +Jm +js +js +js +he +dN +ap +Du +bn +CG +Du +Tv +dN +he +ym +yn +oq +he +he +he +he +he +he +he +he +he +he +he +ym +yn +oq +he +he +Tu +rQ +qh +kD +Jl +Nh +yV +vd +KK +KK +MS +hn +Kb +ry +PQ +Kb +Pz +Or +Lc +cZ +ZT +IC +LE +Yz +jH +nF +bB +Sw +Nn +Nn +Nn +Nn +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(77,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +Zy +IY +FH +fG +Iz +zZ +Ef +RA +zZ +LY +zZ +tV +zT +Wn +Uc +Xm +SA +iT +lP +js +he +dN +mn +hx +bn +CG +hx +WH +dN +he +ym +yn +oq +he +he +he +he +he +he +he +he +he +he +he +ym +yn +oq +he +he +Tu +Tu +Tu +eo +Tu +Tu +xC +vd +KK +Yi +KK +VG +nI +tM +IM +EP +Vl +wb +zq +Bc +jd +zO +Do +Jj +nF +nF +MM +Sw +Nn +Nn +Nn +Nn +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(78,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +Zy +KP +Oy +fG +XL +zZ +Le +WQ +zZ +ma +zZ +yA +mV +DS +sW +Iq +Mz +AR +Rr +js +he +dN +mn +hx +Im +CG +hx +WH +dN +he +ym +yn +oq +he +he +he +he +he +he +he +he +he +he +he +ym +yn +oq +he +he +xv +mN +VY +Jr +mN +lh +xC +vd +KK +KK +kU +nR +EW +oo +Uo +ZO +oo +Mv +dv +SX +jH +nF +nF +nF +nF +nF +bB +Sw +Nn +Nn +Nn +Nn +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(79,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +Zy +KP +Oy +fG +TB +gf +CY +Bw +zZ +sU +zZ +Ks +mV +My +Iq +Iq +Wf +AR +YU +js +he +dN +dN +nO +dN +nS +dN +dN +dN +he +ym +yn +oq +he +he +he +he +he +he +he +he +he +he +he +ym +yn +oq +he +he +xv +zd +kS +Wg +QC +fN +xC +vd +vd +vd +vd +xX +Ry +mX +iC +EP +Vl +wb +xI +Vg +jH +nF +nF +nF +nF +nF +bB +Sw +Nn +Nn +Nn +Nn +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(80,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +Zy +Tg +Oy +fG +AF +tG +fF +fF +wi +fF +fF +ku +lN +vQ +cC +GE +dq +hX +ye +QZ +he +dN +NP +Pc +Pc +Sn +On +cn +dN +he +ym +yn +oq +he +he +he +he +he +he +he +he +he +he +he +ym +yn +oq +he +he +xv +Co +uK +lk +Ga +Dm +xC +vd +CF +CF +ls +nC +vU +vU +RP +fn +vU +nL +fO +UV +jH +nF +nF +nF +nF +nF +bB +Sw +Nn +Nn +Nn +Nn +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(81,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +Zy +KP +Oy +fG +sn +zZ +Fm +fY +zZ +rx +xs +xK +aC +jo +Zq +GE +UX +mK +bh +no +he +dN +Tr +hx +hx +IT +hx +KY +dN +he +ym +yn +oq +he +he +he +he +he +he +he +he +he +he +he +ym +yn +oq +he +he +xv +TL +hV +vS +rG +mN +xC +vd +CF +wM +CF +oP +mX +tM +IM +EP +Vl +wb +IM +es +jH +nF +nF +nF +nF +nF +bB +Sw +Nn +Nn +Nn +Nn +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(82,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +Zy +yD +Oy +fG +uF +zZ +jD +FU +zZ +Ko +zZ +uG +mV +iI +Iq +Iq +kQ +bh +bh +js +he +dN +Xk +hx +af +sM +hx +LS +dN +he +ym +yn +oq +he +he +he +he +he +he +he +he +he +he +he +ym +yn +oq +he +he +xv +OU +mN +mN +mN +TV +xC +vd +CF +CF +tb +nR +Sx +oo +mT +Lj +Vl +wb +IM +eY +sk +nF +nF +nF +nF +nF +MM +Sw +Nn +Nn +Nn +Nn +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(83,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +Zy +Zx +Oy +fG +xT +zZ +wF +Sh +zZ +WU +zZ +KI +mV +jP +qC +cV +Rp +Ld +lz +js +he +Nq +zR +Kq +PE +GO +hx +Fx +dN +he +ym +yn +oq +he +he +he +he +he +he +he +he +he +he +he +ym +yn +oq +he +he +he +he +he +he +he +he +he +vd +vd +vd +vd +xX +iW +mX +oN +zV +Xi +xE +oN +Xi +ml +nF +nF +nF +nF +nF +bB +Sw +Nn +Nn +Nn +Nn +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(84,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +Zy +MC +Oy +fG +fG +fG +fG +fG +fG +fG +fG +fG +js +js +js +js +js +js +js +js +he +dN +vm +tq +bI +Ev +hx +KG +dN +he +ym +yn +oq +he +he +he +he +he +he +he +he +he +he +he +ym +yn +oq +he +he +he +he +he +he +he +he +he +vd +ny +ny +ZF +FT +rT +qm +qm +rT +qm +sA +qm +qm +lB +qy +qy +qy +qy +qy +LJ +Sw +Nn +Nn +Nn +Nn +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(85,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +Zy +Tg +Oy +lc +yD +yD +an +jW +jW +CS +jW +jW +yD +FS +CS +Ox +Ag +DR +Vv +SL +he +dN +Ji +UG +NH +cs +Hk +Pi +dN +he +ym +yn +oq +he +he +he +he +he +he +he +he +he +he +he +ym +yn +oq +he +he +he +he +he +he +he +he +he +vd +ny +uy +ny +DH +mX +tM +Re +pa +Vl +wb +It +dn +Wi +bT +kv +tu +tu +Jy +xX +xX +Nn +Nn +Nn +Nn +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(86,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +Zy +KP +Oy +Oy +Oy +Oy +Oy +Oy +Oy +Oy +Oy +Oy +Oy +Oy +Oy +FP +Oy +Oy +Oy +uS +he +dN +gv +ZW +gE +lZ +wc +Iw +dN +he +ym +yn +oq +he +he +he +he +he +he +he +he +he +he +he +ym +yn +oq +he +he +he +he +he +he +he +he +he +vd +ny +ny +Ew +nR +ST +RS +Ot +CI +oo +AV +In +mZ +Kv +um +zJ +hb +nn +xX +xX +Nn +Nn +Nn +Nn +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(87,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +Zy +Zy +Zy +Zy +Zy +Zy +Zy +Zy +Zy +Zy +Zy +Zy +Zy +Zy +dB +kw +Dp +Dp +Dp +Dp +he +dN +Fo +hx +hx +DG +hx +RR +dN +he +ym +yn +oq +he +he +he +he +he +he +he +he +he +he +he +ym +yn +oq +he +he +he +he +he +he +he +he +he +vd +vd +vd +vd +xX +xX +xX +xX +dz +ue +xX +xX +xX +xX +xX +gq +ue +xX +xX +Nn +Nn +Nn +Nn +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(88,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +EG +Bu +tg +xY +he +dN +fi +UL +UL +NU +UL +Xa +dN +he +ym +yn +oq +he +he +he +he +he +he +he +he +he +he +he +ym +yn +oq +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(89,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +zA +VL +mc +VQ +he +dN +dN +dN +MI +dE +dN +dN +dN +he +ym +yn +oq +he +he +he +he +Fw +nT +Gz +Fw +Fw +he +he +ym +yn +oq +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(90,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +Dp +Dp +Dp +Dp +he +he +he +he +he +he +he +he +he +he +ym +yn +oq +he +he +he +he +Fw +ld +jy +RV +Fw +he +he +ym +yn +oq +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(91,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +ym +yn +oq +he +he +he +he +Fw +Ta +Al +qA +Fw +he +he +ym +yn +oq +he +he +Uw +Uw +Uw +Uw +As +Uw +Rk +xa +xa +xa +xa +xa +xa +xa +xa +Nn +Nn +Nn +Nn +Nn +Nn +Nn +Nn +Nn +Nn +Nn +Nn +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(92,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +cu +cu +cu +cu +cu +cu +cu +Hg +rL +Yf +ME +ME +ae +Ze +he +he +he +he +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +dN +dN +dN +MI +tv +dN +dN +dN +he +ym +yn +oq +he +he +he +he +Fw +mY +zI +vL +Fw +he +he +ym +yn +oq +he +he +Uw +yt +yt +wf +ub +JB +Rk +xa +xa +xa +xa +xa +xa +xa +xa +Nn +Nn +Nn +Nn +Nn +Nn +Nn +Nn +Nn +Nn +Nn +Nn +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(93,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +cu +cu +cu +cu +cu +cu +cu +Hg +bm +jr +IV +sG +TO +Ze +he +he +he +he +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +br +po +Yk +bs +Lh +tF +Yb +dN +he +ym +yn +oq +he +he +he +he +Fw +Fw +Fw +Fw +Fw +he +he +ym +yn +oq +he +he +Uw +JI +SD +SD +Ok +ZD +Rk +Xu +Vu +am +Uw +Uw +dw +iv +iv +xX +Nn +Nn +Nn +Nn +Nn +Nn +Nn +Nn +Nn +Nn +Nn +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(94,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +cu +cu +Wa +Wa +oZ +Wa +VX +Hg +oG +nq +nq +nq +yw +Ze +Ju +Ju +Ju +Ju +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +br +yu +nE +nE +GM +nE +lL +dN +he +ym +yn +oq +he +he +he +he +he +he +he +he +he +he +he +ym +yn +oq +he +he +Uw +Ff +SD +SD +Rw +Gc +Gc +Qu +Vu +Qz +fP +dU +dj +zY +ro +Ie +he +he +he +he +he +he +he +Nn +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(95,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +cu +cu +Wa +Wa +Wa +Wa +aH +tE +OA +fR +CA +vp +uP +DI +ir +Fs +et +QN +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +br +BF +sh +Hc +uJ +rR +qe +br +he +ym +yn +oq +he +he +he +he +he +he +he +he +he +he +he +ym +yn +oq +he +he +Uw +Cv +Cv +Cv +zr +zr +mz +wl +Vu +pB +zr +pO +Qr +Pn +eQ +An +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(96,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +cu +cu +Cf +Wa +Wa +Wa +Dl +fQ +Xz +ZI +Hj +pR +Hj +Hj +XE +FJ +qu +Jo +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +br +Qp +nE +dh +GM +pt +Yj +br +he +ym +yn +oq +he +he +he +he +he +he +he +he +he +he +he +ym +yn +oq +he +he +Uw +yj +eh +XT +zr +zr +Ft +iu +Vu +HZ +zr +kg +DE +dw +dw +dw +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(97,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +cu +cu +Wa +Wa +Wa +Wa +UY +fQ +md +AP +EC +gL +EC +EC +pf +mS +XU +Sk +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +br +kT +nE +nE +GM +nE +oY +br +he +ym +yn +oq +he +he +he +he +he +he +he +he +he +he +he +ym +yn +oq +he +he +Uw +zr +zr +zr +jk +zr +mo +Tk +Vu +wN +Ou +qz +Ci +HE +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(98,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +cu +cu +Wa +Wa +Wa +Wa +Ud +fQ +Bl +xb +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +br +WM +nE +Qe +OR +ws +me +br +he +ym +yn +oq +he +he +he +he +he +he +he +he +he +he +he +ym +yn +oq +he +he +Uw +Gd +zr +Ne +TE +YY +CJ +TC +JG +Uw +Uw +Uw +dw +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(99,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +cu +cu +cu +cu +cu +cu +cu +fQ +Bl +xb +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +br +YD +nE +nE +Qj +Lx +Ar +yR +he +ym +yn +oq +he +he +he +he +he +he +he +he +he +he +he +ym +yn +oq +he +he +sE +zr +kp +mC +cm +PY +KE +Yt +ey +Cb +Cb +Cb +Cb +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(100,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +vP +tK +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +br +oR +sj +QO +EA +Ov +aa +br +he +ym +yn +oq +he +he +he +he +he +he +he +he +he +he +he +ym +yn +oq +he +he +Mh +uQ +CO +mC +cm +PY +KE +xk +Cb +Cb +Cb +Cb +Cb +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(101,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +je +YI +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +yJ +yJ +yJ +yJ +Gp +yJ +yJ +yJ +he +ym +yn +oq +he +he +he +he +he +he +he +he +he +he +he +ym +yn +oq +he +he +sE +zr +nJ +jC +it +hf +cp +og +Cb +Cb +Cb +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(102,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +LL +BO +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +yJ +bM +mv +iO +hl +py +Gv +yJ +he +ym +yn +oq +he +he +he +he +he +he +he +he +he +he +he +ym +yn +oq +he +he +Uw +nt +zr +mC +cm +PY +KE +xk +Cb +Cb +Cb +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(103,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +fI +YA +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +yJ +Ia +Rn +hY +yv +oz +mv +Lz +he +ym +yn +oq +he +he +he +he +he +he +he +he +he +he +he +ym +yn +oq +he +he +Uw +oK +zr +mC +cm +Ol +KE +ey +Cb +Cb +Cb +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(104,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +Pm +AB +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +yJ +zl +ad +ad +Zu +RI +jJ +du +he +ym +yn +oq +he +he +he +he +he +he +he +he +he +he +he +ym +yn +oq +he +he +Uw +UC +zr +GZ +Ay +Ay +GZ +qq +Cb +Cb +Cb +he +he +he +he +TP +TP +TP +he +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(105,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +Bl +JP +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +yJ +kz +Hs +nY +DF +ad +XP +gi +he +ym +yn +oq +he +he +he +he +he +he +he +he +he +he +he +ym +yn +oq +he +he +Uw +sK +sK +zr +zr +Bm +rW +Uw +Cb +Cb +Cb +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(106,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +Bl +Rh +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +yJ +jR +XI +KQ +Io +Uj +Nb +yJ +he +ym +yn +oq +he +he +he +he +he +he +he +he +he +he +he +ym +yn +oq +he +he +Uw +sK +sK +qL +qL +bd +iG +Uw +he +he +he +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(107,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +Hf +Se +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +yJ +ZK +LP +Uz +em +Ek +aM +yJ +he +ym +yn +oq +he +he +he +he +he +he +he +he +he +he +he +ym +yn +oq +he +he +Uw +Uw +Uw +Uw +Uw +Uw +Uw +Uw +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(108,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +Cj +xq +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +yJ +yJ +yJ +yJ +yJ +yJ +yJ +yJ +he +ym +yn +oq +he +he +he +he +he +he +he +he +he +he +he +ym +yn +oq +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(109,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +nm +XC +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +ym +yn +oq +he +he +he +he +he +he +he +he +he +he +he +ym +yn +oq +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(110,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +ah +bo +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +Kx +OD +pr +he +he +he +he +he +he +he +he +he +he +he +Kx +OD +pr +Qt +Qt +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(111,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +Vo +mj +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +Kx +gy +pr +he +he +he +he +he +he +he +he +he +he +he +Kx +gy +pr +Dq +zy +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(112,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +Mx +RW +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +zX +up +VZ +he +he +he +he +he +he +he +he +he +he +he +zX +up +VZ +ot +ot +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(113,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +hI +Wv +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +ns +MF +qb +he +he +he +he +he +he +he +he +he +he +he +ns +MF +qb +iE +qN +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(114,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +Wj +SQ +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +NJ +ZR +Ds +he +he +he +he +he +he +he +he +he +he +he +NJ +ZR +Ds +Hr +Ej +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(115,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +mf +PX +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +vy +Yo +hG +he +he +he +he +he +he +he +he +he +he +he +vy +Yo +hG +kk +Ux +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(116,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +Bl +ts +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +Dt +VV +qW +he +he +he +he +he +he +he +he +he +he +he +Dt +VV +qW +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(117,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +jm +ts +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +iP +gk +kf +he +he +he +he +he +he +he +he +he +he +he +iP +gk +kf +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(118,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +Og +ts +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +tN +kn +cO +he +he +he +he +he +he +he +he +he +he +he +tN +kn +cO +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(119,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +Bl +ts +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TA +JW +IH +he +he +he +he +he +he +he +he +he +he +he +TA +JW +IH +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(120,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +To +ts +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +wo +sc +vV +he +he +he +he +he +he +he +he +he +he +he +wo +sc +vV +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(121,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +FV +ZA +La +gp +ag +qO +jh +gQ +El +aX +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +Ly +sc +vV +he +he +he +he +he +he +he +he +he +he +he +Ly +sc +vV +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(122,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +KZ +EC +Ig +qQ +ES +EC +BC +EC +XU +aX +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +Kx +aq +sY +he +he +he +he +he +he +he +he +he +he +he +Kx +aq +sY +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(123,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +eI +fc +tm +he +he +he +he +he +he +he +he +he +he +he +eI +fc +tm +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(124,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +Kx +sc +vV +he +he +he +he +he +he +he +he +he +he +he +Kx +sc +vV +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(125,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +uV +sc +NS +he +he +he +he +he +he +he +he +he +he +he +uV +sc +NS +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(126,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +Kx +sc +vV +he +he +he +he +he +he +he +he +he +he +he +Kx +sc +vV +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(127,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +Kx +ux +cO +he +he +he +he +he +he +he +he +he +he +he +Kx +ux +cO +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(128,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +Kx +JW +IH +he +he +he +he +he +he +he +he +he +he +he +Kx +JW +IH +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(129,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +Zi +sc +vV +he +he +he +he +he +he +he +he +he +he +he +Zi +sc +vV +he +he +he +he +he +he +he +he +he +he +he +he +he +LM +LM +LM +LM +LM +LM +LM +LM +LM +LM +LM +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(130,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +Ni +yP +Cl +he +he +he +he +he +he +he +he +he +he +he +Ni +yP +Cl +Gq +Gq +Gq +Gq +zz +zz +zz +zz +bH +bH +bH +bH +LM +LM +LM +LM +LM +LM +LM +LM +LM +LM +LM +LM +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(131,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +wo +sc +pg +he +he +he +he +he +he +he +he +he +he +he +wo +sc +pg +Gq +Gq +Gq +Gq +zz +zz +zz +zz +bH +bH +bH +bH +LM +LM +LM +ko +pA +hC +lM +Iu +kM +kM +LM +LM +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(132,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +Hu +EV +OT +he +he +he +he +he +he +he +he +he +he +he +Hu +EV +OT +Gq +gO +tD +wO +zz +zn +vG +uH +bH +sz +lI +FK +LM +LM +LM +jw +kM +Ih +kM +kM +kM +kM +LM +MR +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(133,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +vy +xf +uC +he +he +he +he +he +he +he +he +he +he +he +vy +xf +uC +Vf +RZ +FA +wW +Cw +vz +Rf +NW +QP +OK +Us +pw +LM +LM +kM +kM +kM +Ih +kM +kM +kM +jw +LM +LM +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(134,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +OY +jL +OY +he +he +he +he +he +he +he +he +he +he +he +OY +jL +OY +Gq +wr +KW +GI +zz +zn +re +zn +bH +sz +UM +hp +Uy +XO +XO +Vj +CL +jx +mW +mW +MD +wP +LM +LM +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(135,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +DV +bb +iR +he +he +he +he +he +he +he +he +he +he +he +DV +bb +iR +Gq +Gq +Gq +Gq +zz +Ve +re +xp +bH +PS +ju +ea +LM +LM +kM +Li +Ue +Ue +PW +Ue +ee +aI +LM +LM +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(136,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +hL +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +jX +qE +pr +he +he +he +he +he +he +he +he +he +he +he +jX +qE +pr +Gq +Gq +Gq +Gq +zz +eg +re +SZ +bH +TK +ju +FK +LM +LM +nu +dG +Ue +dX +wU +Ue +pP +yZ +LM +LM +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(137,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +WL +qv +pr +he +he +he +he +he +he +he +he +he +he +he +WL +qv +pr +he +he +he +zz +zz +om +YT +Ki +bH +JF +ju +oV +LM +LM +kM +iK +Ue +Ue +PW +Ue +ee +XM +LM +LM +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(138,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +Vk +qv +pr +he +he +he +he +he +he +he +he +he +he +he +Vk +qv +pr +he +he +he +zz +zz +NY +rU +CU +bH +EB +zg +tC +LM +LM +BV +JA +bK +Xt +mW +mW +WB +kM +LM +LM +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(139,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +Kx +qv +pr +he +he +he +he +he +he +he +he +he +he +he +Kx +qv +pr +he +he +he +zz +zz +hw +zn +ll +bH +zN +ve +sz +LM +LM +kM +kM +hM +uR +kM +kM +kM +kM +LM +LM +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(140,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +Kx +qv +pr +he +he +he +he +he +he +he +he +he +he +he +Kx +qv +pr +he +he +he +zz +zz +lC +xn +zn +bH +vb +xS +iJ +LM +LM +LM +fe +kM +kM +ke +kM +kM +fe +LM +LM +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(141,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +fa +SL +he +qp +dT +GG +he +he +he +he +he +he +he +he +he +he +he +qp +dT +GG +he +he +he +zz +zz +zz +zz +zz +bH +bH +bH +bH +LM +LM +LM +LM +LM +LM +LM +LM +LM +LM +LM +LM +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(142,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +oy +gj +Zy +yD +yD +Oy +vs +he +qY +cW +ay +he +he +he +he +he +he +he +he +he +he +he +qY +cW +ay +he +he +he +zz +zz +zz +zz +zz +bH +bH +bH +bH +LM +LM +LM +LM +LM +LM +LM +LM +LM +LM +LM +LM +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(143,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +oy +oy +Zy +Zy +Zy +Oy +iS +he +qT +eR +ZH +he +he +he +he +he +he +he +he +he +he +he +qT +eR +ZH +he +he +he +he +he +he +he +he +he +he +he +he +he +LM +LM +LM +LM +LM +LM +MR +LM +LM +LM +MR +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(144,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +Kg +oy +oy +oy +Zy +Oy +iS +he +go +qv +pr +he +he +he +he +he +he +he +he +he +he +he +go +qv +pr +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(145,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +yS +oj +jt +Zy +Un +yD +he +RK +Ng +ps +he +he +he +he +he +he +he +he +he +he +he +RK +Ng +ps +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(146,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +TP +Xx +oy +Zy +wk +yD +he +Kx +CR +oH +he +he +he +he +he +he +he +he +he +he +he +Kx +CR +oH +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +wh +AJ +RM +wh +Wc +wh +VT +wh +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(147,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +CT +CT +fL +oy +Zy +Oy +wn +he +Ni +UQ +VZ +he +he +he +he +he +he +he +he +he +he +he +Ni +UQ +VZ +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +wh +wh +CP +wh +GQ +wh +GQ +wh +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(148,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +CT +TP +sH +oy +Zy +Oy +yD +he +uw +eW +le +he +he +he +he +he +he +he +he +he +he +he +uw +eW +le +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +wh +Be +Nz +Nz +eU +Sq +wq +wh +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(149,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +CT +TP +sH +jt +Zy +Oy +iS +he +Kx +hr +pr +he +he +he +he +he +he +he +he +he +he +he +Kx +hr +pr +he +he +Oy +Zy +oy +Ap +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +UZ +MP +vZ +wh +qX +wh +wh +wh +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(150,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +CT +TP +sH +oy +Yu +Oy +iS +he +uV +hr +pr +he +he +he +he +Mw +EN +EN +Mw +he +he +he +uV +hr +pr +he +he +Oy +Zy +oy +Ap +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +wh +bw +jN +wh +IP +Yg +hP +wh +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(151,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +RY +TP +sH +oy +Yu +Oy +iS +he +wo +SH +pr +he +he +he +Ze +EN +BZ +ZX +EN +he +he +he +wo +SH +pr +he +he +Oy +Zy +oy +Ap +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +wh +kb +Dr +wh +iB +jN +Vq +wh +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(152,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +RY +TP +sH +oy +Yu +Oy +iS +he +IW +gr +yG +he +he +he +Ze +EN +BZ +BZ +BZ +he +he +he +IW +gr +yG +he +he +Oy +Zy +oy +Ap +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +wh +wh +wh +wh +wh +wh +wh +wh +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(153,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +RY +RY +fL +xQ +Zy +FH +IY +he +Kx +hr +pr +he +he +he +Ze +WD +BZ +BZ +BZ +he +he +he +Kx +hr +pr +he +he +Oy +Zy +Aa +Ap +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(154,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +sH +oy +Yu +Oy +iS +he +Kx +kc +wA +he +he +he +Ze +EN +BZ +BZ +EN +he +he +he +Kx +kc +wA +he +he +Oy +Zy +oy +Ap +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(155,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +sH +oy +Yu +Oy +yD +he +go +nN +pr +he +he +he +he +Mw +EN +EN +Mw +he +he +he +go +nN +pr +he +he +Oy +Zy +oy +Ap +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(156,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +Xx +oy +Yu +Oy +yD +he +KJ +GF +cE +he +he +he +he +he +he +he +he +he +he +he +KJ +GF +cE +he +he +Oy +Zy +oy +Ap +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(157,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +aj +TP +ga +oy +Zy +Oy +zQ +he +OY +Vr +OY +he +he +he +he +he +he +he +he +he +he +he +OY +Vr +OY +he +he +Oy +Zy +oy +Ap +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(158,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +sH +oy +Zy +Oy +yD +FS +GB +yD +yD +lc +yD +CS +Gy +Wr +wj +Vi +Gy +CS +Pg +Ua +Qm +yD +si +FS +yD +Oy +Zy +oy +Ap +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(159,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +ga +oy +Zy +wk +Oy +Oy +Os +Sa +Sa +mE +Sa +Sa +WT +TJ +JT +Ht +of +fV +sI +bi +pT +pT +dc +Oy +Oy +Oy +Zy +oy +Ap +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(160,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +ga +oy +Zy +Zy +Zy +Zy +hT +yD +IY +Gy +hS +hS +Gy +yM +Sc +fm +Gy +hS +hS +Gy +Yy +IY +IY +Zy +Zy +Zy +Zy +oy +Ap +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(161,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +ga +oy +gj +mM +pX +Zy +yz +Bv +ks +Gy +SO +SO +sQ +Bo +cl +as +Mb +SO +SO +Gy +bD +TN +gV +Zy +oy +oy +oy +oy +Ap +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(162,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +Xx +oy +oy +oy +wL +Zy +Fu +yD +rZ +Gy +XK +XK +uv +mU +XZ +eA +zo +XK +XK +Gy +rs +zE +in +Zy +oy +de +yS +yS +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(163,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +SR +oj +oy +Qf +Zy +Zy +Mc +Zy +hS +Tp +sJ +pm +sP +lR +Yv +IB +fK +Su +hS +Zy +Mc +Zy +Zy +oy +Qf +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(164,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +sH +oy +oy +oy +oy +oy +oQ +Cn +mi +vo +AA +Xq +PT +NI +ql +Qw +km +Cn +oQ +oy +oy +oy +oy +Qf +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(165,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +yS +ZN +SR +SR +sd +oy +mb +Rc +Rc +Rc +Rc +hA +Rc +Rc +Rc +Rc +mb +oy +EK +yS +yS +ZN +CT +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(166,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +CT +eb +RY +ga +oy +wL +Rc +HI +XV +pv +OG +TW +Nx +ja +Rc +KA +oy +wL +RY +CT +RY +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(167,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +ga +oy +Ap +Rc +KU +cq +FC +li +vh +cq +iw +Rc +oy +kR +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +aj +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(168,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +Xx +oy +wL +Rc +No +cq +xM +li +zb +cq +wB +Rc +oy +wL +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(169,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +ga +oy +wL +Rc +AD +cq +cq +ty +cq +cq +tJ +Rc +oy +wL +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(170,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +xu +wL +Rc +pe +ck +aY +li +UA +kH +aJ +Rc +oy +Qf +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(171,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +xu +wL +Rc +Rc +Rc +Rc +XY +Rc +Rc +Rc +Rc +oy +Qf +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(172,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +sH +oy +oy +oy +oQ +Ik +Mp +kY +kG +Ik +nK +sH +oy +Qf +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(173,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +yS +yS +oj +oy +tZ +Oz +lO +bj +Jf +TP +sH +oy +wL +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(174,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +ga +oy +Rc +Cm +bc +JN +Rc +mM +qj +oy +wL +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(175,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +ga +oy +oy +oy +oy +oy +oy +oy +oy +oy +eb +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(176,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +eb +SR +eb +ZN +ZN +ZN +ZN +eb +SR +ZN +RY +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(177,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(178,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(179,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(180,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(181,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(182,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(183,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(184,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(185,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(186,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(187,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(188,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(189,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(190,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(191,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} +(192,1,1) = {" +he +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +TP +"} diff --git a/maps/victory/levels/deck2.dmm b/maps/victory/levels/deck2.dmm new file mode 100644 index 000000000000..ad3c353c8631 --- /dev/null +++ b/maps/victory/levels/deck2.dmm @@ -0,0 +1,64430 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aaG" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/space) +"aaJ" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/security/detectives_office) +"abo" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/monotile, +/area/security/lobby) +"ada" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/window/basic{ + dir = 1 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/bar) +"adl" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/red/border, +/turf/simulated/floor/tiled/dark, +/area/security/security_processing) +"adV" = ( +/turf/simulated/floor/tiled, +/area/security/lobby) +"aek" = ( +/obj/machinery/recharge_station, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"afd" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area_hallway) +"afH" = ( +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/obj/structure/sign/department/interrogation{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/security/interrogation) +"agu" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central6{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"ahm" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/machinery/sheet_silo_loader{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/mining_main/refinery) +"ahK" = ( +/obj/machinery/power/solar, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/simulated/floor/airless, +/area/maintenance/dormitory) +"aiq" = ( +/obj/machinery/button/windowtint{ + id = "det_office"; + pixel_x = -23 + }, +/obj/structure/table/woodentable, +/obj/item/flashlight/lamp/green, +/turf/simulated/floor/carpet, +/area/space) +"aiu" = ( +/obj/machinery/light{ + dir = 4; + use_power = 0 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"aix" = ( +/turf/simulated/wall/prepainted/cargo, +/area/quartermaster/office) +"ajP" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/maintenance/dormitory) +"akf" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/item/stool/padded, +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/bar) +"akk" = ( +/obj/structure/bed/chair/comfy/teal, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_3) +"akl" = ( +/obj/structure/table/marble, +/obj/machinery/reagentgrinder, +/obj/item/reagent_containers/food/drinks/shaker{ + pixel_y = 8; + pixel_x = -8 + }, +/obj/item/reagent_containers/glass/rag{ + pixel_x = -8; + pixel_y = 8 + }, +/obj/effect/floor_decal/corner_oldtile/white/diagonal, +/obj/machinery/button/remote/blast_door{ + id = "bar"; + name = "Bar Shutter control"; + pixel_y = 32; + pixel_x = -8 + }, +/obj/machinery/button/holosign{ + id = "barsign1"; + pixel_x = 8; + pixel_y = 28 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/bar) +"ame" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"amn" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/bar) +"amV" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central6{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/obj/item/duct_tape_roll, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"amW" = ( +/turf/simulated/wall/prepainted, +/area/crew_quarters/visitor_dining) +"aoq" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"aor" = ( +/obj/structure/railing, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"aoL" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lime/bordercorner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hydroponics) +"aoS" = ( +/turf/simulated/floor/wood, +/area/space) +"aoX" = ( +/obj/structure/sign/directions/medical{ + dir = 8; + pixel_y = -42 + }, +/obj/structure/sign/directions/command{ + dir = 8; + pixel_y = -36 + }, +/obj/structure/sign/directions/science{ + dir = 8; + pixel_y = -30 + }, +/obj/structure/sign/directions/security{ + dir = 8; + pixel_y = -24 + }, +/obj/effect/floor_decal/techfloor, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"apC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/wood, +/area/quartermaster/qm) +"aqa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hydroponics) +"asS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/space) +"atd" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/mining_main/storage) +"atx" = ( +/obj/effect/floor_decal/techfloor, +/obj/machinery/computer/timeclock/premade/south, +/turf/simulated/floor/tiled, +/area/hallway/primary/starboard) +"atY" = ( +/obj/machinery/power/apc/north_mount, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/camera/network/cargo, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"auf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/space) +"auh" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/machinery/fire_alarm/west_mount{ + pixel_x = -24; + pixel_y = 6 + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -28; + pixel_y = -7 + }, +/turf/simulated/floor/tiled/dark, +/area/prison/cell_block) +"auI" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"auN" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad" + }, +/obj/machinery/shield_diffuser, +/obj/map_helper/airlock/door/simple, +/obj/machinery/door/airlock/glass_external{ + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/external_airlock, +/turf/simulated/floor/plating, +/area/space) +"awR" = ( +/obj/structure/table/rack/shelf/steel, +/obj/effect/floor_decal/industrial/outline/red, +/obj/machinery/light{ + dir = 1 + }, +/obj/item/clothing/accessory/armor/armguards/ablative{ + pixel_x = -4; + pixel_y = -5 + }, +/obj/item/clothing/accessory/armor/armguards/ablative{ + pixel_x = -4; + pixel_y = -5 + }, +/obj/item/clothing/accessory/armor/armguards/ablative{ + pixel_x = -4; + pixel_y = -5 + }, +/obj/item/clothing/accessory/armor/armguards/ablative{ + pixel_x = -4; + pixel_y = -5 + }, +/obj/item/clothing/accessory/armor/legguards/ablative{ + pixel_x = 5; + pixel_y = -7 + }, +/obj/item/clothing/accessory/armor/legguards/ablative{ + pixel_x = 5; + pixel_y = -7 + }, +/obj/item/clothing/accessory/armor/legguards/ablative{ + pixel_x = 5; + pixel_y = -7 + }, +/obj/item/clothing/accessory/armor/legguards/ablative{ + pixel_x = 5; + pixel_y = -7 + }, +/obj/item/clothing/head/helmet/ablative{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/item/clothing/head/helmet/ablative{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/item/clothing/head/helmet/ablative{ + pixel_x = -5; + pixel_y = 4 + }, +/obj/item/clothing/head/helmet/ablative{ + pixel_x = -5; + pixel_y = 4 + }, +/obj/effect/floor_decal/corner/red/full{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"awT" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/space) +"awW" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/mining_main/storage) +"axe" = ( +/turf/simulated/floor/tiled/old_cargo/white, +/area/crew_quarters/heads/hos) +"axq" = ( +/obj/machinery/door/blast/regular{ + dir = 4; + id = "armorytactical"; + name = "Tactical Armory Access" + }, +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/obj/effect/floor_decal/corner/black{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"ayj" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/spawner/window/low_wall/reinforced/full, +/obj/effect/paint_stripe/darkred, +/turf/simulated/floor/plating, +/area/crew_quarters/bar) +"ayM" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/machinery/light/small, +/turf/simulated/floor/tiled/white, +/area/space) +"azv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + dir = 8; + pixel_x = 30 + }, +/turf/simulated/floor/tiled, +/area/space) +"azV" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/crew_quarters/sleep/Dorm_5) +"aAZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/dormitory) +"aBz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/effect/floor_decal/corner_oldtile/white/diagonal, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/kitchen) +"aBF" = ( +/obj/machinery/camera/network/civilian{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor, +/turf/simulated/floor/tiled, +/area/hallway/primary/starboard) +"aBI" = ( +/obj/structure/cable/green, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/spawner/window/low_wall/reinforced/full, +/obj/effect/paint_stripe/darkred, +/turf/simulated/floor/plating, +/area/space) +"aBO" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/air_alarm{ + dir = 8; + pixel_x = 25 + }, +/turf/simulated/floor/crystal, +/area/station/stairs_two) +"aCs" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/sleep/Dorm_6) +"aCx" = ( +/obj/structure/table/woodentable, +/obj/machinery/door/window/westright{ + dir = 1; + req_one_access = list(35,28) + }, +/turf/simulated/floor/plating, +/area/hydroponics) +"aCM" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/camera/network/cargo{ + dir = 4 + }, +/obj/item/radio/intercom{ + dir = 8; + pixel_x = -28; + req_access = list() + }, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/mining_main/refinery) +"aEf" = ( +/obj/structure/table/rack/shelf/steel, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/effect/floor_decal/industrial/outline/red, +/obj/item/gun/energy/phasegun/rifle, +/obj/item/gun/energy/phasegun/rifle, +/turf/simulated/floor/tiled/dark, +/area/space) +"aEF" = ( +/obj/machinery/door/firedoor/glass{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/spawner/window/low_wall/reinforced/full, +/obj/effect/paint_stripe/darkred, +/turf/simulated/floor/plating, +/area/space) +"aEM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/sign/directions/medical{ + dir = 1; + pixel_y = 42 + }, +/obj/structure/sign/directions/command{ + dir = 1; + pixel_y = 36 + }, +/obj/structure/sign/directions/science{ + dir = 1; + pixel_y = 30 + }, +/obj/structure/sign/directions/security{ + dir = 1; + pixel_y = 24 + }, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/station/stairs_two) +"aFg" = ( +/obj/structure/table/steel, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen, +/turf/simulated/floor/tiled/monotile, +/area/security/hallway) +"aFk" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/mining_main/storage) +"aFl" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/security/lobby) +"aFu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/red/border, +/turf/simulated/floor/tiled/dark, +/area/security/security_processing) +"aFE" = ( +/obj/machinery/light_switch{ + pixel_x = 25; + pixel_y = 7 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_10) +"aFH" = ( +/obj/effect/floor_decal/techfloor{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/space) +"aHr" = ( +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"aHy" = ( +/turf/space/basic, +/area/security/breakroom) +"aHL" = ( +/obj/item/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 26 + }, +/turf/simulated/floor/tiled/monotile, +/area/space) +"aHS" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"aHW" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area) +"aII" = ( +/obj/machinery/light_switch{ + pixel_x = 25; + pixel_y = 7 + }, +/turf/simulated/floor/wood, +/area/maintenance/dormitory) +"aJE" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/mining_main/storage) +"aJV" = ( +/turf/simulated/wall/prepainted, +/area/crew_quarters/sleep/Dorm_3) +"aKb" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/window{ + dir = 1; + req_one_access = list(31) + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/foyer) +"aKz" = ( +/obj/structure/table/steel, +/obj/item/storage/box/evidence, +/obj/item/camera, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/security/interrogation) +"aKP" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/space) +"aKU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -28 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/security/hallway) +"aLL" = ( +/obj/effect/floor_decal/corner/green{ + dir = 9 + }, +/obj/item/stool/padded, +/turf/simulated/floor/tiled/dark, +/area/space) +"aMt" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/turf/simulated/floor/carpet/blucarpet, +/area/crew_quarters/showers) +"aMT" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/old_cargo/white, +/area/space) +"aMU" = ( +/turf/simulated/wall/prepainted, +/area/crew_quarters/sleep/Dorm_6) +"aNO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lime/border, +/turf/simulated/floor/tiled, +/area/space) +"aNV" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/glass/security{ + name = "Processing"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/security/general, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/security/security_processing) +"aOb" = ( +/obj/structure/table/steel, +/obj/item/tape_recorder, +/obj/machinery/button/windowtint{ + id = "Interr"; + pixel_x = 26; + pixel_y = 5 + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/security/interrogation) +"aOd" = ( +/obj/effect/floor_decal/corner_oldtile/white/diagonal, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/bar) +"aOh" = ( +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/obj/structure/ore_box, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/camera/network/cargo, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/mining_main/uxstorage) +"aOk" = ( +/obj/structure/toilet{ + pixel_y = 10 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/sleep/Dorm_10) +"aOY" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "security_lockdown"; + name = "Security Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/airlock/glass/security{ + layer = 2.8; + name = "Security"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/security/general, +/turf/simulated/floor/tiled/dark, +/area/space) +"aPd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/catwalk, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/bar/lower) +"aRf" = ( +/obj/structure/ore_box, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/power/apc/south_mount, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/mining_main/storage) +"aRE" = ( +/obj/structure/undies_wardrobe, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_6) +"aRK" = ( +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_10) +"aSi" = ( +/obj/structure/railing, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/zpipe/up/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "16-0" + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/space) +"aSr" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/lino, +/area/security/detectives_office) +"aTb" = ( +/obj/machinery/atmospherics/component/unary/heater{ + dir = 4; + name = "fuel pre-heater" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"aTD" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/glass/security{ + name = "Holding Room"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/security/general, +/turf/simulated/floor/tiled/monotile, +/area/security/hallway) +"aUc" = ( +/obj/machinery/door/firedoor{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/station/stairs_two) +"aUn" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/carpet/sblucarpet, +/area/quartermaster/foyer) +"aUp" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area_hallway) +"aVl" = ( +/obj/structure/lattice, +/obj/structure/grille, +/turf/space, +/area/maintenance/dormitory) +"aVS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/space) +"aVZ" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/machinery/door/firedoor{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"aWk" = ( +/obj/structure/table/rack/shelf/steel, +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = -28 + }, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/clothing/accessory/storage/black_drop_pouches{ + pixel_x = -5 + }, +/obj/item/clothing/accessory/storage/black_drop_pouches{ + pixel_x = -3 + }, +/obj/item/clothing/accessory/storage/black_drop_pouches{ + pixel_x = -1 + }, +/obj/item/clothing/accessory/storage/black_drop_pouches{ + pixel_x = 1 + }, +/obj/item/clothing/accessory/storage/black_drop_pouches{ + pixel_x = 3 + }, +/obj/item/clothing/accessory/storage/black_drop_pouches{ + pixel_x = 5 + }, +/obj/item/clothing/accessory/holster/leg{ + pixel_x = -4; + pixel_y = 9 + }, +/obj/item/clothing/accessory/holster/leg{ + pixel_x = -2; + pixel_y = 9 + }, +/obj/item/clothing/accessory/holster/leg{ + pixel_y = 9 + }, +/obj/item/clothing/accessory/holster/leg{ + pixel_x = 2; + pixel_y = 9 + }, +/obj/item/clothing/accessory/holster/leg{ + pixel_x = 4; + pixel_y = 9 + }, +/obj/item/clothing/accessory/holster/leg{ + pixel_x = 6; + pixel_y = 9 + }, +/obj/item/clothing/accessory/holster/leg{ + pixel_x = 8; + pixel_y = 9 + }, +/obj/item/clothing/accessory/storage/black_drop_pouches{ + pixel_x = 7 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"aWp" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/space) +"aWq" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"aWC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/camera/network/security, +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/security/armoury) +"aWJ" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"aWO" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 5 + }, +/turf/space, +/area/space) +"aWP" = ( +/turf/space/basic, +/area/quartermaster/miningdock) +"aXC" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/mining_main/storage) +"aYd" = ( +/obj/structure/closet/hydrant{ + pixel_x = 32 + }, +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/foyer) +"aYj" = ( +/obj/machinery/air_alarm{ + dir = 8; + pixel_x = 25 + }, +/turf/simulated/floor/wood, +/area/quartermaster/foyer) +"aYk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/turf/simulated/floor/plating, +/area/station/stairs_two) +"aYH" = ( +/obj/structure/table/steel, +/obj/item/reagent_containers/food/drinks/cans/waterbottle, +/turf/simulated/floor/tiled/monotile, +/area/victory/surfacebase/bar_backroom) +"bbg" = ( +/turf/simulated/floor/tiled/steel, +/area/shuttle/belter) +"bbG" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/foyer) +"bdc" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/maintenance/bar/lower) +"bdq" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/machinery/door/window/westright{ + dir = 1; + name = "Bar"; + req_access = list(25); + req_one_access = list(25) + }, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/bar) +"bdF" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/holopad/ship, +/turf/simulated/floor/tiled/steel, +/area/shuttle/belter) +"bdR" = ( +/obj/machinery/camera/network/security{ + dir = 4 + }, +/obj/machinery/fire_alarm/west_mount{ + pixel_x = -26 + }, +/turf/simulated/floor/tiled, +/area/space) +"bew" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/computer/shuttle_control/explore/mining{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel, +/area/shuttle/belter) +"beS" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"bfv" = ( +/turf/space/basic, +/area/crew_quarters/barrestroom) +"bfw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/table/steel, +/obj/item/book/manual/security_space_law, +/obj/item/book/manual/standard_operating_procedure{ + pixel_x = -5 + }, +/turf/simulated/floor/tiled/monotile, +/area/space) +"bfC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner_oldtile/white/diagonal, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/kitchen) +"bgj" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/security/hallway) +"bgq" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/starboard) +"bho" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/station/stairs_two) +"bhB" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 6 + }, +/turf/space, +/area/space) +"bhZ" = ( +/obj/structure/table/reinforced, +/obj/item/mass_spectrometer/adv, +/obj/item/reagent_scanner, +/turf/simulated/floor/tiled/old_cargo/white, +/area/crew_quarters/heads/hos) +"bic" = ( +/obj/effect/floor_decal/techfloor, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/starboard) +"biT" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/grass, +/area/space) +"biZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/hydroponics) +"bjt" = ( +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_7) +"bkT" = ( +/obj/structure/dogbed, +/obj/random/plushie, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/camera/network/security, +/turf/simulated/floor/carpet, +/area/space) +"bli" = ( +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/spawner/window/low_wall/reinforced/full, +/obj/effect/paint_stripe/darkred, +/turf/simulated/floor/plating, +/area/security/hallway) +"blC" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"blI" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel, +/area/hallway/primary/port) +"bmp" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance/sec{ + req_one_access = null + }, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "security_lockdown"; + name = "Security Blast Doors"; + opacity = 0 + }, +/obj/map_helper/access_helper/airlock/station/security/forensics, +/turf/simulated/floor/plating, +/area/space) +"bmz" = ( +/obj/machinery/mineral/unloading_machine, +/turf/simulated/floor/tiled/steel_grid, +/area/victory/surfacebase/mining_main/refinery) +"bmO" = ( +/obj/structure/table/marble, +/obj/effect/floor_decal/corner_oldtile/white/diagonal, +/turf/simulated/floor/tiled, +/area/crew_quarters/kitchen) +"bnd" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/security/lobby) +"bnM" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/station/stairs_two) +"bnY" = ( +/obj/structure/table/woodentable, +/obj/item/book/manual/security_space_law, +/obj/item/flashlight/lamp/green{ + pixel_x = -5; + pixel_y = 2 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/crew_quarters/heads/hos) +"boa" = ( +/obj/machinery/computer/secure_data{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/security/lobby) +"boB" = ( +/obj/structure/window/basic{ + dir = 1 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/bar) +"boF" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_5) +"boI" = ( +/obj/machinery/vending/loadout/overwear, +/turf/simulated/floor/tiled/dark, +/area/vacant/vacant_shop) +"bpt" = ( +/obj/structure/closet/emcloset, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/dormitory) +"bpN" = ( +/turf/simulated/floor/wood, +/area/maintenance/dormitory) +"bpQ" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/foyer) +"bpU" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/airless, +/area/space) +"bpV" = ( +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -24 + }, +/turf/simulated/wall/r_wall/prepainted/security, +/area/space) +"bqx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"bqC" = ( +/obj/machinery/door/firedoor, +/obj/spawner/window/low_wall/reinforced/full, +/obj/effect/paint_stripe/darkred, +/turf/simulated/floor/plating, +/area/space) +"bqO" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/space) +"brh" = ( +/obj/structure/closet/firecloset, +/turf/simulated/floor/plating, +/area/space) +"brs" = ( +/obj/structure/fitness/punchingbag, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"brV" = ( +/obj/structure/cable/green, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass{ + dir = 8 + }, +/obj/spawner/window/low_wall/reinforced/full, +/obj/effect/paint_stripe/darkred, +/turf/simulated/floor/plating, +/area/security/lobby) +"bst" = ( +/obj/machinery/fire_alarm/south_mount{ + pixel_y = -24 + }, +/obj/effect/floor_decal/techfloor, +/turf/simulated/floor/tiled, +/area/hallway/primary/starboard) +"btb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/structure/table/rack/shelf/steel, +/obj/item/cell/device/weapon{ + pixel_x = -8 + }, +/obj/item/cell/device/weapon{ + pixel_x = -4 + }, +/obj/item/cell/device/weapon{ + pixel_x = -1 + }, +/obj/item/cell/device/weapon{ + pixel_x = 3 + }, +/obj/item/cell/device/weapon{ + pixel_x = 8 + }, +/obj/item/cell/device/weapon{ + pixel_x = 3 + }, +/obj/item/cell/device/weapon{ + pixel_x = 3 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"btk" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/space) +"btB" = ( +/obj/machinery/computer/general_air_control/large_tank_control{ + frequency = 2346; + input_tag = "portnacelle_in"; + name = "Burn Chamber Air Control"; + output_tag = ""; + pressure_setting = 0; + sensors = list("portnacelle_sensor"="Burn Chamber"); + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"btN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/space) +"buj" = ( +/turf/space/basic, +/area/security/armoury) +"buV" = ( +/turf/simulated/wall/prepainted, +/area/crew_quarters/sleep/Dorm_10) +"bvq" = ( +/obj/structure/lattice, +/turf/space, +/area/crew_quarters/sleep/Dorm_11) +"bvw" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/heads/hos) +"bvG" = ( +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + cycle_to_external_air = 1; + frequency = 1380; + id_tag = "mining_docker"; + pixel_y = 27; + tag_airpump = "civvie_vent"; + tag_chamber_sensor = "civvie_sensor"; + tag_exterior_door = "civvie_door_Ro"; + tag_exterior_sensor = "civvie_exterior_sensor"; + tag_interior_door = "civvie_door_Ri"; + tag_interior_sensor = "civvie_exp_psg" + }, +/turf/simulated/floor/tiled/steel, +/area/shuttle/belter) +"bwV" = ( +/obj/machinery/door/airlock/maintenance, +/turf/simulated/floor/plating, +/area/station/stairs_two) +"bwZ" = ( +/obj/item/tape_recorder{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/structure/table/woodentable, +/turf/simulated/floor/carpet, +/area/security/detectives_office) +"bxO" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/sign/directions/roomnum{ + dir = 6; + pixel_x = -31; + pixel_y = -3 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area_hallway) +"bxX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/toilet) +"byd" = ( +/obj/item/material/ashtray/bronze, +/obj/effect/floor_decal/techfloor, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/camera/network/security{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/structure/table/steel, +/obj/item/toy/figure/secofficer, +/turf/simulated/floor/tiled, +/area/prison/cell_block) +"bzQ" = ( +/obj/effect/floor_decal/techfloor{ + dir = 10 + }, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/bar) +"bzV" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/space) +"bAl" = ( +/turf/simulated/wall, +/area/maintenance/dormitory) +"bAz" = ( +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/spawner/window/low_wall/reinforced/full, +/obj/effect/paint_stripe/darkred, +/turf/simulated/floor/plating, +/area/security/security_processing) +"bAU" = ( +/obj/machinery/vending/boozeomat, +/obj/structure/table/marble, +/obj/effect/floor_decal/corner_oldtile/white/diagonal, +/obj/machinery/camera/network/civilian, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/bar) +"bBz" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/station/stairs_two) +"bCg" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on, +/obj/machinery/button/remote/blast_door{ + id = "armorytactical"; + name = "Tactical Armory Access"; + pixel_x = -25; + pixel_y = -6; + req_access = list(3) + }, +/obj/effect/floor_decal/corner/black/full{ + dir = 8 + }, +/obj/machinery/camera/network/security, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/table/rack/shelf/steel, +/obj/item/gun/ballistic/automatic/wt550{ + pixel_y = 7 + }, +/obj/item/gun/ballistic/automatic/wt550{ + pixel_y = -7 + }, +/obj/item/gun/ballistic/automatic/wt550, +/obj/item/ammo_magazine/a9mm/top_mount, +/obj/item/ammo_magazine/a9mm/top_mount, +/obj/item/ammo_magazine/a9mm/top_mount, +/obj/item/ammo_magazine/a9mm/top_mount, +/obj/item/ammo_magazine/a9mm/top_mount, +/obj/item/ammo_magazine/a9mm/top_mount, +/obj/item/ammo_magazine/a9mm/top_mount, +/obj/item/ammo_magazine/a9mm/top_mount, +/obj/item/ammo_magazine/a9mm/top_mount, +/obj/item/ammo_magazine/a9mm/top_mount, +/obj/item/ammo_magazine/a9mm/top_mount, +/obj/item/ammo_magazine/a9mm/top_mount, +/turf/simulated/floor/tiled/dark, +/area/space) +"bCK" = ( +/obj/machinery/door/firedoor/glass{ + dir = 8 + }, +/obj/machinery/door/airlock/glass/security{ + name = "Solitary Confinement 1"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/security/brig, +/turf/simulated/floor/tiled/dark, +/area/space) +"bCR" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/prison/cell_block) +"bDv" = ( +/turf/simulated/floor/wood, +/area/crew_quarters/showers) +"bDI" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/mining_main/refinery) +"bED" = ( +/obj/effect/floor_decal/corner/green/full{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"bFt" = ( +/obj/structure/table/steel, +/obj/random/drinkbottle, +/turf/simulated/floor/tiled/monotile, +/area/space) +"bFT" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Restroom" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/toilet) +"bGf" = ( +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/sleep/Dorm_8) +"bGk" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/space) +"bGL" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/showers) +"bGX" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/fire_alarm/south_mount{ + pixel_y = -24 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/warehouse) +"bHg" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled, +/area/station/stairs_two) +"bIg" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/bar_backroom) +"bIK" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/bar) +"bIN" = ( +/obj/machinery/light/small, +/obj/machinery/suit_cycler{ + req_access = null + }, +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/Dorm_1) +"bKe" = ( +/obj/structure/fitness/weightlifter, +/turf/simulated/floor/wood, +/area/space) +"bKj" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloorblack/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/security/hallway) +"bKw" = ( +/obj/structure/table/steel_reinforced, +/obj/item/folder/red, +/turf/simulated/floor/tiled/dark, +/area/space) +"bLt" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/status_display/supply_display{ + pixel_y = 32 + }, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area_hallway) +"bLz" = ( +/obj/machinery/fire_alarm/west_mount{ + pixel_x = -26 + }, +/obj/random/trash_pile, +/turf/simulated/floor/plating, +/area/maintenance/dormitory) +"bML" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area_hallway) +"bMS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/techfloor/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/space) +"bNm" = ( +/obj/machinery/mineral/equipment_vendor, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/mining_main/storage) +"bOa" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/machinery/fire_alarm/west_mount{ + pixel_x = -24; + pixel_y = 6 + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -28; + pixel_y = -7 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"bOp" = ( +/obj/machinery/fire_alarm/west_mount{ + pixel_x = -24 + }, +/obj/structure/reagent_dispensers/beerkeg, +/turf/simulated/floor/wood, +/area/maintenance/bar/lower) +"bOL" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/prison/cell_block) +"bPf" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/obj/machinery/camera/network/security{ + dir = 4 + }, +/obj/machinery/airlock_sensor{ + id_tag = "sec_shuttle_sensor"; + pixel_x = -24; + pixel_y = 10 + }, +/turf/simulated/floor/plating, +/area/space) +"bPv" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/air_alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood, +/area/hallway/primary/port) +"bQy" = ( +/obj/machinery/newscaster{ + pixel_x = -27 + }, +/obj/machinery/holopad, +/obj/effect/floor_decal/spline/fancy/wood, +/obj/machinery/camera/network/civilian{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8; + light_range = 12 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/bar) +"bRc" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing, +/turf/space, +/area/crew_quarters/sleep/Dorm_9) +"bRJ" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/hydroponics) +"bRZ" = ( +/obj/structure/table/steel_reinforced, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + dir = 8; + pixel_x = 30 + }, +/turf/simulated/floor/tiled, +/area/security/lobby) +"bTK" = ( +/obj/machinery/appliance/cooker/oven, +/obj/effect/floor_decal/corner_oldtile/white/diagonal, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/kitchen) +"bTZ" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell 1"; + name = "Cell 1 Locker" + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/prison/cell_block) +"bUa" = ( +/obj/structure/table/woodentable, +/obj/item/clothing/accessory/permit/gun, +/obj/item/clothing/accessory/permit/gun, +/obj/item/clothing/accessory/permit/gun, +/obj/item/clothing/accessory/permit/gun, +/obj/item/clothing/accessory/permit/gun, +/obj/item/paper{ + desc = ""; + info = "In the event that more weapon permits are needed, please fax Central Command to request more. Please also include a reason for the request. Blank permits will be shipped to cargo for pickup. If long-term permits are desired, please contact your Nanotrasen Employee Representitive for more information."; + name = "note from CentCom about permits" + }, +/obj/machinery/camera/network/security{ + dir = 1 + }, +/obj/item/clothing/accessory/permit/gun{ + desc = "An example of a card indicating that the owner is allowed to carry a firearm. There's a note saying to fax CentCom if you want to order more blank permits."; + name = "sample weapon permit"; + owner = 1; + pixel_y = 10 + }, +/turf/simulated/floor/wood, +/area/security/hallway) +"bUg" = ( +/obj/structure/bed/chair/sofa/black/right{ + dir = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/bar) +"bUi" = ( +/obj/landmark/spawnpoint/latejoin/station/cryogenics, +/obj/machinery/fire_alarm/south_mount{ + pixel_y = -24 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/sleep/cryo) +"bUJ" = ( +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/maintenance/dormitory) +"bUV" = ( +/obj/structure/table/reinforced, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"bVc" = ( +/obj/structure/bookcase/legal/combo, +/obj/item/book/manual/legal/sop_vol1, +/obj/item/book/manual/legal/sop_vol2, +/obj/item/book/manual/legal/sop_vol3, +/obj/item/book/manual/legal/sop_vol4, +/turf/simulated/floor/lino, +/area/space) +"bVn" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/machinery/station_map{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/starboard) +"bVF" = ( +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/obj/effect/paint_stripe/beastybrown, +/turf/simulated/floor/plating, +/area/victory/surfacebase/mining_main/refinery) +"bVK" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/security/interrogation) +"bVS" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance/common, +/turf/simulated/floor/plating, +/area/space) +"bWr" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central5, +/turf/simulated/floor/tiled/monotile, +/area/space) +"bWx" = ( +/obj/machinery/vending/weeb, +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area_hallway) +"bWM" = ( +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -23 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/warehouse) +"bWP" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/corner_oldtile/white/diagonal, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/kitchen) +"bXx" = ( +/obj/machinery/fire_alarm/west_mount{ + pixel_x = -24 + }, +/turf/simulated/floor/wood, +/area/space) +"bZs" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/bar/lower) +"caw" = ( +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/red/border, +/turf/simulated/floor/tiled/dark, +/area/security/detectives_office) +"cax" = ( +/obj/machinery/door/airlock{ + name = "Restroom" + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/bar) +"cbf" = ( +/obj/machinery/computer/secure_data, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/old_cargo/red, +/area/security/security_processing) +"cbr" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/effect/floor_decal/spline/plain{ + dir = 6 + }, +/turf/simulated/floor/grass, +/area/space) +"cca" = ( +/obj/machinery/cryopod{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/space) +"ccQ" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/toilet) +"ccY" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/quartermaster/foyer) +"cde" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/simulated/floor/airless, +/area/space) +"cdz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/old_cargo/white, +/area/security/detectives_office) +"cdC" = ( +/turf/simulated/wall/r_wall/prepainted/cargo, +/area/quartermaster/qm) +"cdP" = ( +/obj/structure/table/rack/shelf/steel, +/obj/item/clothing/ears/earmuffs, +/obj/item/clothing/glasses/goggles, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/item/gun/energy/laser/practice, +/turf/simulated/floor/tiled/old_tile/gray, +/area/space) +"cdS" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/tiled/dark, +/area/space) +"cdV" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/space) +"ceK" = ( +/obj/machinery/computer/security/telescreen{ + pixel_y = 32 + }, +/obj/machinery/vending/loadout/gadget, +/obj/effect/floor_decal/techfloor/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/vacant/vacant_shop) +"cfb" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/toilet) +"cfg" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_2) +"cfj" = ( +/obj/effect/floor_decal/techfloor{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel, +/area/hallway/primary/port) +"cgO" = ( +/obj/structure/table/rack, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/cargo) +"chC" = ( +/obj/machinery/mineral/mint, +/turf/simulated/floor/tiled, +/area/quartermaster/warehouse) +"chR" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/security/nuke_storage) +"chS" = ( +/obj/machinery/recharger/wallcharger{ + pixel_x = 32; + pixel_y = 3 + }, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/space) +"chU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"chV" = ( +/turf/simulated/wall/r_wall/prepainted/civilian, +/area/crew_quarters/bar) +"cig" = ( +/obj/random/trash_pile, +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/Dorm_11) +"cil" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/space) +"cip" = ( +/obj/structure/closet/secure_closet/hos2, +/obj/item/storage/box/firingpins, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/hos) +"cjh" = ( +/obj/machinery/shield_diffuser, +/obj/machinery/atmospherics/pipe/simple/visible/fuel{ + dir = 9 + }, +/turf/simulated/wall/r_wall/prepainted/engineering, +/area/space) +"ckf" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/voidcraft{ + frequency = 2020; + id_tag = "belt_shuttle_exterior"; + name = "maintenance hatch" + }, +/obj/machinery/atmospherics/component/binary/pump{ + dir = 4; + name = "secondary fuel pump" + }, +/turf/simulated/floor/airless, +/area/victory/surfacebase/mining_main/eva) +"ckn" = ( +/turf/simulated/wall/prepainted/cargo, +/area/quartermaster/foyer) +"clo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/dormitory) +"clW" = ( +/obj/structure/bed/chair/sofa/right, +/turf/simulated/floor/wood, +/area/space) +"cmk" = ( +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"cmF" = ( +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10, +/obj/machinery/shower{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/showers) +"cmS" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/obj/structure/sign/directions/roomnum{ + dir = 4; + pixel_y = 24 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area_hallway) +"cnL" = ( +/turf/simulated/wall/prepainted, +/area/maintenance/substation/civilian) +"cnY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/space) +"coo" = ( +/turf/simulated/wall/prepainted, +/area/crew_quarters/sleep/Dorm_4) +"cot" = ( +/obj/machinery/door/airlock, +/turf/simulated/floor/tiled/old_tile/white, +/area/space) +"coJ" = ( +/turf/simulated/wall/r_wall/prepainted/security, +/area/space) +"coV" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel, +/area/shuttle/belter) +"cqi" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area_hallway) +"cqT" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area) +"cqW" = ( +/obj/effect/floor_decal/techfloor/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/monotile, +/area/security/lobby) +"csk" = ( +/turf/simulated/floor/carpet/sblucarpet, +/area/crew_quarters/sleep/Dorm_3) +"cso" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/crate, +/turf/simulated/floor/tiled, +/area/space) +"csx" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/shield_diffuser, +/obj/map_helper/airlock/door/ext_door, +/obj/machinery/door/airlock/glass_external{ + name = "Bar Internal Access"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/external_airlock, +/turf/simulated/floor/plating, +/area/space) +"csX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/mining_main/refinery) +"ctF" = ( +/obj/structure/sign/warning{ + name = "\improper DANGER: ENGINE EXHAUST" + }, +/turf/simulated/wall/r_wall/prepainted/engineering, +/area/space) +"cus" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/maintenance/engi{ + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/substation/civilian) +"cuA" = ( +/turf/simulated/floor/lino, +/area/space) +"cuM" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/holopad, +/turf/simulated/floor/tiled/dark, +/area/space) +"cvJ" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel, +/area/hallway/primary/port) +"cwK" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"cwP" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"cxK" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/structure/table/reinforced, +/obj/item/tank/jetpack/oxygen, +/obj/item/tank/jetpack/oxygen, +/obj/item/tank/jetpack/oxygen, +/obj/item/tank/jetpack/oxygen, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"cyv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"cyR" = ( +/obj/machinery/suit_cycler/mining, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"czq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/sleep/Dorm_10) +"czS" = ( +/obj/effect/floor_decal/techfloor/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/security/lobby) +"czU" = ( +/obj/machinery/computer/security, +/turf/simulated/floor/carpet, +/area/crew_quarters/heads/hos) +"czZ" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/sleep/Dorm_8) +"cAi" = ( +/obj/machinery/door/airlock/glass_external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "sec_shuttle_outer"; + locked = 1; + name = "Shuttle Exterior Access"; + req_one_access = null + }, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "security_lockdown"; + name = "Security Blast Doors"; + opacity = 0 + }, +/obj/machinery/shield_diffuser, +/obj/map_helper/access_helper/airlock/station/external_airlock, +/turf/simulated/floor/plating, +/area/space) +"cAP" = ( +/turf/space/basic, +/area/victory/surfacebase/mining_main/uxstorage) +"cBq" = ( +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/obj/machinery/camera/network/civilian, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/station/stairs_two) +"cCb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/obj/structure/table/fancyblack, +/obj/structure/spirit_board/prop, +/turf/simulated/floor/wood, +/area/vacant/vacant_shop) +"cCp" = ( +/mob/living/simple_mob/animal/goat{ + desc = "Ah, it's Pete. They're not known for their pleasant disposition and now they're gonna eat all your plants."; + name = "Pete" + }, +/turf/simulated/floor/tiled, +/area/hydroponics) +"cCC" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/security{ + name = "Equipment Storage"; + req_access = list(); + req_one_access = null + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/map_helper/access_helper/airlock/station/security/equipment, +/turf/simulated/floor/tiled/dark, +/area/space) +"cCU" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Cargo Lobby" + }, +/turf/simulated/floor/wood, +/area/quartermaster/foyer) +"cCW" = ( +/obj/structure/closet/firecloset, +/turf/simulated/floor/plating, +/area/maintenance/cargo) +"cDK" = ( +/obj/structure/table/steel, +/obj/item/reagent_containers/food/drinks/metaglass, +/turf/simulated/floor/tiled/monotile, +/area/space) +"cDM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/warehouse) +"cDW" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/spawner/window/low_wall/reinforced/full, +/obj/effect/paint_stripe/darkred, +/turf/simulated/floor/plating, +/area/security/lobby) +"cEl" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/dormitory) +"cEu" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/sleep/cryo) +"cEQ" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area_hallway) +"cEV" = ( +/obj/machinery/light, +/obj/structure/table/steel, +/obj/item/deck/cards, +/turf/simulated/floor/tiled, +/area/space) +"cEX" = ( +/obj/machinery/newscaster{ + pixel_x = -27 + }, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/table/woodentable, +/turf/simulated/floor/wood, +/area/vacant/vacant_shop) +"cFv" = ( +/obj/structure/table/steel, +/obj/item/storage/box/flashbangs{ + pixel_x = -4; + pixel_y = 8 + }, +/obj/machinery/fire_alarm/west_mount{ + pixel_x = -26 + }, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"cFz" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"cGe" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/techmaint, +/area/space) +"cGw" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/maintenance/bar/lower) +"cHF" = ( +/obj/machinery/atmospherics/pipe/tank/phoron{ + dir = 1; + volume = 20000 + }, +/obj/effect/floor_decal/industrial/outline/red, +/turf/simulated/floor/airless, +/area/victory/surfacebase/mining_main/eva) +"cIn" = ( +/obj/structure/table/steel, +/obj/item/soap, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/old_tile/white, +/area/space) +"cJA" = ( +/obj/structure/sign/directions/cargo{ + dir = 1; + pixel_y = 32 + }, +/obj/structure/sign/directions/cryo{ + dir = 4; + pixel_y = 25 + }, +/obj/structure/sign/directions/engineering{ + dir = 4; + pixel_y = 38 + }, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"cJQ" = ( +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/vacant/vacant_shop) +"cKF" = ( +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/turf/simulated/floor/tiled/steel/airless, +/area/space) +"cKS" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/mining_main/refinery) +"cMH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/table/marble, +/turf/simulated/floor/tiled/dark, +/area/vacant/vacant_shop) +"cNm" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/item/radio/intercom{ + pixel_y = -24 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area_hallway) +"cNt" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/mining_main/storage) +"cNY" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/sleep/cryo) +"cOi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/mining_main/storage) +"cOq" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/crystal, +/area/station/stairs_two) +"cOW" = ( +/obj/machinery/power/solar, +/obj/structure/cable/yellow, +/turf/simulated/floor/airless, +/area/space) +"cPf" = ( +/obj/structure/fitness/weightlifter, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"cPh" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock{ + id_tag = "dorm7"; + name = "Dorm 7" + }, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_7) +"cPK" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"cPO" = ( +/obj/machinery/power/apc/west_mount{ + cell_type = /obj/item/cell/super + }, +/obj/structure/cable/green, +/obj/structure/closet/wardrobe, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_4) +"cPR" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/crate/plastic, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"cQg" = ( +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"cQu" = ( +/obj/machinery/portable_atmospherics/canister/phoron, +/turf/simulated/floor/plating, +/area/space) +"cRe" = ( +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/space) +"cRj" = ( +/obj/structure/extinguisher_cabinet{ + dir = 1; + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/space) +"cRp" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/mining_main/storage) +"cSy" = ( +/obj/structure/closet/wardrobe/green, +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area_hallway) +"cSG" = ( +/obj/structure/catwalk, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/machinery/door/airlock/glass/mining{ + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/supply/cargo_bay, +/turf/simulated/floor/plating, +/area/quartermaster/storage) +"cSP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/sleep/Dorm_6) +"cTj" = ( +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/turf/simulated/floor/tiled/steel/airless, +/area/shuttle/belter) +"cTB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/camera/network/civilian{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"cUC" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor/glass{ + dir = 8 + }, +/obj/structure/cable/green, +/obj/structure/window/reinforced/polarized/full{ + id = "Interr"; + name = "interrogation window" + }, +/obj/effect/paint_stripe/darkred, +/turf/simulated/floor/plating, +/area/security/hallway) +"cUW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area_hallway) +"cVe" = ( +/obj/machinery/fire_alarm/west_mount{ + pixel_x = -24 + }, +/obj/machinery/computer/ship/navigation/telescreen{ + pixel_y = -37 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_7) +"cVq" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/sign/directions/roomnum{ + dir = 6; + pixel_x = -31; + pixel_y = -3 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area) +"cVH" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -2; + pixel_y = -28 + }, +/obj/structure/bed/chair/sofa/black/right{ + dir = 1 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/bar) +"cWS" = ( +/obj/structure/table/steel, +/obj/item/folder/red, +/obj/item/folder/red{ + pixel_x = 3 + }, +/turf/simulated/floor/tiled, +/area/security/hallway) +"cXe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_6) +"cXs" = ( +/obj/structure/table/woodentable, +/obj/machinery/keycard_auth{ + pixel_x = -28; + pixel_y = 6 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/carpet, +/area/crew_quarters/heads/hos) +"cXJ" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/effect/floor_decal/corner_oldtile/white/diagonal, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/kitchen) +"cYg" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/holopad, +/turf/simulated/floor/wood, +/area/vacant/vacant_shop) +"cYw" = ( +/obj/effect/floor_decal/corner_techfloor_grid{ + dir = 5 + }, +/obj/effect/floor_decal/corner_techfloor_grid{ + dir = 10 + }, +/obj/machinery/cryopod/robot, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/sleep/cryo) +"cZh" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/crate/science, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"cZl" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/warehouse) +"cZG" = ( +/obj/machinery/disposal, +/obj/effect/floor_decal/industrial/warning/full, +/obj/structure/disposalpipe/trunk, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/corner_oldtile/white/diagonal, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/kitchen) +"dah" = ( +/obj/item/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 26 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"daA" = ( +/obj/effect/floor_decal/techfloor, +/obj/machinery/computer/guestpass{ + dir = 1; + pixel_y = -28 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/starboard) +"daQ" = ( +/obj/structure/bed/double, +/obj/item/bedsheet/hosdouble, +/turf/simulated/floor/carpet/purcarpet, +/area/security/prison) +"daW" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "QMLoad2" + }, +/turf/simulated/floor/tiled, +/area/quartermaster/warehouse) +"dby" = ( +/obj/machinery/atmospherics/component/unary/engine{ + dir = 8 + }, +/turf/simulated/shuttle/plating/airless/carry, +/area/victory/surfacebase/mining_main/refinery) +"dcy" = ( +/obj/machinery/computer/cryopod/robot{ + pixel_x = -31; + pixel_y = 30 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/sleep/cryo) +"dcV" = ( +/obj/structure/cryofeed{ + dir = 2 + }, +/obj/machinery/status_display/supply_display{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/sleep/cryo) +"ddC" = ( +/obj/machinery/power/breakerbox/activated{ + RCon_tag = "CARGO/MINING" + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/cargo) +"ddJ" = ( +/turf/simulated/floor/grass, +/area/space) +"deg" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/fire_alarm/south_mount{ + pixel_y = -24 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/structure/bed/chair/sofa/black/right{ + dir = 1 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/bar) +"dek" = ( +/obj/structure/table/glass, +/obj/machinery/fire_alarm/west_mount{ + pixel_x = -26 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/crystal, +/area/station/stairs_two) +"dex" = ( +/obj/machinery/status_display/supply_display{ + mode = 99; + pixel_y = -32 + }, +/obj/effect/floor_decal/industrial/outline/red, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"dgh" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 5 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/space) +"dgl" = ( +/obj/structure/bed/padded, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/prison/cell_block) +"dgE" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/table/steel_reinforced, +/obj/machinery/photocopier/faxmachine{ + department = "Warden's Office" + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"dgV" = ( +/obj/structure/undies_wardrobe, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_7) +"dhA" = ( +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"dhE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/corner_oldtile/white/diagonal, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/kitchen) +"dje" = ( +/obj/machinery/camera/network/civilian{ + dir = 8 + }, +/obj/structure/table/rack/shelf, +/obj/effect/floor_decal/techfloor{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/vacant/vacant_shop) +"djg" = ( +/obj/machinery/vending/loadout/loadout_misc, +/obj/effect/floor_decal/techfloor{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/vacant/vacant_shop) +"djy" = ( +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = 20 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/space) +"djY" = ( +/obj/machinery/power/apc/west_mount{ + cell_type = /obj/item/cell/super + }, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/structure/flora/pottedplant/smalltree, +/obj/machinery/fire_alarm/north_mount, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_10) +"dkj" = ( +/obj/machinery/shield_diffuser, +/obj/machinery/atmospherics/pipe/manifold4w/visible/fuel, +/turf/simulated/wall/r_wall/prepainted/engineering, +/area/space) +"dkB" = ( +/obj/structure/shuttle/engine/heater{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden, +/turf/simulated/shuttle/wall/voidcraft/green, +/area/victory/surfacebase/mining_main/eva) +"dkD" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 4 + }, +/turf/simulated/floor/reinforced/airless, +/area/space) +"dkF" = ( +/obj/structure/sign/directions/evac{ + dir = 8 + }, +/turf/simulated/wall/prepainted/civilian, +/area/hallway/primary/port) +"dlw" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on, +/turf/simulated/floor/wood, +/area/vacant/vacant_shop) +"dlY" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/simulated/floor/airless, +/area/crew_quarters/recreation_area) +"dms" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/starboard) +"dnx" = ( +/obj/structure/sign/directions/evac{ + dir = 8 + }, +/turf/simulated/wall/prepainted, +/area/vacant/vacant_office) +"dnz" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/bar) +"dnX" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/crate/trashcart, +/obj/item/instrument/banjo, +/turf/simulated/floor/tiled, +/area/crew_quarters/recreation_area) +"dod" = ( +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/turf/simulated/floor/plating, +/area/space) +"don" = ( +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "portnacelle_blastdoor"; + opacity = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ + dir = 4 + }, +/obj/effect/paint_stripe/sun, +/obj/structure/window/phoronreinforced/full{ + icon_state = "phoronwindow0" + }, +/obj/structure/grille, +/turf/simulated/floor/reinforced/airless, +/area/space) +"doY" = ( +/obj/structure/table/steel, +/obj/item/clothing/accessory/badge/holo, +/obj/item/clothing/accessory/badge/holo, +/obj/item/clothing/accessory/badge/holo, +/obj/item/clothing/accessory/badge/holo, +/obj/item/clothing/accessory/badge/holo, +/obj/item/clothing/accessory/badge/holo, +/obj/item/clothing/accessory/badge/holo/cord, +/obj/item/clothing/accessory/badge/holo/cord, +/obj/item/clothing/accessory/badge/holo/cord, +/obj/item/storage/firstaid/regular, +/obj/item/retail_scanner/security, +/obj/machinery/light_switch{ + pixel_y = -26 + }, +/obj/effect/floor_decal/corner/red/full, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/space) +"dpl" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/substation/civilian) +"dpA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/monotile, +/area/security/lobby) +"dpE" = ( +/turf/simulated/wall/prepainted, +/area/vacant/vacant_shop) +"dpF" = ( +/obj/structure/table/woodentable, +/obj/item/clothing/gloves/boxing/yellow{ + pixel_x = -6; + pixel_y = 7 + }, +/obj/item/clothing/gloves/boxing/blue, +/turf/simulated/floor/wood, +/area/space) +"dpN" = ( +/obj/machinery/power/sensor{ + name = "Powernet Sensor - Solar Farm Input"; + name_tag = "Solar Farm Input" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow, +/turf/simulated/floor/airless, +/area/crew_quarters/recreation_area) +"dqk" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/space) +"dql" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/space) +"drl" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass/security{ + name = "Recreation Room"; + req_one_access = null + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/space) +"drw" = ( +/turf/space/basic, +/area/maintenance/dormitory) +"drx" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"drJ" = ( +/obj/spawner/window/low_wall/full/firelocks/nogrille, +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/cryo) +"drN" = ( +/obj/structure/bed/chair/sofa/left, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/structure/window/basic{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/bar) +"dsd" = ( +/obj/structure/undies_wardrobe, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/space) +"dsr" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/crew_quarters/sleep/Dorm_4) +"dsM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/monotile, +/area/security/lobby) +"dtH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/steel, +/area/vacant/vacant_shop) +"dtQ" = ( +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/machinery/door/firedoor/glass{ + dir = 8 + }, +/obj/spawner/window/low_wall/reinforced/full, +/obj/effect/paint_stripe/darkred, +/turf/simulated/floor/plating, +/area/prison/cell_block) +"dtT" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"dun" = ( +/turf/simulated/floor/carpet/bcarpet, +/area/space) +"duB" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 6 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 6 + }, +/obj/structure/sign/department/armory{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"duV" = ( +/turf/simulated/wall/r_wall/prepainted/engineering, +/area/crew_quarters/sleep/Dorm_11) +"dvB" = ( +/obj/structure/table/steel, +/obj/item/folder/red, +/obj/item/folder/red{ + pixel_x = 2; + pixel_y = 4 + }, +/obj/machinery/recharger, +/obj/item/book/manual/security_space_law, +/obj/machinery/light, +/obj/machinery/status_display{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/security/interrogation) +"dwj" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/fire_alarm/south_mount{ + pixel_y = -24 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/sleep/cryo) +"dwp" = ( +/turf/space/basic, +/area/victory/surfacebase/mining_main/refinery) +"dwC" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/warehouse) +"dxg" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/spawner/window/low_wall/reinforced/full, +/obj/effect/paint_stripe/darkred, +/turf/simulated/floor/plating, +/area/crew_quarters/bar) +"dxs" = ( +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"dxS" = ( +/obj/machinery/shield_diffuser, +/obj/machinery/door/airlock/glass_external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "sec_shuttle_outer"; + locked = 1; + name = "Shuttle Exterior Access"; + req_one_access = null + }, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "security_lockdown"; + name = "Security Blast Doors"; + opacity = 0 + }, +/obj/map_helper/access_helper/airlock/station/external_airlock, +/turf/simulated/floor/plating, +/area/space) +"dyA" = ( +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/monotile, +/area/prison/cell_block) +"dyR" = ( +/turf/simulated/floor/tiled, +/area/hydroponics) +"dyV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/space) +"dzb" = ( +/obj/structure/table/marble, +/obj/machinery/chemical_dispenser/catering/bar_alc{ + pixel_y = 8 + }, +/obj/effect/floor_decal/corner_oldtile/white/diagonal, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/bar) +"dzk" = ( +/turf/simulated/shuttle/wall/voidcraft/green, +/area/shuttle/belter) +"dzl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"dzB" = ( +/obj/effect/floor_decal/techfloor, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/security/lobby) +"dAo" = ( +/obj/machinery/door/airlock/glass{ + name = "Eva Storage" + }, +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/Dorm_11) +"dAA" = ( +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/obj/effect/paint_stripe/beastybrown, +/turf/simulated/floor/plating, +/area/victory/surfacebase/mining_main/storage) +"dBz" = ( +/turf/simulated/wall, +/area/space) +"dCd" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area_hallway) +"dDm" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1379; + id_tag = "sec_shuttle_pump" + }, +/turf/simulated/floor/plating, +/area/space) +"dDI" = ( +/obj/effect/floor_decal/industrial/outline/red, +/obj/machinery/computer/ship/navigation/telescreen{ + pixel_y = -37 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"dEt" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/computer/supplycomp/control{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/quartermaster/qm) +"dEv" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/disposalpipe/up{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/space) +"dEO" = ( +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/showers) +"dEU" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/airlock/mining{ + name = "Quartermaster"; + req_one_access = list() + }, +/obj/map_helper/access_helper/airlock/station/head_office/quartermaster, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"dFd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"dFk" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area) +"dFI" = ( +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/machinery/door/airlock/glass/mining{ + name = "Mining Prep Room"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/supply/mining, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/mining_main/storage) +"dFK" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/bed/chair/sofa{ + dir = 1 + }, +/obj/machinery/light, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/bar) +"dGz" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"dGB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/warehouse) +"dHf" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/security{ + name = "Private Quarters"; + req_one_access = null + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"dIz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/button/remote/blast_door{ + id = "VaultAc"; + name = "Vault Blast Door"; + pixel_y = 32; + req_access = list(53); + req_one_access = list(53) + }, +/obj/machinery/button/remote/airlock{ + id = "vault"; + name = "Vault Door Lockdown"; + pixel_y = -32; + specialfunctions = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/security/nuke_storage) +"dJg" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/crate, +/obj/machinery/power/apc/west_mount{ + cell_type = /obj/item/cell/super + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"dKb" = ( +/obj/structure/table/rack/shelf, +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/vacant/vacant_shop) +"dKE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/toilet) +"dKF" = ( +/turf/simulated/wall/r_wall/prepainted/engineering, +/area/crew_quarters/sleep/Dorm_8) +"dKK" = ( +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/machinery/power/apc/east_mount, +/turf/simulated/floor/wood, +/area/space) +"dKP" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/item/stool/padded, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"dKY" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/portable_atmospherics/canister/air, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/sleep/Dorm_8) +"dLs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/space) +"dLw" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10 + }, +/obj/machinery/holopad, +/turf/simulated/floor/carpet/blucarpet, +/area/space) +"dLK" = ( +/obj/structure/table/marble, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/machinery/door/blast/shutters{ + dir = 8; + id = "kitchen"; + name = "Kitchen Service Shutters" + }, +/turf/simulated/floor/tiled/monotile, +/area/crew_quarters/kitchen) +"dMS" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/machinery/door/airlock/glass/security{ + name = "Shuttle Bay Control Room"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/security/brig, +/turf/simulated/floor/tiled/dark, +/area/space) +"dMY" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 4 + }, +/obj/structure/lattice, +/turf/space, +/area/space) +"dNa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/station/stairs_two) +"dOz" = ( +/obj/machinery/holopad, +/obj/effect/floor_decal/corner_oldtile/white/diagonal, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/kitchen) +"dOI" = ( +/turf/simulated/floor/carpet/purcarpet, +/area/crew_quarters/sleep/Dorm_5) +"dPl" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/airless, +/area/space) +"dPS" = ( +/obj/structure/bed/chair/shuttle{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel, +/area/space) +"dPW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/space) +"dRv" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/carpet/sblucarpet, +/area/quartermaster/foyer) +"dRL" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/cable/green, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/door/firedoor/glass{ + dir = 8 + }, +/obj/structure/window/reinforced/polarized/full{ + id = "det_office" + }, +/obj/structure/wall_frame/prepainted, +/obj/effect/paint_stripe/darkred, +/turf/simulated/floor/plating, +/area/space) +"dSN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/dormitory) +"dSS" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/old_cargo/white, +/area/security/detectives_office) +"dTo" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/maintenance, +/turf/simulated/floor/tiled, +/area/crew_quarters/recreation_area) +"dTF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/sleep/Dorm_8) +"dTY" = ( +/turf/space/basic, +/area/shuttle/mining_ship/general) +"dUo" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/simulated/floor/carpet/sblucarpet, +/area/quartermaster/foyer) +"dUu" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 4 + }, +/obj/machinery/light_switch{ + pixel_x = 25; + pixel_y = 7 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"dUy" = ( +/obj/machinery/air_alarm{ + dir = 8; + pixel_x = 25 + }, +/obj/random/trash_pile, +/turf/simulated/floor/plating, +/area/maintenance/dormitory) +"dUT" = ( +/obj/effect/floor_decal/industrial/outline/blue, +/obj/structure/table/rack/shelf/steel, +/obj/item/clothing/head/helmet/combat{ + pixel_x = 5; + pixel_y = -6 + }, +/obj/item/clothing/head/helmet/combat{ + pixel_x = -6; + pixel_y = -6 + }, +/obj/item/clothing/head/helmet/combat{ + pixel_x = -6; + pixel_y = 5 + }, +/obj/item/clothing/head/helmet/combat{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/clothing/head/helmet/combat{ + pixel_x = -6; + pixel_y = -6 + }, +/obj/item/clothing/head/helmet/combat{ + pixel_x = -6; + pixel_y = -6 + }, +/obj/item/clothing/head/helmet/combat{ + pixel_x = 5; + pixel_y = -6 + }, +/obj/item/clothing/head/helmet/combat{ + pixel_x = 5; + pixel_y = -6 + }, +/obj/item/clothing/head/helmet/combat{ + pixel_x = -6; + pixel_y = 5 + }, +/obj/item/clothing/head/helmet/combat{ + pixel_x = -6; + pixel_y = 5 + }, +/obj/item/clothing/head/helmet/combat{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/clothing/head/helmet/combat{ + pixel_x = 5; + pixel_y = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"dUX" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area_hallway) +"dVe" = ( +/obj/structure/table/rack/shelf/steel, +/obj/machinery/camera/network/security, +/turf/simulated/floor/tiled/dark, +/area/space) +"dWK" = ( +/obj/structure/table/marble, +/obj/item/storage/box/donkpockets, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/corner_oldtile/white/diagonal, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/kitchen) +"dXb" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock{ + name = "Custodial Closet" + }, +/obj/map_helper/access_helper/airlock/station/service/janitor, +/turf/simulated/floor/tiled/dark, +/area/space) +"dXA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/dormitory) +"dXK" = ( +/obj/effect/floor_decal/techfloor/corner, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/monotile, +/area/prison/cell_block) +"dYm" = ( +/obj/machinery/power/apc/north_mount, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/sleep/cryo) +"dZa" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/security/hallway) +"dZk" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/crate/trashcart, +/obj/random/maintenance/engineering, +/turf/simulated/floor/tiled, +/area/space) +"dZw" = ( +/obj/machinery/conveyor{ + dir = 10; + id = "mining_interior" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/victory/surfacebase/mining_main/refinery) +"dZy" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central6{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/warehouse) +"dZH" = ( +/obj/structure/table/reinforced, +/turf/simulated/floor/carpet/sblucarpet, +/area/quartermaster/foyer) +"dZW" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/starboard) +"ear" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/closet/wardrobe, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_7) +"eaU" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "mining_interior" + }, +/obj/machinery/camera/network/cargo, +/turf/simulated/floor/tiled/steel_grid, +/area/victory/surfacebase/mining_main/refinery) +"ebc" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/dormitory) +"ebN" = ( +/obj/machinery/air_alarm{ + frequency = 1441; + pixel_y = 22 + }, +/obj/machinery/vending/fitness, +/turf/simulated/floor/wood, +/area/space) +"ecz" = ( +/obj/structure/undies_wardrobe, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_2) +"ecY" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging, +/obj/structure/lattice, +/turf/space, +/area/space) +"edz" = ( +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/Dorm_9) +"eeI" = ( +/obj/structure/table/standard, +/obj/item/coin/silver, +/obj/item/coin/silver, +/obj/item/cartridge/quartermaster{ + pixel_x = 6; + pixel_y = 5 + }, +/obj/item/cartridge/quartermaster{ + pixel_x = -4; + pixel_y = 7 + }, +/obj/item/cartridge/quartermaster, +/turf/simulated/floor/wood, +/area/quartermaster/qm) +"efB" = ( +/obj/machinery/door/firedoor, +/obj/machinery/shield_diffuser, +/obj/map_helper/airlock/door/ext_door, +/obj/machinery/access_button/airlock_exterior{ + frequency = 1380; + master_tag = "victory_annex_dock"; + pixel_x = -24 + }, +/obj/machinery/door/airlock/glass_external{ + name = "Bar Internal Access"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/external_airlock, +/turf/simulated/floor/plating, +/area/space) +"efR" = ( +/obj/random/trash_pile, +/turf/simulated/floor/plating, +/area/maintenance/cargo) +"ehm" = ( +/turf/simulated/wall/prepainted/security, +/area/prison/cell_block) +"ehz" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 10 + }, +/turf/simulated/floor/grass, +/area/space) +"ehW" = ( +/obj/item/stack/material/gold, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/crate/secure{ + name = "Gold Crate"; + req_access = list(19) + }, +/obj/item/coin/gold, +/obj/item/coin/gold, +/obj/item/coin/gold, +/obj/item/coin/gold, +/obj/item/coin/gold, +/obj/item/coin/gold, +/turf/simulated/floor/tiled/dark, +/area/security/nuke_storage) +"eic" = ( +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/fire_alarm/east_mount, +/turf/simulated/floor/tiled/dark, +/area/space) +"eiD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/toilet) +"ejW" = ( +/obj/structure/closet/chefcloset, +/obj/item/glass_jar, +/obj/item/retail_scanner/civilian, +/obj/item/soap/nanotrasen, +/obj/item/destTagger{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/item/packageWrap, +/obj/item/packageWrap, +/obj/item/packageWrap, +/obj/machinery/power/apc/north_mount, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/effect/floor_decal/corner_oldtile/white/diagonal, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/kitchen) +"ekF" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 8 + }, +/turf/simulated/floor/carpet/sblucarpet, +/area/quartermaster/qm) +"ekN" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/landmark/spawnpoint/job/botanist, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/hydroponics) +"ell" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area) +"elm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/space) +"eln" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/dormitory) +"elM" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/space) +"elT" = ( +/obj/structure/table/steel, +/obj/item/storage/box/donut, +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/security/interrogation) +"emo" = ( +/obj/structure/table/reinforced, +/obj/machinery/cell_charger, +/obj/machinery/fire_alarm/south_mount{ + pixel_y = -24 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/qm) +"emE" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner_oldtile/white/diagonal, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/bar) +"eng" = ( +/turf/simulated/floor/tiled/white, +/area/space) +"enq" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/obj/structure/table/marble, +/obj/machinery/door/blast/shutters{ + id = "bar"; + name = "Bar Shutters" + }, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/bar) +"enY" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/red{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/space) +"eou" = ( +/obj/structure/table/rack/shelf/steel, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/clothing/accessory/armor/helmcover/nt{ + pixel_y = -8 + }, +/obj/item/clothing/accessory/armor/helmcover/nt{ + pixel_y = -8 + }, +/obj/item/clothing/accessory/armor/helmcover/nt{ + pixel_y = -8 + }, +/obj/item/clothing/accessory/armor/helmcover/nt{ + pixel_y = -8 + }, +/obj/item/clothing/accessory/armor/helmcover/nt{ + pixel_y = -8 + }, +/obj/item/clothing/accessory/armor/helmcover/nt{ + pixel_y = -8 + }, +/obj/item/clothing/accessory/armor/helmcover/nt{ + pixel_y = -8 + }, +/obj/item/clothing/accessory/armor/helmcover/navy, +/obj/item/clothing/accessory/armor/helmcover/navy, +/obj/item/clothing/accessory/armor/helmcover/navy, +/obj/item/clothing/accessory/armor/helmcover/navy, +/obj/item/clothing/accessory/armor/helmcover/navy, +/obj/item/clothing/accessory/armor/helmcover/navy, +/turf/simulated/floor/tiled/dark, +/area/space) +"eov" = ( +/obj/machinery/status_display/supply_display{ + mode = 99; + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"eoz" = ( +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_2) +"eoE" = ( +/turf/simulated/wall/prepainted/security, +/area/security/interrogation) +"eph" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"ery" = ( +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/obj/random/plushie, +/obj/machinery/camera/network/security{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/victory/surfacebase/bar_backroom) +"erM" = ( +/obj/structure/table/woodentable, +/obj/item/flashlight/lamp/green, +/turf/simulated/floor/wood, +/area/space) +"esf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/crystal, +/area/station/stairs_two) +"esg" = ( +/obj/machinery/camera/network/security{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/security/hallway) +"esn" = ( +/obj/effect/floor_decal/techfloor/corner, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/holopad, +/turf/simulated/floor/tiled/monotile, +/area/security/lobby) +"esq" = ( +/obj/structure/disposalpipe/down{ + dir = 8 + }, +/obj/structure/lattice, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/open, +/area/space) +"esv" = ( +/obj/machinery/status_display/supply_display{ + pixel_y = 32 + }, +/obj/machinery/vending/loadout/accessory, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/vacant/vacant_shop) +"esG" = ( +/turf/simulated/wall/prepainted/security, +/area/crew_quarters/heads/hos) +"esO" = ( +/obj/machinery/door/airlock/command{ + id_tag = "HoSdoor"; + name = "Head of Security"; + req_one_access = null + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/map_helper/access_helper/airlock/station/head_office/head_of_security, +/turf/simulated/floor/tiled/dark, +/area/security/hallway) +"eud" = ( +/turf/simulated/wall/prepainted, +/area/crew_quarters/showers) +"evJ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 9 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/camera/network/civilian{ + dir = 4 + }, +/obj/structure/table/woodentable, +/obj/machinery/reagentgrinder, +/turf/simulated/floor/tiled, +/area/hydroponics) +"evX" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/window/phoronreinforced, +/obj/machinery/atmospherics/pipe/tank/phoron, +/turf/simulated/floor/tiled/techmaint, +/area/space) +"ewg" = ( +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -23 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/crate/large, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"exw" = ( +/obj/machinery/light{ + dir = 8; + light_range = 12 + }, +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/tiled/dark, +/area/space) +"exM" = ( +/obj/machinery/door/window/brigdoor/southleft{ + dir = 4; + id = "Cell 3"; + name = "Cell 3"; + req_access = list(2) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass{ + dir = 8 + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/security/hallway) +"exQ" = ( +/obj/structure/window/basic{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/bar) +"eyd" = ( +/obj/structure/filingcabinet/security{ + name = "Security Records" + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/security/nuke_storage) +"eyU" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/quartermaster/office) +"ezu" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/old_cargo/white, +/area/space) +"ezY" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue, +/turf/simulated/floor/tiled/dark, +/area/space) +"eAa" = ( +/turf/simulated/wall/r_wall/prepainted/security, +/area/victory/surfacebase/bar_backroom) +"eAb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/space) +"eAf" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/machinery/power/apc/west_mount, +/turf/simulated/floor/tiled/dark, +/area/security/hallway) +"eAg" = ( +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/sleep/Dorm_10) +"eAk" = ( +/obj/effect/floor_decal/techfloor/corner, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/monotile, +/area/security/lobby) +"eBc" = ( +/obj/machinery/fire_alarm/west_mount{ + pixel_x = -24 + }, +/obj/structure/filingcabinet/tall, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/security/hallway) +"eBA" = ( +/obj/item/stool/padded, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"eBI" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/space) +"eCq" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"eCr" = ( +/obj/structure/table/marble, +/obj/item/flame/candle, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/bar) +"eCS" = ( +/obj/machinery/air_alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/structure/bed/chair/sofa/left{ + dir = 1 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/bar) +"eDr" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"eDG" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/security/security_processing) +"eDI" = ( +/obj/item/book/manual/standard_operating_procedure, +/obj/structure/table/woodentable, +/obj/item/storage/fancy/cigarettes/dromedaryco, +/turf/simulated/floor/carpet, +/area/security/detectives_office) +"eDY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/vacant/vacant_shop) +"eEI" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/portable_atmospherics/canister/air, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/sleep/Dorm_8) +"eFD" = ( +/obj/structure/table/bench/steel, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/monotile, +/area/space) +"eFO" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/effect/floor_decal/corner/green/full{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"eGo" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/security/detectives_office) +"eGA" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"eGX" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lime/border, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/space) +"eHe" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"eHf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/carpet/sblucarpet, +/area/quartermaster/foyer) +"eIu" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/station/stairs_two) +"eIx" = ( +/obj/structure/table/marble, +/obj/item/material/kitchen/rollingpin, +/obj/item/material/knife/butch, +/obj/effect/floor_decal/corner_oldtile/white/diagonal, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/kitchen) +"eJf" = ( +/obj/structure/toilet{ + dir = 1 + }, +/obj/machinery/light/small, +/obj/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/turf/simulated/floor/tiled/white, +/area/space) +"eJR" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/closet/secure_closet/hydroponics{ + req_access = list(28) + }, +/obj/item/storage/belt/utility, +/turf/simulated/floor/tiled, +/area/hydroponics) +"eKd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/sleep/Dorm_8) +"eKv" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/machinery/ai_status_display{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/monotile, +/area/victory/surfacebase/bar_backroom) +"eKD" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"eKI" = ( +/obj/machinery/door/airlock/glass_external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "sec_shuttle_inner"; + locked = 1; + name = "Shuttle Internal Access"; + req_one_access = null + }, +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/map_helper/access_helper/airlock/station/external_airlock, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/space) +"eLn" = ( +/obj/effect/floor_decal/corner_oldtile/white/diagonal, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/kitchen) +"eLP" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/landmark/spawnpoint/job/bartender, +/obj/effect/floor_decal/corner_oldtile/white/diagonal, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/bar) +"eMH" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/security/hallway) +"eMJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/security/hallway) +"eMM" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/space) +"eNH" = ( +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "det_office" + }, +/obj/structure/wall_frame/prepainted, +/obj/effect/paint_stripe/darkred, +/turf/simulated/floor/plating, +/area/security/detectives_office) +"eNR" = ( +/obj/structure/undies_wardrobe, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/toilet) +"eOi" = ( +/turf/simulated/wall/r_wall/prepainted/security, +/area/security/evidence_storage) +"ePH" = ( +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/dormitory) +"eQy" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/maintenance, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/space) +"eRh" = ( +/obj/machinery/camera/network/civilian, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/vacant/vacant_shop) +"eSr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/maintenance/dormitory) +"eSu" = ( +/obj/structure/table/marble, +/obj/machinery/microwave, +/obj/effect/floor_decal/corner_oldtile/white/diagonal, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/kitchen) +"eTR" = ( +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"eUl" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/table/rack, +/turf/simulated/floor/tiled/dark, +/area/security/nuke_storage) +"eUo" = ( +/obj/machinery/holopad/ship, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"eUt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/techfloor, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"eUw" = ( +/turf/space, +/area/crew_quarters/bar) +"eUx" = ( +/obj/structure/sign/directions/medical{ + dir = 8; + pixel_y = 42 + }, +/obj/structure/sign/directions/command{ + dir = 8; + pixel_y = 36 + }, +/obj/structure/sign/directions/science{ + dir = 8; + pixel_y = 30 + }, +/obj/structure/sign/directions/security{ + dir = 8; + pixel_y = 24 + }, +/turf/simulated/floor/wood, +/area/hallway/primary/port) +"eUF" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/mining_main/storage) +"eVw" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/closet/jcloset, +/obj/random/soap, +/obj/item/mop, +/obj/item/storage/bag/trash, +/obj/item/lightreplacer, +/turf/simulated/floor/tiled/dark, +/area/maintenance/bar/lower) +"eVR" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"eWO" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/table/woodentable, +/turf/simulated/floor/wood, +/area/station/stairs_two) +"eWV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/effect/floor_decal/corner/blue{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"eXk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled/dark, +/area/prison/cell_block) +"eXp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"eXQ" = ( +/obj/machinery/mineral/input, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/mining_main/refinery) +"eXV" = ( +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/obj/effect/paint_stripe/beastybrown, +/turf/simulated/floor/plating, +/area/space) +"eXW" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/table/marble, +/obj/item/reagent_containers/food/condiment/small/saltshaker{ + pixel_x = -3 + }, +/obj/item/reagent_containers/food/condiment/small/saltshaker{ + pixel_x = -9 + }, +/obj/item/reagent_containers/food/condiment/small/peppermill{ + pixel_x = 3 + }, +/obj/item/reagent_containers/food/condiment/small/peppermill{ + pixel_x = 9 + }, +/obj/item/reagent_containers/food/condiment/spacespice{ + pixel_x = -8; + pixel_y = 13 + }, +/obj/item/reagent_containers/food/condiment/enzyme{ + layer = 5; + pixel_y = 16 + }, +/obj/item/reagent_containers/food/condiment/soysauce{ + pixel_x = 8; + pixel_y = 16 + }, +/obj/effect/floor_decal/corner_oldtile/white/diagonal, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/kitchen) +"eYc" = ( +/obj/item/storage/box/handcuffs{ + pixel_x = 1; + pixel_y = 2 + }, +/obj/item/megaphone, +/obj/structure/table/steel_reinforced, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"eYf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"eYj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/borderfloorblack, +/turf/simulated/floor/tiled/dark, +/area/space) +"eYI" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 8 + }, +/obj/machinery/computer/ship/navigation/telescreen{ + pixel_x = -32 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hydroponics) +"faf" = ( +/obj/structure/table/rack/shelf/steel, +/obj/item/paper_bin, +/obj/item/clothing/glasses/sunglasses, +/obj/item/pen/blue{ + pixel_x = 5; + pixel_y = 5 + }, +/turf/simulated/floor/carpet, +/area/security/detectives_office) +"faJ" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/security/nuke_storage) +"faW" = ( +/obj/machinery/access_button{ + command = "cycle_int"; + frequency = 1379; + master_tag = "sec_shuttle_airlock"; + name = "interior access button"; + pixel_x = -26; + pixel_y = -24; + req_one_access = list(1,2) + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"fbB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/sign/directions/medical{ + pixel_y = -42 + }, +/obj/structure/sign/directions/command{ + pixel_y = -36 + }, +/obj/structure/sign/directions/science{ + pixel_y = -30 + }, +/obj/structure/sign/directions/security{ + pixel_y = -24 + }, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/station/stairs_two) +"fcn" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"fcD" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/security/lobby) +"fdh" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"fdX" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"feP" = ( +/obj/effect/floor_decal/techfloor/corner, +/turf/simulated/floor/tiled/dark, +/area/vacant/vacant_shop) +"feT" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"feU" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/space) +"feZ" = ( +/turf/simulated/wall/r_wall/prepainted/civilian, +/area/hallway/primary/port) +"ffu" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/disposal, +/obj/item/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 26 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"ffQ" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/machinery/door/airlock/multi_tile/glass{ + id_tag = "BrigFoyer"; + name = "Security" + }, +/obj/map_helper/access_helper/airlock/station/security/general, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "security_lockdown"; + name = "Security Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"ffS" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/table/marble, +/obj/item/storage/box/wings, +/obj/machinery/door/blast/shutters{ + id = "bar"; + name = "Bar Shutters" + }, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/bar) +"ffZ" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = -31 + }, +/turf/simulated/floor/wood, +/area/space) +"fgb" = ( +/obj/machinery/fire_alarm/south_mount{ + pixel_y = -24 + }, +/obj/structure/ladder/up, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/space) +"fgu" = ( +/turf/simulated/wall/prepainted/civilian, +/area/maintenance/bar/lower) +"fgz" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/quartermaster/qm) +"fgC" = ( +/obj/machinery/shower{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/showers) +"fgD" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "security_lockdown"; + name = "Security Blast Doors"; + opacity = 0 + }, +/obj/structure/window/reinforced/polarized/full{ + id = "det_office" + }, +/obj/structure/wall_frame/prepainted, +/obj/effect/paint_stripe/darkred, +/turf/simulated/floor/plating, +/area/space) +"fgF" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_10) +"fgP" = ( +/obj/structure/coatrack, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/obj/machinery/button/remote/airlock{ + id = "Dressroom"; + name = "Dressroom lock"; + pixel_x = 26; + pixel_y = -4; + specialfunctions = 4 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/vacant/vacant_shop) +"fhg" = ( +/obj/machinery/door/window/brigdoor/westright{ + dir = 4; + name = "Firing Range Door" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/space) +"fhF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/security/nuke_storage) +"fhO" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/security/interrogation) +"fhP" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/corner/black/full{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/fire_alarm/east_mount, +/obj/structure/table/rack/shelf/steel, +/obj/item/gun/ballistic/fiveseven, +/obj/item/gun/ballistic/fiveseven, +/obj/item/gun/ballistic/fiveseven, +/obj/item/ammo_magazine/a5_7mm/five_seven/ap, +/obj/item/ammo_magazine/a5_7mm/five_seven/ap, +/obj/item/ammo_magazine/a5_7mm/five_seven/ap, +/obj/item/ammo_magazine/a5_7mm/five_seven/ap, +/obj/item/ammo_magazine/a5_7mm/five_seven/ap, +/obj/item/ammo_magazine/a5_7mm/five_seven/ap, +/obj/item/ammo_magazine/a5_7mm/five_seven/ap, +/obj/item/ammo_magazine/a5_7mm/five_seven/ap, +/obj/item/ammo_magazine/a5_7mm/five_seven/ap, +/turf/simulated/floor/tiled/dark, +/area/space) +"fif" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/glass/security{ + name = "Light Armory"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/security/armory, +/turf/simulated/floor/tiled/dark, +/area/space) +"fii" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock{ + id_tag = "dorm10"; + name = "Dorm 10" + }, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_10) +"fip" = ( +/turf/simulated/wall/r_wall/prepainted/security, +/area/security/detectives_office) +"fiA" = ( +/obj/structure/table/marble, +/obj/item/reagent_containers/food/condiment/spacespice{ + pixel_x = -8; + pixel_y = 13 + }, +/obj/item/reagent_containers/food/condiment/enzyme{ + layer = 5; + pixel_y = 16 + }, +/obj/item/reagent_containers/food/condiment/soysauce{ + pixel_x = 8; + pixel_y = 16 + }, +/obj/item/reagent_containers/food/condiment/small/saltshaker{ + pixel_x = -9 + }, +/obj/item/reagent_containers/food/condiment/small/saltshaker{ + pixel_x = -3 + }, +/obj/item/reagent_containers/food/condiment/small/peppermill{ + pixel_x = 3 + }, +/obj/item/reagent_containers/food/condiment/small/peppermill{ + pixel_x = 9 + }, +/obj/effect/floor_decal/corner_oldtile/white/diagonal, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/bar) +"fiH" = ( +/obj/machinery/porta_turret/crescent{ + density = 1; + faction = "neutral" + }, +/turf/simulated/floor/airless/ceiling, +/area/space) +"fiT" = ( +/obj/structure/table/woodentable, +/obj/machinery/computer/skills{ + dir = 1 + }, +/obj/item/folder/red_hos{ + pixel_x = 4 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/heads/hos) +"fjr" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/air_alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/old_tile/gray, +/area/space) +"fju" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/machinery/light/small, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/space) +"fjA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"flh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/machinery/power/apc/north_mount, +/turf/simulated/floor/tiled, +/area/station/stairs_two) +"fll" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/holopad, +/turf/simulated/floor/tiled, +/area/security/lobby) +"fls" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/table/marble, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/gun/ballistic/luger/brown, +/turf/simulated/floor/carpet, +/area/crew_quarters/heads/hos) +"flZ" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/table/woodentable, +/obj/machinery/recharger, +/turf/simulated/floor/carpet/turcarpet, +/area/crew_quarters/recreation_area_hallway) +"fmE" = ( +/obj/machinery/door/window/brigdoor/westright{ + dir = 4; + name = "Firing Range Door" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/space) +"fnd" = ( +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/cargo) +"fnf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood, +/area/maintenance/dormitory) +"fnw" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/monotile, +/area/victory/surfacebase/bar_backroom) +"fnN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/item/stool/padded, +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/bar) +"foH" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/spawner/window/low_wall/full/nogrille/firelocks, +/obj/machinery/door/blast/shutters{ + dir = 8; + id = "bar"; + name = "Bar Shutters" + }, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/bar) +"fpl" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/structure/window/basic{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/bar) +"fpD" = ( +/obj/structure/sink{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/white, +/area/station/stairs_two) +"fpV" = ( +/turf/simulated/floor/tiled, +/area/vacant/vacant_shop) +"fqe" = ( +/obj/structure/bed/double/padded, +/obj/random/bedsheet/double, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_7) +"fqt" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 8 + }, +/obj/machinery/power/apc/west_mount{ + cell_type = /obj/item/cell/super + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/turf/simulated/floor/tiled, +/area/hydroponics) +"fqw" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green, +/obj/spawner/window/low_wall/reinforced/full, +/obj/effect/paint_stripe/darkred, +/turf/simulated/floor/plating, +/area/security/security_processing) +"fqK" = ( +/obj/structure/reagent_dispensers/cookingoil, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/space) +"fsq" = ( +/turf/simulated/floor/tiled, +/area/janitor) +"fsB" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 5 + }, +/turf/simulated/floor/grass, +/area/space) +"ftn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/crystal, +/area/station/stairs_two) +"ftN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/space) +"ftQ" = ( +/obj/machinery/fitness/punching_bag/clown, +/turf/simulated/floor/carpet/bcarpet, +/area/space) +"fun" = ( +/obj/structure/bed/padded, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/random/bedsheet, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_3) +"fvf" = ( +/obj/machinery/door/firedoor/glass{ + dir = 8 + }, +/obj/spawner/window/low_wall/reinforced/full, +/obj/effect/paint_stripe/darkred, +/turf/simulated/floor, +/area/space) +"fwa" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/door_timer/cell_3{ + pixel_x = 32; + pixel_y = -32 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/security/hallway) +"fwt" = ( +/obj/structure/loot_pile/maint/technical, +/turf/simulated/floor/plating, +/area/space) +"fwO" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on, +/obj/structure/closet/wardrobe, +/turf/simulated/floor/wood, +/area/space) +"fwY" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/spawner/window/low_wall/reinforced/full, +/obj/effect/paint_stripe/darkred, +/turf/simulated/floor/plating, +/area/space) +"fxl" = ( +/turf/simulated/floor/carpet/purcarpet, +/area/crew_quarters/sleep/Dorm_7) +"fyh" = ( +/obj/machinery/camera/network/civilian{ + dir = 1 + }, +/obj/item/radio/intercom{ + pixel_y = -24 + }, +/obj/effect/floor_decal/techfloor, +/turf/simulated/floor/tiled/steel, +/area/hallway/primary/port) +"fyk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/security/lobby) +"fyB" = ( +/obj/machinery/power/apc/south_mount, +/obj/structure/cable/green, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/toilet) +"fyF" = ( +/obj/structure/closet/firecloset, +/turf/simulated/floor/plating, +/area/maintenance/dormitory) +"fzp" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/ore_box, +/turf/simulated/floor/tiled/steel, +/area/shuttle/belter) +"fzv" = ( +/obj/structure/closet/firecloset, +/turf/simulated/floor/tiled, +/area/quartermaster/warehouse) +"fAe" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 10 + }, +/obj/machinery/sparker{ + id = "portnacelle_igniter"; + pixel_x = 24 + }, +/turf/simulated/floor/reinforced/airless, +/area/space) +"fAj" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/power/apc/north_mount, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area_hallway) +"fAm" = ( +/obj/effect/floor_decal/industrial/outline/blue, +/obj/structure/table/rack/shelf/steel, +/obj/item/clothing/accessory/armor/armorplate/medium{ + pixel_x = 5; + pixel_y = -3 + }, +/obj/item/clothing/accessory/armor/armorplate/medium{ + pixel_x = 5; + pixel_y = -3 + }, +/obj/item/clothing/accessory/armor/armorplate/medium{ + pixel_x = 5; + pixel_y = -3 + }, +/obj/item/clothing/accessory/armor/armorplate/medium{ + pixel_x = 5; + pixel_y = -3 + }, +/obj/item/clothing/accessory/armor/armorplate/medium{ + pixel_x = 5; + pixel_y = -3 + }, +/obj/item/clothing/accessory/armor/armorplate/medium{ + pixel_x = -4; + pixel_y = -3 + }, +/obj/item/clothing/accessory/armor/armorplate/medium{ + pixel_x = -4; + pixel_y = -3 + }, +/obj/item/clothing/accessory/armor/armorplate/medium{ + pixel_x = -4; + pixel_y = -3 + }, +/obj/item/clothing/accessory/armor/armorplate/medium{ + pixel_x = -4; + pixel_y = -3 + }, +/obj/item/clothing/accessory/armor/armorplate/medium{ + pixel_x = -4; + pixel_y = -3 + }, +/obj/item/clothing/accessory/armor/armorplate/mediumtreated{ + pixel_x = -4; + pixel_y = 8 + }, +/obj/item/clothing/accessory/armor/armorplate/mediumtreated{ + pixel_x = -4; + pixel_y = 8 + }, +/obj/item/clothing/accessory/armor/armorplate/mediumtreated{ + pixel_x = -4; + pixel_y = 8 + }, +/obj/item/clothing/accessory/armor/armorplate/mediumtreated{ + pixel_x = -4; + pixel_y = 8 + }, +/obj/item/clothing/accessory/armor/armorplate/mediumtreated{ + pixel_x = -4; + pixel_y = 8 + }, +/obj/item/clothing/accessory/armor/armorplate/mediumtreated{ + pixel_x = 5; + pixel_y = 8 + }, +/obj/item/clothing/accessory/armor/armorplate/mediumtreated{ + pixel_x = 5; + pixel_y = 8 + }, +/obj/item/clothing/accessory/armor/armorplate/mediumtreated{ + pixel_x = 5; + pixel_y = 8 + }, +/obj/item/clothing/accessory/armor/armorplate/mediumtreated{ + pixel_x = 5; + pixel_y = 8 + }, +/obj/item/clothing/accessory/armor/armorplate/mediumtreated{ + pixel_x = 5; + pixel_y = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"fAs" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/glass/security{ + name = "Locker Room"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/security/brig, +/turf/simulated/floor/tiled/dark, +/area/space) +"fAL" = ( +/obj/structure/window/basic{ + dir = 8 + }, +/turf/simulated/floor/crystal, +/area/station/stairs_two) +"fBq" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 10 + }, +/obj/machinery/shower{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window/northleft{ + name = "Shower"; + req_access = list() + }, +/obj/structure/curtain/open/shower/engineering, +/turf/simulated/floor/tiled, +/area/maintenance/dormitory) +"fCl" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"fCs" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"fCu" = ( +/turf/simulated/wall/r_wall/prepainted/cargo, +/area/space) +"fCA" = ( +/obj/structure/safe, +/obj/item/clothing/under/color/yellow, +/obj/item/disk/nuclear{ + name = "authentication disk" + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/security/nuke_storage) +"fCR" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area_hallway) +"fCW" = ( +/obj/machinery/holopad, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/freezer) +"fDp" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/carpet/blucarpet, +/area/crew_quarters/showers) +"fEg" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/hydroponics) +"fEj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/old_cargo/white, +/area/security/detectives_office) +"fEK" = ( +/obj/landmark{ + name = "blobstart" + }, +/turf/simulated/floor/tiled, +/area/space) +"fEO" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/Dorm_11) +"fGd" = ( +/obj/structure/table/rack, +/obj/fiftyspawner/steel, +/turf/simulated/floor/plating, +/area/maintenance/dormitory) +"fGo" = ( +/obj/machinery/light/small, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"fGs" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Cargo Lobby" + }, +/turf/simulated/floor/wood, +/area/space) +"fGu" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "security_lockdown"; + name = "Security Blast Doors"; + opacity = 0 + }, +/obj/spawner/window/low_wall/reinforced/full, +/obj/effect/paint_stripe/darkred, +/turf/simulated/floor/plating, +/area/security/lobby) +"fHD" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "security_lockdown"; + name = "Security Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/airlock/glass/security{ + layer = 2.8; + name = "Security"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/security/general, +/turf/simulated/floor/tiled/dark, +/area/security/hallway) +"fHQ" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/camera/network/civilian{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area) +"fIl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/station/stairs_two) +"fIK" = ( +/obj/landmark/spawnpoint/job/janitor, +/turf/simulated/floor/tiled/dark, +/area/maintenance/bar/lower) +"fJa" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/multi_tile/glass{ + name = "Vacant lobby" + }, +/turf/simulated/floor/plating, +/area/vacant/vacant_office) +"fJu" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 1 + }, +/obj/structure/curtain/open/bed{ + name = "brown curtain"; + pixel_y = 32 + }, +/obj/machinery/biogenerator, +/turf/simulated/floor/tiled, +/area/hydroponics) +"fKm" = ( +/obj/machinery/chem_master, +/turf/simulated/floor/tiled/old_cargo/white, +/area/space) +"fKv" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "hos_office" + }, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/wall_frame/prepainted, +/obj/effect/paint_stripe/darkred, +/turf/simulated/floor/plating, +/area/security/hallway) +"fLr" = ( +/obj/machinery/washing_machine, +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/space) +"fLt" = ( +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"fMj" = ( +/obj/structure/table/steel, +/obj/item/storage/firstaid/regular, +/obj/item/tape_recorder, +/turf/simulated/floor/tiled/old_cargo/red, +/area/security/security_processing) +"fMn" = ( +/obj/structure/table/steel, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/item/storage/box/teargas{ + pixel_y = 3 + }, +/obj/effect/floor_decal/corner/red{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/outline/red, +/turf/simulated/floor/tiled/dark, +/area/space) +"fMD" = ( +/obj/machinery/vending/fitness, +/turf/simulated/floor/carpet/bcarpet, +/area/space) +"fMQ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/vacant/vacant_shop) +"fMX" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 9 + }, +/turf/simulated/floor/reinforced/airless, +/area/space) +"fNe" = ( +/turf/simulated/wall/prepainted/civilian, +/area/hallway/primary/port) +"fNk" = ( +/turf/simulated/floor/tiled/old_cargo/white, +/area/security/detectives_office) +"fNm" = ( +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/vacant/vacant_shop) +"fNA" = ( +/obj/structure/bed, +/obj/item/bedsheet, +/turf/simulated/floor/carpet, +/area/space) +"fOL" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "mining_interior" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/victory/surfacebase/mining_main/refinery) +"fON" = ( +/obj/effect/floor_decal/corner_techfloor_grid{ + dir = 5 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/machinery/lathe/autolathe, +/turf/simulated/floor/tiled/dark, +/area/space) +"fOO" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/security/hallway) +"fPx" = ( +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/obj/structure/curtain/open/bed{ + anchored = 1; + name = "curtain" + }, +/turf/simulated/floor/plating, +/area/space) +"fQb" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/light/small, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/cargo) +"fQi" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock{ + name = "Restroom" + }, +/turf/simulated/floor/tiled/white, +/area/space) +"fQF" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/camera/network/civilian{ + dir = 8 + }, +/obj/machinery/computer/security/telescreen{ + pixel_x = 32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"fQP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/security/hallway) +"fRT" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/space) +"fSq" = ( +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area_hallway) +"fSr" = ( +/obj/machinery/door/airlock/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/bar/lower) +"fSP" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/landmark/spawnpoint/job/security_officer, +/turf/simulated/floor/tiled, +/area/security/lobby) +"fTd" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/sign/directions/roomnum{ + dir = 1; + pixel_y = 24 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area_hallway) +"fTv" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"fTz" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"fTV" = ( +/turf/simulated/floor/tiled/white, +/area/maintenance/dormitory) +"fUa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/mining_main/storage) +"fUp" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/power/apc/south_mount, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/structure/closet/crate, +/turf/simulated/floor/tiled/steel, +/area/shuttle/belter) +"fUW" = ( +/obj/effect/floor_decal/techfloor/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"fUZ" = ( +/obj/effect/shuttle_landmark{ + base_area = /area/space; + base_turf = /turf/simulated/floor/airless/ceiling; + docking_controller = "cargo_bay"; + landmark_tag = "supply_dock"; + name = "NSV Victory Cargo Dock" + }, +/turf/simulated/floor/airless/ceiling, +/area/space) +"fVI" = ( +/obj/machinery/fire_alarm/west_mount{ + pixel_x = -24 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"fWd" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area_hallway) +"fXa" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/table/steel, +/obj/item/storage/box/donut, +/turf/simulated/floor/tiled/monotile, +/area/space) +"fXd" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/effect/floor_decal/borderfloorblack/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/security/armoury) +"fXG" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"fYv" = ( +/turf/simulated/wall/r_wall/prepainted/cargo, +/area/quartermaster/miningdock) +"fZl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/sleep/Dorm_6) +"fZL" = ( +/obj/effect/floor_decal/techfloor{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/space) +"gag" = ( +/obj/effect/floor_decal/corner/green{ + dir = 9 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/portable_atmospherics/hydroponics, +/turf/simulated/floor/tiled/dark, +/area/space) +"gav" = ( +/obj/structure/bed/chair/comfy/teal{ + dir = 8 + }, +/obj/machinery/fire_alarm/north_mount, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_6) +"gaF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/security/nuke_storage) +"gba" = ( +/obj/structure/closet/l3closet/security, +/obj/effect/floor_decal/corner/blue{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"gbL" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 8 + }, +/obj/machinery/door/airlock/maintenance/engi, +/obj/structure/catwalk, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/space) +"gbS" = ( +/obj/machinery/conveyor{ + dir = 9; + id = "mining_interior" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/victory/surfacebase/mining_main/refinery) +"gbV" = ( +/obj/machinery/light/small, +/turf/simulated/floor/tiled/white, +/area/space) +"gbX" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/security/lobby) +"gcn" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 4 + }, +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/turf/simulated/floor/tiled, +/area/hydroponics) +"gct" = ( +/obj/machinery/door/airlock/glass{ + desc = "A room dedicated for the repairs and recharging of adherent."; + name = "Adherent Maintenance" + }, +/turf/simulated/floor/crystal, +/area/station/stairs_two) +"gcA" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel, +/area/shuttle/belter) +"gcB" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor, +/turf/simulated/floor/tiled, +/area/hallway/primary/starboard) +"gcQ" = ( +/turf/simulated/open, +/area/station/stairs_two) +"gcW" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/machinery/station_map{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"gdg" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/station/stairs_two) +"gdr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/table/woodentable, +/obj/item/paper_bin, +/turf/simulated/floor/carpet/turcarpet, +/area/crew_quarters/recreation_area_hallway) +"gdK" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK" + }, +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/obj/effect/paint_stripe/beastybrown, +/turf/simulated/floor/plating, +/area/space) +"geo" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/security/nuke_storage) +"geO" = ( +/obj/effect/floor_decal/techfloor, +/obj/item/radio/intercom{ + pixel_y = -24 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/starboard) +"geU" = ( +/obj/structure/bed/chair/sofa, +/obj/structure/window/basic{ + dir = 1 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/bar) +"gfi" = ( +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/machinery/ai_status_display{ + pixel_y = 32 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/security/lobby) +"gfs" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/quartermaster/foyer) +"gfT" = ( +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area_hallway) +"ggs" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/item/radio/intercom{ + pixel_y = -24 + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/security/interrogation) +"ggC" = ( +/obj/effect/floor_decal/techfloor, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"ggD" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10 + }, +/obj/structure/table/marble, +/obj/item/toy/plushie/deer, +/obj/machinery/door/blast/shutters{ + id = "bar"; + name = "Bar Shutters" + }, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/bar) +"ghe" = ( +/obj/structure/table/woodentable, +/obj/machinery/photocopier/faxmachine{ + department = "Head of Security" + }, +/obj/item/radio/intercom{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/heads/hos) +"ghY" = ( +/turf/simulated/floor/carpet/sblucarpet, +/area/space) +"giq" = ( +/turf/simulated/wall/prepainted, +/area/space) +"giN" = ( +/obj/structure/flora/ausbushes/brflowers, +/obj/effect/floor_decal/spline/plain{ + dir = 9 + }, +/turf/simulated/floor/grass, +/area/space) +"giY" = ( +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"gjk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/space) +"gkv" = ( +/obj/structure/lattice, +/turf/space/basic, +/area/space) +"glZ" = ( +/obj/structure/sign/deck/second, +/turf/simulated/wall/prepainted, +/area/station/stairs_two) +"gmb" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/crew_quarters/sleep/Dorm_4) +"gmj" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad" + }, +/obj/map_helper/airlock/door/simple, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/machinery/door/airlock/glass_external{ + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/external_airlock, +/turf/simulated/floor/plating, +/area/quartermaster/warehouse) +"gml" = ( +/obj/machinery/requests_console/preset/cargo{ + pixel_x = 30 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/foyer) +"gms" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/blue{ + dir = 6 + }, +/obj/machinery/button/remote/blast_door{ + id = "armoryriot"; + name = "Emergency Armory Access"; + pixel_x = 25; + pixel_y = -6; + req_access = list(3) + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"gnd" = ( +/obj/structure/railing, +/obj/machinery/door/firedoor{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/station/stairs_two) +"gnX" = ( +/obj/structure/window/basic{ + dir = 1 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/crystal, +/area/station/stairs_two) +"gpq" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/space) +"gpC" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/simulated/floor/plating, +/area/space) +"gpX" = ( +/obj/structure/table/rack, +/obj/fiftyspawner/glass, +/turf/simulated/floor/plating, +/area/maintenance/dormitory) +"gqk" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/wood, +/area/vacant/vacant_shop) +"gqB" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/space) +"gqX" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"grc" = ( +/turf/simulated/wall/prepainted/security, +/area/security/hallway) +"grn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/space) +"grM" = ( +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/toilet) +"gsk" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/warehouse) +"gsz" = ( +/obj/structure/closet/secure_closet/security, +/obj/structure/window/basic{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/monotile, +/area/space) +"gsO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/bar) +"gtg" = ( +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/freezer) +"gtC" = ( +/obj/machinery/atmospherics/pipe/simple/visible/fuel{ + dir = 4 + }, +/turf/space, +/area/space) +"gup" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green, +/obj/spawner/window/low_wall/reinforced/full, +/obj/effect/paint_stripe/darkred, +/turf/simulated/floor/plating, +/area/security/hallway) +"guU" = ( +/obj/machinery/gibber, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/freezer) +"gvp" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/machinery/camera/network/civilian, +/obj/machinery/holosign/bar{ + id = "barsign1"; + pixel_y = 24 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"gvu" = ( +/obj/machinery/door/window/eastleft{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/monotile, +/area/victory/surfacebase/tram) +"gwR" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/airless, +/area/crew_quarters/sleep/Dorm_1) +"gxF" = ( +/obj/structure/table/rack/shelf/steel, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/item/clothing/accessory/armor/legguards{ + pixel_x = -3; + pixel_y = -4 + }, +/obj/item/clothing/accessory/armor/legguards{ + pixel_x = -3; + pixel_y = -4 + }, +/obj/item/clothing/accessory/armor/legguards{ + pixel_x = -3; + pixel_y = -4 + }, +/obj/item/clothing/accessory/armor/legguards{ + pixel_x = -3; + pixel_y = -4 + }, +/obj/item/clothing/accessory/armor/legguards{ + pixel_x = -3; + pixel_y = -4 + }, +/obj/item/clothing/accessory/armor/legguards{ + pixel_x = -3; + pixel_y = -4 + }, +/obj/item/clothing/accessory/armor/legguards{ + pixel_x = 7; + pixel_y = -4 + }, +/obj/item/clothing/accessory/armor/legguards{ + pixel_x = 7; + pixel_y = -4 + }, +/obj/item/clothing/accessory/armor/legguards{ + pixel_x = 7; + pixel_y = -4 + }, +/obj/item/clothing/accessory/armor/legguards{ + pixel_x = 7; + pixel_y = -4 + }, +/obj/item/clothing/accessory/armor/legguards{ + pixel_x = 7; + pixel_y = -4 + }, +/obj/item/clothing/accessory/armor/legguards{ + pixel_x = 7; + pixel_y = -4 + }, +/obj/item/clothing/accessory/armor/armguards, +/obj/item/clothing/accessory/armor/armguards, +/obj/item/clothing/accessory/armor/armguards, +/obj/item/clothing/accessory/armor/armguards, +/obj/item/clothing/accessory/armor/armguards, +/obj/item/clothing/accessory/armor/armguards, +/obj/item/clothing/accessory/armor/armguards{ + pixel_y = 4 + }, +/obj/item/clothing/accessory/armor/armguards{ + pixel_y = 4 + }, +/obj/item/clothing/accessory/armor/armguards{ + pixel_y = 4 + }, +/obj/item/clothing/accessory/armor/armguards{ + pixel_y = 4 + }, +/obj/item/clothing/accessory/armor/armguards{ + pixel_y = 4 + }, +/obj/item/clothing/accessory/armor/armguards{ + pixel_y = 4 + }, +/obj/item/clothing/accessory/armor/legguards/navy{ + pixel_x = -4; + pixel_y = -1 + }, +/obj/item/clothing/accessory/armor/legguards/navy{ + pixel_x = 7; + pixel_y = -1 + }, +/obj/item/clothing/accessory/armor/armguards/navy, +/obj/item/clothing/accessory/armor/armguards/navy, +/obj/item/clothing/accessory/armor/legguards/navy{ + pixel_x = -4; + pixel_y = -1 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"gxS" = ( +/turf/simulated/wall/r_wall/prepainted/security, +/area/crew_quarters/barrestroom) +"gyt" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/vacant/vacant_shop) +"gzH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/structure/window/basic{ + dir = 1 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/bar) +"gAq" = ( +/obj/machinery/power/apc/west_mount, +/obj/structure/cable/green, +/turf/simulated/floor/wood, +/area/quartermaster/foyer) +"gAT" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/simulated/floor/airless, +/area/maintenance/dormitory) +"gBe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/turf/simulated/wall/r_wall/prepainted/engineering, +/area/space) +"gBW" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 8 + }, +/obj/machinery/camera/network/civilian{ + dir = 4 + }, +/obj/machinery/newscaster{ + pixel_x = -27 + }, +/turf/simulated/floor/tiled, +/area/hydroponics) +"gCm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/security/prison) +"gCI" = ( +/obj/machinery/vending/fitness, +/turf/simulated/floor/wood, +/area/space) +"gCN" = ( +/obj/structure/closet/secure_closet/security, +/obj/structure/window/basic{ + dir = 1 + }, +/obj/machinery/camera/network/security{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/monotile, +/area/space) +"gDF" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/mining_main/refinery) +"gEh" = ( +/turf/space/basic, +/area/shuttle/belter) +"gEC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/fire_alarm/south_mount{ + pixel_y = -24 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/dormitory) +"gEH" = ( +/turf/simulated/shuttle/wall/voidcraft/blue, +/area/hallway/primary/port) +"gFf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/dormitory) +"gFH" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/obj/machinery/computer/ship/navigation/telescreen{ + pixel_y = -37 + }, +/turf/simulated/floor/wood, +/area/station/stairs_two) +"gGg" = ( +/obj/machinery/camera/network/outside{ + dir = 1 + }, +/turf/space, +/area/space) +"gHm" = ( +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/spawner/window/low_wall/reinforced/full, +/turf/simulated/floor/plating, +/area/victory/surfacebase/mining_main/uxstorage) +"gHW" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/hallway/primary/starboard) +"gIa" = ( +/obj/structure/table/standard, +/obj/structure/bedsheetbin, +/obj/random/soap, +/turf/simulated/floor/tiled/white, +/area/maintenance/bar/lower) +"gIt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/light/small, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/sleep/Dorm_8) +"gIQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/freezer) +"gJg" = ( +/obj/item/radio/intercom{ + pixel_y = -24 + }, +/obj/effect/floor_decal/borderfloor, +/obj/machinery/portable_atmospherics/hydroponics, +/turf/simulated/floor/tiled, +/area/hydroponics) +"gJD" = ( +/obj/machinery/computer/security/wooden_tv, +/obj/machinery/camera/network/security{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/space) +"gKD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/vacant/vacant_shop) +"gKU" = ( +/obj/machinery/holopad, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"gLc" = ( +/obj/structure/flora/pottedplant/smelly, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/turf/simulated/floor/wood, +/area/station/stairs_two) +"gLx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"gLH" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/power/apc/north_mount, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/sleep/Dorm_8) +"gLM" = ( +/turf/simulated/wall/prepainted/civilian, +/area/crew_quarters/bar) +"gMj" = ( +/turf/simulated/floor/tiled/dark, +/area/vacant/vacant_shop) +"gMr" = ( +/turf/simulated/floor/airless/ceiling, +/area/quartermaster/warehouse) +"gPl" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/mining_main/storage) +"gPA" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/carpet/sblucarpet, +/area/quartermaster/foyer) +"gPC" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/camera/network/engineering, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 8 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/space) +"gPI" = ( +/obj/machinery/camera/network/civilian{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor, +/obj/machinery/ai_status_display{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/starboard) +"gPP" = ( +/obj/machinery/fire_alarm/west_mount{ + pixel_x = -26 + }, +/obj/structure/table/standard, +/obj/machinery/photocopier/faxmachine{ + department = "Quartermaster-Office" + }, +/turf/simulated/floor/wood, +/area/maintenance/bar/lower) +"gPW" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/machinery/power/apc/south_mount, +/obj/structure/cable/green, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/space) +"gQn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/door/firedoor, +/obj/map_helper/airlock/door/int_door, +/obj/machinery/door/airlock/glass_external{ + name = "Bar Internal Access"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/external_airlock, +/turf/simulated/floor/plating, +/area/space) +"gRd" = ( +/turf/simulated/floor/plating, +/area/space) +"gRy" = ( +/obj/machinery/atmospherics/component/unary/engine{ + dir = 8 + }, +/turf/simulated/shuttle/plating/airless/carry, +/area/victory/surfacebase/mining_main/eva) +"gRz" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/glass/mining{ + id_tag = "cargodoor"; + name = "Cargo Office"; + req_one_access = list() + }, +/obj/map_helper/access_helper/airlock/station/supply/cargo_bay, +/turf/simulated/floor/tiled, +/area/quartermaster/foyer) +"gSK" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/turf/simulated/floor/tiled, +/area/space) +"gSR" = ( +/obj/machinery/computer/cryopod{ + pixel_y = 32 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/sleep/cryo) +"gST" = ( +/obj/item/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 26 + }, +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled/monotile, +/area/victory/surfacebase/bar_backroom) +"gTg" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/access_button{ + command = "cycle_int"; + frequency = 1379; + master_tag = "solar_dock"; + name = "interior access button"; + pixel_x = -28; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/recreation_area) +"gTv" = ( +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/red/border, +/turf/simulated/floor/tiled/dark, +/area/security/prison) +"gTF" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/simulated/floor/tiled/old_cargo/red, +/area/security/security_processing) +"gTX" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/security/lobby) +"gUi" = ( +/obj/machinery/light, +/obj/machinery/computer/ship/sensors{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel, +/area/shuttle/belter) +"gUw" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/random/cutout, +/turf/simulated/floor/tiled/dark, +/area/security/nuke_storage) +"gVO" = ( +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/machinery/door/blast/shutters{ + dir = 8; + id = "kitchen"; + name = "Kitchen Service Shutters" + }, +/obj/structure/table/marble, +/turf/simulated/floor/tiled/monotile, +/area/crew_quarters/kitchen) +"gVX" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock{ + name = "Bar Backroom" + }, +/obj/map_helper/access_helper/airlock/station/service/bar, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"gWe" = ( +/obj/machinery/power/smes/buildable{ + RCon_tag = "Substation - Cargo"; + output_attempt = 0 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/cable/green, +/turf/simulated/floor/plating, +/area/maintenance/substation/cargo) +"gWm" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/camera/network/engineering{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/sleep/Dorm_8) +"gWy" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/mining_main/storage) +"gWI" = ( +/obj/structure/table/steel, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen, +/obj/machinery/fire_alarm/east_mount, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/security/interrogation) +"gWM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock{ + id_tag = "restroom ad"; + name = "Restroom" + }, +/turf/simulated/floor/tiled/white, +/area/station/stairs_two) +"gXa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/hydroponics) +"gXy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_6) +"gXB" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/prison/cell_block) +"gYl" = ( +/obj/machinery/door/blast/regular{ + dir = 4; + id = "armoryriot"; + name = "Emergency Armory Access" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"gYA" = ( +/turf/space, +/area/victory/surfacebase/mining_main/refinery) +"gYF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/holopad, +/obj/machinery/camera/network/security{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"gYJ" = ( +/obj/machinery/computer/security/mining{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/quartermaster/qm) +"gYQ" = ( +/obj/structure/table/woodentable, +/obj/item/stamp/hos, +/obj/item/hand_labeler{ + pixel_x = 11; + pixel_y = 7 + }, +/obj/item/flashlight/lamp/green{ + pixel_x = -14; + pixel_y = 1 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/heads/hos) +"gYW" = ( +/obj/structure/table/woodentable, +/obj/item/instrument/glockenspiel, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_3) +"gZF" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/bed/double/padded, +/obj/random/bedsheet/double, +/turf/simulated/floor/wood, +/area/space) +"gZJ" = ( +/obj/machinery/computer/secure_data, +/turf/simulated/floor/tiled/old_cargo/red, +/area/security/security_processing) +"gZK" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_6) +"gZU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood, +/area/space) +"har" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/item/radio/beacon, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"hau" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/carpet/bcarpet, +/area/maintenance/dormitory) +"hbv" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/security{ + name = "Interrogation"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/security/general, +/turf/simulated/floor/tiled/dark, +/area/security/hallway) +"hbx" = ( +/obj/structure/closet/wardrobe/black, +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area_hallway) +"hbK" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled, +/area/quartermaster/foyer) +"hcP" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 1 + }, +/obj/structure/curtain/open/bed{ + name = "brown curtain"; + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/hydroponics) +"hda" = ( +/obj/structure/bed/chair/sofa/left{ + dir = 1 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/bar) +"hde" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/space) +"hdq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/effect/floor_decal/corner/red{ + dir = 4 + }, +/obj/machinery/button/remote/blast_door{ + id = "armorytactical"; + name = "Tactical Armory Access"; + pixel_x = 25; + pixel_y = -6; + req_access = list(3) + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"hdy" = ( +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -24 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 9 + }, +/obj/machinery/mech_recharger, +/turf/simulated/floor/tiled/dark, +/area/space) +"hdB" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9 + }, +/obj/machinery/vending/fitness, +/turf/simulated/floor/wood, +/area/station/stairs_two) +"hdL" = ( +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/machinery/door/airlock/maintenance, +/turf/simulated/floor/plating, +/area/space) +"hes" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/closet/hydrant{ + pixel_x = -32 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area_hallway) +"heW" = ( +/obj/machinery/camera/network/civilian{ + dir = 1 + }, +/turf/simulated/open, +/area/station/stairs_two) +"hfF" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/window/phoronreinforced{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/tank/phoron{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/space) +"hfL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/light, +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area_hallway) +"hhm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/computer/timeclock/premade/south, +/turf/simulated/floor/tiled, +/area/station/stairs_two) +"hhD" = ( +/obj/structure/table/steel, +/obj/item/cell/device/weapon{ + pixel_x = -9; + pixel_y = 4 + }, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/obj/item/cell/device/weapon{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/item/cell/device/weapon{ + pixel_x = -7; + pixel_y = 4 + }, +/obj/item/cell/device/weapon{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/item/cell/device/weapon{ + pixel_x = -5; + pixel_y = 4 + }, +/obj/item/cell/device/weapon{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/cell/device/weapon{ + pixel_x = -3; + pixel_y = 4 + }, +/obj/item/cell/device/weapon{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/cell/device/weapon{ + pixel_x = -1; + pixel_y = 4 + }, +/obj/item/cell/device/weapon{ + pixel_y = 4 + }, +/obj/item/cell/device/weapon{ + pixel_x = 1; + pixel_y = 4 + }, +/obj/item/cell/device/weapon{ + pixel_x = 2; + pixel_y = 4 + }, +/obj/item/hand_labeler{ + pixel_x = 2; + pixel_y = -9 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"hie" = ( +/turf/space/basic, +/area/security/warden) +"hjB" = ( +/obj/structure/closet/crate/hydroponics{ + desc = "All you need to start your own honey farm."; + name = "beekeeping crate" + }, +/obj/item/honey_frame, +/obj/item/honey_frame, +/obj/item/honey_frame, +/obj/item/honey_frame, +/obj/item/honey_frame, +/obj/item/beehive_assembly, +/obj/item/bee_smoker, +/obj/item/bee_pack, +/obj/item/tool/crowbar, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lime/border, +/turf/simulated/floor/tiled, +/area/space) +"hkn" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/structure/catwalk, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/dormitory) +"hkB" = ( +/turf/space/basic, +/area/hallway/primary/port) +"hkU" = ( +/obj/structure/table/marble, +/obj/machinery/door/blast/shutters{ + dir = 8; + id = "kitchen"; + name = "Kitchen Service Shutters" + }, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/crew_quarters/kitchen) +"hll" = ( +/turf/simulated/wall/prepainted/civilian, +/area/hydroponics) +"hlC" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/mining_main/storage) +"hmg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/space) +"hmM" = ( +/obj/machinery/power/apc/south_mount, +/obj/structure/cable, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/table/rack, +/turf/simulated/floor/tiled/dark, +/area/security/nuke_storage) +"hou" = ( +/obj/spawner/window/low_wall/full/firelocks/nogrille, +/turf/simulated/floor/wood, +/area/space) +"hra" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/item/stool/padded, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/bar) +"hsB" = ( +/obj/machinery/access_button{ + command = "cycle_ext"; + frequency = 1379; + master_tag = "sec_shuttle_airlock"; + name = "exterior access button"; + pixel_x = 25; + pixel_y = 23; + req_one_access = list(1,2) + }, +/obj/machinery/shield_diffuser, +/turf/simulated/floor/airless/ceiling, +/area/space) +"hsM" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_2) +"hsN" = ( +/obj/structure/lattice, +/turf/space, +/area/quartermaster/warehouse) +"hta" = ( +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area_hallway) +"hte" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/space) +"huf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/carpet/sblucarpet, +/area/crew_quarters/sleep/Dorm_2) +"hum" = ( +/obj/structure/table/rack/shelf/steel, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/clothing/accessory/armor/armorplate/stab{ + pixel_x = -5; + pixel_y = -3 + }, +/obj/item/clothing/accessory/armor/armorplate/stab{ + pixel_x = -5; + pixel_y = -3 + }, +/obj/item/clothing/accessory/armor/armorplate/stab{ + pixel_x = -5; + pixel_y = -3 + }, +/obj/item/clothing/accessory/armor/armorplate/stab{ + pixel_x = -5; + pixel_y = -3 + }, +/obj/item/clothing/accessory/armor/armorplate/stab{ + pixel_x = -5; + pixel_y = -3 + }, +/obj/item/clothing/accessory/armor/armorplate/stab{ + pixel_x = -5; + pixel_y = -3 + }, +/obj/item/clothing/accessory/armor/armorplate{ + pixel_x = 6; + pixel_y = -3 + }, +/obj/item/clothing/accessory/armor/armorplate{ + pixel_x = 6; + pixel_y = -3 + }, +/obj/item/clothing/accessory/armor/armorplate{ + pixel_x = 6; + pixel_y = -3 + }, +/obj/item/clothing/accessory/armor/armorplate{ + pixel_x = 6; + pixel_y = -3 + }, +/obj/item/clothing/accessory/armor/armorplate{ + pixel_x = 6; + pixel_y = -3 + }, +/obj/item/clothing/accessory/armor/armorplate{ + pixel_x = 6; + pixel_y = -3 + }, +/obj/item/clothing/head/helmet{ + pixel_x = -6; + pixel_y = 5 + }, +/obj/item/clothing/head/helmet{ + pixel_x = -6; + pixel_y = 5 + }, +/obj/item/clothing/head/helmet{ + pixel_x = -6; + pixel_y = 5 + }, +/obj/item/clothing/head/helmet{ + pixel_x = -6; + pixel_y = 5 + }, +/obj/item/clothing/head/helmet{ + pixel_x = -6; + pixel_y = 5 + }, +/obj/item/clothing/head/helmet{ + pixel_x = -6; + pixel_y = 5 + }, +/obj/item/clothing/accessory/armor/helmetcamera/security{ + pixel_x = 5; + pixel_y = 12 + }, +/obj/item/clothing/accessory/armor/helmetcamera/security{ + pixel_x = 5; + pixel_y = 11 + }, +/obj/item/clothing/accessory/armor/helmetcamera/security{ + pixel_x = 5; + pixel_y = 10 + }, +/obj/item/clothing/accessory/armor/helmetcamera/security{ + pixel_x = 5; + pixel_y = 9 + }, +/obj/item/clothing/accessory/armor/helmetcamera/security{ + pixel_x = 5; + pixel_y = 8 + }, +/obj/item/clothing/accessory/armor/helmetcamera/security{ + pixel_x = 5; + pixel_y = 7 + }, +/obj/item/clothing/accessory/armor/helmetcamera/security{ + pixel_x = 5; + pixel_y = 7 + }, +/obj/item/clothing/accessory/armor/armorplate/stab{ + pixel_x = -5; + pixel_y = -3 + }, +/obj/item/clothing/accessory/armor/armorplate{ + pixel_x = 6; + pixel_y = -3 + }, +/obj/item/clothing/accessory/armor/armorplate/stab{ + pixel_x = -5; + pixel_y = -3 + }, +/obj/item/clothing/accessory/armor/armorplate{ + pixel_x = 6; + pixel_y = -3 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"huS" = ( +/obj/effect/floor_decal/industrial/danger{ + dir = 10 + }, +/obj/machinery/mech_recharger, +/obj/vehicle/sealed/mecha/combat/fighter/baron/sec/loaded, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/space) +"hvt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/space) +"hvw" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"hvT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"hvV" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/glass/mining{ + name = "Cargo Storage"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/supply/cargo_bay, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"hwh" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/component/unary/vent_pump/on, +/obj/item/stool/padded, +/turf/simulated/floor/carpet/bcarpet, +/area/vacant/vacant_shop) +"hwn" = ( +/obj/machinery/computer/guestpass{ + dir = 1; + pixel_y = -28 + }, +/obj/effect/floor_decal/techfloor, +/turf/simulated/floor/tiled/steel, +/area/hallway/primary/port) +"hwP" = ( +/obj/machinery/atmospherics/component/binary/passive_gate/on{ + dir = 8; + pressure_resistance = 750 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/mining_main/refinery) +"hxl" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock{ + name = "Restroom" + }, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/toilet) +"hxR" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/monotile, +/area/security/hallway) +"hyz" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/obj/machinery/camera/network/cargo, +/obj/item/clothing/accessory/permit/gun/planetside, +/obj/item/clothing/accessory/permit/gun/planetside, +/obj/item/clothing/accessory/permit/gun/planetside, +/obj/item/clothing/accessory/permit/gun/planetside, +/obj/structure/table/reinforced, +/obj/machinery/door/window/southright{ + req_one_access = list(48) + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/item/gun/energy/kinetic_accelerator, +/obj/item/gun/energy/kinetic_accelerator, +/obj/item/gun/energy/kinetic_accelerator, +/obj/item/gun/energy/kinetic_accelerator, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/mining_main/storage) +"hzo" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/freezer{ + name = "Kitchen Cold Room" + }, +/obj/map_helper/access_helper/airlock/station/service/kitchen, +/obj/effect/floor_decal/corner_oldtile/white/diagonal, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/freezer) +"hzQ" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/carpet, +/area/space) +"hBs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/maintenance/bar/lower) +"hBz" = ( +/obj/machinery/door/airlock/engineering{ + name = "Solars"; + req_one_access = null + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/sleep/Dorm_8) +"hBA" = ( +/obj/effect/floor_decal/corner/green{ + dir = 5 + }, +/obj/structure/cable/green{ + dir = 1; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"hCb" = ( +/turf/space, +/area/maintenance/dormitory) +"hCZ" = ( +/turf/simulated/wall/prepainted/cargo, +/area/victory/surfacebase/mining_main/refinery) +"hEf" = ( +/obj/machinery/seed_storage/garden, +/obj/machinery/camera/network/civilian, +/turf/simulated/floor/tiled/techfloor, +/area/hydroponics) +"hEl" = ( +/obj/structure/icecream_cart, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/freezer) +"hEG" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/security/lobby) +"hEH" = ( +/obj/machinery/power/apc/west_mount{ + cell_type = /obj/item/cell/super + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/structure/bed/chair/comfy/teal{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_2) +"hEP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"hFq" = ( +/obj/structure/closet/secure_closet/detective, +/obj/machinery/fire_alarm/east_mount, +/turf/simulated/floor/lino, +/area/space) +"hGe" = ( +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/machinery/power/apc/east_mount, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/toilet) +"hGR" = ( +/obj/random/trash_pile, +/turf/simulated/floor/plating, +/area/maintenance/dormitory) +"hHg" = ( +/obj/structure/table/woodentable, +/obj/structure/flora/pottedplant/shoot, +/obj/item/instrument/saxophone, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_7) +"hHw" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled, +/area/crew_quarters/bar) +"hIq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/carpet/sblucarpet, +/area/crew_quarters/sleep/Dorm_3) +"hIt" = ( +/obj/structure/closet/hydrant{ + pixel_x = 32 + }, +/obj/machinery/vending/snack, +/turf/simulated/floor/wood, +/area/quartermaster/foyer) +"hIL" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/shield_diffuser, +/obj/map_helper/airlock/door/simple, +/obj/machinery/door/airlock/glass_external{ + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/external_airlock, +/turf/simulated/floor/tiled, +/area/maintenance/cargo) +"hKh" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/machinery/camera/network/security, +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"hLm" = ( +/obj/machinery/button/ignition{ + id = "portnacelle_igniter"; + pixel_y = -28 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"hLZ" = ( +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/monotile, +/area/space) +"hMe" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "QMLoad2" + }, +/turf/simulated/floor, +/area/space) +"hMk" = ( +/obj/machinery/air_alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/floor_decal/corner_oldtile/white/diagonal, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/kitchen) +"hNd" = ( +/obj/structure/bed/chair/office/dark, +/obj/landmark/spawnpoint/job/detective, +/turf/simulated/floor/carpet, +/area/security/detectives_office) +"hNG" = ( +/obj/structure/table/marble, +/obj/machinery/chemical_dispenser/catering/bar_soft{ + dir = 8 + }, +/obj/effect/floor_decal/corner_oldtile/white/diagonal, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/bar) +"hNZ" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "security_lockdown"; + name = "Security Blast Doors"; + opacity = 0 + }, +/obj/spawner/window/low_wall/reinforced/full, +/obj/effect/paint_stripe/darkred, +/turf/simulated/floor/plating, +/area/prison/cell_block) +"hOC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals_central6, +/turf/simulated/floor/tiled/monotile, +/area/space) +"hPQ" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/dark, +/area/security/interrogation) +"hPX" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/prison/cell_block) +"hQg" = ( +/obj/machinery/atmospherics/component/binary/passive_gate{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"hQC" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = -31 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/maintenance/bar/lower) +"hQH" = ( +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/table/rack/shelf/steel, +/obj/item/clothing/glasses/sunglasses/sechud{ + pixel_x = -1; + pixel_y = -5 + }, +/obj/item/clothing/glasses/sunglasses/sechud{ + pixel_x = -1; + pixel_y = -5 + }, +/obj/item/clothing/glasses/sunglasses/sechud{ + pixel_x = -1; + pixel_y = -5 + }, +/obj/item/clothing/glasses/sunglasses/sechud{ + pixel_x = -1; + pixel_y = -5 + }, +/obj/item/gunbox/armor/security{ + pixel_y = 8 + }, +/obj/item/gunbox/armor/security{ + pixel_y = 8 + }, +/obj/item/gunbox/armor/security{ + pixel_y = 8 + }, +/obj/item/gunbox/armor/security{ + pixel_y = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"hRd" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/airless, +/area/space) +"hSj" = ( +/obj/effect/floor_decal/corner/black{ + dir = 9 + }, +/obj/effect/floor_decal/corner/black{ + dir = 6 + }, +/obj/structure/table/rack/shelf/steel, +/obj/item/ammo_magazine/a7_62mm, +/obj/item/ammo_magazine/a7_62mm, +/obj/item/gun/ballistic/automatic/z8, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"hTh" = ( +/obj/structure/bed/chair/sofa, +/obj/structure/window/basic{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/bar) +"hTy" = ( +/turf/simulated/wall/prepainted, +/area/crew_quarters/sleep/Dorm_11) +"hUD" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central6, +/turf/simulated/floor/tiled, +/area/space) +"hUZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/space) +"hVb" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/station/stairs_two) +"hVB" = ( +/obj/structure/cryofeed, +/obj/effect/floor_decal/corner_techfloor_grid{ + dir = 10 + }, +/obj/effect/floor_decal/corner_techfloor_grid{ + dir = 5 + }, +/obj/machinery/camera/network/civilian{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/sleep/cryo) +"hWc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/hydroponics) +"hWi" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/starboard) +"hWA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/showers) +"hXT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/vault/bolted{ + id_tag = "vault"; + req_one_access = null + }, +/obj/machinery/door/firedoor/glass{ + dir = 8 + }, +/obj/machinery/door/blast/regular{ + dir = 4; + id = "VaultAc"; + name = "\improper Vault" + }, +/obj/map_helper/access_helper/airlock/station/command/vault, +/turf/simulated/floor/tiled/dark, +/area/security/nuke_storage) +"hYs" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/quartermaster/warehouse) +"hZb" = ( +/obj/structure/sign/warning/fire, +/turf/simulated/wall/r_wall/prepainted, +/area/space) +"hZf" = ( +/obj/structure/table/rack/shelf/steel, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/red, +/obj/item/gun/energy/ionrifle, +/turf/simulated/floor/tiled/dark, +/area/space) +"hZz" = ( +/obj/machinery/mineral/output, +/obj/effect/floor_decal/industrial/loading{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/quartermaster/warehouse) +"hZY" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 8 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/space) +"iam" = ( +/obj/effect/floor_decal/corner/black{ + dir = 9 + }, +/obj/effect/floor_decal/corner/black{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/holopad, +/turf/simulated/floor/tiled/dark, +/area/space) +"ibu" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/space) +"ibX" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor, +/turf/simulated/floor/tiled/steel, +/area/hallway/primary/port) +"icW" = ( +/obj/structure/bed/chair/shuttle{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel, +/area/space) +"idw" = ( +/obj/machinery/cryopod{ + dir = 4 + }, +/obj/effect/floor_decal/corner_techfloor_grid{ + dir = 10 + }, +/obj/effect/floor_decal/corner_techfloor_grid{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/sleep/cryo) +"idG" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/warehouse) +"idY" = ( +/obj/machinery/power/tracker, +/obj/structure/cable/yellow, +/turf/simulated/floor/airless, +/area/space) +"ieM" = ( +/obj/effect/floor_decal/corner/red{ + dir = 10 + }, +/obj/machinery/computer/prisoner{ + dir = 1 + }, +/obj/machinery/newscaster/security_unit{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"ieR" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/showers) +"ifA" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/obj/landmark/spawnpoint/job/bartender, +/turf/simulated/floor/wood, +/area/maintenance/bar/lower) +"ige" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area) +"igf" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/prison/cell_block) +"igm" = ( +/obj/machinery/camera/network/cargo{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/foyer) +"igs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/table/marble, +/obj/machinery/door/blast/shutters{ + dir = 8; + id = "bar"; + name = "Bar Shutters" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"ihL" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/ai_status_display{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled, +/area/station/stairs_two) +"iit" = ( +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/structure/bed/chair/comfy/teal, +/obj/machinery/computer/security/telescreen{ + pixel_y = 32 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_5) +"iiz" = ( +/obj/structure/table/steel, +/obj/item/storage/box/evidence, +/obj/machinery/fire_alarm/west_mount{ + pixel_x = -26 + }, +/turf/simulated/floor/tiled/monotile, +/area/security/hallway) +"iiJ" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass/security{ + name = "Shuttle Bay"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/security/brig, +/turf/simulated/floor/tiled/dark, +/area/space) +"iiK" = ( +/obj/machinery/atmospherics/component/trinary/mixer{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"iiP" = ( +/obj/machinery/light_switch{ + pixel_x = 25; + pixel_y = 7 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/foyer) +"ijr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/red/border, +/turf/simulated/floor/tiled/dark, +/area/security/security_processing) +"ikk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/space) +"ikn" = ( +/obj/item/stool/padded, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/bar) +"ilv" = ( +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "portnacelle_blastdoor"; + opacity = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/paint_stripe/sun, +/obj/structure/window/phoronreinforced/full{ + icon_state = "phoronwindow0" + }, +/obj/structure/grille, +/turf/simulated/floor/reinforced/airless, +/area/space) +"ilH" = ( +/obj/effect/floor_decal/industrial/outline/red, +/turf/simulated/floor/tiled, +/area/quartermaster/warehouse) +"ilS" = ( +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "security_lockdown"; + name = "Security Blast Doors"; + opacity = 0 + }, +/obj/structure/cable/green, +/obj/machinery/door/firedoor/glass{ + dir = 8 + }, +/obj/spawner/window/low_wall/borosillicate/reinforced/full, +/obj/effect/paint_stripe/darkred, +/turf/simulated/floor, +/area/space) +"imA" = ( +/obj/structure/table/woodentable, +/obj/item/handcuffs/legcuffs/fuzzy, +/obj/item/clothing/glasses/sunglasses/blindfold, +/turf/simulated/floor/wood, +/area/crew_quarters/heads/hos) +"imT" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"inx" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/space) +"inU" = ( +/turf/space/basic, +/area/security/evidence_storage) +"ioi" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1379; + id_tag = "sec_shuttle_pump" + }, +/obj/machinery/access_button{ + command = "cycle_ext"; + frequency = 1379; + master_tag = "sec_shuttle_airlock"; + name = "exterior access button"; + pixel_x = 25; + pixel_y = -23; + req_one_access = list(1,2) + }, +/turf/simulated/floor/plating, +/area/space) +"iow" = ( +/turf/simulated/floor/tiled, +/area/quartermaster/qm) +"ioB" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/button/remote/airlock{ + id = "dorm4"; + name = "Room 4 Lock"; + pixel_x = -26; + pixel_y = -4; + specialfunctions = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_4) +"ioP" = ( +/obj/structure/lattice, +/turf/simulated/floor/airless/ceiling, +/area/space) +"ipx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner_oldtile/white/diagonal, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/kitchen) +"iqC" = ( +/obj/machinery/camera/network/cargo, +/obj/machinery/mech_recharger, +/turf/simulated/floor/tiled, +/area/quartermaster/warehouse) +"iqZ" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/structure/table/marble, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/bar) +"ire" = ( +/obj/landmark/spawnpoint/job/head_of_security, +/obj/machinery/button/remote/airlock{ + id = "HoSdoor"; + name = "Office Door"; + pixel_x = -28; + pixel_y = -24 + }, +/obj/machinery/button/remote/blast_door{ + id = "security_lockdown"; + name = "Brig Lockdown"; + pixel_x = -28; + pixel_y = -36; + req_access = list(2) + }, +/obj/machinery/button/windowtint{ + id = "hos_office"; + pixel_x = -36; + pixel_y = -26; + req_access = list(58) + }, +/obj/structure/bed/chair/comfy/black, +/obj/machinery/light_switch{ + pixel_x = -36; + pixel_y = -35 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/heads/hos) +"irA" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"irH" = ( +/obj/machinery/media/jukebox, +/turf/simulated/floor/wood, +/area/space) +"irJ" = ( +/turf/simulated/wall/prepainted/cargo, +/area/victory/surfacebase/mining_main/uxstorage) +"irZ" = ( +/obj/effect/paint_stripe/palebottlegreen, +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/obj/structure/curtain/open/bed{ + anchored = 1; + name = "curtain" + }, +/turf/simulated/floor/plating, +/area/crew_quarters/bar) +"isu" = ( +/obj/structure/bed/chair/comfy/teal{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_4) +"isx" = ( +/obj/structure/table/reinforced, +/obj/item/storage/firstaid/fire{ + pixel_x = 2; + pixel_y = -2 + }, +/obj/item/storage/firstaid{ + pixel_x = -2; + pixel_y = 2 + }, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"isW" = ( +/obj/spawner/window/reinforced/full/firelocks, +/obj/structure/curtain/open/bed{ + anchored = 1; + name = "curtain" + }, +/turf/simulated/floor/plating, +/area/space) +"iti" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/carpet/blucarpet, +/area/space) +"itV" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/bar) +"ivS" = ( +/obj/machinery/atmospherics/component/unary/outlet_injector{ + dir = 8; + frequency = 2346; + id = "portnacelle_in"; + power_rating = 5000 + }, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 6 + }, +/turf/simulated/floor/reinforced/airless, +/area/space) +"iwa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/sleep/Dorm_8) +"iwj" = ( +/obj/machinery/shower{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/showers) +"ixg" = ( +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/obj/effect/floor_decal/techfloor{ + dir = 9 + }, +/obj/machinery/vending/nifsoft_shop, +/turf/simulated/floor/tiled/dark, +/area/vacant/vacant_shop) +"ixk" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/camera/network/security{ + dir = 1 + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/security/hallway) +"ixv" = ( +/obj/structure/stairs/spawner/north, +/turf/simulated/floor/tiled, +/area/station/stairs_two) +"iyF" = ( +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/turf/simulated/floor/plating, +/area/maintenance/dormitory) +"iyL" = ( +/obj/structure/closet/secure_closet/miner, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"izW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/maintenance/bar/lower) +"iAa" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/space) +"iAe" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"iAh" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/machinery/door/airlock/engineering{ + name = "Cargo Substation"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/supply/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/substation/cargo) +"iAu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood, +/area/vacant/vacant_shop) +"iAE" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/security/interrogation) +"iAM" = ( +/obj/machinery/camera/network/outside, +/turf/space, +/area/space) +"iBd" = ( +/obj/machinery/air_alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/floor_decal/corner/red{ + dir = 10 + }, +/obj/structure/table/steel_reinforced, +/obj/item/clipboard, +/obj/item/tool/wrench, +/obj/item/tool/crowbar, +/obj/item/hand_labeler, +/turf/simulated/floor/tiled/dark, +/area/space) +"iBu" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lime/border, +/obj/machinery/honey_extractor, +/turf/simulated/floor/tiled, +/area/space) +"iBL" = ( +/obj/machinery/holopad, +/turf/simulated/floor/tiled, +/area/quartermaster/warehouse) +"iED" = ( +/obj/structure/dogbed, +/obj/machinery/power/apc/west_mount, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/mob/living/simple_mob/animal/passive/dog/pug/SirPogsley, +/turf/simulated/floor/carpet, +/area/crew_quarters/heads/hos) +"iFe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/item/tool/wrench, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"iFF" = ( +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/obj/effect/paint_stripe/beastybrown, +/turf/simulated/floor/plating, +/area/quartermaster/office) +"iFK" = ( +/obj/structure/cryofeed{ + dir = 2 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/sleep/cryo) +"iGO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"iHN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/white, +/area/space) +"iIw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"iIG" = ( +/turf/simulated/wall/prepainted/cargo, +/area/space) +"iJD" = ( +/obj/machinery/camera/network/cargo, +/obj/structure/table/standard, +/obj/item/stamp/cargo, +/obj/item/stamp/denied{ + pixel_x = 7 + }, +/obj/item/stamp/qm{ + pixel_x = -6 + }, +/turf/simulated/floor/wood, +/area/quartermaster/qm) +"iKl" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"iKn" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/dormitory) +"iLP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/red/border, +/turf/simulated/floor/tiled/dark, +/area/space) +"iLT" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/glass{ + name = "Bar" + }, +/turf/simulated/floor/tiled, +/area/space) +"iLY" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area) +"iMg" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/item/radio/intercom{ + pixel_y = -24 + }, +/obj/structure/closet/wardrobe, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_5) +"iNe" = ( +/obj/machinery/air_alarm{ + dir = 8; + pixel_x = 25 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/sleep/cryo) +"iNU" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/holopad, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/security/security_processing) +"iOe" = ( +/obj/machinery/light, +/obj/structure/bed/chair/comfy/black{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/space) +"iOD" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/glass/mining{ + name = "Cargo Bay"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/supply/cargo_bay, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"iPt" = ( +/obj/structure/plasticflaps/mining, +/obj/machinery/conveyor{ + id = "mining_interior" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/victory/surfacebase/mining_main/refinery) +"iPR" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/obj/machinery/suit_storage_unit/mining, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/mining_main/storage) +"iQw" = ( +/obj/item/stool/padded, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"iQB" = ( +/obj/structure/undies_wardrobe, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_4) +"iRu" = ( +/obj/effect/floor_decal/industrial/outline/red, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"iRT" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/security{ + id_tag = "detdoor"; + name = "Forensics Lab"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/security/forensics, +/turf/simulated/floor/lino, +/area/space) +"iSi" = ( +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/foyer) +"iSr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor, +/turf/simulated/floor/tiled, +/area/space) +"iSt" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/red/border, +/turf/simulated/floor/tiled/dark, +/area/security/security_processing) +"iSJ" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/space) +"iSL" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on, +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/security/hallway) +"iSZ" = ( +/obj/structure/sink{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/heads/hos) +"iTd" = ( +/turf/simulated/floor/carpet/blucarpet, +/area/space) +"iTp" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/bar) +"iTQ" = ( +/obj/machinery/light, +/obj/machinery/fire_alarm/south_mount{ + pixel_y = -24 + }, +/obj/structure/bed/chair/sofa{ + dir = 1 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/bar) +"iUd" = ( +/obj/machinery/media/jukebox, +/obj/machinery/air_alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/wood, +/area/space) +"iUt" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/bar) +"iVr" = ( +/obj/item/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 26 + }, +/obj/machinery/holopad, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/space) +"iVu" = ( +/obj/structure/table/steel, +/obj/item/flashlight/lamp, +/turf/simulated/floor/tiled/old_cargo/red, +/area/security/security_processing) +"iVW" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/space) +"iWf" = ( +/turf/simulated/wall/r_wall, +/area/prison/cell_block) +"iWl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/space) +"iWG" = ( +/turf/space, +/area/crew_quarters/sleep/Dorm_1) +"iWR" = ( +/obj/structure/table/rack/shelf/steel, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/red, +/obj/item/gunbox/lethal, +/obj/item/gunbox/lethal, +/turf/simulated/floor/tiled/dark, +/area/space) +"iXr" = ( +/obj/machinery/computer/secure_data, +/turf/simulated/floor/tiled/monotile, +/area/security/hallway) +"iXC" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/vacant/vacant_shop) +"iXG" = ( +/obj/machinery/computer/ship/navigation/telescreen{ + pixel_y = -37 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/maintenance/bar/lower) +"iYi" = ( +/turf/simulated/wall/r_wall/prepainted/security, +/area/hydroponics) +"iYz" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/glass{ + name = "Cargo Lobby" + }, +/turf/simulated/floor/wood, +/area/quartermaster/foyer) +"iYZ" = ( +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_6) +"iZa" = ( +/obj/item/paper_bin, +/obj/item/clothing/glasses/sunglasses, +/obj/item/pen/blue{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/structure/table/woodentable, +/obj/item/handcuffs, +/turf/simulated/floor/carpet, +/area/space) +"iZs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/space) +"iZN" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/grass, +/area/space) +"iZT" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/table/marble, +/obj/item/reagent_containers/food/condiment/small/saltshaker{ + pixel_x = -3 + }, +/obj/item/reagent_containers/food/condiment/small/saltshaker{ + pixel_x = -9 + }, +/obj/item/reagent_containers/food/condiment/small/peppermill{ + pixel_x = 3 + }, +/obj/item/reagent_containers/food/condiment/small/peppermill{ + pixel_x = 9 + }, +/obj/item/reagent_containers/food/condiment/spacespice{ + pixel_x = -8; + pixel_y = 13 + }, +/obj/item/reagent_containers/food/condiment/hotsauce{ + pixel_y = 16 + }, +/obj/item/reagent_containers/food/condiment/coldsauce{ + pixel_x = 8; + pixel_y = 16 + }, +/obj/effect/floor_decal/corner_oldtile/white/diagonal, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/kitchen) +"iZZ" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner_oldtile/white/diagonal, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/kitchen) +"jas" = ( +/obj/effect/floor_decal/techfloor, +/turf/simulated/floor/tiled, +/area/space) +"jaC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/security/lobby) +"jaJ" = ( +/obj/structure/bed/chair/comfy/teal{ + dir = 4 + }, +/obj/item/radio/intercom{ + pixel_y = -24 + }, +/turf/simulated/floor/wood, +/area/space) +"jaY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/security/nuke_storage) +"jbv" = ( +/obj/machinery/fire_alarm/north_mount, +/obj/machinery/camera/network/civilian, +/obj/structure/flora/pottedplant/orientaltree, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/bar) +"jbB" = ( +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/obj/machinery/atmospherics/component/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/space) +"jbV" = ( +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_7) +"jcR" = ( +/obj/machinery/cryopod{ + dir = 2 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/sleep/cryo) +"jdf" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/mining_main/storage) +"jdy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloorblack, +/turf/simulated/floor/tiled/dark, +/area/space) +"jfm" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Kitchen Maintenance Access" + }, +/obj/map_helper/access_helper/airlock/station/service/kitchen, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/kitchen) +"jfA" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/conveyor_switch/oneway{ + id = "QMLoad" + }, +/turf/simulated/floor/tiled, +/area/quartermaster/warehouse) +"jfT" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/space) +"jhP" = ( +/obj/machinery/vending/hydroseeds, +/obj/effect/floor_decal/corner/green{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"jhV" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/security/prison) +"jiH" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/space) +"jiJ" = ( +/obj/structure/lattice, +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/open, +/area/space) +"jiL" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/table/woodentable, +/obj/item/radio/intercom{ + pixel_y = -24 + }, +/obj/item/instrument/trombone, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_10) +"jjD" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/carpet/blucarpet, +/area/space) +"jjP" = ( +/obj/structure/table/marble, +/obj/machinery/cash_register/civilian{ + dir = 4; + req_access = list(25) + }, +/turf/simulated/floor/tiled/dark, +/area/vacant/vacant_shop) +"jjQ" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "QMLoad2" + }, +/obj/map_helper/airlock/door/simple, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/machinery/door/airlock/glass_external{ + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/external_airlock, +/turf/simulated/floor/plating, +/area/quartermaster/warehouse) +"jjU" = ( +/obj/effect/shuttle_landmark/victory/deck2/starboard, +/turf/space, +/area/space) +"jjW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/security/prison) +"jkC" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/sleep/Dorm_10) +"jkE" = ( +/obj/structure/lattice, +/turf/space, +/area/space) +"jkF" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area) +"jkS" = ( +/obj/structure/sign/warning/secure_area, +/turf/simulated/wall/r_wall/prepainted/command, +/area/security/nuke_storage) +"jlb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/space) +"jlq" = ( +/turf/simulated/wall/prepainted/civilian, +/area/maintenance/dormitory) +"jlu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"jlz" = ( +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"jlL" = ( +/obj/machinery/light, +/turf/simulated/floor/wood, +/area/hallway/primary/port) +"jlX" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/crate/engineering, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"jmI" = ( +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hydroponics) +"jnl" = ( +/obj/machinery/air_alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/structure/flora/pottedplant/flower, +/obj/structure/closet/hydrant{ + pixel_x = 32 + }, +/turf/simulated/floor/wood, +/area/hallway/primary/port) +"joe" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/monotile, +/area/victory/surfacebase/bar_backroom) +"joo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/security/hallway) +"joV" = ( +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -28 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/security/lobby) +"jpd" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible/yellow, +/obj/machinery/meter, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"jpf" = ( +/obj/item/storage/box/nifsofts_mining, +/obj/structure/table/reinforced, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/obj/machinery/camera/network/cargo{ + dir = 4 + }, +/obj/item/suit_cooling_unit, +/obj/item/suit_cooling_unit, +/obj/item/duct_tape_roll, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/mining_main/storage) +"jqp" = ( +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/crew_quarters/bar) +"jqw" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/mining{ + name = "Cargo Bay"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/supply/cargo_bay, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"jrc" = ( +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/turf/simulated/floor/plating, +/area/station/stairs_two) +"jrB" = ( +/obj/machinery/shower{ + pixel_y = 17 + }, +/obj/structure/curtain/open/shower/security, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hos) +"jsg" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/item/stool/padded, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/bar) +"jso" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/bar) +"jsr" = ( +/obj/structure/table/steel, +/obj/machinery/microwave, +/turf/simulated/floor/tiled/monotile, +/area/space) +"jsA" = ( +/obj/random/trash_pile, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/space) +"jsJ" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/obj/machinery/button/remote/blast_door{ + dir = 8; + id = "warden"; + name = "Office Shutters"; + pixel_x = -24; + pixel_y = -39; + req_access = list(3) + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"jtW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/vacant/vacant_shop) +"jui" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/effect/floor_decal/corner_oldtile/white/diagonal, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/kitchen) +"juV" = ( +/obj/structure/table/woodentable, +/obj/item/radio/off{ + pixel_x = -7; + pixel_y = 2 + }, +/obj/item/megaphone{ + pixel_x = 5 + }, +/obj/item/radio/intercom/department/security{ + pixel_y = -24 + }, +/obj/machinery/fire_alarm/west_mount{ + pixel_x = -24 + }, +/turf/simulated/floor/wood, +/area/security/hallway) +"jvi" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/security/hallway) +"jvm" = ( +/turf/space, +/area/crew_quarters/sleep/Dorm_9) +"jvC" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"jvN" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/prison/cell_block) +"jvU" = ( +/obj/effect/floor_decal/corner/lightorange/bordercee{ + dir = 4 + }, +/obj/machinery/atmospherics/component/binary/pump{ + dir = 4; + name = "Fuel Line to Thrusters" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"jwg" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"jwJ" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -28 + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/space) +"jwX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area_hallway) +"jyW" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area) +"jAf" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/security/lobby) +"jAk" = ( +/turf/simulated/wall/prepainted, +/area/crew_quarters/sleep/Dorm_2) +"jAu" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/security{ + layer = 2.8; + name = "Security Tool Storage"; + req_one_access = null + }, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "security_lockdown"; + name = "Security Blast Doors"; + opacity = 0 + }, +/obj/map_helper/access_helper/airlock/station/security/general, +/turf/simulated/floor/tiled/techfloor, +/area/security/hallway) +"jBi" = ( +/obj/structure/table/marble, +/obj/structure/flora/pottedplant/small, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/bar) +"jBy" = ( +/obj/structure/bed/chair/comfy/teal{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_10) +"jBJ" = ( +/obj/machinery/camera/network/civilian{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area_hallway) +"jCb" = ( +/obj/machinery/holopad, +/turf/simulated/floor/tiled/old_tile/gray, +/area/space) +"jCl" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/maintenance, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/dormitory) +"jCY" = ( +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/toilet) +"jDF" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/crate/medical, +/obj/machinery/camera/network/cargo{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"jEq" = ( +/obj/machinery/light_switch{ + pixel_x = -9; + pixel_y = 30 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_3) +"jEE" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/maintenance/dormitory) +"jFt" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/techfloor, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"jFR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/dormitory) +"jGk" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/airlock/glass, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/starboard) +"jGm" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner_oldtile/white/diagonal, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/kitchen) +"jGv" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled, +/area/quartermaster/warehouse) +"jGy" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/component/unary/vent_pump/on, +/turf/simulated/floor/carpet/purcarpet, +/area/crew_quarters/sleep/Dorm_7) +"jGV" = ( +/obj/effect/floor_decal/techfloor, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/space) +"jIj" = ( +/obj/machinery/camera/network/civilian, +/turf/simulated/open, +/area/station/stairs_two) +"jIs" = ( +/obj/machinery/media/jukebox{ + icon_state = "superjuke-nopower"; + state_base = "superjuke" + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/bar) +"jJg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/red/border, +/turf/simulated/floor/tiled/dark, +/area/security/security_processing) +"jJl" = ( +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/turf/simulated/floor/carpet, +/area/space) +"jJZ" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/security/detectives_office) +"jKx" = ( +/obj/structure/table/marble, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/machinery/door/blast/shutters{ + dir = 8; + id = "kitchen-c"; + name = "Kitchen Service Shutters" + }, +/obj/effect/floor_decal/corner_oldtile/white/diagonal, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/kitchen) +"jKZ" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/bar) +"jMc" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/machinery/atm{ + pixel_y = 30 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/starboard) +"jMj" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/warehouse) +"jND" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/security/interrogation) +"jNJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/maintenance/bar/lower) +"jOS" = ( +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/obj/machinery/computer/ship/navigation/telescreen{ + pixel_y = -37 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_5) +"jPj" = ( +/obj/machinery/computer/secure_data{ + dir = 4 + }, +/obj/machinery/fire_alarm/west_mount{ + pixel_x = -26 + }, +/turf/simulated/floor/wood, +/area/space) +"jPk" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/glass/mining{ + name = "Mining Prep Room"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/supply/mining, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/mining_main/storage) +"jPT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/space) +"jPY" = ( +/obj/machinery/holopad, +/obj/machinery/fire_alarm/west_mount{ + pixel_x = -24 + }, +/turf/simulated/floor/tiled/monotile, +/area/space) +"jQb" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/camera/network/civilian{ + dir = 8 + }, +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/foyer) +"jQq" = ( +/obj/structure/bed/chair/office/light, +/turf/simulated/floor/tiled/old_cargo/white, +/area/victory/surfacebase/tram) +"jQV" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_2) +"jRs" = ( +/obj/structure/sign/department/cargo_dock, +/turf/simulated/wall/prepainted/cargo, +/area/quartermaster/storage) +"jRA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor, +/obj/structure/bed/chair/sofa/black/right, +/turf/simulated/floor/tiled, +/area/space) +"jRS" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/effect/floor_decal/corner/green{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"jSb" = ( +/obj/structure/table/marble, +/obj/machinery/reagentgrinder, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/item/reagent_containers/glass/beaker{ + pixel_x = 5 + }, +/obj/item/reagent_containers/dropper, +/obj/effect/floor_decal/corner_oldtile/white/diagonal, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/kitchen) +"jSe" = ( +/turf/space/basic, +/area/crew_quarters/bar) +"jSi" = ( +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_4) +"jSj" = ( +/obj/structure/closet/firecloset, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/Dorm_11) +"jSK" = ( +/obj/machinery/power/apc/west_mount{ + cell_type = /obj/item/cell/super + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_7) +"jSS" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/holopad, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"jST" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"jTl" = ( +/obj/structure/window/reinforced/tinted, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/heads/hos) +"jTq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/dormitory) +"jUw" = ( +/obj/machinery/camera/network/command{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/security/nuke_storage) +"jUO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"jVx" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/security{ + name = "Interrogation view room"; + req_access = list(); + req_one_access = null + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/map_helper/access_helper/airlock/station/security/general, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/security/interrogation) +"jVX" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/plating, +/area/maintenance/substation/cargo) +"jWc" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/starboard) +"jXq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood, +/area/maintenance/dormitory) +"jXs" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/security/hallway) +"jXT" = ( +/obj/structure/table/rack{ + dir = 8; + layer = 2.6 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window/northleft{ + name = "Hardsuit Storage"; + req_access = list(1,2,18) + }, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/suit/space/void/security, +/obj/item/clothing/suit/space/void/security, +/obj/item/clothing/head/helmet/space/void/security, +/obj/item/clothing/head/helmet/space/void/security, +/obj/structure/window/reinforced, +/turf/simulated/floor/tiled, +/area/space) +"jYt" = ( +/obj/machinery/light/small, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/station/stairs_two) +"jZh" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Kitchen" + }, +/obj/map_helper/access_helper/airlock/station/service/kitchen, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner_oldtile/white/diagonal, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/kitchen) +"jZl" = ( +/obj/machinery/camera/network/security{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"jZy" = ( +/obj/structure/sink{ + pixel_y = 22 + }, +/obj/structure/mirror{ + dir = 4; + pixel_y = 33 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/sleep/Dorm_10) +"kaR" = ( +/obj/machinery/washing_machine, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/toilet) +"kaY" = ( +/obj/structure/bed/chair/comfy/teal{ + dir = 8 + }, +/obj/machinery/computer/ship/navigation/telescreen{ + pixel_y = -37 + }, +/turf/simulated/floor/wood, +/area/maintenance/dormitory) +"kaZ" = ( +/obj/machinery/door/window/brigdoor/southleft{ + dir = 4; + id = "Cell 2"; + name = "Cell 2"; + req_access = list(2) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass{ + dir = 8 + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/prison/cell_block) +"kbh" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/carpet/sblucarpet, +/area/quartermaster/foyer) +"kbF" = ( +/obj/structure/table/rack{ + dir = 8; + layer = 2.6 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window/southleft{ + name = "Jetpack Storage"; + req_access = list(1,2,18) + }, +/obj/item/tank/jetpack/carbondioxide, +/obj/item/tank/jetpack/carbondioxide, +/obj/item/tank/jetpack/carbondioxide, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/space) +"kbQ" = ( +/obj/structure/bed/double/padded, +/obj/random/bedsheet/double, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_10) +"kbS" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/substation/civilian) +"kcl" = ( +/obj/machinery/computer/ship/navigation/telescreen{ + pixel_y = -37 + }, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/camera/network/civilian{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/space) +"kct" = ( +/obj/structure/table/rack{ + dir = 8; + layer = 2.6 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/window/northright{ + name = "RIG Storage"; + req_access = list(1,2,18) + }, +/obj/structure/window/reinforced, +/obj/item/hardsuit/hazard/equipped, +/turf/simulated/floor/tiled, +/area/space) +"kcw" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/wood, +/area/space) +"kcx" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/security{ + name = "Private Quarters"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/head_office/head_of_security, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/hos) +"kcH" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/starboard) +"kcV" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/space) +"kdq" = ( +/obj/machinery/button/remote/airlock{ + id = "dorm10"; + name = "Room 10 Lock"; + pixel_x = -26; + pixel_y = -4; + specialfunctions = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_10) +"kdx" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/recipe_lookup/drinks{ + pixel_y = 32 + }, +/obj/effect/floor_decal/corner_oldtile/white/diagonal, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/kitchen) +"kdL" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/crate, +/obj/item/radio/intercom{ + dir = 8; + pixel_x = -28; + req_access = list() + }, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"kdP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/red/border, +/turf/simulated/floor/tiled/dark, +/area/space) +"kep" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/random/trash_pile, +/turf/simulated/floor/plating, +/area/maintenance/dormitory) +"keI" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area_hallway) +"kga" = ( +/turf/simulated/shuttle/wall/voidcraft/green, +/area/victory/surfacebase/mining_main/eva) +"kgv" = ( +/obj/effect/floor_decal/techfloor, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/hallway/primary/starboard) +"kgN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/light_switch{ + pixel_x = -26; + pixel_y = -4 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"kgZ" = ( +/obj/machinery/mineral/processing_unit, +/turf/simulated/floor/tiled/steel_grid, +/area/victory/surfacebase/mining_main/refinery) +"khy" = ( +/obj/structure/table/woodentable, +/obj/item/flashlight/lamp/green, +/turf/simulated/floor/carpet, +/area/security/detectives_office) +"khO" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/carpet/blucarpet, +/area/crew_quarters/showers) +"kiW" = ( +/obj/structure/ladder, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/dormitory) +"kky" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/simulated/floor/airless, +/area/space) +"kla" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"klb" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/prison/cell_block) +"klj" = ( +/obj/machinery/power/apc/west_mount{ + cell_type = /obj/item/cell/super + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/structure/undies_wardrobe, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_5) +"klu" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/security/hallway) +"klv" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "hos_office" + }, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/structure/wall_frame/prepainted, +/obj/effect/paint_stripe/darkred, +/turf/simulated/floor/plating, +/area/security/hallway) +"kmn" = ( +/obj/structure/table/bench/steel, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/monotile, +/area/space) +"kmo" = ( +/obj/structure/toilet{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/space) +"kmz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/holopad, +/turf/simulated/floor/tiled/dark, +/area/security/interrogation) +"kmK" = ( +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/wood, +/area/vacant/vacant_shop) +"kmQ" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/closet/hydrant{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 8 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/space) +"kna" = ( +/obj/structure/closet/walllocker{ + pixel_y = 32 + }, +/obj/item/pickaxe/silver, +/obj/item/pickaxe/silver, +/obj/item/clothing/head/helmet/space/void/mining, +/obj/item/clothing/suit/space/void/mining, +/obj/item/tank/emergency/oxygen/double, +/obj/item/tank/emergency/oxygen/double, +/turf/simulated/floor/tiled/steel, +/area/space) +"knd" = ( +/turf/simulated/floor/wood, +/area/crew_quarters/heads/hos) +"knD" = ( +/obj/structure/sink{ + pixel_y = 30 + }, +/obj/structure/window/reinforced/tinted/frosted{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/space) +"knW" = ( +/obj/structure/bed/padded, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/prison/cell_block) +"kpy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/security/hallway) +"kqd" = ( +/obj/structure/sign/directions/roomnum{ + dir = 10; + pixel_x = 32; + pixel_y = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area_hallway) +"kqm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/airlock_sensor{ + id_tag = "solar_sensor"; + pixel_x = 28; + pixel_y = -1 + }, +/obj/machinery/meter{ + frequency = 1443; + id = "dist_aux_meter"; + name = "Distribution Loop" + }, +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + id_tag = "solar_dock"; + pixel_x = -24 + }, +/obj/map_helper/airlock/sensor/chamber_sensor, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/recreation_area) +"kqu" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging, +/turf/simulated/floor/reinforced/airless, +/area/space) +"ksu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/space) +"ksT" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"ktS" = ( +/obj/effect/floor_decal/techfloor{ + dir = 10 + }, +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/tiled, +/area/space) +"ktV" = ( +/obj/machinery/door/firedoor{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/station/stairs_two) +"kub" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/mining_main/storage) +"kuN" = ( +/obj/effect/floor_decal/industrial/danger{ + dir = 9 + }, +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/space) +"kuV" = ( +/obj/structure/table/bench/padded, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/obj/landmark/spawnpoint/job/shaft_miner, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/mining_main/storage) +"kvl" = ( +/obj/machinery/shield_diffuser, +/turf/simulated/floor/airless/ceiling, +/area/space) +"kvG" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/pipe/zpipe/down/supply{ + dir = 8 + }, +/obj/structure/lattice, +/obj/machinery/door/firedoor, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/open, +/area/maintenance/dormitory) +"kvN" = ( +/obj/machinery/fire_alarm/west_mount{ + pixel_x = -24 + }, +/obj/structure/table/woodentable, +/obj/structure/flora/pottedplant/largebush, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_5) +"kvO" = ( +/obj/effect/floor_decal/corner_techfloor_grid{ + dir = 5 + }, +/obj/effect/floor_decal/corner_techfloor_grid{ + dir = 10 + }, +/obj/machinery/cryopod/robot, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/sleep/cryo) +"kwx" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/space) +"kwP" = ( +/obj/machinery/photocopier, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/security/lobby) +"kxc" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock{ + name = "Hydroponics" + }, +/obj/map_helper/access_helper/airlock/station/service/botany, +/turf/simulated/floor/plating, +/area/space) +"kxm" = ( +/turf/simulated/wall/prepainted/security, +/area/security/prison) +"kxM" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/bed/chair/comfy/beige{ + dir = 4 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/crew_quarters/recreation_area_hallway) +"kyg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/sign/directions/evac{ + dir = 1; + pixel_y = 32 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/station/stairs_two) +"kyn" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/maintenance/dormitory) +"kyx" = ( +/obj/structure/sign/warning/internals_required{ + name = "\improper INTERNALS REQUIRED FOR FIGHTER CRAFT" + }, +/turf/simulated/wall/r_wall/prepainted/security, +/area/space) +"kyB" = ( +/obj/machinery/fire_alarm/south_mount{ + pixel_y = -24 + }, +/obj/structure/filingcabinet/chestdrawer, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"kyZ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/fuel{ + dir = 10 + }, +/obj/machinery/shield_diffuser, +/turf/simulated/wall/r_wall/prepainted/engineering, +/area/space) +"kzC" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/regular{ + dir = 4; + id = "armoryriot"; + name = "Emergency Armory Access" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"kzJ" = ( +/obj/item/tape_recorder{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/structure/table/woodentable, +/turf/simulated/floor/carpet, +/area/space) +"kzZ" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/crate/freezer, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"kAl" = ( +/turf/simulated/wall/r_wall, +/area/space) +"kAr" = ( +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/atmospherics/component/unary/vent_pump/on, +/turf/simulated/floor/tiled/white, +/area/maintenance/dormitory) +"kAJ" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/hydroponics) +"kAU" = ( +/obj/structure/closet/chefcloset, +/obj/item/glass_jar, +/obj/item/retail_scanner/civilian, +/obj/item/soap/nanotrasen, +/obj/item/destTagger{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/item/packageWrap, +/obj/item/packageWrap, +/obj/item/packageWrap, +/obj/machinery/camera/network/civilian, +/obj/effect/floor_decal/corner_oldtile/white/diagonal, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/kitchen) +"kBd" = ( +/obj/item/storage/secure/safe{ + pixel_y = -26 + }, +/turf/simulated/floor/wood, +/area/security/hallway) +"kBp" = ( +/turf/simulated/wall/prepainted/cargo, +/area/quartermaster/storage) +"kBs" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/turf/simulated/floor/grass, +/area/space) +"kBF" = ( +/obj/effect/floor_decal/industrial/danger{ + dir = 5 + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/space) +"kBR" = ( +/turf/simulated/wall/prepainted/security, +/area/security/detectives_office) +"kBW" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"kCp" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/cargo) +"kCG" = ( +/obj/machinery/camera/network/cargo, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/mining_main/refinery) +"kCQ" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/security{ + name = "Equipment Storage"; + req_access = list(); + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/security/equipment, +/turf/simulated/floor/tiled/dark, +/area/space) +"kDi" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled/steel, +/area/space) +"kDN" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 6 + }, +/obj/machinery/portable_atmospherics/hydroponics, +/turf/simulated/floor/tiled, +/area/hydroponics) +"kEu" = ( +/turf/space, +/area/victory/surfacebase/mining_main/eva) +"kEv" = ( +/obj/structure/bookcase/legal/combo, +/obj/item/book/manual/security_space_law, +/obj/item/book/manual/security_space_law, +/obj/item/book/manual/legal/cr_vol1, +/obj/item/book/manual/legal/cr_vol3, +/obj/item/book/manual/legal/cr_vol2, +/obj/item/book/manual/legal/cr_vol4, +/obj/item/book/manual/legal/cr_vol5, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -28 + }, +/turf/simulated/floor/carpet, +/area/security/detectives_office) +"kEL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/space) +"kEY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/button/remote/airlock{ + dir = 8; + id = "mine_black"; + name = "Door Lock"; + pixel_x = 24; + specialfunctions = 4 + }, +/turf/simulated/floor/tiled/white, +/area/station/stairs_two) +"kFc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/monotile, +/area/prison/cell_block) +"kFd" = ( +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"kFt" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area_hallway) +"kFA" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/starboard) +"kFL" = ( +/obj/structure/table/steel_reinforced, +/obj/item/stamp/denied{ + pixel_x = 5 + }, +/obj/item/stamp/ward, +/turf/simulated/floor/tiled/dark, +/area/space) +"kGh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/vacant/vacant_shop) +"kGo" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"kGR" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/crew_quarters/sleep/Dorm_11) +"kHI" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/spawner/window/low_wall/reinforced/full, +/obj/effect/paint_stripe/darkred, +/turf/simulated/floor/plating, +/area/prison/cell_block) +"kIl" = ( +/obj/machinery/door/airlock/glass_external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "sec_shuttle_inner"; + locked = 1; + name = "Shuttle Internal Access"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/external_airlock, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/space) +"kIn" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/table/woodentable, +/obj/item/paper_bin, +/turf/simulated/floor/wood, +/area/vacant/vacant_shop) +"kIu" = ( +/obj/machinery/computer/security{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"kIB" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"kJd" = ( +/obj/machinery/power/apc/east_mount, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/carpet/blucarpet, +/area/crew_quarters/showers) +"kKf" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/machinery/door/airlock/glass/mining{ + name = "Cargo Bay"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/supply/cargo_bay, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/mining_main/storage) +"kKj" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/space) +"kKD" = ( +/obj/machinery/fire_alarm/north_mount, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/air_alarm{ + pixel_y = 27 + }, +/obj/machinery/sheet_silo{ + obj_persist_static_id = "sheet-silo-mining" + }, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/mining_main/refinery) +"kKR" = ( +/obj/machinery/computer/arcade/battle, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/bar) +"kMI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"kNF" = ( +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "security_lockdown"; + name = "Security Blast Doors"; + opacity = 0 + }, +/obj/structure/cable/green, +/obj/machinery/door/firedoor/glass{ + dir = 8 + }, +/obj/spawner/window/low_wall/borosillicate/reinforced/full, +/obj/structure/curtain/black{ + anchored = 1 + }, +/obj/effect/paint_stripe/darkred, +/turf/simulated/floor, +/area/space) +"kOc" = ( +/obj/structure/table/marble, +/obj/machinery/door/blast/shutters{ + dir = 8; + id = "kitchen-c"; + name = "Kitchen Service Shutters" + }, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/effect/floor_decal/corner_oldtile/white/diagonal, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/kitchen) +"kOm" = ( +/obj/structure/table/reinforced, +/obj/item/mecha_parts/mecha_equipment/weapon/energy/microtaser, +/obj/item/mecha_parts/mecha_equipment/weapon/energy/taser, +/obj/item/mecha_parts/mecha_equipment/weapon/energy/taser, +/turf/simulated/floor/tiled, +/area/security/prison) +"kOv" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area_hallway) +"kPQ" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"kRa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/space) +"kRt" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/bar) +"kSb" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"kSP" = ( +/obj/machinery/camera/network/civilian{ + dir = 4 + }, +/turf/simulated/floor/crystal, +/area/station/stairs_two) +"kUs" = ( +/obj/structure/cryofeed{ + dir = 2 + }, +/obj/item/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 26 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/sleep/cryo) +"kUt" = ( +/turf/simulated/floor/carpet, +/area/security/detectives_office) +"kUx" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad" + }, +/turf/simulated/floor, +/area/space) +"kVe" = ( +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/obj/effect/paint_stripe/palebottlegreen, +/turf/simulated/floor/plating, +/area/hydroponics) +"kVE" = ( +/obj/machinery/fire_alarm/north_mount, +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/red, +/turf/simulated/floor/tiled/techmaint, +/area/space) +"kWy" = ( +/turf/space/basic, +/area/quartermaster/qm) +"kXU" = ( +/obj/structure/table/steel, +/obj/machinery/recharger, +/obj/machinery/power/apc/west_mount, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/obj/item/storage/lockbox{ + pixel_y = 16 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"kYe" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 8 + }, +/obj/machinery/fire_alarm/west_mount{ + pixel_x = -24 + }, +/turf/simulated/floor/tiled, +/area/hydroponics) +"kYq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/showers) +"kYD" = ( +/turf/simulated/floor/carpet, +/area/space) +"kZi" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/conveyor{ + dir = 8; + id = "QMLoad2" + }, +/obj/machinery/shield_diffuser, +/obj/map_helper/airlock/door/simple, +/obj/machinery/door/airlock/glass_external{ + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/external_airlock, +/turf/simulated/floor/plating, +/area/space) +"lap" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area_hallway) +"laG" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/turf/simulated/floor/tiled/old_cargo/red, +/area/security/security_processing) +"laM" = ( +/obj/machinery/fire_alarm/south_mount{ + pixel_y = -24 + }, +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"laX" = ( +/obj/machinery/power/solar, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/simulated/floor/airless, +/area/crew_quarters/sleep/Dorm_1) +"lbF" = ( +/turf/simulated/shuttle/wall/voidcraft/hard_corner, +/area/hallway/primary/port) +"lbN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/bar_backroom) +"lbY" = ( +/obj/structure/disposalpipe/up{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/space) +"lcc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/security/prison) +"lcj" = ( +/obj/machinery/atmospherics/component/unary/engine/biggest{ + dir = 4 + }, +/turf/space, +/area/space) +"lco" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/cable/green{ + dir = 8; + icon_state = "2-4" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"lcF" = ( +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/obj/machinery/suit_storage_unit/mining, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/mining_main/storage) +"lcG" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/carpet/sblucarpet, +/area/quartermaster/qm) +"lcT" = ( +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/obj/effect/paint_stripe/beastybrown, +/turf/simulated/floor/plating, +/area/quartermaster/warehouse) +"ldh" = ( +/obj/machinery/door/airlock/glass{ + name = "Community Theater" + }, +/obj/structure/curtain/black{ + icon_state = "open" + }, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/vacant/vacant_shop) +"ldD" = ( +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/obj/effect/paint_stripe/beastybrown, +/turf/simulated/floor/plating, +/area/quartermaster/storage) +"leD" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled, +/area/station/stairs_two) +"leP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/space) +"leY" = ( +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "security_lockdown"; + name = "Security Blast Doors"; + opacity = 0 + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/spawner/window/low_wall/borosillicate/reinforced/full, +/obj/effect/paint_stripe/darkred, +/turf/simulated/floor, +/area/space) +"lfz" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/ore_box, +/turf/simulated/floor/tiled/steel, +/area/space) +"lfP" = ( +/obj/machinery/camera/network/cargo{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/warehouse) +"lfY" = ( +/turf/simulated/floor/tiled, +/area/station/stairs_two) +"lgp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/machinery/door/airlock/maintenance, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/space) +"lgz" = ( +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/starboard) +"lgG" = ( +/obj/landmark/spawnpoint/latejoin/station/cryogenics, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/newscaster{ + pixel_x = 30 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/sleep/cryo) +"lgT" = ( +/obj/machinery/power/breakerbox/activated{ + RCon_tag = "DECK 2" + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/civilian) +"lhf" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"lhs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/red/border, +/turf/simulated/floor/tiled/dark, +/area/security/security_processing) +"lhA" = ( +/obj/structure/flora/ausbushes/ppflowers, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/turf/simulated/floor/grass, +/area/space) +"lik" = ( +/turf/simulated/wall/r_wall/prepainted/security, +/area/security/lobby) +"liw" = ( +/obj/machinery/power/solar, +/obj/structure/cable/yellow, +/turf/simulated/floor/airless, +/area/maintenance/dormitory) +"liT" = ( +/obj/structure/bed/chair/sofa, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/bar) +"ljQ" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/maintenance/bar/lower) +"lkB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/heads/hos) +"lkW" = ( +/obj/structure/closet/hydrant{ + pixel_x = 32 + }, +/obj/structure/table/steel, +/obj/item/radio{ + pixel_x = -4 + }, +/obj/item/radio{ + pixel_x = 4; + pixel_y = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/security/lobby) +"lkX" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/machinery/fire_alarm/north_mount, +/turf/simulated/floor/tiled, +/area/hallway/primary/starboard) +"llc" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/table/woodentable, +/obj/item/radio/intercom{ + pixel_y = -24 + }, +/obj/item/instrument/trombone, +/turf/simulated/floor/wood, +/area/maintenance/dormitory) +"llw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"llL" = ( +/obj/structure/undies_wardrobe, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/sleep/Dorm_10) +"llM" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/security/prison) +"llU" = ( +/obj/structure/table/rack/shelf/steel, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/red, +/obj/item/storage/box/flashshells, +/obj/item/storage/box/shotgunammo, +/obj/item/storage/box/shotgunshells{ + pixel_x = 6; + pixel_y = -1 + }, +/obj/item/storage/box/shotgunshells{ + pixel_x = 6; + pixel_y = -1 + }, +/obj/item/gun/ballistic/shotgun/pump/combat, +/obj/item/gun/ballistic/shotgun/pump/combat, +/obj/item/gun/ballistic/shotgun/pump/combat, +/obj/item/gun/ballistic/shotgun/pump/combat, +/turf/simulated/floor/tiled/dark, +/area/space) +"lmE" = ( +/obj/machinery/computer/security/wooden_tv, +/obj/machinery/button/windowtint{ + id = "det_office"; + pixel_x = -23 + }, +/turf/simulated/floor/carpet, +/area/security/detectives_office) +"lnq" = ( +/turf/space, +/area/crew_quarters/sleep/Dorm_11) +"lox" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/spawner/window/low_wall/reinforced/full, +/obj/effect/paint_stripe/darkred, +/turf/simulated/floor/plating, +/area/space) +"lps" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on, +/obj/structure/table/woodentable, +/obj/structure/flora/pottedplant/small, +/turf/simulated/floor/wood, +/area/station/stairs_two) +"lqx" = ( +/obj/structure/stairs/spawner/south, +/turf/simulated/floor/tiled, +/area/station/stairs_two) +"lqM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/wood, +/area/vacant/vacant_shop) +"lsa" = ( +/obj/machinery/light, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner_oldtile/white/diagonal, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/kitchen) +"lsK" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Kitchen" + }, +/obj/map_helper/access_helper/airlock/station/service/kitchen, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/kitchen) +"lsX" = ( +/turf/space/basic, +/area/crew_quarters/visitor_dining) +"ltj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/effect/floor_decal/corner/red, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/air_alarm{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"ltp" = ( +/obj/structure/closet/hydrant{ + pixel_x = -32 + }, +/obj/machinery/light_switch{ + pixel_y = 25 + }, +/obj/structure/flora/pottedplant/minitree, +/turf/simulated/floor/wood, +/area/vacant/vacant_shop) +"ltr" = ( +/obj/structure/ladder, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/space) +"ltT" = ( +/obj/structure/window/basic{ + dir = 1 + }, +/obj/structure/bed/chair/sofa, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/bar) +"luv" = ( +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_4) +"luE" = ( +/obj/structure/table/steel, +/obj/item/clothing/gloves/black, +/obj/item/clothing/glasses/welding, +/turf/simulated/floor/tiled/techfloor, +/area/security/lobby) +"luI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/lino, +/area/security/detectives_office) +"luW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/glass, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/station/stairs_two) +"lvf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/bar) +"lvF" = ( +/obj/machinery/status_display/supply_display{ + pixel_y = 32 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/station/stairs_two) +"lvY" = ( +/obj/structure/table/steel, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/effect/floor_decal/corner/blue/full{ + dir = 1 + }, +/obj/machinery/camera/network/security, +/obj/machinery/fire_alarm/east_mount, +/turf/simulated/floor/tiled/dark, +/area/space) +"lwk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/space) +"lwl" = ( +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/white, +/area/space) +"lwr" = ( +/obj/structure/kitchenspike, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/freezer) +"lwy" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "security_lockdown"; + name = "Security Blast Doors"; + opacity = 0 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/prison/cell_block) +"lxo" = ( +/turf/simulated/wall/prepainted/security, +/area/security/security_processing) +"lxp" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/security/hallway) +"lxI" = ( +/obj/item/storage/toolbox/mechanical, +/obj/structure/table/reinforced, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/qm) +"lxM" = ( +/obj/structure/stairs/spawner/east, +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/space) +"lyu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/item/radio/beacon, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"lyC" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 10 + }, +/obj/structure/lattice, +/turf/space, +/area/space) +"lzn" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/corner_oldtile/white/diagonal, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/bar) +"lzG" = ( +/obj/structure/table/rack/shelf/steel, +/obj/machinery/light, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/clothing/accessory/holster/hip{ + pixel_x = -6; + pixel_y = 7 + }, +/obj/item/clothing/accessory/holster/hip{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/item/clothing/accessory/holster/hip{ + pixel_x = -6; + pixel_y = 1 + }, +/obj/item/clothing/accessory/holster/hip{ + pixel_x = 7; + pixel_y = 7 + }, +/obj/item/clothing/accessory/holster/hip{ + pixel_x = 7; + pixel_y = 4 + }, +/obj/item/clothing/accessory/holster/hip{ + pixel_x = 7; + pixel_y = 1 + }, +/obj/item/clothing/accessory/holster/waist{ + pixel_x = -4; + pixel_y = -7 + }, +/obj/item/clothing/accessory/holster/waist{ + pixel_x = 1; + pixel_y = -7 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"lAc" = ( +/obj/structure/undies_wardrobe, +/turf/simulated/floor/tiled/white, +/area/maintenance/dormitory) +"lAk" = ( +/obj/structure/table/woodentable, +/obj/item/handcuffs/fuzzy, +/turf/simulated/floor/tiled/dark, +/area/space) +"lAw" = ( +/obj/machinery/power/apc/west_mount{ + cell_type = /obj/item/cell/super + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_3) +"lAA" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/space) +"lAR" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"lAS" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/map_helper/airlock/door/int_door, +/obj/machinery/access_button/airlock_interior{ + frequency = 1380; + master_tag = "victory_annex_dock"; + pixel_x = 26 + }, +/obj/machinery/door/airlock/glass_external{ + name = "Bar Internal Access"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/external_airlock, +/turf/simulated/floor/plating, +/area/space) +"lBk" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/structure/table/steel_reinforced, +/obj/item/storage/firstaid/regular, +/turf/simulated/floor/tiled, +/area/security/lobby) +"lCa" = ( +/obj/machinery/power/solar, +/obj/structure/cable/yellow, +/turf/simulated/floor/airless, +/area/crew_quarters/recreation_area) +"lCr" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -24 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"lCA" = ( +/turf/simulated/floor/airless/ceiling, +/area/space) +"lCW" = ( +/turf/space/basic, +/area/security/security_equiptment_storage) +"lDb" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/multi_tile/glass{ + name = "Crew Cryo Bay" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/sleep/cryo) +"lDd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/maintenance{ + id_tag = "Dressroom"; + name = "Dressing Room" + }, +/turf/simulated/floor/wood, +/area/vacant/vacant_shop) +"lDQ" = ( +/obj/structure/closet/l3closet/security, +/obj/machinery/air_alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"lDR" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/window/basic{ + dir = 8 + }, +/obj/structure/window/basic{ + dir = 1 + }, +/turf/simulated/floor/crystal, +/area/station/stairs_two) +"lEt" = ( +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/red/border, +/obj/machinery/light, +/turf/simulated/floor/tiled/dark, +/area/space) +"lET" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/space) +"lFs" = ( +/obj/machinery/door/firedoor/glass{ + dir = 8 + }, +/obj/machinery/door/airlock/glass/security{ + name = "Processing"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/security/general, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/security/security_processing) +"lFu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/window/westright{ + name = "Service Counter"; + req_access = list(25); + req_one_access = list(25) + }, +/obj/effect/floor_decal/corner_oldtile/white/diagonal, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/kitchen) +"lGl" = ( +/obj/structure/curtain/open/shower/engineering, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/showers) +"lGC" = ( +/obj/structure/sign/double/barsign{ + pixel_y = 30 + }, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"lGK" = ( +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/obj/effect/paint_stripe/beastybrown, +/turf/simulated/floor/plating, +/area/maintenance/cargo) +"lGL" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/fire_alarm/west_mount{ + pixel_x = -24 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area) +"lHg" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = -31 + }, +/obj/effect/floor_decal/techfloor, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"lIv" = ( +/obj/structure/table/reinforced, +/obj/item/binoculars, +/obj/item/stack/flag/green, +/obj/item/stack/flag/yellow, +/obj/item/stack/flag/red, +/obj/item/binoculars{ + pixel_y = 6 + }, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/mining_main/refinery) +"lIK" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = -31 + }, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor, +/turf/simulated/floor/tiled/steel, +/area/hallway/primary/port) +"lIO" = ( +/turf/simulated/floor/plating, +/area/maintenance/bar/lower) +"lJl" = ( +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/spawner/window/low_wall/reinforced/full, +/obj/effect/paint_stripe/darkred, +/turf/simulated/floor/plating, +/area/space) +"lJy" = ( +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/Dorm_1) +"lJV" = ( +/obj/machinery/light, +/obj/effect/floor_decal/corner/black/full{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/cable/green, +/obj/machinery/power/apc/east_mount, +/obj/structure/table/rack/shelf/steel, +/obj/item/clothing/head/helmet/ballistic{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/item/clothing/head/helmet/combat{ + pixel_x = -5; + pixel_y = -7 + }, +/obj/item/clothing/head/helmet/ballistic{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/item/clothing/head/helmet/ballistic{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/item/clothing/head/helmet/combat{ + pixel_x = -5; + pixel_y = -7 + }, +/obj/item/clothing/head/helmet/combat{ + pixel_x = -5; + pixel_y = -7 + }, +/obj/item/shield/riot/tower/swat{ + pixel_x = 4 + }, +/obj/item/shield/riot/tower/swat{ + pixel_x = 4 + }, +/obj/item/shield/riot/tower/swat{ + pixel_x = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"lKc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/security/hallway) +"lKl" = ( +/turf/simulated/shuttle/wall/voidcraft/green, +/area/space) +"lKx" = ( +/obj/machinery/button/remote/airlock{ + id = "dorm7"; + name = "Room 7 Lock"; + pixel_x = 26; + pixel_y = -4; + specialfunctions = 4 + }, +/obj/machinery/light_switch{ + pixel_x = 25; + pixel_y = 7 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_7) +"lKK" = ( +/obj/machinery/camera/network/outside{ + dir = 10 + }, +/turf/space, +/area/space) +"lKT" = ( +/turf/simulated/floor/carpet/bcarpet, +/area/maintenance/dormitory) +"lLf" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/shuttle/wall/voidcraft/green, +/area/victory/surfacebase/mining_main/eva) +"lLB" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_3) +"lLM" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 10 + }, +/turf/space, +/area/space) +"lMx" = ( +/obj/machinery/door/airlock, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/toilet) +"lNi" = ( +/obj/machinery/power/apc/west_mount{ + cell_type = /obj/item/cell/super + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/turf/simulated/floor/wood, +/area/space) +"lNn" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock{ + id_tag = "dorm2"; + name = "Dorm 2" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_2) +"lOd" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/space) +"lOP" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/corner/black/full, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/air_alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/structure/table/rack/shelf/steel, +/obj/item/clothing/accessory/armor/armorplate/heavy{ + pixel_x = -4; + pixel_y = -3 + }, +/obj/item/clothing/accessory/armor/armorplate/heavy{ + pixel_x = -4; + pixel_y = -3 + }, +/obj/item/clothing/accessory/armor/armorplate/heavy{ + pixel_x = -4; + pixel_y = -3 + }, +/obj/item/clothing/accessory/armor/armorplate/ballistic{ + pixel_x = -4; + pixel_y = 8 + }, +/obj/item/clothing/accessory/armor/armorplate/ballistic{ + pixel_x = -4; + pixel_y = 8 + }, +/obj/item/clothing/accessory/armor/armorplate/ballistic{ + pixel_x = -4; + pixel_y = 8 + }, +/obj/item/clothing/accessory/armor/armorplate/combat{ + pixel_x = 5; + pixel_y = 8 + }, +/obj/item/clothing/accessory/armor/armorplate/combat{ + pixel_x = 5; + pixel_y = 8 + }, +/obj/item/clothing/accessory/armor/armorplate/combat{ + pixel_x = 5; + pixel_y = 8 + }, +/obj/item/clothing/accessory/armor/armorplate/tactical{ + pixel_x = 5; + pixel_y = -3 + }, +/obj/item/clothing/accessory/armor/armorplate/tactical{ + pixel_x = 5; + pixel_y = -3 + }, +/obj/item/clothing/accessory/armor/armorplate/tactical{ + pixel_x = 5; + pixel_y = -3 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"lPe" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/sleep/cryo) +"lPz" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = -31 + }, +/turf/simulated/floor/tiled/steel, +/area/space) +"lQH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/bar) +"lSh" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/curtain/black{ + anchored = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/space) +"lSo" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/freezer) +"lSy" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/turf/simulated/floor/carpet/purcarpet, +/area/crew_quarters/sleep/Dorm_5) +"lSK" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/starboard) +"lSP" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass/security{ + name = "Holding Room"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/security/general, +/turf/simulated/floor/tiled/monotile, +/area/security/hallway) +"lUU" = ( +/obj/structure/closet/emcloset, +/obj/item/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 26 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/warehouse) +"lVh" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/vacant/vacant_shop) +"lWc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/vacant/vacant_shop) +"lWt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/dormitory) +"lXv" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 8 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/space) +"lXR" = ( +/obj/machinery/access_button{ + command = "cycle_int"; + frequency = 1379; + master_tag = "sec_shuttle_airlock"; + name = "interior access button"; + pixel_x = -26; + pixel_y = 24; + req_one_access = list(1,2) + }, +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/space) +"lYh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/Dorm_11) +"lYO" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8; + light_range = 12 + }, +/turf/simulated/floor/tiled/monotile, +/area/security/lobby) +"lYT" = ( +/obj/structure/table/reinforced, +/obj/item/forensics/sample_kit/powder, +/turf/simulated/floor/tiled/old_cargo/white, +/area/crew_quarters/heads/hos) +"lZw" = ( +/obj/machinery/flasher/portable, +/obj/machinery/light, +/obj/effect/floor_decal/corner/blue{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/dark, +/area/space) +"lZK" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/stairs/spawner/west, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"lZM" = ( +/obj/structure/closet/secure_closet/security, +/obj/structure/window/basic, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/monotile, +/area/space) +"lZX" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/quartermaster/foyer) +"man" = ( +/obj/machinery/cryopod{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"mar" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/mining_main/storage) +"mbi" = ( +/obj/structure/table/marble, +/obj/machinery/door/blast/shutters{ + dir = 8; + id = "kitchen-c"; + name = "Kitchen Service Shutters" + }, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner_oldtile/white/diagonal, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/kitchen) +"mbo" = ( +/obj/effect/floor_decal/techfloor{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/foyer) +"mbx" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor, +/area/security/lobby) +"mbE" = ( +/obj/machinery/holopad, +/turf/simulated/floor/carpet, +/area/crew_quarters/heads/hos) +"mcG" = ( +/turf/simulated/floor/wood, +/area/maintenance/bar/lower) +"men" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/bar) +"mew" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock{ + name = "Bathroom" + }, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/sleep/Dorm_10) +"mfb" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad" + }, +/turf/simulated/floor/tiled, +/area/quartermaster/warehouse) +"mfc" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/holopad, +/turf/simulated/floor/tiled, +/area/space) +"mft" = ( +/turf/simulated/wall/prepainted/security, +/area/crew_quarters/bar) +"mfU" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/glass/security{ + name = "Cell Block"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/security/general, +/turf/simulated/floor/tiled/dark, +/area/security/hallway) +"mfY" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/security/lobby) +"mga" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = -31 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"mgb" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/spawner/window/low_wall/reinforced/full, +/obj/effect/paint_stripe/darkred, +/turf/simulated/floor/plating, +/area/space) +"mgr" = ( +/obj/landmark/spawnpoint/job/chef, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/effect/floor_decal/corner_oldtile/white/diagonal, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/kitchen) +"mht" = ( +/obj/structure/table/marble, +/obj/item/storage/box/wings, +/obj/machinery/door/blast/shutters{ + dir = 8; + id = "bar"; + name = "Bar Shutters" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"mic" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/station/stairs_two) +"miG" = ( +/obj/structure/closet/crate/secure, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/security/nuke_storage) +"mjc" = ( +/obj/item/book/manual/standard_operating_procedure, +/obj/structure/table/woodentable, +/obj/item/storage/fancy/cigarettes/dromedaryco, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/space) +"mjh" = ( +/obj/effect/floor_decal/techfloor/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/monotile, +/area/security/lobby) +"mjq" = ( +/obj/machinery/door/airlock/glass, +/obj/machinery/light, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/starboard) +"mjF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood, +/area/vacant/vacant_shop) +"mkl" = ( +/turf/simulated/wall/r_wall/prepainted/security, +/area/crew_quarters/heads/hos) +"mkJ" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/airless, +/area/maintenance/dormitory) +"mlp" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/secure_closet/freezer/money, +/obj/machinery/light, +/turf/simulated/floor/tiled/dark, +/area/security/nuke_storage) +"mlr" = ( +/obj/structure/lattice, +/turf/space, +/area/crew_quarters/sleep/Dorm_1) +"mlW" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/crew_quarters/sleep/Dorm_11) +"mmr" = ( +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/monotile, +/area/security/lobby) +"mnb" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"mne" = ( +/obj/structure/closet/hydrant{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled, +/area/station/stairs_two) +"mnm" = ( +/turf/simulated/floor/carpet/purcarpet, +/area/crew_quarters/sleep/Dorm_4) +"mnN" = ( +/obj/machinery/status_display/supply_display{ + pixel_y = 32 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/obj/machinery/camera/network/cargo, +/obj/machinery/suit_storage_unit/mining, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/mining_main/storage) +"mnT" = ( +/obj/machinery/power/apc/east_mount, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/security/hallway) +"mof" = ( +/obj/structure/table/woodentable, +/obj/item/reagent_scanner, +/obj/item/paper_bin, +/obj/item/pen, +/turf/simulated/floor/wood, +/area/space) +"mow" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/turf/simulated/floor/tiled/monotile, +/area/victory/surfacebase/tram) +"mox" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/mining{ + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/head_office/quartermaster, +/turf/simulated/floor/plating, +/area/maintenance/bar/lower) +"moO" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"moT" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/space) +"mps" = ( +/turf/simulated/wall/prepainted, +/area/maintenance/dormitory) +"mpF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/power/apc/north_mount, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/bar) +"mpG" = ( +/turf/simulated/floor/tiled, +/area/quartermaster/warehouse) +"mql" = ( +/obj/effect/shuttle_landmark/victory/deck2/port, +/turf/space, +/area/space) +"mqs" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/closet/firecloset, +/turf/simulated/floor/plating, +/area/maintenance/substation/civilian) +"mqK" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"mqS" = ( +/turf/simulated/wall/r_wall/prepainted/cargo, +/area/victory/surfacebase/mining_main/refinery) +"mrE" = ( +/obj/structure/sink/kitchen{ + pixel_y = 28 + }, +/turf/simulated/floor/tiled/dark, +/area/maintenance/bar/lower) +"mrG" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/space) +"mrT" = ( +/obj/spawner/window/reinforced/full/firelocks, +/turf/simulated/floor/plating, +/area/maintenance/dormitory) +"msa" = ( +/obj/effect/floor_decal/techfloor{ + dir = 9 + }, +/obj/item/radio/intercom{ + dir = 8; + pixel_x = -24 + }, +/obj/structure/table/steel, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/structure/closet/hydrant{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/security/lobby) +"msg" = ( +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_6) +"msz" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central5, +/turf/simulated/floor/tiled/monotile, +/area/space) +"muz" = ( +/obj/effect/floor_decal/corner/red/full{ + dir = 8 + }, +/obj/structure/table/steel, +/obj/item/storage/box/firingpins, +/obj/item/storage/box/firingpins, +/obj/machinery/recharger/wallcharger{ + pixel_x = -22 + }, +/obj/machinery/camera/network/security, +/turf/simulated/floor/tiled/dark, +/area/space) +"muD" = ( +/obj/effect/floor_decal/techfloor, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/starboard) +"muO" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"mwg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/carpet, +/area/security/detectives_office) +"mwk" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_5) +"mxz" = ( +/obj/machinery/door/airlock/maintenance/sec{ + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/security/general, +/turf/simulated/floor/plating, +/area/maintenance/security/port) +"mxL" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/station/stairs_two) +"myQ" = ( +/turf/simulated/wall/prepainted, +/area/crew_quarters/sleep/Dorm_7) +"mzn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/item/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 26 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"mAr" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/space) +"mBW" = ( +/obj/structure/closet/wardrobe/red, +/obj/machinery/power/apc/south_mount, +/obj/structure/cable/green, +/obj/effect/floor_decal/corner/red{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/item/clothing/under/oricon/utility/fleet/security, +/obj/item/clothing/under/oricon/utility/fleet/security, +/obj/item/clothing/under/oricon/utility/marine/security, +/obj/item/clothing/under/oricon/utility/marine/security, +/turf/simulated/floor/tiled, +/area/space) +"mCA" = ( +/turf/simulated/wall/prepainted/cargo, +/area/quartermaster/warehouse) +"mCH" = ( +/obj/machinery/fire_alarm/south_mount{ + pixel_y = -25 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/space) +"mDr" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/old_cargo/white, +/area/victory/surfacebase/tram) +"mDw" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/maintenance/dormitory) +"mDA" = ( +/turf/simulated/floor/tiled/white, +/area/station/stairs_two) +"mDS" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/space) +"mDW" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/maintenance, +/turf/simulated/floor/tiled, +/area/maintenance/dormitory) +"mEE" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK" + }, +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/obj/effect/paint_stripe/beastybrown, +/turf/simulated/floor/plating, +/area/quartermaster/warehouse) +"mEG" = ( +/obj/machinery/keycard_auth{ + pixel_y = -28 + }, +/turf/simulated/floor/wood, +/area/maintenance/bar/lower) +"mEN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/recreation_area) +"mEP" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/machinery/computer/secure_data, +/turf/simulated/floor/carpet, +/area/crew_quarters/heads/hos) +"mEU" = ( +/turf/simulated/wall/prepainted, +/area/maintenance/cargo) +"mFM" = ( +/obj/machinery/power/apc/west_mount, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/security/security_processing) +"mFZ" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/portables_connector{ + dir = 1; + name = "Engine Fuel Port" + }, +/obj/effect/floor_decal/industrial/outline/red, +/turf/simulated/floor/tiled/steel, +/area/shuttle/belter) +"mGr" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"mGz" = ( +/obj/structure/closet/secure_closet/brig, +/turf/simulated/floor/tiled/techmaint, +/area/crew_quarters/barrestroom) +"mGW" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/suit_storage_unit/standard_unit, +/obj/item/suit_cooling_unit, +/obj/machinery/camera/network/engineering{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/Dorm_1) +"mHd" = ( +/turf/simulated/floor/tiled, +/area/quartermaster/foyer) +"mHg" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/quartermaster/warehouse) +"mHU" = ( +/obj/machinery/door/airlock{ + name = "Kitchen"; + req_one_access = list(28) + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/map_helper/access_helper/airlock/station/service/kitchen, +/obj/effect/floor_decal/corner_oldtile/white/diagonal, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/kitchen) +"mIE" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/item/radio/beacon/anchored, +/turf/simulated/floor/tiled, +/area/quartermaster/foyer) +"mIH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/sleep/Dorm_8) +"mJk" = ( +/obj/structure/bed/double/padded, +/obj/random/bedsheet/double, +/turf/simulated/floor/wood, +/area/maintenance/dormitory) +"mJI" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on, +/turf/simulated/floor/lino, +/area/security/detectives_office) +"mJM" = ( +/obj/structure/sign/deck/second, +/turf/simulated/wall/r_wall/prepainted/civilian, +/area/hallway/primary/port) +"mJZ" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area) +"mKC" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/shuttle_landmark/victory/deck2/mining, +/obj/overmap/entity/visitable/ship/landable/mining/victory, +/turf/simulated/floor/tiled/steel, +/area/shuttle/belter) +"mKY" = ( +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/atmospherics/component/unary/vent_pump/on, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/sleep/Dorm_10) +"mLk" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/machinery/computer/arcade/battle, +/obj/machinery/camera/network/civilian, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/bar) +"mLp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/monotile, +/area/prison/cell_block) +"mMB" = ( +/obj/structure/bed/chair/shuttle, +/turf/simulated/floor/tiled/steel, +/area/space) +"mNI" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/mirror{ + pixel_x = -28 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/toilet) +"mNJ" = ( +/obj/structure/bed/chair/sofa/left, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/space) +"mNK" = ( +/obj/structure/adherent_bath, +/turf/simulated/floor/crystal, +/area/station/stairs_two) +"mNQ" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/starboard) +"mOk" = ( +/obj/machinery/fitness/punching_bag, +/turf/simulated/floor/wood, +/area/space) +"mOz" = ( +/turf/simulated/floor/wood, +/area/quartermaster/foyer) +"mOH" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/hydroponics) +"mOI" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/space) +"mPe" = ( +/obj/machinery/light_switch{ + pixel_x = -25 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_5) +"mPi" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/space) +"mPD" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Cryo" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/sleep/cryo) +"mPQ" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"mPV" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/space) +"mQm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"mQt" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"mQv" = ( +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/obj/effect/paint_stripe/beastybrown, +/turf/simulated/floor/plating, +/area/quartermaster/foyer) +"mQw" = ( +/obj/machinery/computer/ship/navigation/telescreen{ + pixel_y = -37 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_3) +"mQR" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/landmark/spawnpoint/job/security_officer, +/obj/effect/floor_decal/steeldecal/steel_decals_central5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/security/lobby) +"mRe" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Restroom" + }, +/turf/simulated/floor/tiled, +/area/space) +"mSf" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/starboard) +"mSt" = ( +/obj/structure/table/marble, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/bar) +"mSY" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/space) +"mTI" = ( +/obj/structure/bed/padded, +/obj/random/bedsheet, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_5) +"mTU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/maintenance/dormitory) +"mUI" = ( +/obj/structure/undies_wardrobe, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_3) +"mVn" = ( +/obj/effect/floor_decal/rust, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/cargo) +"mVq" = ( +/obj/item/stool/padded, +/turf/simulated/floor/wood, +/area/vacant/vacant_shop) +"mVB" = ( +/obj/landmark/spawnpoint/latejoin/station/cryogenics, +/obj/structure/extinguisher_cabinet{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/sleep/cryo) +"mWb" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/bar) +"mWK" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 6 + }, +/obj/structure/lattice, +/turf/space, +/area/space) +"mWM" = ( +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/red/border, +/turf/simulated/floor/tiled/dark, +/area/victory/surfacebase/tram) +"mXS" = ( +/obj/machinery/door/airlock/glass, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/starboard) +"mYh" = ( +/obj/machinery/computer/arcade/orion_trail, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/bar) +"mZd" = ( +/obj/structure/bed/chair/sofa{ + dir = 1 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/bar) +"nax" = ( +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/obj/structure/closet/secure_closet/cargotech, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"naI" = ( +/obj/structure/table/steel, +/obj/item/storage/toolbox/electrical, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/security/lobby) +"naO" = ( +/obj/machinery/holopad, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"nbM" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/structure/table/steel, +/obj/item/phone, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/security/lobby) +"ndA" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/spray/luminol, +/obj/item/uv_light, +/obj/machinery/light, +/turf/simulated/floor/tiled/old_cargo/white, +/area/crew_quarters/heads/hos) +"nes" = ( +/turf/simulated/wall/prepainted/civilian, +/area/vacant/vacant_shop) +"neJ" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"nff" = ( +/obj/structure/table/marble, +/obj/machinery/recharger, +/obj/machinery/door/blast/shutters{ + dir = 8; + id = "bar"; + name = "Bar Shutters" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"nfi" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "mining_interior"; + name = "refining conveyor"; + pixel_y = 14 + }, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/mining_main/refinery) +"nfV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/effect/floor_decal/techfloor, +/turf/simulated/floor/tiled, +/area/space) +"ngv" = ( +/obj/machinery/door/firedoor{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"ngz" = ( +/turf/simulated/floor/tiled, +/area/victory/surfacebase/mining_main/storage) +"ngI" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/glass/security{ + name = "Warden's Office"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/security/armory, +/turf/simulated/floor/tiled/dark, +/area/space) +"ngJ" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/space) +"nhk" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/item/reagent_containers/glass/cooler_bottle, +/obj/machinery/fire_alarm/west_mount{ + pixel_x = -26 + }, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/security/hallway) +"nhD" = ( +/obj/machinery/shower{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/showers) +"nie" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell 2"; + name = "Cell 2 Locker" + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/prison/cell_block) +"niA" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/high_volume{ + dir = 1; + frequency = 1379; + id_tag = "solar_pump" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/map_helper/airlock/atmos/chamber_pump, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/recreation_area) +"nji" = ( +/obj/machinery/computer/shuttle_control/belter{ + dir = 4 + }, +/obj/item/gps/internal/base{ + desc = "A tracking beacon embedded in the belter shuttle systems, to help miners find where they left their shuttle."; + gps_tag = "BELTER"; + name = "belter beacon" + }, +/turf/simulated/floor/tiled/steel, +/area/space) +"njy" = ( +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/structure/bed/chair/comfy/teal, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_2) +"njR" = ( +/obj/structure/toilet{ + dir = 8 + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/security/hallway) +"nkn" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor, +/obj/machinery/status_display{ + pixel_y = -32 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/prison/cell_block) +"nkM" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = -31 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/table/rack/shelf, +/obj/effect/floor_decal/techfloor{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/vacant/vacant_shop) +"nkO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals_central6, +/turf/simulated/floor/tiled, +/area/security/lobby) +"nlt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/space) +"nlO" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"nmB" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"nnD" = ( +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/space) +"nnO" = ( +/obj/item/stool/padded, +/obj/effect/floor_decal/corner_oldtile/white/diagonal, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/kitchen) +"nnY" = ( +/obj/machinery/power/apc/north_mount, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/mining_main/uxstorage) +"nol" = ( +/obj/item/radio/intercom{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/security/hallway) +"noF" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/bar) +"noJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood, +/area/station/stairs_two) +"noS" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/station/stairs_two) +"npg" = ( +/obj/machinery/fire_alarm/south_mount{ + pixel_y = -24 + }, +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"npM" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/cargo) +"npR" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 4 + }, +/obj/effect/shuttle_landmark{ + base_area = /area/space; + base_turf = /turf/space; + docking_controller = "belter_docking"; + landmark_tag = "belter_station"; + name = "NSV Victory - Belter Shuttle" + }, +/turf/simulated/shuttle/plating/airless/carry, +/area/shuttle/belter) +"nqS" = ( +/turf/simulated/floor/tiled/techmaint, +/area/quartermaster/office) +"nrr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"nsk" = ( +/obj/structure/closet/secure_closet/security, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/monotile, +/area/space) +"nsn" = ( +/obj/structure/table/marble, +/obj/item/material/knife/butch, +/obj/item/material/kitchen/rollingpin, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner_oldtile/white/diagonal, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/kitchen) +"nst" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/foyer) +"nsH" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/table/steel_reinforced, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "security_lockdown"; + name = "Security Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/window/brigdoor/southleft{ + name = "Security Reception" + }, +/turf/simulated/floor/tiled/monotile, +/area/security/lobby) +"nti" = ( +/obj/structure/filingcabinet, +/turf/simulated/floor/wood, +/area/security/hallway) +"ntA" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on, +/turf/simulated/floor/tiled/monotile, +/area/space) +"ntG" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/terminal, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/airless, +/area/victory/surfacebase/mining_main/eva) +"ntN" = ( +/obj/machinery/fire_alarm/south_mount{ + pixel_y = -24 + }, +/obj/effect/floor_decal/corner/red, +/obj/effect/floor_decal/corner/red{ + dir = 1 + }, +/obj/structure/musician/piano, +/turf/simulated/floor/tiled, +/area/vacant/vacant_shop) +"nug" = ( +/turf/simulated/wall/prepainted, +/area/crew_quarters/sleep/cryo) +"nuo" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/glass{ + name = "Hydroponics" + }, +/obj/map_helper/access_helper/airlock/station/service/botany, +/turf/simulated/floor/tiled/monotile, +/area/hydroponics) +"nuI" = ( +/turf/simulated/floor/tiled, +/area/maintenance/cargo) +"nvl" = ( +/obj/machinery/air_alarm{ + frequency = 1441; + pixel_y = 22 + }, +/obj/structure/table/marble, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/bar) +"nvw" = ( +/obj/machinery/power/solar_control, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/sleep/Dorm_8) +"nvC" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/tiled/techfloor, +/area/security/lobby) +"nwd" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/security/security_processing) +"nxu" = ( +/obj/effect/floor_decal/industrial/danger{ + dir = 9 + }, +/obj/item/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 26 + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/space) +"nxS" = ( +/obj/structure/bed/chair/comfy/teal{ + dir = 8 + }, +/obj/machinery/computer/ship/navigation/telescreen{ + pixel_y = -37 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_10) +"nyu" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/maintenance, +/turf/simulated/floor/tiled, +/area/vacant/vacant_shop) +"nyy" = ( +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/machinery/fitness/heavy/lifter, +/turf/simulated/floor/tiled/dark, +/area/space) +"nyT" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/camera/network/cargo{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/maintenance/bar/lower) +"nzi" = ( +/turf/simulated/floor/tiled/dark, +/area/space) +"nzH" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/vacant/vacant_shop) +"nAt" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"nAY" = ( +/obj/structure/closet/secure_closet/freezer/meat{ + anchored = 1 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/freezer) +"nCm" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area_hallway) +"nCo" = ( +/turf/space, +/area/quartermaster/miningdock) +"nCt" = ( +/turf/simulated/floor/tiled/old_tile/white, +/area/space) +"nDp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/techfloor{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/space) +"nEU" = ( +/obj/structure/filingcabinet/chestdrawer, +/turf/simulated/floor/lino, +/area/security/detectives_office) +"nFa" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"nFF" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/red/border, +/obj/machinery/light, +/turf/simulated/floor/tiled/dark, +/area/space) +"nFR" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/obj/item/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 26 + }, +/obj/machinery/camera/network/civilian, +/turf/simulated/floor/wood, +/area/vacant/vacant_shop) +"nGc" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/mining{ + id_tag = "cargodoor"; + name = "Cargo Office"; + req_one_access = list() + }, +/obj/map_helper/access_helper/airlock/station/supply/cargo_bay, +/turf/simulated/floor/tiled, +/area/quartermaster/foyer) +"nGJ" = ( +/obj/machinery/button/remote/airlock{ + id = "dorm5"; + name = "Room 5 Lock"; + pixel_x = 26; + pixel_y = -4; + specialfunctions = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_5) +"nHe" = ( +/turf/space/basic, +/area/security/security_lockerroom) +"nHw" = ( +/obj/structure/sink{ + pixel_y = 22 + }, +/obj/structure/mirror{ + dir = 4; + pixel_y = 33 + }, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/white, +/area/space) +"nHK" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"nHR" = ( +/turf/simulated/floor/plating, +/area/maintenance/dormitory) +"nIh" = ( +/obj/machinery/power/solar, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/simulated/floor/airless, +/area/crew_quarters/sleep/Dorm_9) +"nIS" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/structure/fitness/weightlifter, +/turf/simulated/floor/carpet/bcarpet, +/area/space) +"nJr" = ( +/obj/structure/table/rack/shelf/steel, +/obj/item/clothing/ears/earmuffs, +/obj/item/clothing/glasses/goggles, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/item/gun/energy/laser/practice, +/obj/machinery/light_switch{ + pixel_y = -26 + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/space) +"nJt" = ( +/obj/effect/floor_decal/borderfloor, +/obj/machinery/portable_atmospherics/hydroponics, +/turf/simulated/floor/tiled, +/area/hydroponics) +"nKh" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/glass/security{ + id_tag = "detdoor"; + name = "Detective"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/security/forensics, +/turf/simulated/floor/lino, +/area/security/detectives_office) +"nKA" = ( +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/bar) +"nKJ" = ( +/obj/item/stool/padded, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/bar) +"nLg" = ( +/obj/structure/ore_box, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/mining_main/uxstorage) +"nLo" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloorblack, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "security_lockdown"; + name = "Security Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/airlock/glass/security{ + layer = 2.8; + name = "Security"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/security/general, +/turf/simulated/floor/tiled/dark, +/area/security/security_processing) +"nLK" = ( +/obj/effect/floor_decal/techfloor{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel, +/area/hallway/primary/port) +"nMc" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/carpet/sblucarpet, +/area/crew_quarters/sleep/Dorm_3) +"nMe" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/space) +"nMB" = ( +/obj/machinery/fire_alarm/south_mount{ + pixel_y = -24 + }, +/obj/effect/floor_decal/techfloor, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"nNq" = ( +/obj/structure/railing, +/obj/structure/stairs/spawner/west, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"nNw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central6, +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area_hallway) +"nNR" = ( +/obj/structure/bed/chair/sofa/black/right{ + dir = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/bar) +"nOs" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area) +"nPn" = ( +/obj/structure/toilet{ + pixel_y = 10 + }, +/turf/simulated/floor/tiled/white, +/area/station/stairs_two) +"nPz" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock{ + id_tag = "dorm8"; + name = "Dorm 8" + }, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/space) +"nPK" = ( +/obj/structure/closet/hydrant{ + pixel_y = 30 + }, +/obj/item/gun/ballistic/shotgun/flare, +/obj/item/storage/box/flashshells, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 + }, +/obj/machinery/meter, +/obj/item/duct_tape_roll, +/turf/simulated/floor/airless, +/area/victory/surfacebase/mining_main/eva) +"nQt" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/airlock/glass, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/port) +"nRD" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/computer/ship/navigation/telescreen{ + pixel_y = -37 + }, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/mining_main/storage) +"nSs" = ( +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/table/rack/shelf/steel, +/obj/item/clothing/suit/armor/pcarrier/navy{ + pixel_x = -5; + pixel_y = 6 + }, +/obj/item/clothing/suit/armor/pcarrier{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/clothing/suit/armor/pcarrier/navy{ + pixel_x = -5; + pixel_y = 6 + }, +/obj/item/clothing/suit/armor/pcarrier/navy{ + pixel_x = -5; + pixel_y = 6 + }, +/obj/item/clothing/suit/armor/pcarrier/navy{ + pixel_x = -5; + pixel_y = 6 + }, +/obj/item/clothing/suit/armor/pcarrier/navy{ + pixel_x = -5; + pixel_y = 6 + }, +/obj/item/clothing/suit/armor/pcarrier/navy{ + pixel_x = -5; + pixel_y = 6 + }, +/obj/item/clothing/suit/armor/pcarrier{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/clothing/suit/armor/pcarrier{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/clothing/suit/armor/pcarrier{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/clothing/suit/armor/pcarrier{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/clothing/suit/armor/pcarrier{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/clothing/accessory/storage/pouches/navy{ + pixel_x = -5; + pixel_y = -2 + }, +/obj/item/clothing/accessory/storage/pouches{ + pixel_x = 6; + pixel_y = -2 + }, +/obj/item/clothing/accessory/storage/pouches/navy{ + pixel_x = -5; + pixel_y = -2 + }, +/obj/item/clothing/accessory/storage/pouches/navy{ + pixel_x = -5; + pixel_y = -2 + }, +/obj/item/clothing/accessory/storage/pouches/navy{ + pixel_x = -5; + pixel_y = -2 + }, +/obj/item/clothing/accessory/storage/pouches/navy{ + pixel_x = -5; + pixel_y = -2 + }, +/obj/item/clothing/accessory/storage/pouches/navy{ + pixel_x = -5; + pixel_y = -2 + }, +/obj/item/clothing/accessory/storage/pouches{ + pixel_x = 6; + pixel_y = -2 + }, +/obj/item/clothing/accessory/storage/pouches{ + pixel_x = 6; + pixel_y = -2 + }, +/obj/item/clothing/accessory/storage/pouches{ + pixel_x = 6; + pixel_y = -2 + }, +/obj/item/clothing/accessory/storage/pouches{ + pixel_x = 6; + pixel_y = -2 + }, +/obj/item/clothing/accessory/storage/pouches{ + pixel_x = 6; + pixel_y = -2 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"nSx" = ( +/obj/machinery/camera/network/civilian{ + dir = 4 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/bar) +"nTs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/bed/chair/wood{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/vacant/vacant_shop) +"nUl" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/wood, +/area/station/stairs_two) +"nUt" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/obj/landmark/spawnpoint/job/janitor, +/turf/simulated/floor/tiled/dark, +/area/maintenance/bar/lower) +"nUA" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/tiled, +/area/space) +"nUH" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Cargo Substation"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/supply/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/substation/cargo) +"nUY" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/obj/structure/closet, +/obj/item/storage/backpack/dufflebag, +/obj/machinery/power/apc/south_mount, +/obj/structure/cable/green, +/turf/simulated/floor/wood, +/area/maintenance/bar/lower) +"nVx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/wood, +/area/station/stairs_two) +"nVN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/space) +"nWr" = ( +/turf/simulated/wall/prepainted/cargo, +/area/victory/surfacebase/mining_main/storage) +"nWy" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/maintenance/dormitory) +"nWO" = ( +/obj/structure/table/rack/shelf/steel, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/item/gunbox, +/obj/item/gunbox, +/obj/item/gunbox, +/turf/simulated/floor/tiled/dark, +/area/space) +"nWR" = ( +/obj/machinery/fire_alarm/east_mount, +/obj/structure/closet/wardrobe, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_2) +"nXl" = ( +/turf/simulated/wall/prepainted/civilian, +/area/crew_quarters/freezer) +"nXw" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled, +/area/station/stairs_two) +"nXQ" = ( +/obj/machinery/computer/timeclock/premade/south, +/obj/effect/floor_decal/techfloor, +/turf/simulated/floor/tiled/steel, +/area/hallway/primary/port) +"nXY" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/computer/security/telescreen{ + pixel_x = 32 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"nYa" = ( +/obj/effect/floor_decal/corner/green/full, +/obj/machinery/portable_atmospherics/hydroponics, +/turf/simulated/floor/tiled/dark, +/area/space) +"nYJ" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock{ + id_tag = "dorm4"; + name = "Dorm 4" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_4) +"nYQ" = ( +/obj/random/trash_pile, +/turf/simulated/floor/plating, +/area/space) +"nYY" = ( +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/wood, +/area/space) +"nZs" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"nZO" = ( +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"oaB" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"oaO" = ( +/obj/structure/table/rack/shelf/steel, +/obj/item/clothing/mask/gas{ + pixel_x = 7; + pixel_y = -3 + }, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/clothing/mask/gas{ + pixel_x = 7; + pixel_y = 1 + }, +/obj/item/clothing/mask/gas{ + pixel_x = 7; + pixel_y = 5 + }, +/obj/item/clothing/mask/gas/half{ + pixel_x = -6; + pixel_y = -10 + }, +/obj/item/clothing/mask/gas/half{ + pixel_x = -6; + pixel_y = -9 + }, +/obj/item/clothing/mask/gas/half{ + pixel_x = -6; + pixel_y = -8 + }, +/obj/item/clothing/mask/gas/half{ + pixel_x = -6; + pixel_y = -7 + }, +/obj/item/clothing/mask/gas/half{ + pixel_x = -6; + pixel_y = -6 + }, +/obj/item/clothing/mask/gas/half{ + pixel_x = -6; + pixel_y = -5 + }, +/obj/item/clothing/mask/gas/half{ + pixel_x = -6; + pixel_y = -4 + }, +/obj/item/clothing/mask/gas/half{ + pixel_x = -6; + pixel_y = -3 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"obo" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area) +"obp" = ( +/obj/machinery/shower{ + pixel_y = 16 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/structure/curtain/open/shower{ + anchored = 1 + }, +/turf/simulated/floor/tiled, +/area/space) +"ocy" = ( +/obj/machinery/ai_status_display{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"odf" = ( +/obj/machinery/power/sensor{ + name = "Powernet Sensor - Deck 2 Subgrid"; + name_tag = "Deck 2 Subgrid" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/cable/green, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/civilian) +"odr" = ( +/turf/simulated/floor/tiled/old_cargo/gray, +/area/security/security_processing) +"oeH" = ( +/obj/structure/ladder/up, +/turf/simulated/floor/plating, +/area/space) +"oeM" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/regular{ + dir = 4; + id = "armorylight"; + name = "Light Armory Acccess" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/space) +"oeN" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/carpet/sblucarpet, +/area/quartermaster/qm) +"ofb" = ( +/turf/space/basic, +/area/janitor) +"ofd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/security/nuke_storage) +"ofH" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/freezer) +"ofR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"ogj" = ( +/obj/structure/ladder, +/turf/simulated/floor/airless, +/area/crew_quarters/sleep/Dorm_9) +"ogo" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/space) +"ohJ" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1379; + id_tag = "sec_shuttle_pump" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/space) +"ohZ" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/glass/security{ + name = "Confinement Processing"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/security/department, +/turf/simulated/floor/tiled, +/area/crew_quarters/bar) +"oio" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/toilet) +"ojg" = ( +/turf/space/basic, +/area/security/eva) +"ojq" = ( +/obj/structure/window/basic{ + dir = 1 + }, +/obj/structure/bed/chair/sofa/black/right, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9 + }, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/bar) +"ojF" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/starboard) +"okB" = ( +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/machinery/vending/sovietsoda{ + name = "Water Dispenser" + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/victory/surfacebase/bar_backroom) +"olj" = ( +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = 20 + }, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red, +/turf/simulated/floor/tiled/dark, +/area/space) +"olR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"omd" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/blue{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 9 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"omy" = ( +/obj/structure/lattice, +/obj/structure/grille, +/turf/space, +/area/space) +"onm" = ( +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/turf/simulated/floor/wood, +/area/maintenance/bar/lower) +"ooh" = ( +/obj/machinery/power/apc/north_mount, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/space) +"oor" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/crystal, +/area/station/stairs_two) +"ooC" = ( +/obj/structure/shuttle/engine/heater{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/shuttle/wall/voidcraft/green, +/area/quartermaster/miningdock) +"oph" = ( +/obj/item/radio/intercom{ + pixel_y = -24 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_4) +"opE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/space) +"oqG" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/vacant/vacant_shop) +"oqN" = ( +/obj/machinery/vending/coffee, +/turf/simulated/floor/wood, +/area/space) +"oqR" = ( +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/monotile, +/area/space) +"oqT" = ( +/obj/structure/table/steel, +/turf/simulated/floor/tiled/monotile, +/area/security/hallway) +"oqY" = ( +/obj/structure/closet/walllocker/emerglocker/north, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/steel, +/area/space) +"orD" = ( +/obj/machinery/ai_status_display{ + pixel_y = -32 + }, +/obj/effect/floor_decal/techfloor, +/turf/simulated/floor/tiled/steel, +/area/hallway/primary/port) +"osD" = ( +/obj/machinery/fire_alarm/west_mount{ + pixel_x = -24 + }, +/obj/structure/closet/wardrobe, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_3) +"osG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/space) +"osR" = ( +/turf/simulated/wall/prepainted/civilian, +/area/victory/surfacebase/bar_backroom) +"otq" = ( +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/obj/machinery/vending/loadout, +/obj/effect/floor_decal/techfloor/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/vacant/vacant_shop) +"otr" = ( +/turf/simulated/floor/tiled, +/area/crew_quarters/bar) +"ovx" = ( +/obj/machinery/holopad, +/turf/simulated/floor/tiled, +/area/space) +"owd" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"owe" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/tiled/steel, +/area/space) +"owH" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "hos_office" + }, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/structure/wall_frame/prepainted, +/obj/effect/paint_stripe/darkred, +/turf/simulated/floor/plating, +/area/security/hallway) +"oxp" = ( +/obj/structure/closet/secure_closet/cargotech, +/obj/machinery/fire_alarm/south_mount{ + pixel_y = -24 + }, +/obj/machinery/camera/network/cargo{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"oyT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/item/radio/beacon, +/turf/simulated/floor/wood, +/area/station/stairs_two) +"oza" = ( +/obj/machinery/computer/guestpass{ + dir = 1; + pixel_y = -28 + }, +/obj/effect/floor_decal/techfloor, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"ozN" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 5 + }, +/obj/structure/sink/kitchen{ + dir = 8; + name = "sink"; + pixel_x = 13 + }, +/turf/simulated/floor/tiled, +/area/hydroponics) +"ozQ" = ( +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -23 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/dormitory) +"oAS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/security/interrogation) +"oBi" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"oBv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/security/nuke_storage) +"oBQ" = ( +/turf/simulated/floor/tiled/dark, +/area/security/nuke_storage) +"oCH" = ( +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/turf/simulated/floor/plating, +/area/quartermaster/office) +"oDM" = ( +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/obj/effect/paint_stripe/beastybrown, +/turf/simulated/floor/plating, +/area/quartermaster/qm) +"oEg" = ( +/turf/space, +/area/security/brig) +"oEA" = ( +/turf/space, +/area/quartermaster/warehouse) +"oEW" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 8 + }, +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/structure/table/woodentable, +/obj/item/reagent_scanner, +/turf/simulated/floor/tiled, +/area/hydroponics) +"oFA" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/glass/security{ + name = "Shuttle Bay"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/security/brig, +/turf/simulated/floor/tiled/dark, +/area/space) +"oFR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/corner_oldtile/white/diagonal, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/kitchen) +"oGt" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/door_timer/cell_3{ + id = "Cell 1"; + name = "Cell 1"; + pixel_x = 32 + }, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/prison/cell_block) +"oHh" = ( +/obj/machinery/shield_diffuser, +/obj/machinery/atmospherics/pipe/manifold/visible/fuel{ + dir = 4 + }, +/turf/simulated/wall/r_wall/prepainted/engineering, +/area/space) +"oHn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/maintenance/dormitory) +"oIU" = ( +/obj/structure/bed/chair/shuttle, +/obj/structure/closet/walllocker/emerglocker/north, +/obj/structure/panic_button{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled/steel, +/area/space) +"oJn" = ( +/obj/machinery/appliance/mixer/cereal, +/obj/effect/floor_decal/corner_oldtile/white/diagonal, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/kitchen) +"oJt" = ( +/turf/simulated/wall/prepainted, +/area/station/stairs_two) +"oJx" = ( +/obj/landmark/spawnpoint/job/bartender, +/obj/effect/floor_decal/corner_oldtile/white/diagonal, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/bar) +"oJX" = ( +/obj/landmark/spawnpoint/latejoin/station/cyborg, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/sleep/cryo) +"oKB" = ( +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/red/border, +/obj/machinery/air_alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"oMz" = ( +/obj/structure/table/reinforced, +/obj/item/pen{ + pixel_x = -6; + pixel_y = 7 + }, +/obj/item/paper_bin{ + pixel_x = 5; + pixel_y = 12 + }, +/obj/item/stamp/cargo, +/obj/item/stamp/denied{ + pixel_x = 7 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/foyer) +"oMD" = ( +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/monotile, +/area/security/lobby) +"oNU" = ( +/turf/simulated/wall/prepainted, +/area/vacant/vacant_office) +"oOt" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/space) +"oOv" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/space) +"oOR" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/door_timer/cell_3{ + id = "Cell 2"; + name = "Cell 2"; + pixel_x = 32 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/prison/cell_block) +"oOX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/sign/directions/roomnum{ + dir = 8; + pixel_y = -23 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area_hallway) +"oOZ" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet{ + dir = 1; + pixel_y = 32 + }, +/turf/simulated/floor/tiled/dark, +/area/security/hallway) +"oPm" = ( +/obj/machinery/vending/cigarette, +/turf/simulated/floor/wood, +/area/space) +"oPw" = ( +/turf/simulated/floor/tiled/techmaint, +/area/crew_quarters/bar) +"oPO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/holopad, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/old_cargo/white, +/area/security/detectives_office) +"oPY" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/light_switch{ + pixel_x = -25 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_4) +"oQe" = ( +/turf/simulated/floor/carpet/sblucarpet, +/area/quartermaster/foyer) +"oQo" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/airlock/glass, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel, +/area/hallway/primary/port) +"oQH" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/security{ + name = "Interrogation view room"; + req_access = list(); + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/security/general, +/turf/simulated/floor/tiled/dark, +/area/security/hallway) +"oQS" = ( +/obj/machinery/door/firedoor/glass{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/machinery/door/airlock/glass/security{ + name = "Brig"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/security/general, +/turf/simulated/floor/tiled/dark, +/area/space) +"oQW" = ( +/obj/machinery/camera/network/security{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/red/border, +/turf/simulated/floor/tiled/dark, +/area/space) +"oRa" = ( +/obj/structure/fans/tiny, +/obj/machinery/door/airlock/voidcraft{ + frequency = 2020; + id_tag = "belt_shuttle_exterior"; + name = "belter craft hatch" + }, +/turf/simulated/floor/tiled/steel, +/area/space) +"oRc" = ( +/obj/structure/filingcabinet/medical{ + desc = "A large cabinet with hard copy medical records."; + name = "Medical Records" + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/security/nuke_storage) +"oRu" = ( +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10, +/obj/machinery/fire_alarm/west_mount{ + pixel_x = -26 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/showers) +"oRV" = ( +/obj/effect/floor_decal/techfloor{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/starboard) +"oSv" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/fire_alarm/south_mount{ + pixel_y = -25 + }, +/turf/simulated/floor/plating, +/area/space) +"oSC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/item/stool/padded, +/turf/simulated/floor/wood, +/area/vacant/vacant_shop) +"oSG" = ( +/obj/machinery/computer/ship/helm{ + dir = 4 + }, +/obj/item/gps/internal/base{ + desc = "A tracking beacon embedded in the shuttle systems, to help explorers find where they landed."; + gps_tag = "SHUTTLE"; + name = "shuttle beacon" + }, +/turf/simulated/floor/tiled/steel, +/area/shuttle/belter) +"oSN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/multi_tile/glass/civilian{ + name = "Annex Airlock" + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/bar) +"oTC" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/station/stairs_two) +"oTE" = ( +/obj/structure/table/rack/shelf/steel, +/obj/item/gun/energy/gun, +/obj/item/gun/energy/gun, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/item/gun/energy/gun, +/obj/effect/floor_decal/industrial/outline/red, +/turf/simulated/floor/tiled/dark, +/area/space) +"oTU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/crystal, +/area/station/stairs_two) +"oUe" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/crew_quarters/sleep/Dorm_5) +"oUq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/wood, +/area/vacant/vacant_shop) +"oUt" = ( +/turf/simulated/floor/tiled, +/area/hallway/primary/starboard) +"oVt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/maintenance/dormitory) +"oWR" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/glass, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/station/stairs_two) +"oWS" = ( +/obj/machinery/fire_alarm/west_mount{ + pixel_x = -24 + }, +/turf/simulated/floor/tiled, +/area/station/stairs_two) +"oXi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/table/marble, +/obj/item/reagent_containers/dropper, +/obj/item/reagent_containers/glass/beaker{ + pixel_x = 5 + }, +/obj/item/hand_labeler, +/obj/effect/floor_decal/corner_oldtile/white/diagonal, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/kitchen) +"oXO" = ( +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/maintenance/substation/civilian) +"oYw" = ( +/obj/machinery/fire_alarm/south_mount{ + pixel_y = -24 + }, +/obj/structure/table/rack/shelf, +/turf/simulated/floor/tiled/dark, +/area/vacant/vacant_shop) +"oYB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/security/hallway) +"oZs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/machinery/door/airlock/glass/mining{ + name = "Cargo Bay"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/supply/cargo_bay, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/mining_main/storage) +"paa" = ( +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/obj/structure/curtain/open/bed{ + anchored = 1; + name = "curtain" + }, +/obj/effect/paint_stripe/palebottlegreen, +/turf/simulated/floor/plating, +/area/crew_quarters/bar) +"paJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/sleep/Dorm_8) +"pbp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock{ + name = "Bathroom" + }, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/maintenance/dormitory) +"pbu" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "High Security Lockup"; + req_one_access = null + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/map_helper/access_helper/airlock/station/security/armory, +/turf/simulated/floor/tiled/dark, +/area/space) +"pbJ" = ( +/turf/simulated/wall/r_wall/prepainted/civilian, +/area/space) +"pbW" = ( +/obj/structure/ore_box, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/status_display/supply_display{ + mode = 99; + pixel_y = -32 + }, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/mining_main/storage) +"pbY" = ( +/obj/effect/floor_decal/industrial/danger{ + dir = 6 + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/space) +"pcp" = ( +/obj/structure/table/woodentable, +/obj/machinery/reagentgrinder, +/obj/item/reagent_containers/food/drinks/shaker, +/obj/item/packageWrap, +/obj/item/reagent_containers/food/drinks/shaker, +/obj/machinery/light_switch{ + pixel_x = -9; + pixel_y = 30 + }, +/turf/simulated/floor/wood, +/area/space) +"pcq" = ( +/obj/machinery/newscaster/security_unit{ + pixel_x = -32 + }, +/obj/machinery/light{ + dir = 8; + light_range = 12 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/security/lobby) +"pdu" = ( +/obj/spawner/window/reinforced/full/firelocks, +/turf/simulated/floor/plating, +/area/maintenance/cargo) +"pdv" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"pdK" = ( +/turf/simulated/floor/crystal, +/area/station/stairs_two) +"pfa" = ( +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_3) +"pfl" = ( +/obj/structure/window/basic{ + dir = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/obj/structure/bed/chair/sofa/black/left, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/bar) +"pfo" = ( +/obj/structure/dogbed, +/obj/random/maintenance/engineering, +/turf/simulated/floor/plating, +/area/space) +"pgg" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/machinery/camera/network/security{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/security/hallway) +"pgA" = ( +/obj/machinery/camera/network/civilian{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"pgF" = ( +/obj/structure/table/rack/shelf/steel, +/turf/simulated/floor/tiled/dark, +/area/space) +"pgN" = ( +/obj/machinery/recharger/wallcharger{ + pixel_x = -22 + }, +/obj/structure/table/steel_reinforced, +/obj/machinery/cell_charger, +/turf/simulated/floor/tiled/old_tile/gray, +/area/space) +"phF" = ( +/obj/structure/table/standard, +/obj/structure/bedsheetbin, +/obj/random/soap, +/obj/item/radio/intercom{ + pixel_y = -24 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/toilet) +"phH" = ( +/obj/structure/table/reinforced, +/obj/machinery/computer/med_data/laptop, +/turf/simulated/floor/tiled/monotile, +/area/space) +"pib" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/item/radio/intercom{ + pixel_y = -24 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_2) +"pin" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/space) +"piw" = ( +/obj/machinery/fire_alarm/south_mount{ + pixel_y = -24 + }, +/turf/simulated/floor/plating, +/area/space) +"piI" = ( +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/obj/effect/floor_decal/techfloor{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel, +/area/hallway/primary/port) +"piP" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/landmark/spawnpoint/job/cargo_technician, +/turf/simulated/floor/tiled, +/area/quartermaster/warehouse) +"pjd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"pkq" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/holopad, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"pkJ" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/mining_main/storage) +"plg" = ( +/obj/machinery/power/apc/west_mount{ + cell_type = /obj/item/cell/super + }, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/structure/flora/pottedplant/smalltree, +/obj/machinery/fire_alarm/north_mount, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_6) +"pls" = ( +/obj/item/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 26 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/vacant/vacant_shop) +"pmn" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock{ + id_tag = "dorm3"; + name = "Dorm 3" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_3) +"pmq" = ( +/obj/machinery/holopad, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/security/hallway) +"pmz" = ( +/turf/simulated/wall/prepainted, +/area/crew_quarters/sleep/Dorm_5) +"pnr" = ( +/obj/structure/bookcase, +/obj/item/book/manual/security_space_law, +/obj/item/book/manual/standard_operating_procedure, +/obj/item/book/manual/command_guide, +/obj/item/book/manual/standard_operating_procedure, +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/heads/hos) +"pnI" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/red/border, +/turf/simulated/floor/tiled/dark, +/area/space) +"pnJ" = ( +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/obj/structure/cable/green, +/obj/machinery/power/apc/east_mount, +/turf/simulated/floor/tiled/dark, +/area/space) +"poB" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"ppt" = ( +/obj/machinery/door/window/brigdoor/eastleft{ + dir = 8; + name = "Warden's Desk" + }, +/obj/structure/table/steel_reinforced, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "warden"; + layer = 3.1; + name = "Warden's Office Shutters"; + opacity = 0 + }, +/obj/machinery/door/window/brigdoor/westleft{ + dir = 4; + name = "Warden's Desk"; + req_access = list(3) + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/item/deskbell, +/turf/simulated/floor/tiled/dark, +/area/space) +"pqn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/space) +"prL" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood, +/area/space) +"psU" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/old_tile/white, +/area/space) +"ptq" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "security_lockdown"; + name = "Security Blast Doors"; + opacity = 0 + }, +/obj/spawner/window/low_wall/reinforced/full, +/obj/effect/paint_stripe/darkred, +/turf/simulated/floor/plating, +/area/security/lobby) +"ptA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/phoron, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"ptB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor, +/area/security/lobby) +"ptH" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/spawner/window/low_wall/reinforced/full, +/obj/effect/paint_stripe/darkred, +/turf/simulated/floor/plating, +/area/security/detectives_office) +"ptY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/vacant/vacant_shop) +"pvv" = ( +/obj/structure/fitness/punchingbag, +/turf/simulated/floor/wood, +/area/space) +"pvJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"pxG" = ( +/obj/structure/table/woodentable, +/obj/item/tape_recorder{ + pixel_x = 10; + pixel_y = 3 + }, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen/multi, +/turf/simulated/floor/wood, +/area/crew_quarters/heads/hos) +"pze" = ( +/obj/effect/floor_decal/techfloor, +/turf/simulated/floor/tiled, +/area/hallway/primary/starboard) +"pzy" = ( +/obj/machinery/power/apc/north_mount, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/space) +"pAq" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/mining_main/refinery) +"pAN" = ( +/obj/machinery/camera/network/outside, +/turf/space, +/area/security/brig) +"pBd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/space) +"pBA" = ( +/obj/effect/floor_decal/techfloor{ + dir = 9 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/space) +"pBU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/space) +"pCt" = ( +/obj/effect/floor_decal/steeldecal/steel_decals10, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/showers) +"pDg" = ( +/obj/structure/table/steel, +/obj/item/storage/box/donkpockets, +/obj/structure/extinguisher_cabinet{ + dir = 8; + pixel_x = 30 + }, +/obj/machinery/vending/wallmed1{ + name = "Emergency NanoMed"; + pixel_y = 32 + }, +/obj/machinery/camera/network/security{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/space) +"pEa" = ( +/obj/effect/floor_decal/industrial/danger{ + dir = 10 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/mech_recharger, +/obj/vehicle/sealed/mecha/combat/fighter/baron/sec/loaded, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/space) +"pEA" = ( +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/Dorm_11) +"pEY" = ( +/obj/landmark/spawnpoint/job/quartermaster, +/turf/simulated/floor/carpet/sblucarpet, +/area/quartermaster/qm) +"pFj" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/closet/hydrant{ + pixel_x = -32 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area) +"pFn" = ( +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/port) +"pFM" = ( +/obj/machinery/appliance/mixer/candy, +/obj/effect/floor_decal/corner_oldtile/white/diagonal, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/kitchen) +"pGX" = ( +/obj/structure/table/steel, +/obj/item/tool/crowbar{ + pixel_x = -3; + pixel_y = 4 + }, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/obj/item/tool/crowbar{ + pixel_x = -1; + pixel_y = 4 + }, +/obj/item/tool/crowbar{ + pixel_x = 1; + pixel_y = 4 + }, +/obj/item/tool/crowbar{ + pixel_x = 3; + pixel_y = 4 + }, +/obj/item/tool/crowbar{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/item/tool/crowbar{ + pixel_x = 7; + pixel_y = 4 + }, +/obj/item/retail_scanner/security{ + pixel_x = 5; + pixel_y = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"pHw" = ( +/obj/structure/bed/chair/shuttle{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel, +/area/space) +"pIp" = ( +/obj/structure/table/woodentable, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/turf/simulated/floor/wood, +/area/station/stairs_two) +"pIs" = ( +/obj/machinery/light, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/warehouse) +"pIv" = ( +/obj/structure/safe, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/security/nuke_storage) +"pIG" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/computer/ship/navigation/telescreen{ + pixel_y = -37 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_6) +"pIJ" = ( +/obj/item/radio/intercom{ + pixel_y = -24 + }, +/obj/machinery/scale, +/turf/simulated/floor/wood, +/area/space) +"pJB" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/machinery/door/blast/shutters{ + id = "bar"; + name = "Bar Shutters" + }, +/obj/spawner/window/low_wall/full/nogrille/firelocks, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/bar) +"pJK" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"pJR" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/obj/structure/closet/wardrobe, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_6) +"pKn" = ( +/obj/machinery/power/apc/north_mount, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/structure/closet/secure_closet/freezer/kitchen, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/freezer) +"pLv" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/power/apc/south_mount, +/obj/structure/cable/green, +/turf/simulated/floor/tiled/monotile, +/area/crew_quarters/heads/hos) +"pLG" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals_central6, +/turf/simulated/floor/tiled/monotile, +/area/security/lobby) +"pMh" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/wood, +/area/space) +"pMq" = ( +/turf/simulated/wall/prepainted/civilian, +/area/maintenance/substation/cargo) +"pMG" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 8 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/crew_quarters/recreation_area_hallway) +"pMT" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/foyer) +"pNr" = ( +/obj/landmark/spawnpoint/job/chef, +/obj/effect/floor_decal/corner_oldtile/white/diagonal, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/kitchen) +"pNv" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/space) +"pNw" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"pNH" = ( +/obj/item/radio/intercom{ + pixel_y = -24 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/flora/pottedplant/drooping, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10 + }, +/turf/simulated/floor/wood, +/area/station/stairs_two) +"pOC" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/camera/network/civilian{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor, +/obj/machinery/computer/timeclock/premade/south, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"pOF" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/air_alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/cargo) +"pPe" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/simulated/floor/tiled/old_cargo/red, +/area/security/security_processing) +"pPr" = ( +/turf/space/basic, +/area/vacant/vacant_shop) +"pPT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"pQy" = ( +/obj/structure/table/marble, +/obj/item/hand_labeler, +/obj/machinery/recharger, +/turf/simulated/floor/tiled/dark, +/area/vacant/vacant_shop) +"pRw" = ( +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/spawner/window/low_wall/reinforced/full, +/obj/effect/paint_stripe/darkred, +/turf/simulated/floor/plating, +/area/victory/surfacebase/tram) +"pRI" = ( +/obj/spawner/window/low_wall/full/firelocks/nogrille, +/turf/simulated/floor/plating, +/area/crew_quarters/visitor_dining) +"pRK" = ( +/turf/simulated/wall/prepainted/security, +/area/security/lobby) +"pRV" = ( +/obj/machinery/fire_alarm/south_mount{ + pixel_y = -24 + }, +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/red/border, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"pSh" = ( +/obj/structure/sink/kitchen{ + dir = 8; + name = "sink"; + pixel_x = 13 + }, +/obj/effect/floor_decal/corner/green{ + dir = 6 + }, +/obj/machinery/newscaster{ + pixel_x = 30 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"pSi" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/quartermaster/warehouse) +"pSE" = ( +/obj/structure/sign/directions/evac{ + dir = 4 + }, +/turf/simulated/wall/prepainted/civilian, +/area/crew_quarters/barrestroom) +"pTI" = ( +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/red/border, +/turf/simulated/floor/tiled/dark, +/area/space) +"pUv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/security/security_processing) +"pWy" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/techfloor{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"pWA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/machinery/newscaster/security_unit{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"pWM" = ( +/obj/machinery/camera/network/security{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/red/border, +/turf/simulated/floor/tiled/dark, +/area/space) +"pXB" = ( +/obj/machinery/door/airlock{ + name = "Cyborg Recharging"; + id_tag = "bartoliet1" + }, +/turf/simulated/floor/tiled/white, +/area/space) +"pXH" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/sleep/cryo) +"pXI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/sleep/Dorm_8) +"pXS" = ( +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/bar) +"pYo" = ( +/obj/machinery/light_switch{ + pixel_y = -26 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"pZd" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock{ + id_tag = "dorm10"; + name = "Dorm 1" + }, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/maintenance/dormitory) +"pZp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/holopad, +/turf/simulated/floor/carpet, +/area/security/detectives_office) +"pZD" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/dogbed, +/obj/machinery/fire_alarm/south_mount{ + pixel_y = -24 + }, +/turf/simulated/floor/tiled, +/area/space) +"qae" = ( +/obj/machinery/vending/cola, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/security/lobby) +"qan" = ( +/obj/structure/table/woodentable, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/space) +"qaD" = ( +/obj/machinery/door/firedoor/glass{ + dir = 8 + }, +/obj/machinery/door/airlock/glass/security{ + name = "Solitary Confinement 1"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/security/brig, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/bar) +"qaF" = ( +/obj/machinery/computer/security{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/button/remote/airlock{ + id = "BrigFoyer"; + name = "Lobby Door Control"; + pixel_x = 24; + pixel_y = 5; + req_access = list(1) + }, +/turf/simulated/floor/tiled, +/area/security/lobby) +"qaT" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/prison/cell_block) +"qcO" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/foyer) +"qea" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"qey" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area_hallway) +"qfp" = ( +/obj/machinery/air_sensor{ + frequency = 2346; + id_tag = "portnacelle_sensor" + }, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 10 + }, +/turf/simulated/floor/reinforced/airless, +/area/space) +"qfD" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock{ + name = "Restroom" + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/toilet) +"qgx" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"qgE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/security/hallway) +"qgG" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 10 + }, +/obj/machinery/seed_extractor, +/turf/simulated/floor/tiled, +/area/space) +"qgW" = ( +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/computer/roguezones{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/quartermaster/qm) +"qhI" = ( +/obj/structure/table/steel, +/obj/item/storage/box/handcuffs, +/obj/item/radio/intercom{ + pixel_y = -24 + }, +/turf/simulated/floor/tiled/monotile, +/area/security/hallway) +"qij" = ( +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -25; + pixel_y = -1 + }, +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "kitchen"; + name = "Kitchen shutters"; + pixel_x = -24; + pixel_y = 8 + }, +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "kitchen-c"; + name = "Kitchen public counter shutters"; + pixel_x = -24; + pixel_y = -10 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/corner_oldtile/white/diagonal, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/kitchen) +"qit" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hydroponics) +"qix" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/space) +"qja" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"qjm" = ( +/obj/structure/table/steel, +/obj/machinery/power/apc/west_mount, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/security/interrogation) +"qju" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area) +"qkT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/security/hallway) +"qkX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/red/border, +/turf/simulated/floor/tiled/dark, +/area/space) +"qll" = ( +/obj/machinery/light_switch{ + pixel_x = -25 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/freezer) +"qlP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/hydroponics) +"qmb" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "portnacelle_blastdoor"; + opacity = 0 + }, +/obj/effect/paint_stripe/sun, +/obj/structure/window/phoronreinforced/full{ + icon_state = "phoronwindow0" + }, +/obj/structure/grille, +/turf/simulated/floor/reinforced/airless, +/area/space) +"qmt" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/victory/surfacebase/bar_backroom) +"qmI" = ( +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"qny" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/mining{ + name = "Cargo Storage"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/supply/cargo_bay, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"qnz" = ( +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"qoh" = ( +/obj/structure/table/steel, +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + id_tag = "sec_shuttle_airlock"; + pixel_y = 3; + req_access = list(); + req_one_access = list(1,2); + tag_airpump = "sec_shuttle_pump"; + tag_chamber_sensor = "sec_shuttle_sensor"; + tag_exterior_door = "sec_shuttle_outer"; + tag_interior_door = "sec_shuttle_inner" + }, +/turf/simulated/floor/tiled, +/area/space) +"qot" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/space) +"qoM" = ( +/obj/machinery/power/apc/north_mount, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/turf/simulated/floor/tiled, +/area/quartermaster/warehouse) +"qpF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/carpet/sblucarpet, +/area/quartermaster/qm) +"qqu" = ( +/obj/structure/janitorialcart, +/obj/item/reagent_containers/glass/bucket, +/turf/simulated/floor/tiled/dark, +/area/maintenance/bar/lower) +"qqz" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/mirror{ + pixel_x = -28 + }, +/turf/simulated/floor/tiled/white, +/area/maintenance/bar/lower) +"qqB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"qqC" = ( +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_7) +"qqM" = ( +/obj/structure/table/rack/shelf/steel, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/item/gun/energy/taser, +/obj/item/gun/energy/taser, +/obj/item/gun/energy/taser, +/turf/simulated/floor/tiled/dark, +/area/space) +"qrg" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/port) +"qrn" = ( +/obj/structure/bed/double, +/obj/item/bedsheet/hosdouble, +/turf/simulated/floor/carpet, +/area/space) +"qrx" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "security_lockdown"; + name = "Security Blast Doors"; + opacity = 0 + }, +/obj/spawner/window/low_wall/reinforced/full, +/obj/effect/paint_stripe/darkred, +/turf/simulated/floor, +/area/space) +"qsd" = ( +/obj/machinery/dnaforensics, +/turf/simulated/floor/tiled/old_cargo/white, +/area/victory/surfacebase/tram) +"qsz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/security/armoury) +"qsC" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/obj/machinery/camera/network/civilian{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area_hallway) +"qsF" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled, +/area/space) +"qtb" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK" + }, +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/obj/effect/paint_stripe/beastybrown, +/turf/simulated/floor/plating, +/area/maintenance/cargo) +"qtl" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/wood, +/area/quartermaster/foyer) +"qup" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/crew_quarters/sleep/Dorm_7) +"quT" = ( +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/sleep/Dorm_6) +"qvt" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining{ + name = "Quartermaster"; + req_one_access = list() + }, +/obj/map_helper/access_helper/airlock/station/head_office/quartermaster, +/turf/simulated/floor/tiled, +/area/quartermaster/qm) +"qvJ" = ( +/obj/machinery/camera/network/cargo{ + dir = 4 + }, +/obj/structure/closet/hydrant{ + pixel_x = -32 + }, +/obj/structure/closet/crate, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/mining_main/refinery) +"qwv" = ( +/obj/structure/table/rack/shelf/steel, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/red, +/obj/item/clothing/suit/armor/pcarrier/ballistic{ + pixel_x = -5; + pixel_y = -2 + }, +/obj/item/clothing/suit/armor/pcarrier/ballistic{ + pixel_x = -5; + pixel_y = -2 + }, +/obj/item/clothing/suit/armor/pcarrier/ballistic{ + pixel_x = 5; + pixel_y = -2 + }, +/obj/item/clothing/suit/armor/pcarrier/ballistic{ + pixel_x = 5; + pixel_y = -2 + }, +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"qxm" = ( +/obj/machinery/vending/dinnerware, +/obj/effect/floor_decal/corner_oldtile/white/diagonal, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/kitchen) +"qxE" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/bar) +"qxO" = ( +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/space) +"qxT" = ( +/turf/simulated/floor/wood, +/area/vacant/vacant_shop) +"qyz" = ( +/obj/machinery/mineral/processing_unit_console{ + density = 0; + pixel_y = 30 + }, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/mining_main/refinery) +"qzr" = ( +/obj/structure/closet/secure_closet/quartermaster, +/obj/item/clothing/accessory/poncho/roles/cloak/qm, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/quartermaster/qm) +"qzs" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + name = "Vacant Shop" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/steel, +/area/vacant/vacant_shop) +"qzG" = ( +/obj/machinery/holopad, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/carpet/sblucarpet, +/area/quartermaster/foyer) +"qAa" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/vacant/vacant_office) +"qAJ" = ( +/turf/simulated/wall/prepainted/cargo, +/area/maintenance/bar/lower) +"qBq" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/sleep/cryo) +"qBD" = ( +/obj/machinery/power/apc/south_mount, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/turf/simulated/floor/wood, +/area/vacant/vacant_shop) +"qCm" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/mirror{ + pixel_x = -28 + }, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/computer/ship/navigation/telescreen{ + pixel_y = -37 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/toilet) +"qCU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/space) +"qDC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/maintenance, +/obj/structure/catwalk, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/space) +"qDX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"qEJ" = ( +/obj/structure/table/rack/steel, +/obj/structure/window/reinforced, +/obj/machinery/light, +/obj/effect/floor_decal/corner/red{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/outline/red, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red{ + dir = 10 + }, +/obj/item/storage/toolbox/syndicate, +/turf/simulated/floor/tiled/dark, +/area/space) +"qFq" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/holopad, +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/prison/cell_block) +"qFw" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/crate/trashcart, +/obj/random/maintenance/engineering, +/turf/simulated/floor/tiled, +/area/maintenance/bar/lower) +"qGC" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"qGM" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/airless, +/area/crew_quarters/recreation_area) +"qHl" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area) +"qHn" = ( +/obj/structure/bed/chair/sofa/left{ + dir = 1 + }, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/bar) +"qHu" = ( +/turf/simulated/wall/r_wall/prepainted/security, +/area/crew_quarters/bar) +"qIi" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled/steel, +/area/shuttle/belter) +"qIv" = ( +/obj/machinery/suit_cycler/security, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/security/prison) +"qJl" = ( +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/obj/machinery/gear_painter, +/turf/simulated/floor/tiled/dark, +/area/vacant/vacant_shop) +"qJn" = ( +/obj/machinery/power/apc/south_mount, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"qJs" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/foyer) +"qJB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/wood, +/area/quartermaster/foyer) +"qJK" = ( +/obj/effect/floor_decal/techfloor, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"qKy" = ( +/obj/machinery/computer/roguezones, +/obj/effect/floor_decal/industrial/warning/cee{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/mining_main/refinery) +"qKC" = ( +/obj/structure/table/woodentable, +/obj/machinery/recharger, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/turf/simulated/floor/wood, +/area/station/stairs_two) +"qLm" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/starboard) +"qLz" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/machinery/fire_alarm/north_mount, +/turf/simulated/floor/wood, +/area/station/stairs_two) +"qLK" = ( +/obj/machinery/station_map{ + dir = 4; + pixel_x = -32 + }, +/obj/machinery/computer/supplycomp{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/foyer) +"qLQ" = ( +/obj/structure/closet/bombclosetsecurity, +/obj/effect/floor_decal/corner/blue/full{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"qMe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/wood, +/area/station/stairs_two) +"qMQ" = ( +/obj/machinery/camera/network/security{ + dir = 1 + }, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/space) +"qNm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/space) +"qNW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"qOX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/maintenance/dormitory) +"qPa" = ( +/obj/machinery/mineral/input, +/obj/machinery/conveyor{ + dir = 4; + id = "mining_interior" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/victory/surfacebase/mining_main/refinery) +"qPf" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/mining_main/refinery) +"qQj" = ( +/obj/machinery/button/remote/blast_door{ + id = "armoryriot"; + name = "Emergency Armory Access"; + pixel_x = -25; + pixel_y = -6; + req_access = list(3) + }, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"qQk" = ( +/obj/structure/table/marble, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/bar) +"qQn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/space) +"qQr" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/simulated/floor/airless, +/area/crew_quarters/sleep/Dorm_1) +"qQK" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"qQT" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/turf/simulated/floor/tiled, +/area/space) +"qQV" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/glass/security{ + name = "Shuttle Bay Control Room"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/security/brig, +/turf/simulated/floor/tiled, +/area/space) +"qRL" = ( +/turf/simulated/wall/r_wall/prepainted/security, +/area/bridge) +"qSI" = ( +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -24 + }, +/turf/simulated/floor/tiled, +/area/space) +"qTf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/landmark/spawnpoint/job/janitor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark, +/area/space) +"qTR" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/computer/arcade, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/monotile, +/area/crew_quarters/bar) +"qUa" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 8 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/ai_status_display{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/monotile, +/area/space) +"qUi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/security/hallway) +"qVB" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/map_helper/airlock/door/ext_door, +/obj/machinery/door/airlock/glass_external{ + req_one_access = null + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/recreation_area) +"qWf" = ( +/obj/machinery/shower{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/showers) +"qWi" = ( +/turf/space, +/area/shuttle/belter) +"qWj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"qWI" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/space) +"qXp" = ( +/obj/structure/sign/directions/cryo{ + dir = 4; + pixel_y = 25 + }, +/obj/structure/sign/directions/engineering{ + dir = 4; + pixel_y = 38 + }, +/obj/structure/sign/directions/cargo{ + dir = 4; + pixel_y = 32 + }, +/obj/machinery/camera/network/civilian, +/obj/effect/floor_decal/techfloor{ + dir = 5 + }, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/port) +"qYk" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/crate/plastic, +/turf/simulated/floor/tiled, +/area/space) +"qYQ" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor/glass{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/window/reinforced/polarized/full{ + id = "Interr"; + name = "interrogation window" + }, +/obj/effect/paint_stripe/darkred, +/turf/simulated/floor/plating, +/area/security/interrogation) +"qYV" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/shield_diffuser, +/obj/map_helper/airlock/door/simple, +/obj/machinery/door/airlock/glass_external{ + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/external_airlock, +/turf/simulated/floor/tiled, +/area/space) +"rav" = ( +/obj/machinery/power/apc/south_mount{ + cell_type = /obj/item/cell/super + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"raJ" = ( +/obj/structure/table/bench/steel, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/landmark/spawnpoint/job/security_officer, +/turf/simulated/floor/tiled/monotile, +/area/space) +"rbk" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/obj/item/suit_cooling_unit, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/Dorm_1) +"rbz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/hydroponics) +"rck" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/mirror{ + pixel_x = -28 + }, +/obj/machinery/power/apc/north_mount, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/white, +/area/space) +"rcQ" = ( +/obj/structure/bed/chair/comfy/teal{ + dir = 1 + }, +/obj/machinery/button/remote/airlock{ + id = "dorm3"; + name = "Room 3 Lock"; + pixel_x = 26; + pixel_y = -4; + specialfunctions = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_3) +"rda" = ( +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -23 + }, +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/space) +"rdy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/recreation_area) +"rdZ" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 10 + }, +/obj/machinery/shower{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window/northleft{ + name = "Shower"; + req_access = list() + }, +/obj/structure/curtain/open/shower/engineering, +/turf/simulated/floor/tiled, +/area/crew_quarters/sleep/Dorm_10) +"res" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/vacant/vacant_shop) +"rff" = ( +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/obj/structure/curtain/black{ + anchored = 1 + }, +/turf/simulated/floor/plating, +/area/space) +"rfh" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/space) +"rfn" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass/security{ + name = "Cell Block"; + req_one_access = null + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/map_helper/access_helper/airlock/station/security/general, +/turf/simulated/floor/tiled/dark, +/area/security/hallway) +"rfy" = ( +/obj/structure/table/marble, +/obj/item/storage/pill_bottle/dice_nerd, +/obj/item/deck/cards, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/machinery/light, +/obj/item/deck/unus{ + pixel_x = 7 + }, +/obj/item/deck/cah{ + pixel_x = -8 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/bar) +"rgJ" = ( +/obj/effect/floor_decal/techfloor{ + dir = 10 + }, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/port) +"rgR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/station/stairs_two) +"rhe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_10) +"rhf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/space) +"rhq" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/engineering{ + name = "Solars"; + req_one_access = null + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/sleep/Dorm_8) +"rhS" = ( +/obj/structure/table/reinforced, +/obj/item/forensics/sample_kit, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -28 + }, +/turf/simulated/floor/tiled/old_cargo/white, +/area/crew_quarters/heads/hos) +"rit" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"riv" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/machinery/power/apc/south_mount, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/turf/simulated/floor/tiled, +/area/space) +"rix" = ( +/obj/structure/lattice, +/turf/space, +/area/quartermaster/miningdock) +"riA" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/Dorm_11) +"riD" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area_hallway) +"riH" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -28 + }, +/turf/simulated/floor/tiled/old_cargo/red, +/area/security/security_processing) +"riR" = ( +/obj/structure/table/rack/shelf/steel, +/obj/effect/floor_decal/industrial/outline/red, +/obj/item/clothing/suit/armor/pcarrier/ablative{ + pixel_x = -5; + pixel_y = -2 + }, +/obj/item/clothing/suit/armor/pcarrier/ablative{ + pixel_x = -5; + pixel_y = -2 + }, +/obj/item/clothing/suit/armor/pcarrier/ablative{ + pixel_x = 5; + pixel_y = -2 + }, +/obj/item/clothing/suit/armor/pcarrier/ablative{ + pixel_x = 5; + pixel_y = -2 + }, +/obj/effect/floor_decal/corner/red{ + dir = 10 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/tiled/dark, +/area/space) +"rja" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/quartermaster/foyer) +"rjc" = ( +/turf/simulated/shuttle/wall/voidcraft/no_join, +/area/quartermaster/miningdock) +"rjp" = ( +/obj/effect/floor_decal/techfloor{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/space) +"rjt" = ( +/obj/machinery/door/airlock/maintenance/common, +/turf/simulated/floor/plating, +/area/space) +"rjz" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/sleep/cryo) +"rjI" = ( +/obj/effect/floor_decal/corner/green{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"rjR" = ( +/obj/structure/table/rack, +/turf/simulated/floor/plating, +/area/maintenance/cargo) +"rkb" = ( +/obj/machinery/light{ + dir = 4; + use_power = 0 + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + frequency = 1380; + id_tag = "victory_annex_dock"; + pixel_x = 26; + pixel_y = -1 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/space) +"rko" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"rlo" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/fire_alarm/west_mount{ + pixel_x = -24 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central6, +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area) +"rlx" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/security/lobby) +"rlU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel, +/area/hallway/primary/port) +"rmM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/bar_backroom) +"rnB" = ( +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -23 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area) +"rnP" = ( +/obj/machinery/door/firedoor/glass{ + dir = 8 + }, +/obj/spawner/window/low_wall/reinforced/full, +/obj/effect/paint_stripe/darkred, +/turf/simulated/floor/plating, +/area/victory/surfacebase/bar_backroom) +"rot" = ( +/obj/structure/table/reinforced, +/obj/item/suit_cooling_unit, +/obj/item/suit_cooling_unit, +/turf/simulated/floor/tiled, +/area/space) +"rpl" = ( +/obj/landmark/spawnpoint/job/cargo_technician, +/obj/machinery/camera/network/cargo{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"rpu" = ( +/obj/machinery/camera/network/prison, +/obj/structure/table/reinforced, +/obj/item/mecha_parts/mecha_equipment/weapon/energy/phase, +/obj/item/mecha_parts/mecha_equipment/weapon/energy/phase, +/obj/item/mecha_parts/mecha_equipment/weapon/energy/phase, +/turf/simulated/floor/tiled, +/area/security/prison) +"rpY" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/bar) +"rqa" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"rqb" = ( +/obj/machinery/camera/network/civilian{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner_oldtile/white/diagonal, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/kitchen) +"rqf" = ( +/obj/structure/closet/secure_closet/detective, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/lino, +/area/space) +"rqL" = ( +/obj/machinery/door/firedoor/glass{ + dir = 8 + }, +/obj/machinery/door/airlock/glass/security{ + name = "Security Reception"; + req_access = list(); + req_one_access = null + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/map_helper/access_helper/airlock/station/security/department, +/turf/simulated/floor/tiled/dark, +/area/security/lobby) +"rrG" = ( +/obj/machinery/camera/network/security, +/turf/simulated/floor/tiled, +/area/space) +"rrW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/prison/cell_block) +"rsc" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/sleep/Dorm_10) +"rtd" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/space) +"rtl" = ( +/obj/effect/floor_decal/techfloor{ + dir = 6 + }, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/port) +"rtT" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark, +/area/space) +"rua" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/techfloor, +/turf/simulated/floor/tiled, +/area/space) +"rul" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"rvv" = ( +/obj/machinery/fire_alarm/west_mount{ + pixel_x = -26 + }, +/turf/simulated/floor/tiled/dark, +/area/security/nuke_storage) +"rwf" = ( +/obj/machinery/camera/network/cargo{ + dir = 4 + }, +/obj/structure/sign/department/cargo{ + pixel_x = -32 + }, +/turf/simulated/floor/wood, +/area/space) +"rwg" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"rwl" = ( +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/tiled/dark, +/area/space) +"rwt" = ( +/obj/effect/floor_decal/techfloor{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel, +/area/space) +"rwE" = ( +/turf/simulated/floor/carpet/purcarpet, +/area/space) +"rxu" = ( +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/turf/simulated/floor/wood, +/area/space) +"rxJ" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/table/marble, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/gun/ballistic/shotgun/pump/rifle/lever/win1895, +/turf/simulated/floor/carpet, +/area/crew_quarters/heads/hos) +"rxU" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/Dorm_11) +"ryo" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/camera/network/security{ + dir = 1 + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/prison/cell_block) +"ryB" = ( +/turf/simulated/wall/r_wall/prepainted/security, +/area/security/prison) +"ryZ" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled/techfloor, +/area/security/lobby) +"rzj" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/item/reagent_containers/glass/cooler_bottle, +/turf/simulated/floor/tiled/monotile, +/area/security/hallway) +"rzr" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/maintenance/bar/lower) +"rAR" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/fire_alarm/west_mount{ + pixel_x = -26 + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/civilian) +"rBm" = ( +/obj/machinery/door/firedoor/glass{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/glass/security{ + name = "Permanent Confinement"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/security/department, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/bar_backroom) +"rBD" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor{ + dir = 9 + }, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/port) +"rBW" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_6) +"rCS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/corner_oldtile/white/diagonal, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/kitchen) +"rDh" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/space) +"rEN" = ( +/obj/structure/closet/secure_closet/brig, +/obj/machinery/fire_alarm/west_mount{ + pixel_x = -24 + }, +/turf/simulated/floor/tiled/techmaint, +/area/crew_quarters/bar) +"rFh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area_hallway) +"rFp" = ( +/obj/machinery/camera/network/security{ + dir = 8 + }, +/obj/item/radio/intercom{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/table/steel, +/obj/machinery/recharger, +/turf/simulated/floor/tiled, +/area/space) +"rFC" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/bed/chair/shuttle, +/turf/simulated/floor/tiled/steel, +/area/space) +"rFT" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"rGl" = ( +/turf/space/basic, +/area/quartermaster/foyer) +"rGC" = ( +/obj/structure/dispenser/oxygen, +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/Dorm_11) +"rGM" = ( +/obj/machinery/door/window/brigdoor/southleft{ + dir = 4; + id = "Cell 1"; + name = "Cell 1"; + req_access = list(2) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass{ + dir = 8 + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/prison/cell_block) +"rHc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/light_switch{ + pixel_x = -9; + pixel_y = 30 + }, +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"rHD" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/space) +"rIH" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/maintenance/dormitory) +"rJX" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/button/remote/airlock{ + id = "dorm11"; + name = "Room 11 Lock"; + pixel_x = -26; + pixel_y = -4; + specialfunctions = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_6) +"rKt" = ( +/obj/machinery/newscaster, +/turf/simulated/wall/r_wall, +/area/victory/surfacebase/bar_backroom) +"rKF" = ( +/turf/simulated/wall/prepainted/civilian, +/area/crew_quarters/kitchen) +"rMp" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/security/lobby) +"rNs" = ( +/turf/simulated/wall/r_wall/prepainted/civilian, +/area/maintenance/bar/lower) +"rNI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/bar_backroom) +"rNK" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/spawner/window/low_wall/reinforced/full, +/obj/effect/paint_stripe/darkred, +/turf/simulated/floor/plating, +/area/security/detectives_office) +"rNW" = ( +/obj/machinery/computer/ship/engines{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"rOb" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/security{ + name = "Interrogation"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/security/general, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/security/interrogation) +"rOi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/station/stairs_two) +"rOw" = ( +/obj/machinery/power/apc/north_mount{ + cell_type = /obj/item/cell/super + }, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/turf/simulated/floor/wood, +/area/hallway/primary/port) +"rOX" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on, +/turf/simulated/floor/tiled/dark, +/area/space) +"rPs" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/security/nuke_storage) +"rPE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 8 + }, +/obj/machinery/light/small, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"rPO" = ( +/turf/simulated/floor/carpet, +/area/crew_quarters/heads/hos) +"rPT" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/fire_alarm/west_mount{ + pixel_x = -24 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_4) +"rQl" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "QMLoad2" + }, +/obj/machinery/status_display/supply_display{ + mode = 99; + pixel_y = 32 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/warehouse) +"rQZ" = ( +/turf/simulated/floor/tiled/old_cargo/gray, +/area/security/lobby) +"rRe" = ( +/obj/machinery/door/airlock/maintenance/sec{ + req_one_access = null + }, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "security_lockdown"; + name = "Security Blast Doors"; + opacity = 0 + }, +/obj/map_helper/access_helper/airlock/station/security/department, +/turf/simulated/floor/plating, +/area/maintenance/security/port) +"rRg" = ( +/obj/structure/lattice, +/obj/structure/grille, +/turf/space, +/area/crew_quarters/sleep/Dorm_1) +"rRy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/mining_main/storage) +"rRV" = ( +/turf/space/basic, +/area/security/range) +"rSn" = ( +/obj/machinery/atm{ + pixel_y = 30 + }, +/obj/effect/floor_decal/techfloor{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel, +/area/hallway/primary/port) +"rST" = ( +/obj/structure/closet/secure_closet/security, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/monotile, +/area/space) +"rTp" = ( +/obj/structure/bed/chair/comfy/teal{ + dir = 1 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_5) +"rTA" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/mining_main/refinery) +"rUe" = ( +/obj/machinery/fitness/heavy/lifter, +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"rUI" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/heads/hos) +"rVo" = ( +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/machinery/door/firedoor/glass{ + dir = 8 + }, +/obj/spawner/window/low_wall/reinforced/full, +/obj/effect/paint_stripe/darkred, +/turf/simulated/floor/plating, +/area/crew_quarters/bar) +"rVt" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/power/sensor{ + name = "Powernet Sensor - Cargo Subgrid"; + name_tag = "Cargo Subgrid" + }, +/obj/effect/floor_decal/industrial/warning, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/cargo) +"rVx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/security/interrogation) +"rWk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/map_helper/airlock/door/int_door, +/obj/machinery/door/airlock/glass_external{ + req_one_access = null + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/recreation_area) +"rWH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/dormitory) +"rWO" = ( +/obj/map_helper/airlock/door/simple, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/machinery/door/airlock/glass_external{ + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/external_airlock, +/turf/simulated/floor/tiled, +/area/quartermaster/warehouse) +"rXf" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/hydroponics) +"rYa" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/ladder/up, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/space) +"rYj" = ( +/obj/spawner/window/low_wall/full/firelocks/nogrille, +/turf/simulated/floor/plating, +/area/vacant/vacant_shop) +"rZC" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/machinery/door/window/westright{ + dir = 1; + name = "Bar"; + req_access = list(25); + req_one_access = list(25) + }, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/bar) +"rZT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/vacant/vacant_shop) +"rZX" = ( +/obj/machinery/cryopod, +/obj/effect/floor_decal/corner_techfloor_grid{ + dir = 10 + }, +/obj/effect/floor_decal/corner_techfloor_grid{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/sleep/cryo) +"saa" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/warehouse) +"sap" = ( +/obj/structure/table/woodentable, +/obj/machinery/computer/ship/navigation/telescreen{ + pixel_y = -37 + }, +/obj/item/instrument/violin, +/turf/simulated/floor/wood, +/area/space) +"sat" = ( +/obj/structure/closet/wardrobe, +/turf/simulated/floor/wood, +/area/space) +"saA" = ( +/turf/simulated/wall/prepainted, +/area/maintenance/central) +"sbr" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area) +"sbB" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/security/hallway) +"sbK" = ( +/obj/machinery/holopad, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/wood, +/area/space) +"sbV" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/maintenance/dormitory) +"sca" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/structure/table/rack/shelf/steel, +/obj/item/melee/baton/loaded, +/obj/item/melee/baton/loaded, +/turf/simulated/floor/tiled/dark, +/area/space) +"scW" = ( +/turf/simulated/floor/wood, +/area/station/stairs_two) +"seX" = ( +/obj/structure/bed/chair, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/security/hallway) +"sfg" = ( +/obj/structure/table/rack/shelf/steel, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/red, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/clothing/mask/balaclava{ + pixel_x = -4; + pixel_y = 7 + }, +/obj/item/clothing/mask/balaclava{ + pixel_x = -4; + pixel_y = 7 + }, +/obj/item/clothing/mask/balaclava{ + pixel_x = -4; + pixel_y = 7 + }, +/obj/item/clothing/mask/balaclava{ + pixel_x = -4; + pixel_y = 7 + }, +/obj/item/clothing/head/helmet/riot{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/clothing/head/helmet/riot{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/clothing/head/helmet/riot{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/clothing/head/helmet/riot{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/clothing/accessory/armor/legguards/riot{ + pixel_x = 5; + pixel_y = -7 + }, +/obj/item/clothing/accessory/armor/legguards/riot{ + pixel_x = 5; + pixel_y = -7 + }, +/obj/item/clothing/accessory/armor/legguards/riot{ + pixel_x = 5; + pixel_y = -7 + }, +/obj/item/clothing/accessory/armor/legguards/riot{ + pixel_x = 5; + pixel_y = -7 + }, +/obj/item/clothing/accessory/armor/armguards/riot{ + pixel_x = -4; + pixel_y = -7 + }, +/obj/item/clothing/accessory/armor/armguards/riot{ + pixel_x = -4; + pixel_y = -7 + }, +/obj/item/clothing/accessory/armor/armguards/riot{ + pixel_x = -4; + pixel_y = -7 + }, +/obj/item/clothing/accessory/armor/armguards/riot{ + pixel_x = -4; + pixel_y = -7 + }, +/obj/effect/floor_decal/corner/red/full{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"sfl" = ( +/obj/machinery/status_display/supply_display{ + pixel_y = 32 + }, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"sfp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/vacant/vacant_shop) +"sft" = ( +/obj/machinery/light, +/obj/machinery/computer/arcade, +/turf/simulated/floor/tiled/monotile, +/area/victory/surfacebase/bar_backroom) +"sfB" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/quartermaster/warehouse) +"sfT" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/space) +"shl" = ( +/obj/machinery/fire_alarm/west_mount{ + pixel_x = -24 + }, +/obj/structure/undies_wardrobe, +/turf/simulated/floor/wood, +/area/space) +"shK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/space) +"shQ" = ( +/obj/item/radio/intercom{ + pixel_y = -24 + }, +/obj/machinery/photocopier, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/security/interrogation) +"shT" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/security/hallway) +"sij" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/wood, +/area/station/stairs_two) +"siq" = ( +/obj/machinery/atmospherics/component/binary/passive_gate/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/sleep/Dorm_8) +"sje" = ( +/obj/machinery/vending/hydronutrients, +/obj/effect/floor_decal/corner/green{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"sjT" = ( +/obj/machinery/light, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/tiled/steel, +/area/space) +"sjZ" = ( +/obj/effect/floor_decal/corner/red{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/vacant/vacant_shop) +"slc" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock{ + name = "Custodial Closet" + }, +/obj/map_helper/access_helper/airlock/station/service/janitor, +/turf/simulated/floor/plating, +/area/space) +"slX" = ( +/obj/item/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 26 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/bar) +"smu" = ( +/obj/structure/table/steel, +/obj/item/tape_recorder, +/turf/simulated/floor/tiled/old_cargo/red, +/area/security/security_processing) +"smw" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/simulated/floor/airless, +/area/crew_quarters/sleep/Dorm_9) +"smZ" = ( +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "security_lockdown"; + name = "Security Blast Doors"; + opacity = 0 + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/machinery/door/firedoor/glass{ + dir = 8 + }, +/obj/spawner/window/low_wall/borosillicate/reinforced/full, +/obj/effect/paint_stripe/darkred, +/turf/simulated/floor, +/area/space) +"snt" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/quartermaster/warehouse) +"snx" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/security/detectives_office) +"snz" = ( +/obj/machinery/fire_alarm/south_mount{ + pixel_y = -24 + }, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area_hallway) +"sow" = ( +/obj/machinery/fire_alarm/west_mount{ + pixel_x = -26 + }, +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/space) +"soA" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/bar) +"spT" = ( +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"sqj" = ( +/turf/space/basic, +/area/security/hanger) +"sqQ" = ( +/turf/simulated/wall/prepainted, +/area/crew_quarters/toilet) +"srn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/item/stool/padded, +/turf/simulated/floor/wood, +/area/vacant/vacant_shop) +"stN" = ( +/obj/structure/lattice, +/turf/simulated/floor/airless/ceiling, +/area/quartermaster/warehouse) +"suq" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area_hallway) +"swb" = ( +/obj/machinery/vending/cigarette, +/obj/effect/floor_decal/techfloor{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/prison/cell_block) +"swp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/carpet/sblucarpet, +/area/quartermaster/qm) +"swq" = ( +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/obj/structure/closet/jcloset, +/obj/random/soap, +/obj/item/mop, +/obj/item/storage/bag/trash, +/obj/item/lightreplacer, +/obj/item/reagent_containers/glass/rag/sponge, +/obj/item/reagent_containers/glass/rag/sponge, +/turf/simulated/floor/tiled/dark, +/area/space) +"swC" = ( +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_5) +"swE" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass/security{ + name = "Locker Room"; + req_one_access = null + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/map_helper/access_helper/airlock/station/security/brig, +/turf/simulated/floor/tiled/dark, +/area/space) +"swK" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/security/hallway) +"sxj" = ( +/obj/machinery/mineral/output, +/obj/machinery/conveyor{ + dir = 4; + id = "mining_interior" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/victory/surfacebase/mining_main/refinery) +"sya" = ( +/obj/structure/closet/wardrobe/white, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_5) +"syh" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/turf/simulated/floor/tiled/white, +/area/maintenance/bar/lower) +"sze" = ( +/turf/simulated/wall/prepainted/security, +/area/maintenance/security/port) +"szg" = ( +/obj/machinery/camera/network/civilian{ + dir = 1 + }, +/obj/machinery/computer/timeclock/premade/south, +/obj/effect/floor_decal/techfloor, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"szl" = ( +/obj/structure/closet/secure_closet/bar, +/obj/item/gun/ballistic/shotgun/doublebarrel, +/obj/item/storage/box/beanbags/large, +/obj/item/storage/box/beanbags/large, +/obj/item/clothing/accessory/permit/gun/bar, +/obj/item/paper{ + info = "This permit signifies that the Bartender is permitted to posess this firearm in the bar, and ONLY the bar. Failure to adhere to this permit will result in confiscation of the weapon and possibly arrest."; + name = "Shotgun permit" + }, +/obj/item/clothing/suit/armor/vest, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -24 + }, +/obj/item/gun/ballistic/shotgun/doublebarrel, +/turf/simulated/floor/wood, +/area/maintenance/bar/lower) +"szv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/sleep/Dorm_10) +"szA" = ( +/obj/machinery/power/apc/south_mount, +/obj/structure/cable/green, +/obj/effect/floor_decal/techfloor, +/turf/simulated/floor/tiled, +/area/hallway/primary/starboard) +"sAf" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/vacant/vacant_shop) +"sAx" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/crew_quarters/sleep/Dorm_5) +"sBt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/hydroponics) +"sBO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area_hallway) +"sCc" = ( +/obj/structure/table/steel, +/obj/item/storage/box/evidence{ + pixel_x = -1; + pixel_y = 5 + }, +/obj/item/hand_labeler, +/obj/machinery/fire_alarm/north_mount, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/space) +"sCA" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/monotile, +/area/security/hallway) +"sCK" = ( +/obj/machinery/smartfridge, +/turf/simulated/floor/plating, +/area/hydroponics) +"sCZ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 5 + }, +/obj/item/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 26 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/suit_storage_unit/mining, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/mining_main/storage) +"sDt" = ( +/obj/effect/floor_decal/techfloor{ + dir = 10 + }, +/obj/machinery/computer/ship/navigation/telescreen{ + pixel_y = -37 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/starboard) +"sDF" = ( +/obj/machinery/fire_alarm/north_mount, +/obj/landmark{ + name = "blobstart" + }, +/turf/simulated/floor/tiled, +/area/quartermaster/warehouse) +"sDU" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/security/hallway) +"sEg" = ( +/obj/structure/flora/pottedplant/orientaltree, +/obj/machinery/camera/network/civilian{ + dir = 1 + }, +/obj/machinery/computer/security/telescreen{ + pixel_y = -32 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"sEh" = ( +/obj/machinery/fire_alarm/south_mount{ + pixel_y = -25 + }, +/obj/machinery/door/airlock/glass, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel, +/area/hallway/primary/port) +"sEw" = ( +/obj/structure/table/steel, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen, +/turf/simulated/floor/tiled/old_cargo/red, +/area/security/security_processing) +"sEy" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/port) +"sEK" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/cell_charger, +/obj/machinery/light{ + dir = 8; + light_range = 12 + }, +/obj/machinery/recharger/wallcharger{ + pixel_x = -22 + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/space) +"sFl" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/vacant/vacant_shop) +"sFq" = ( +/obj/machinery/recharge_station, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/button/remote/airlock{ + id = "bartoliet1"; + name = "Bar Toilet 1 Lock"; + pixel_y = -10; + specialfunctions = 4; + pixel_x = 24; + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/space) +"sFY" = ( +/obj/item/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 21 + }, +/obj/structure/bed/chair/comfy/blue{ + dir = 8 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/bar) +"sGD" = ( +/obj/effect/floor_decal/techfloor/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/space) +"sGF" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/corner_oldtile/white/diagonal, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/kitchen) +"sGV" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "security_lockdown"; + name = "Security Blast Doors"; + opacity = 0 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"sHt" = ( +/obj/machinery/airlock_sensor{ + dir = 1; + id_tag = "victory_annex_dock"; + pixel_x = -22 + }, +/obj/machinery/atmospherics/component/unary/vent_pump/high_volume{ + frequency = 1380; + id_tag = "victory_annex_dock_pump" + }, +/obj/map_helper/airlock/sensor/chamber_sensor, +/obj/map_helper/airlock/atmos/chamber_pump, +/turf/simulated/floor/plating, +/area/space) +"sIb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/holopad, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/space) +"sIN" = ( +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/monotile, +/area/vacant/vacant_office) +"sJf" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/multi_tile/glass{ + name = "Crew Quarters" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area_hallway) +"sJj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/station/stairs_two) +"sJm" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"sJp" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/space) +"sJy" = ( +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"sJK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/structure/sign/department/interrogation{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"sJN" = ( +/turf/simulated/floor/tiled/white, +/area/crew_quarters/heads/hos) +"sJS" = ( +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/spawner/window/low_wall/reinforced/full, +/turf/simulated/floor/plating, +/area/victory/surfacebase/mining_main/refinery) +"sKe" = ( +/obj/structure/closet/gmcloset{ + name = "formal wardrobe" + }, +/obj/item/glass_jar, +/obj/item/retail_scanner/civilian, +/obj/item/retail_scanner/civilian, +/obj/item/clothing/accessory/hawaii/random, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/maintenance/bar/lower) +"sKM" = ( +/obj/structure/table/marble, +/obj/machinery/door/blast/shutters{ + dir = 2; + id = "kitchen-c"; + name = "Kitchen Service Shutters" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/monotile, +/area/crew_quarters/kitchen) +"sLn" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/lattice, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ + dir = 8 + }, +/obj/structure/railing, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "32-8" + }, +/turf/simulated/open, +/area/maintenance/cargo) +"sLo" = ( +/turf/simulated/wall/r_wall/prepainted/cargo, +/area/quartermaster/storage) +"sLV" = ( +/obj/machinery/smartfridge/drinks, +/obj/machinery/door/blast/shutters{ + dir = 8; + id = "bar"; + name = "Bar Shutters" + }, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/bar) +"sMf" = ( +/obj/structure/closet/l3closet/janitor, +/turf/simulated/floor/tiled/dark, +/area/space) +"sMZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/mining_main/refinery) +"sNd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/bar/lower) +"sOg" = ( +/obj/machinery/newscaster{ + pixel_x = -28 + }, +/obj/machinery/fitness/heavy/lifter, +/turf/simulated/floor/wood, +/area/space) +"sPQ" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/airless, +/area/maintenance/dormitory) +"sQF" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/holopad, +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/security/detectives_office) +"sQR" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/airless, +/area/crew_quarters/sleep/Dorm_9) +"sRa" = ( +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/machinery/power/smes/buildable{ + RCon_tag = "Deck 2 Grid"; + cur_coils = 3 + }, +/obj/structure/cable, +/turf/simulated/floor/plating, +/area/maintenance/substation/civilian) +"sRb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"sRg" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_7) +"sRB" = ( +/obj/item/radio/intercom{ + pixel_y = -24 + }, +/obj/structure/bed/double/padded, +/obj/random/bedsheet/double, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_6) +"sSh" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/dormitory) +"sSw" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/crate, +/obj/machinery/camera/network/cargo, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"sSF" = ( +/obj/effect/floor_decal/corner/green/full{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"sSS" = ( +/obj/landmark/spawnpoint/job/botanist, +/turf/simulated/floor/tiled, +/area/hydroponics) +"sTV" = ( +/obj/structure/table/reinforced, +/obj/item/hand_labeler, +/obj/item/stamp/cargo, +/obj/item/stamp/denied{ + pixel_x = 7 + }, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/steel, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"sUc" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ + dir = 4 + }, +/turf/simulated/floor/reinforced/airless, +/area/space) +"sUf" = ( +/obj/machinery/fitness/heavy/lifter, +/turf/simulated/floor/carpet/bcarpet, +/area/space) +"sUR" = ( +/obj/structure/sign/warning/secure_area{ + pixel_x = -32 + }, +/turf/simulated/wall/r_wall/prepainted/command, +/area/security/nuke_storage) +"sUS" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/door_timer/cell_3{ + id = "Cell 1"; + name = "Cell 1"; + pixel_x = 32 + }, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"sUT" = ( +/turf/simulated/floor/tiled/old_cargo/gray, +/area/prison/cell_block) +"sVe" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9 + }, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/bar) +"sWf" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/item/stool/padded, +/turf/simulated/floor/wood, +/area/vacant/vacant_shop) +"sXd" = ( +/obj/machinery/hyperpad/centre{ + map_pad_id = "lavaland_station"; + map_pad_link_id = "lavaland_away"; + newcolor = "#fcba03" + }, +/turf/simulated/floor/tiled/techmaint, +/area/quartermaster/office) +"sXA" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/cargo) +"sXU" = ( +/obj/structure/cryofeed{ + dir = 4 + }, +/obj/effect/floor_decal/corner_techfloor_grid{ + dir = 5 + }, +/obj/effect/floor_decal/corner_techfloor_grid{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/sleep/cryo) +"sYm" = ( +/obj/structure/stairs/spawner/south, +/turf/simulated/floor/tiled, +/area/space) +"sYq" = ( +/turf/simulated/floor/tiled/techfloor, +/area/security/lobby) +"sYw" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Head of Security's Desk"; + departmentType = 5; + name = "Head of Security RC"; + pixel_x = -32 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/heads/hos) +"sZw" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/prison/cell_block) +"sZy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/vacant/vacant_shop) +"sZK" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/heads/hos) +"sZT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/space) +"tbe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/sleep/Dorm_10) +"tbT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/security/armoury) +"tcb" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on, +/obj/item/stool/padded, +/turf/simulated/floor/tiled/dark, +/area/vacant/vacant_shop) +"tdp" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/security/hallway) +"tdE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/space) +"tdS" = ( +/obj/structure/fitness/weightlifter, +/turf/simulated/floor/tiled/dark, +/area/space) +"teb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/bar) +"teq" = ( +/obj/structure/table/marble, +/obj/machinery/door/blast/shutters{ + dir = 8; + id = "bar"; + name = "Bar Shutters" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"tet" = ( +/obj/structure/closet/walllocker{ + pixel_y = 32 + }, +/obj/item/pickaxe/silver, +/obj/item/pickaxe/silver, +/obj/item/clothing/head/helmet/space/void/mining, +/obj/item/clothing/suit/space/void/mining, +/obj/item/tank/emergency/oxygen/double, +/obj/item/tank/emergency/oxygen/double, +/turf/simulated/floor/tiled/steel, +/area/shuttle/belter) +"tey" = ( +/obj/machinery/computer/secure_data{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"teE" = ( +/obj/machinery/holopad, +/obj/effect/floor_decal/corner/blue{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"teR" = ( +/obj/structure/curtain/open/shower/engineering, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/showers) +"tfe" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/machinery/holosign/bar{ + id = "cafesign1"; + pixel_y = 38 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/starboard) +"tft" = ( +/turf/simulated/wall/prepainted/civilian, +/area/crew_quarters/barrestroom) +"tfV" = ( +/obj/structure/table/woodentable, +/obj/machinery/chemical_dispenser/catering/bar_soft{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/space) +"tfX" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/space) +"tgq" = ( +/obj/machinery/computer/security/telescreen{ + pixel_x = 32 + }, +/obj/machinery/chemical_dispenser/catering/bar_soft{ + pixel_y = 8 + }, +/obj/effect/floor_decal/corner_oldtile/white/diagonal, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/kitchen) +"thb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/red/border, +/turf/simulated/floor/tiled/dark, +/area/security/security_processing) +"thn" = ( +/obj/structure/table/marble, +/obj/machinery/chemical_dispenser/catering/bar_coffee{ + dir = 4 + }, +/obj/effect/floor_decal/corner_oldtile/white/diagonal, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/bar) +"thP" = ( +/obj/structure/closet/toolcloset, +/obj/item/storage/toolbox/mechanical, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/glass, +/obj/item/stack/cable_coil/random, +/obj/fiftyspawner/wood, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/machinery/power/apc/west_mount{ + cell_type = /obj/item/cell/super + }, +/obj/fiftyspawner/steel, +/turf/simulated/floor/wood, +/area/maintenance/bar/lower) +"tiA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/machinery/door/airlock/glass/mining{ + name = "Mining Prep Room"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/supply/mining, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/mining_main/storage) +"tiK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/camera/network/security{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/security/hallway) +"tjr" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"tkp" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on, +/turf/simulated/floor/tiled/white, +/area/station/stairs_two) +"tkN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/dormitory) +"tlc" = ( +/obj/item/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 26 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/station/stairs_two) +"tlm" = ( +/obj/structure/toilet{ + dir = 8 + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/prison/cell_block) +"tlt" = ( +/turf/simulated/floor/tiled/monotile, +/area/security/hallway) +"tlx" = ( +/obj/machinery/camera/network/engineering, +/obj/machinery/atmospherics/valve/digital{ + dir = 4; + name = "Reserve Fuel" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"tlE" = ( +/obj/machinery/shower{ + pixel_y = 17 + }, +/obj/structure/curtain/open/shower/security, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/space) +"tlN" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock{ + name = "Fitness Room" + }, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/space) +"tmh" = ( +/obj/structure/table/marble, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/bar) +"tmo" = ( +/obj/machinery/power/solar, +/obj/structure/cable/yellow, +/turf/simulated/floor/airless, +/area/crew_quarters/sleep/Dorm_1) +"tmT" = ( +/obj/structure/table/marble, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/corner_oldtile/white/diagonal, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/kitchen) +"tnh" = ( +/obj/structure/table/steel, +/obj/item/reagent_containers/food/drinks/drinkingglass/soda, +/turf/simulated/floor/tiled/monotile, +/area/victory/surfacebase/bar_backroom) +"tnm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/obj/structure/window/phoronreinforced/full{ + icon_state = "phoronwindow0" + }, +/obj/structure/grille, +/turf/simulated/floor/reinforced/airless, +/area/space) +"tnU" = ( +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/turf/simulated/floor/wood, +/area/maintenance/dormitory) +"tos" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/security/security_processing) +"toA" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/station/stairs_two) +"tpb" = ( +/obj/machinery/smartfridge/drying_rack, +/turf/simulated/floor/tiled/techfloor, +/area/hydroponics) +"tqv" = ( +/obj/machinery/vending/fitness, +/turf/simulated/floor/tiled, +/area/quartermaster/foyer) +"tqK" = ( +/obj/structure/table/steel, +/obj/machinery/chemical_dispenser/catering/bar_soft, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/space) +"tqQ" = ( +/obj/structure/table/marble, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/bar) +"tra" = ( +/obj/machinery/holopad, +/turf/simulated/floor/tiled, +/area/station/stairs_two) +"trX" = ( +/obj/machinery/door/airlock/voidcraft{ + frequency = 2020; + id_tag = "belt_shuttle_exterior" + }, +/obj/structure/fans/tiny, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel, +/area/shuttle/belter) +"tsi" = ( +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/holopad, +/turf/simulated/floor/tiled/dark, +/area/security/nuke_storage) +"tsO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/monotile, +/area/security/hallway) +"tsP" = ( +/obj/machinery/fire_alarm/south_mount{ + pixel_y = -24 + }, +/turf/simulated/floor/wood, +/area/maintenance/dormitory) +"ttV" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/techfloor, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"ttX" = ( +/obj/machinery/status_display/supply_display{ + pixel_y = 32 + }, +/obj/structure/closet/l3closet/janitor, +/turf/simulated/floor/tiled/dark, +/area/space) +"tuG" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell 3"; + name = "Cell 3 Locker" + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/prison/cell_block) +"tuJ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/obj/machinery/power/apc/north_mount, +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/mining_main/storage) +"tuS" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/warehouse) +"tvd" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/carpet/sblucarpet, +/area/space) +"tvu" = ( +/obj/item/paper_bin, +/obj/item/clothing/glasses/sunglasses, +/obj/item/pen/blue{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/structure/table/woodentable, +/obj/item/handcuffs, +/obj/machinery/light, +/turf/simulated/floor/carpet, +/area/security/detectives_office) +"tvR" = ( +/obj/structure/undies_wardrobe, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_10) +"txm" = ( +/obj/machinery/power/apc/south_mount, +/obj/structure/cable/green, +/turf/simulated/floor/tiled/old_tile/gray, +/area/space) +"txD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/qm) +"txF" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/starboard) +"txR" = ( +/obj/machinery/suit_cycler/headofsecurity, +/turf/simulated/floor/tiled/dark, +/area/security/hallway) +"tyc" = ( +/turf/simulated/floor/carpet/sblucarpet, +/area/quartermaster/qm) +"tzh" = ( +/obj/machinery/door/airlock/glass, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/port) +"tzE" = ( +/obj/structure/sink{ + pixel_y = 22 + }, +/obj/structure/mirror{ + dir = 4; + pixel_y = 33 + }, +/turf/simulated/floor/tiled/white, +/area/maintenance/dormitory) +"tzO" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/crew_quarters/sleep/Dorm_7) +"tBR" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"tBU" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/regular{ + dir = 4; + id = "armorylight"; + name = "Light Armory Acccess" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"tCS" = ( +/turf/simulated/shuttle/wall/voidcraft/green, +/area/quartermaster/miningdock) +"tCW" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"tDs" = ( +/obj/machinery/appliance/cooker/grill, +/obj/effect/floor_decal/corner_oldtile/white/diagonal, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/kitchen) +"tDS" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/obj/machinery/light_switch{ + pixel_x = 25 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/mining_main/refinery) +"tEg" = ( +/turf/simulated/wall, +/area/crew_quarters/showers) +"tEz" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/space) +"tEV" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/crate/trashcart, +/turf/simulated/floor/tiled, +/area/maintenance/dormitory) +"tFe" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/ai_status_display{ + pixel_y = -32 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area_hallway) +"tFp" = ( +/obj/structure/undies_wardrobe, +/turf/simulated/floor/wood, +/area/space) +"tGf" = ( +/obj/machinery/door/blast/shutters{ + dir = 8; + id = "kitchen-c"; + name = "Kitchen Service Shutters" + }, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/machinery/smartfridge/food, +/obj/effect/floor_decal/corner_oldtile/white/diagonal, +/turf/simulated/wall/prepainted/civilian, +/area/crew_quarters/kitchen) +"tGl" = ( +/obj/structure/adherent_pylon, +/turf/simulated/floor/crystal, +/area/station/stairs_two) +"tGm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"tGo" = ( +/obj/machinery/mech_recharger, +/turf/simulated/floor/tiled/techfloor, +/area/security/lobby) +"tGX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/table/marble, +/turf/simulated/floor/tiled/dark, +/area/vacant/vacant_shop) +"tHl" = ( +/turf/space/basic, +/area/quartermaster/warehouse) +"tHt" = ( +/obj/structure/railing, +/turf/space, +/area/crew_quarters/sleep/Dorm_9) +"tHz" = ( +/obj/effect/floor_decal/corner/red{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/vacant/vacant_shop) +"tIe" = ( +/obj/structure/table/rack{ + dir = 8; + layer = 2.6 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/window/southright{ + name = "Jetpack Storage"; + req_access = list(1,2,18); + req_one_access = list() + }, +/obj/item/tank/jetpack/carbondioxide, +/obj/item/tank/jetpack/carbondioxide, +/obj/item/tank/jetpack/carbondioxide, +/turf/simulated/floor/tiled, +/area/space) +"tJa" = ( +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_10) +"tJc" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/space) +"tJl" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hydroponics) +"tJm" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/holopad, +/turf/simulated/floor/wood, +/area/station/stairs_two) +"tJH" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/obj/structure/closet/wardrobe, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_10) +"tJL" = ( +/obj/effect/floor_decal/techfloor{ + dir = 9 + }, +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled, +/area/space) +"tJR" = ( +/obj/machinery/camera/network/outside, +/turf/space, +/area/crew_quarters/sleep/Dorm_1) +"tKs" = ( +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/access_button{ + command = "cycle_ext"; + frequency = 1379; + master_tag = "solar_dock"; + name = "exterior access button"; + pixel_x = -26; + pixel_y = 26 + }, +/obj/machinery/shield_diffuser, +/turf/simulated/floor/airless, +/area/crew_quarters/recreation_area) +"tKL" = ( +/obj/structure/cryofeed, +/obj/effect/floor_decal/corner_techfloor_grid{ + dir = 10 + }, +/obj/effect/floor_decal/corner_techfloor_grid{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/sleep/cryo) +"tLj" = ( +/obj/structure/table/woodentable, +/obj/structure/flora/pottedplant/decorative, +/obj/machinery/button/remote/airlock{ + id = "dorm2"; + name = "Room 2 Lock"; + pixel_x = -26; + pixel_y = -4; + specialfunctions = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_2) +"tMv" = ( +/obj/structure/table/rack/shelf/steel, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/red, +/obj/item/clothing/accessory/armor/legguards/ballistic{ + pixel_x = 6; + pixel_y = -6 + }, +/obj/item/clothing/accessory/armor/legguards/ballistic{ + pixel_x = 6; + pixel_y = -6 + }, +/obj/item/clothing/accessory/armor/legguards/ballistic{ + pixel_x = 6; + pixel_y = -6 + }, +/obj/item/clothing/accessory/armor/legguards/ballistic{ + pixel_x = 6; + pixel_y = -6 + }, +/obj/item/clothing/accessory/armor/armguards/ballistic{ + pixel_x = -4; + pixel_y = -6 + }, +/obj/item/clothing/accessory/armor/armguards/ballistic{ + pixel_x = -4; + pixel_y = -6 + }, +/obj/item/clothing/accessory/armor/armguards/ballistic{ + pixel_x = -4; + pixel_y = -6 + }, +/obj/item/clothing/accessory/armor/armguards/ballistic{ + pixel_x = -4; + pixel_y = -6 + }, +/obj/item/clothing/head/helmet/ballistic{ + pixel_x = -5; + pixel_y = 4 + }, +/obj/item/clothing/head/helmet/ballistic{ + pixel_x = -5; + pixel_y = 4 + }, +/obj/item/clothing/head/helmet/ballistic{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/item/clothing/head/helmet/ballistic{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"tMI" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/quartermaster/warehouse) +"tOa" = ( +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/machinery/door/firedoor/glass{ + dir = 8 + }, +/obj/spawner/window/low_wall/reinforced/full, +/obj/effect/paint_stripe/darkred, +/turf/simulated/floor/plating, +/area/security/lobby) +"tOk" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/sleep/Dorm_8) +"tOX" = ( +/obj/effect/floor_decal/techfloor{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/space) +"tPv" = ( +/obj/structure/bed/chair/sofa/right, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/bar) +"tPV" = ( +/obj/structure/window/basic{ + dir = 1 + }, +/obj/structure/bed/chair/sofa, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/bar) +"tQM" = ( +/obj/effect/floor_decal/corner_oldtile/white/diagonal, +/obj/machinery/light_switch{ + name = "light switch "; + pixel_x = 32; + pixel_y = 26 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/bar) +"tRn" = ( +/obj/effect/shuttle_landmark/victory/deck2/trade, +/turf/space, +/area/space) +"tRU" = ( +/obj/structure/table/rack/shelf/steel, +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = -28 + }, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/storage/box/survival_knife{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/storage/box/survival_knife{ + pixel_x = 4; + pixel_y = -4 + }, +/obj/item/storage/box/survival_knife{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/box/survival_knife{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/item/storage/box/survival_knife, +/obj/item/storage/box/survival_knife, +/turf/simulated/floor/tiled/dark, +/area/space) +"tSp" = ( +/turf/simulated/floor/tiled/monotile, +/area/victory/surfacebase/bar_backroom) +"tSw" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"tSD" = ( +/obj/landmark/spawnpoint/latejoin/station/cryogenics, +/obj/machinery/computer/ship/navigation/telescreen{ + pixel_y = -37 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/sleep/cryo) +"tSW" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/starboard) +"tTC" = ( +/obj/structure/ladder/up, +/turf/simulated/floor/plating, +/area/maintenance/dormitory) +"tTL" = ( +/obj/structure/bed/chair/comfy/teal{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/maintenance/dormitory) +"tUu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood, +/area/vacant/vacant_shop) +"tUx" = ( +/obj/item/radio/beacon, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/carpet/sblucarpet, +/area/quartermaster/foyer) +"tUH" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/mining_main/storage) +"tVp" = ( +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"tWi" = ( +/obj/machinery/atmospherics/pipe/simple/visible/universal{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"tWk" = ( +/turf/simulated/wall/r_wall/prepainted/security, +/area/security/hallway) +"tXi" = ( +/obj/machinery/holopad, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"tYa" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/foyer) +"tYn" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/fire_alarm/east_mount, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood, +/area/hallway/primary/port) +"tYA" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"tZw" = ( +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/effect/floor_decal/corner_oldtile/white/diagonal, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/kitchen) +"tZC" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/fire_alarm/north_mount, +/turf/simulated/floor/tiled/old_cargo/white, +/area/space) +"uap" = ( +/obj/machinery/atmospherics/component/binary/passive_gate/on{ + dir = 8; + pressure_resistance = 750; + target_pressure = 750 + }, +/turf/simulated/floor/plating, +/area/space) +"uaW" = ( +/obj/machinery/holopad, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"ubo" = ( +/obj/structure/table/steel, +/obj/item/storage/box/handcuffs{ + pixel_x = 7; + pixel_y = 4 + }, +/obj/machinery/camera/network/security{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/obj/item/storage/box/nifsofts_security{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/item/storage/box/evidence{ + pixel_x = -2; + pixel_y = 16 + }, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"ubu" = ( +/obj/structure/table/reinforced, +/obj/machinery/microscope, +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/old_cargo/white, +/area/victory/surfacebase/tram) +"ucb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/holopad, +/turf/simulated/floor/tiled/techfloor, +/area/security/lobby) +"ucC" = ( +/obj/structure/table/marble, +/obj/item/storage/box/donkpockets, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/corner_oldtile/white/diagonal, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/kitchen) +"udc" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/machinery/door/airlock/multi_tile/glass{ + id_tag = "BrigFoyer"; + name = "Security" + }, +/obj/map_helper/access_helper/airlock/station/security/general, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "security_lockdown"; + name = "Security Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor/tiled/dark, +/area/prison/cell_block) +"udA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/toilet) +"ueK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/space) +"ufd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/crystal, +/area/station/stairs_two) +"ufk" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/vacant/vacant_shop) +"ufr" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock{ + id_tag = "dorm5"; + name = "Dorm 5" + }, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_5) +"ufN" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/multi_tile/glass{ + name = "Community Theater" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/vacant/vacant_shop) +"ufS" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/space) +"uga" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/security/hallway) +"uhh" = ( +/obj/structure/bed/chair/sofa/left, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/bar) +"uiL" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/space) +"ujm" = ( +/obj/item/coin/silver, +/obj/item/coin/silver, +/obj/item/coin/silver, +/obj/item/coin/silver, +/obj/item/coin/silver, +/obj/structure/closet/crate/secure{ + name = "Silver Crate"; + req_access = list(19) + }, +/obj/item/coin/silver, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/security/nuke_storage) +"uke" = ( +/obj/structure/table/rack{ + dir = 8; + layer = 2.6 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/window/northright{ + req_access = list(1,2,18) + }, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/suit/space/void/security, +/obj/item/clothing/suit/space/void/security, +/obj/item/clothing/head/helmet/space/void/security, +/obj/item/clothing/head/helmet/space/void/security, +/obj/structure/window/reinforced, +/turf/simulated/floor/tiled, +/area/space) +"ukA" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 5 + }, +/obj/structure/closet/secure_closet/hydroponics{ + req_access = list(28) + }, +/obj/structure/curtain/open/bed{ + name = "brown curtain"; + pixel_y = 32 + }, +/obj/item/storage/belt/utility, +/turf/simulated/floor/tiled, +/area/hydroponics) +"ulu" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/lino, +/area/security/detectives_office) +"ulX" = ( +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -24 + }, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"umL" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/space) +"umU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 1 + }, +/obj/machinery/door/airlock/hatch{ + name = "Port Nacelle"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/engineering/department, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"umW" = ( +/obj/machinery/power/solar, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/simulated/floor/airless, +/area/space) +"unc" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/carpet/blucarpet, +/area/crew_quarters/showers) +"unv" = ( +/obj/structure/bed/padded, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/random/bedsheet, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_2) +"uob" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor, +/obj/structure/bed/chair/sofa/black/left, +/turf/simulated/floor/tiled, +/area/space) +"uoF" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/multi_tile/glass{ + name = "Security Lobby" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/space) +"uoN" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/landmark/spawnpoint/job/warden, +/turf/simulated/floor/tiled/dark, +/area/space) +"upe" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/quartermaster/foyer) +"upi" = ( +/obj/machinery/computer/supplycomp/control{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/foyer) +"upO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/bed/chair/wood{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/vacant/vacant_shop) +"uqa" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/machinery/power/apc/east_mount, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/bar_backroom) +"uqm" = ( +/obj/machinery/cryopod{ + dir = 2 + }, +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/obj/machinery/camera/network/civilian{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/sleep/cryo) +"utM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/blue{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"utN" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel, +/area/space) +"uuD" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "QMLoad2" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/warehouse) +"uvk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/sleep/Dorm_10) +"uvE" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/maintenance/cargo) +"uxk" = ( +/obj/structure/table/rack{ + dir = 8; + layer = 2.6 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window/northleft{ + name = "RIG Storage"; + req_access = list(1,2,18) + }, +/obj/structure/window/reinforced, +/obj/machinery/light, +/obj/item/hardsuit/hazard/equipped, +/turf/simulated/floor/tiled, +/area/space) +"uxq" = ( +/obj/structure/table/steel, +/obj/structure/bedsheetbin, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/space) +"uxu" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/structure/table/woodentable, +/obj/item/flashlight/lamp, +/turf/simulated/floor/carpet, +/area/space) +"uxC" = ( +/turf/simulated/floor/lino, +/area/security/detectives_office) +"uxL" = ( +/turf/space/basic, +/area/security/tactical) +"uyg" = ( +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/security/hallway) +"uyH" = ( +/obj/machinery/fire_alarm/east_mount, +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/security/hallway) +"uAB" = ( +/obj/item/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 26 + }, +/obj/machinery/vending/loadout/clothing, +/turf/simulated/floor/tiled/dark, +/area/vacant/vacant_shop) +"uBj" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/toy/syndicateballoon{ + desc = "There is a tag on the back that reads \"FUK NT!11!\". There also seems to be a few names crossed out on the tag... I wonder why we have this even." + }, +/turf/simulated/floor/tiled/dark, +/area/security/nuke_storage) +"uBn" = ( +/obj/machinery/door/blast/regular{ + dir = 4; + id = "armoryriot"; + name = "Emergency Armory Access" + }, +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 9 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"uBD" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/quartermaster/warehouse) +"uBJ" = ( +/obj/machinery/flasher/portable, +/obj/effect/floor_decal/corner/blue/full, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/dark, +/area/space) +"uCB" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/newscaster{ + pixel_x = 30 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area) +"uCF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/industrial/outline/red, +/turf/simulated/floor/tiled, +/area/quartermaster/warehouse) +"uDz" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/table/rack/shelf, +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/vacant/vacant_shop) +"uDJ" = ( +/obj/machinery/requests_console/preset/janitor{ + pixel_x = -33 + }, +/obj/structure/table/marble, +/obj/item/lightreplacer, +/obj/item/lightreplacer, +/obj/item/storage/box/mousetraps, +/obj/item/storage/box/mousetraps, +/obj/item/storage/box/mousetraps, +/obj/item/holosign_creator, +/obj/item/holosign_creator, +/obj/item/holosign_creator, +/obj/item/holosign_creator, +/obj/item/reagent_containers/spray/cleaner, +/obj/item/reagent_containers/spray/cleaner, +/obj/item/reagent_containers/spray/cleaner, +/obj/item/reagent_containers/spray/cleaner, +/obj/item/reagent_containers/spray/cleaner, +/obj/item/lightreplacer, +/obj/fiftyspawner/glass, +/turf/simulated/floor/tiled/dark, +/area/maintenance/bar/lower) +"uDY" = ( +/obj/machinery/power/apc/south_mount, +/obj/structure/cable/green, +/obj/effect/floor_decal/corner/red{ + dir = 10 + }, +/obj/structure/closet/secure_closet/warden, +/obj/item/book/manual/security_space_law, +/turf/simulated/floor/tiled/dark, +/area/space) +"uEa" = ( +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/sleep/Dorm_8) +"uFv" = ( +/obj/machinery/button/remote/airlock{ + id = "dorm8"; + name = "Room 8 Lock"; + pixel_x = 24; + pixel_y = -4; + specialfunctions = 4 + }, +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/simulated/floor/wood, +/area/space) +"uFJ" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"uFS" = ( +/turf/space/basic, +/area/security/riot_control) +"uGb" = ( +/obj/structure/closet/secure_closet/freezer/kitchen, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/freezer) +"uGe" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/space) +"uGM" = ( +/turf/simulated/floor/tiled/white, +/area/crew_quarters/toilet) +"uGQ" = ( +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/mining_main/storage) +"uHZ" = ( +/obj/structure/bed/chair, +/turf/simulated/floor/tiled/monotile, +/area/security/hallway) +"uIj" = ( +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/showers) +"uII" = ( +/obj/structure/toilet{ + pixel_y = 10 + }, +/turf/simulated/floor/tiled/white, +/area/space) +"uJP" = ( +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -23 + }, +/obj/machinery/camera/network/civilian{ + dir = 4 + }, +/mob/living/simple_mob/animal/passive/penguin/emperor{ + desc = "There's a tag on this pengiun that says Skipper. You're not even sure where the chef found them."; + name = "Skipper" + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/freezer) +"uKf" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/structure/table/steel, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen, +/turf/simulated/floor/tiled/old_cargo/red, +/area/security/security_processing) +"uKN" = ( +/obj/structure/bed/chair/office/dark, +/turf/simulated/floor/tiled, +/area/quartermaster/foyer) +"uLV" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"uMo" = ( +/obj/machinery/button/remote/blast_door{ + id = "armorylight"; + name = "Light Armory Access"; + pixel_x = -6; + pixel_y = -25; + req_access = list(3) + }, +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/red/border, +/turf/simulated/floor/tiled/dark, +/area/space) +"uMr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/sleep/Dorm_10) +"uMv" = ( +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/obj/item/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 26 + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/space) +"uMw" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_10) +"uMI" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "security_lockdown"; + name = "Security Blast Doors"; + opacity = 0 + }, +/obj/spawner/window/low_wall/reinforced/full, +/obj/effect/paint_stripe/darkred, +/turf/simulated/floor/plating, +/area/security/lobby) +"uMJ" = ( +/obj/machinery/camera/network/civilian{ + dir = 8 + }, +/obj/machinery/newscaster{ + pixel_x = 30 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area_hallway) +"uMW" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor/glass{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/structure/window/reinforced/polarized/full{ + id = "Interr"; + name = "interrogation window" + }, +/obj/effect/paint_stripe/darkred, +/turf/simulated/floor/plating, +/area/security/interrogation) +"uNd" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"uOa" = ( +/obj/structure/flora/pottedplant/smalltree, +/turf/simulated/floor/carpet/bcarpet, +/area/space) +"uOC" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled, +/area/quartermaster/warehouse) +"uOD" = ( +/obj/structure/table/rack{ + dir = 8; + layer = 2.6 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/suit_cooling_unit, +/obj/item/tank/jetpack/carbondioxide, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/suit/space/void/headofsecurity, +/obj/item/clothing/head/helmet/space/void/headofsecurity, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window/northleft{ + dir = 2; + name = "Prototype Hardsuit Storage"; + req_access = list(58) + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/ai_status_display{ + pixel_y = 32 + }, +/obj/item/hardsuit/hazard/equipped, +/turf/simulated/floor/carpet, +/area/crew_quarters/heads/hos) +"uOJ" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 4 + }, +/turf/simulated/shuttle/plating/airless/carry, +/area/shuttle/belter) +"uPo" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloorblack, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "security_lockdown"; + name = "Security Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/airlock/glass/security{ + layer = 2.8; + name = "Security"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/security/general, +/turf/simulated/floor/tiled/dark, +/area/space) +"uPt" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/wood, +/area/quartermaster/foyer) +"uPD" = ( +/obj/machinery/scale, +/turf/simulated/floor/wood, +/area/crew_quarters/showers) +"uPE" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"uQB" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/station/stairs_two) +"uQL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/toilet) +"uRr" = ( +/obj/structure/table/steel, +/obj/item/storage/toolbox/mechanical, +/obj/machinery/fire_alarm/west_mount{ + pixel_x = -26 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/security/lobby) +"uRs" = ( +/obj/machinery/newscaster{ + pixel_x = 30 + }, +/obj/machinery/appliance/cooker/fryer, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/corner_oldtile/white/diagonal, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/kitchen) +"uRS" = ( +/obj/structure/sink/kitchen{ + dir = 4; + pixel_x = -12 + }, +/obj/structure/mirror{ + pixel_x = -26 + }, +/turf/simulated/floor/tiled/old_tile/white, +/area/space) +"uSQ" = ( +/turf/simulated/wall/prepainted/cargo, +/area/quartermaster/qm) +"uTl" = ( +/obj/random/trash_pile, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/bar/lower) +"uVm" = ( +/obj/machinery/fire_alarm/west_mount{ + pixel_x = -26 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"uWd" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area) +"uWw" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/quartermaster/foyer) +"uXK" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"uXZ" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock{ + id_tag = "dorm9"; + name = "Dorm 9" + }, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/space) +"uYk" = ( +/turf/space/basic, +/area/maintenance/bar/lower) +"uYl" = ( +/obj/structure/closet/secure_closet/freezer/fridge{ + anchored = 1 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/freezer) +"uZU" = ( +/obj/machinery/computer/timeclock/premade/south, +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area) +"vaG" = ( +/obj/structure/closet/wardrobe/red, +/obj/machinery/air_alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/floor_decal/corner/red{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/item/clothing/under/oricon/utility/fleet/security, +/obj/item/clothing/under/oricon/utility/fleet/security, +/obj/item/clothing/under/oricon/utility/marine/security, +/obj/item/clothing/under/oricon/utility/marine/security, +/turf/simulated/floor/tiled, +/area/space) +"vbi" = ( +/obj/structure/closet/secure_closet/security, +/obj/structure/window/basic, +/obj/machinery/fire_alarm/west_mount{ + pixel_x = -26 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/monotile, +/area/space) +"vbN" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/space) +"vcl" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/glass/security{ + layer = 2.8; + name = "Security Tool Storage"; + req_one_access = null + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "security_lockdown"; + name = "Security Blast Doors"; + opacity = 0 + }, +/obj/map_helper/access_helper/airlock/station/security/general, +/turf/simulated/floor/tiled/dark, +/area/security/lobby) +"vcI" = ( +/obj/structure/closet/crate, +/obj/item/target, +/obj/item/target, +/obj/item/target, +/obj/item/target, +/obj/item/target, +/obj/item/target, +/obj/item/target, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/fire_alarm/north_mount, +/turf/simulated/floor/tiled/old_tile/gray, +/area/space) +"vcK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/fire_alarm/west_mount{ + pixel_x = -26 + }, +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/space) +"vem" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = -31 + }, +/turf/simulated/floor/tiled/steel, +/area/shuttle/belter) +"veG" = ( +/obj/machinery/recharger/wallcharger{ + pixel_x = -22 + }, +/obj/item/storage/box/flashbangs{ + pixel_y = 7 + }, +/obj/structure/table/steel, +/obj/effect/floor_decal/corner/red/full, +/obj/effect/floor_decal/industrial/outline/red, +/obj/item/storage/box/flashbangs, +/turf/simulated/floor/tiled/dark, +/area/space) +"veV" = ( +/obj/item/stool/padded, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/bar) +"vfK" = ( +/obj/structure/closet/secure_closet/hos, +/obj/item/clothing/accessory/poncho/roles/cloak/hos, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/hos) +"vfQ" = ( +/obj/random/trash_pile, +/obj/structure/window/basic{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/dormitory) +"vfS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/security/interrogation) +"vgg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/freezer) +"vgo" = ( +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"vgu" = ( +/obj/machinery/camera/network/security{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/security/lobby) +"vig" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/space) +"vil" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 4 + }, +/turf/space, +/area/space) +"vir" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/item/radio/intercom{ + pixel_y = -24 + }, +/obj/structure/bed/chair/sofa{ + dir = 1 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/bar) +"viC" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/glass/mining{ + name = "Mining Stroage"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/supply/mining, +/turf/simulated/floor/tiled, +/area/quartermaster/warehouse) +"viO" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/space) +"viX" = ( +/obj/structure/table/rack/shelf/steel, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/item/clothing/accessory/storage/pouches/large{ + pixel_y = -2 + }, +/obj/item/clothing/accessory/storage/pouches/large{ + pixel_y = -2 + }, +/obj/item/clothing/accessory/storage/pouches/large{ + pixel_y = -2 + }, +/obj/item/clothing/accessory/storage/pouches/large{ + pixel_y = -2 + }, +/obj/item/clothing/accessory/storage/pouches/large{ + pixel_y = -2 + }, +/obj/item/clothing/accessory/storage/pouches/large{ + pixel_y = -2 + }, +/obj/item/clothing/accessory/storage/pouches{ + pixel_x = 6; + pixel_y = 10 + }, +/obj/item/clothing/accessory/storage/pouches{ + pixel_x = 6; + pixel_y = 10 + }, +/obj/item/clothing/accessory/storage/pouches{ + pixel_x = 6; + pixel_y = 10 + }, +/obj/item/clothing/accessory/storage/pouches{ + pixel_x = -5; + pixel_y = 10 + }, +/obj/item/clothing/accessory/storage/pouches{ + pixel_x = -5; + pixel_y = 10 + }, +/obj/item/clothing/accessory/storage/pouches{ + pixel_x = -5; + pixel_y = 10 + }, +/obj/item/clothing/accessory/storage/pouches/large/navy{ + pixel_y = 3 + }, +/obj/item/clothing/accessory/storage/pouches/large/navy{ + pixel_y = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"vjl" = ( +/obj/effect/floor_decal/techfloor{ + dir = 5 + }, +/obj/structure/closet/firecloset, +/turf/simulated/floor/tiled, +/area/space) +"vjB" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/space) +"vjE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/qm) +"vjP" = ( +/obj/machinery/lathe/autolathe, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"vks" = ( +/obj/effect/floor_decal/techfloor{ + dir = 9 + }, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/bar) +"vkE" = ( +/obj/machinery/door/airlock/glass, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel, +/area/hallway/primary/port) +"vlr" = ( +/turf/simulated/wall/prepainted/security, +/area/space) +"vlz" = ( +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_4) +"vlV" = ( +/turf/simulated/floor/plating, +/area/maintenance/cargo) +"vmc" = ( +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/obj/item/radio/intercom{ + pixel_y = -24 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_3) +"vmw" = ( +/obj/structure/closet/cabinet, +/turf/simulated/floor/wood, +/area/crew_quarters/heads/hos) +"vmH" = ( +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"vmO" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/carpet/sblucarpet, +/area/crew_quarters/sleep/Dorm_2) +"vnb" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/Dorm_11) +"vnn" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"vny" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/bar) +"vnG" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "security_lockdown"; + name = "Security Blast Doors"; + opacity = 0 + }, +/obj/spawner/window/low_wall/reinforced/full, +/obj/effect/paint_stripe/darkred, +/turf/simulated/floor/plating, +/area/security/lobby) +"vnL" = ( +/turf/simulated/floor/carpet/sblucarpet, +/area/crew_quarters/sleep/Dorm_2) +"vov" = ( +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/obj/structure/curtain/open/bed{ + anchored = 1; + name = "curtain" + }, +/obj/effect/paint_stripe/palebottlegreen, +/turf/simulated/floor/plating, +/area/victory/surfacebase/bar_backroom) +"voG" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood, +/area/vacant/vacant_shop) +"voZ" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/bed/chair/shuttle, +/turf/simulated/floor/tiled/steel, +/area/shuttle/belter) +"vqq" = ( +/obj/machinery/mech_recharger, +/turf/simulated/floor/tiled, +/area/quartermaster/warehouse) +"vqJ" = ( +/turf/space/basic, +/area/security/detectives_office) +"vrn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/freezer) +"vrX" = ( +/obj/structure/shuttle/engine/heater{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/turf/simulated/shuttle/wall/voidcraft/green, +/area/victory/surfacebase/mining_main/eva) +"vsa" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/space) +"vtg" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/obj/machinery/camera/network/security, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/space) +"vtk" = ( +/obj/machinery/light, +/obj/structure/bed/chair/comfy/teal{ + dir = 4 + }, +/obj/item/radio/intercom{ + pixel_y = -24 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_7) +"vty" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging, +/turf/simulated/floor/reinforced/airless, +/area/space) +"vtX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/wood, +/area/space) +"vuo" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/simulated/floor/carpet/sblucarpet, +/area/quartermaster/foyer) +"vuy" = ( +/obj/structure/bed/chair/sofa{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/bar) +"vuG" = ( +/obj/machinery/shipsensors, +/turf/simulated/floor/airless, +/area/quartermaster/miningdock) +"vuJ" = ( +/obj/structure/cryofeed{ + dir = 2 + }, +/obj/machinery/camera/network/civilian, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/sleep/cryo) +"vvf" = ( +/obj/machinery/power/smes/buildable{ + RCon_tag = "Solar Farm - SMES 1" + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/sleep/Dorm_8) +"vvm" = ( +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/grass, +/area/space) +"vvp" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/table/rack, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/security/nuke_storage) +"vvs" = ( +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10, +/obj/machinery/shower{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/showers) +"vvt" = ( +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/monotile, +/area/victory/surfacebase/bar_backroom) +"vvP" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/effect/floor_decal/borderfloorblack/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/security/hallway) +"vvQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/warehouse) +"vwk" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central6, +/turf/simulated/floor/tiled, +/area/hydroponics) +"vws" = ( +/obj/structure/table/reinforced, +/obj/item/cell/high{ + maxcharge = 15000 + }, +/obj/item/cell/high{ + maxcharge = 15000 + }, +/obj/machinery/fire_alarm/east_mount, +/turf/simulated/floor/tiled, +/area/security/prison) +"vwu" = ( +/obj/machinery/smartfridge, +/turf/simulated/wall/prepainted/civilian, +/area/crew_quarters/kitchen) +"vww" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area_hallway) +"vwE" = ( +/obj/structure/bed/chair/sofa/right, +/obj/structure/window/basic{ + dir = 1 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/bar) +"vwS" = ( +/obj/structure/dispenser/oxygen, +/turf/simulated/floor/tiled, +/area/quartermaster/warehouse) +"vxW" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "mining_interior" + }, +/obj/machinery/light{ + dir = 8; + light_range = 12 + }, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/mining_main/refinery) +"vyT" = ( +/obj/machinery/mineral/output, +/obj/structure/window/reinforced, +/obj/machinery/conveyor{ + dir = 1; + id = "mining_interior" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/victory/surfacebase/mining_main/refinery) +"vzq" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/target_stake, +/turf/simulated/floor/tiled/old_tile/red, +/area/space) +"vAu" = ( +/turf/simulated/wall/r_wall/prepainted/cargo, +/area/victory/surfacebase/mining_main/uxstorage) +"vBf" = ( +/obj/machinery/fire_alarm/south_mount{ + pixel_y = -24 + }, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/space) +"vCj" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area_hallway) +"vCA" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 5 + }, +/turf/simulated/floor/reinforced/airless, +/area/space) +"vCU" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/corner_oldtile/white/diagonal, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/kitchen) +"vDq" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/toilet) +"vDu" = ( +/obj/effect/floor_decal/techfloor{ + dir = 10 + }, +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/machinery/atm{ + pixel_x = -33 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/security/lobby) +"vDv" = ( +/obj/structure/sink/kitchen{ + dir = 8; + name = "sink"; + pixel_x = 13 + }, +/obj/machinery/fire_alarm/east_mount, +/obj/item/reagent_containers/glass/rag/sponge, +/obj/effect/floor_decal/corner_oldtile/white/diagonal, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/kitchen) +"vDU" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/mining_main/refinery) +"vEb" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/crate/trashcart, +/obj/item/instrument/bikehorn, +/turf/simulated/floor/tiled, +/area/space) +"vEk" = ( +/obj/machinery/chem_master/condimaster, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/freezer) +"vEp" = ( +/obj/landmark/spawnpoint/job/detective, +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/space) +"vEz" = ( +/obj/machinery/power/apc/west_mount{ + cell_type = /obj/item/cell/super + }, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/structure/table/woodentable, +/obj/machinery/computer/security/telescreen{ + pixel_y = 32 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_6) +"vFB" = ( +/obj/machinery/door/firedoor/glass{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/door/airlock/glass/security{ + name = "Firing Range"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/security/department, +/turf/simulated/floor/tiled/old_tile/gray, +/area/space) +"vFG" = ( +/turf/space, +/area/space) +"vHa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/space) +"vHh" = ( +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/machinery/atmospherics/component/unary/vent_pump/on, +/turf/simulated/floor/tiled/monotile, +/area/victory/surfacebase/bar_backroom) +"vIT" = ( +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/obj/machinery/vending/loadout/costume, +/turf/simulated/floor/tiled/dark, +/area/vacant/vacant_shop) +"vIU" = ( +/obj/machinery/camera/network/cargo{ + dir = 8 + }, +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + frequency = 1380; + id_tag = "cargo_bay"; + pixel_x = 28 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/warehouse) +"vJD" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/maintenance/bar/lower) +"vKc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/wood, +/area/station/stairs_two) +"vLd" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock{ + id_tag = "dorm11"; + name = "Dorm 11" + }, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_6) +"vLy" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/machinery/status_display/supply_display{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/starboard) +"vMh" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/hallway/primary/port) +"vNc" = ( +/obj/structure/table/woodentable, +/obj/machinery/recharger, +/obj/machinery/air_alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/lino, +/area/space) +"vNt" = ( +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/machinery/dnaforensics, +/obj/machinery/camera/network/security{ + dir = 4 + }, +/turf/simulated/floor/tiled/old_cargo/white, +/area/security/detectives_office) +"vOk" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/monotile, +/area/prison/cell_block) +"vOA" = ( +/obj/machinery/washing_machine, +/turf/simulated/floor/tiled/white, +/area/space) +"vOD" = ( +/obj/structure/toilet{ + pixel_y = 10 + }, +/turf/simulated/floor/tiled/white, +/area/maintenance/dormitory) +"vOE" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hydroponics) +"vQf" = ( +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/sleep/cryo) +"vQs" = ( +/obj/item/radio/intercom{ + dir = 8; + pixel_x = -24 + }, +/obj/structure/table/steel, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/obj/item/clothing/accessory/armor/tag/nts{ + pixel_x = -5; + pixel_y = 10 + }, +/obj/item/clothing/accessory/armor/tag/nts{ + pixel_x = -5; + pixel_y = 7 + }, +/obj/item/clothing/accessory/armor/tag/nts{ + pixel_x = -5; + pixel_y = -2 + }, +/obj/item/clothing/accessory/armor/tag/nts{ + pixel_x = -5; + pixel_y = 1 + }, +/obj/item/clothing/accessory/armor/tag/nts{ + pixel_x = -5; + pixel_y = 4 + }, +/obj/item/clothing/accessory/armor/tag/nts{ + pixel_x = -5; + pixel_y = -5 + }, +/obj/item/clothing/accessory/armor/tag/ntc{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/clothing/accessory/armor/tag/ntc{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/clothing/accessory/armor/tag/ntbs{ + pixel_x = 5; + pixel_y = 1 + }, +/obj/item/clothing/accessory/armor/tag/ntbs{ + pixel_x = 5; + pixel_y = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"vSR" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/obj/item/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 26 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"vTg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/space) +"vUa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/bar) +"vUy" = ( +/obj/structure/table/woodentable, +/obj/machinery/computer/ship/navigation/telescreen{ + pixel_y = -37 + }, +/obj/item/instrument/trumpet, +/turf/simulated/floor/wood, +/area/space) +"vUZ" = ( +/obj/machinery/door/firedoor/glass{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/spawner/window/low_wall/reinforced/full, +/obj/effect/paint_stripe/darkred, +/turf/simulated/floor/plating, +/area/space) +"vVj" = ( +/obj/structure/table/woodentable, +/obj/item/book/manual/security_space_law, +/obj/item/flashlight/lamp/green{ + pixel_x = -5; + pixel_y = 2 + }, +/turf/simulated/floor/carpet, +/area/space) +"vVy" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/crate/secure/large/reinforced{ + anchored = 1; + desc = "A hefty, reinforced metal crate with an electronic locking system. It's securely bolted to the floor and cannot be moved."; + name = "gun safe"; + req_access = list(1) + }, +/turf/simulated/floor/tiled/dark, +/area/security/nuke_storage) +"vVU" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/security/security_processing) +"vWN" = ( +/obj/item/stool/padded, +/obj/effect/floor_decal/spline/fancy/wood, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/bar) +"vWU" = ( +/turf/simulated/wall/r_wall/prepainted/command, +/area/security/nuke_storage) +"vYG" = ( +/obj/machinery/door/firedoor{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"vYQ" = ( +/turf/simulated/wall/r_wall/prepainted/engineering, +/area/crew_quarters/recreation_area) +"vZO" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/bar) +"wan" = ( +/obj/structure/table/bench/padded, +/obj/landmark/spawnpoint/job/shaft_miner, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/mining_main/storage) +"wbI" = ( +/turf/simulated/floor/tiled/white, +/area/maintenance/bar/lower) +"wch" = ( +/turf/simulated/floor/holofloor/tiled/dark, +/area/hallway/primary/port) +"wcB" = ( +/obj/structure/table/steel, +/obj/item/flashlight/lamp, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/security/interrogation) +"wcN" = ( +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/white, +/area/space) +"wdy" = ( +/obj/item/stool/padded, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/bar) +"wdM" = ( +/turf/simulated/floor/carpet/turcarpet, +/area/crew_quarters/recreation_area_hallway) +"weX" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/catwalk, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance/engi{ + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/substation/civilian) +"weZ" = ( +/obj/landmark/observer_spawn, +/obj/effect/floor_decal/spline/fancy/wood, +/obj/structure/table/marble, +/obj/machinery/door/blast/shutters{ + id = "bar"; + name = "Bar Shutters" + }, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/bar) +"wfl" = ( +/turf/simulated/floor/carpet/purcarpet, +/area/crew_quarters/heads/hos) +"wfu" = ( +/obj/machinery/shower{ + pixel_y = 8 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/showers) +"wgh" = ( +/obj/machinery/door/firedoor/glass{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/red/border, +/obj/machinery/door/airlock/glass/security{ + name = "Brig"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/security/general, +/turf/simulated/floor/tiled/dark, +/area/space) +"wgv" = ( +/obj/random/trash_pile, +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/maintenance/cargo) +"wgF" = ( +/obj/item/radio/intercom{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/effect/floor_decal/corner_oldtile/white/diagonal, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/kitchen) +"whc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/effect/floor_decal/corner_oldtile/white/diagonal, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/kitchen) +"wiL" = ( +/turf/simulated/wall/r_wall/prepainted/cargo, +/area/quartermaster/warehouse) +"wjc" = ( +/turf/space/basic, +/area/space) +"wjt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/security/nuke_storage) +"wjD" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = -31 + }, +/turf/simulated/floor/tiled, +/area/space) +"wjT" = ( +/turf/space/basic, +/area/crew_quarters/fitness) +"wjU" = ( +/obj/machinery/power/apc/south_mount, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/structure/table/rack/shelf, +/obj/effect/floor_decal/techfloor/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/vacant/vacant_shop) +"wkw" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/airless, +/area/maintenance/dormitory) +"wlm" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/flora/pottedplant/fern, +/turf/simulated/floor/wood, +/area/vacant/vacant_shop) +"wmc" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/quartermaster/warehouse) +"wmf" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/camera/network/security{ + dir = 1 + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/prison/cell_block) +"wmr" = ( +/obj/machinery/computer/secure_data{ + dir = 1 + }, +/turf/simulated/floor/tiled/old_cargo/white, +/area/victory/surfacebase/tram) +"wmE" = ( +/obj/machinery/light_switch{ + pixel_x = 25 + }, +/obj/structure/dogbed, +/mob/living/simple_mob/animal/sif/fluffy, +/turf/simulated/floor/wood, +/area/quartermaster/qm) +"wni" = ( +/obj/machinery/fire_alarm/south_mount{ + pixel_y = -25 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"wnq" = ( +/obj/machinery/vending/security, +/obj/machinery/newscaster/security_unit{ + pixel_y = -32 + }, +/obj/machinery/light, +/obj/effect/floor_decal/corner/red/full{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/space) +"wnE" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/turf/simulated/floor/carpet/blucarpet, +/area/crew_quarters/showers) +"woa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/maintenance/dormitory) +"woO" = ( +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/machinery/power/apc/west_mount, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/maintenance/substation/cargo) +"wpe" = ( +/obj/machinery/fire_alarm/south_mount{ + pixel_y = -24 + }, +/obj/effect/floor_decal/techfloor, +/turf/simulated/floor/tiled/steel, +/area/hallway/primary/port) +"wpx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"wqn" = ( +/turf/simulated/floor/carpet/blucarpet, +/area/crew_quarters/showers) +"wqI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/landmark/spawnpoint/job/janitor, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark, +/area/space) +"wqQ" = ( +/obj/structure/table/woodentable, +/obj/structure/flora/pottedplant/fern, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_4) +"wrd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/map_helper/access_helper/airlock/station/supply/mining, +/obj/machinery/door/airlock/glass/mining{ + name = "Magmatic Rift Leap Pad"; + req_one_access = null + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"wre" = ( +/turf/space/basic, +/area/hydroponics) +"wsT" = ( +/obj/machinery/light, +/obj/machinery/fitness/punching_bag/clown, +/turf/simulated/floor/wood, +/area/space) +"wtL" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel, +/area/hallway/primary/port) +"wtS" = ( +/obj/machinery/fire_alarm/south_mount{ + pixel_y = -25 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lime/border, +/obj/structure/reagent_dispensers/watertank, +/obj/item/reagent_containers/glass/bucket, +/turf/simulated/floor/tiled, +/area/space) +"wue" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 10 + }, +/turf/simulated/floor/reinforced/airless, +/area/space) +"wuH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area_hallway) +"wuQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/security/security_processing) +"wuV" = ( +/obj/structure/bed/chair/comfy/teal, +/obj/machinery/light_switch{ + pixel_x = 25; + pixel_y = 7 + }, +/turf/simulated/floor/wood, +/area/space) +"wvw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/maintenance/dormitory) +"wvM" = ( +/obj/effect/floor_decal/corner/green{ + dir = 9 + }, +/obj/item/stool/padded, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"wxf" = ( +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"wxv" = ( +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/plating, +/area/space) +"wxD" = ( +/obj/machinery/light_switch{ + pixel_x = 25; + pixel_y = 7 + }, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/simulated/floor/wood, +/area/space) +"wxQ" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/crate, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"wxR" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/station/stairs_two) +"wya" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"wye" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"wym" = ( +/obj/machinery/door/firedoor/glass{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/glass/security{ + name = "Firing Range"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/security/department, +/turf/simulated/floor/tiled/old_tile/gray, +/area/space) +"wyR" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"wzk" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/maintenance/bar/lower) +"wzI" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"wzQ" = ( +/obj/structure/table/steel, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/security/hallway) +"wAB" = ( +/obj/structure/flora/pottedplant/stoutbush, +/obj/item/radio/intercom{ + pixel_y = -24 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hos) +"wBX" = ( +/obj/machinery/vending/security, +/obj/machinery/camera/network/security{ + dir = 4 + }, +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"wCi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/item/stool/padded, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/bar) +"wCm" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/bed/chair/sofa/black/left{ + dir = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/machinery/camera/network/civilian{ + dir = 1 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/bar) +"wCV" = ( +/obj/item/radio/intercom{ + pixel_y = -24 + }, +/obj/machinery/camera/network/security{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/security/lobby) +"wES" = ( +/obj/effect/floor_decal/techfloor, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/dogbed, +/turf/simulated/floor/tiled, +/area/space) +"wEU" = ( +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/turf/simulated/floor/plating, +/area/security/hallway) +"wFw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/space) +"wFL" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lime/border, +/obj/machinery/portable_atmospherics/hydroponics, +/turf/simulated/floor/tiled, +/area/space) +"wFN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/toilet) +"wFO" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/quartermaster/warehouse) +"wGB" = ( +/obj/structure/cable/green, +/obj/effect/floor_decal/corner/blue{ + dir = 6 + }, +/obj/machinery/power/apc/east_mount, +/turf/simulated/floor/tiled/dark, +/area/space) +"wGI" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/turf/simulated/floor/wood, +/area/space) +"wGM" = ( +/turf/space/basic, +/area/security/prison) +"wHy" = ( +/obj/structure/table/reinforced, +/obj/item/folder/yellow{ + pixel_y = -5 + }, +/obj/item/folder/blue{ + pixel_y = -3 + }, +/obj/item/folder/red, +/obj/item/storage/box/swabs{ + layer = 5 + }, +/obj/item/hand_labeler, +/turf/simulated/floor/tiled/old_cargo/white, +/area/security/detectives_office) +"wHH" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/space) +"wIB" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/machinery/atmospherics/component/unary/vent_pump/on, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/fire_alarm/north_mount, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/security/lobby) +"wJt" = ( +/obj/machinery/light_switch{ + name = "light switch "; + pixel_y = 26 + }, +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/turf/simulated/floor/wood, +/area/space) +"wJY" = ( +/obj/machinery/camera/network/command{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/security/nuke_storage) +"wKc" = ( +/obj/machinery/camera/network/civilian{ + dir = 1 + }, +/obj/machinery/power/apc/south_mount, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/dark, +/area/maintenance/bar/lower) +"wKj" = ( +/obj/machinery/computer/security{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/security/lobby) +"wKk" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hydroponics) +"wKL" = ( +/turf/simulated/wall/prepainted/civilian, +/area/space) +"wLu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/security/hallway) +"wLw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/maintenance/dormitory) +"wLD" = ( +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -23 + }, +/turf/simulated/floor/plating, +/area/space) +"wLS" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = -31 + }, +/obj/effect/floor_decal/techfloor, +/turf/simulated/floor/tiled, +/area/hallway/primary/starboard) +"wMo" = ( +/obj/machinery/fitness/heavy/lifter, +/turf/simulated/floor/wood, +/area/space) +"wME" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/space) +"wNN" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/bar) +"wOi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/red{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/space) +"wOo" = ( +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/Dorm_11) +"wPf" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/simulated/floor/airless, +/area/maintenance/dormitory) +"wQg" = ( +/obj/machinery/computer/ship/engines, +/turf/simulated/floor/airless, +/area/quartermaster/miningdock) +"wQh" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/crate, +/turf/simulated/floor/tiled/steel, +/area/space) +"wQE" = ( +/obj/structure/dogbed, +/obj/machinery/camera/network/civilian, +/obj/item/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 26 + }, +/mob/living/simple_mob/animal/passive/bird/ringneck_dove{ + desc = "The bartenders newest pet on the station. They seem like they want to help you out."; + name = "Brewster" + }, +/turf/simulated/floor/wood, +/area/space) +"wQX" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/carpet/sblucarpet, +/area/quartermaster/foyer) +"wRr" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/grass, +/area/space) +"wRx" = ( +/turf/simulated/floor/tiled/old_cargo/gray, +/area/space) +"wRQ" = ( +/obj/structure/bed/chair/comfy/teal, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_4) +"wRV" = ( +/obj/structure/bed/padded, +/obj/machinery/computer/ship/navigation/telescreen{ + pixel_y = -37 + }, +/obj/random/bedsheet, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_4) +"wSh" = ( +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/security/security_processing) +"wSQ" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/turf/simulated/floor/tiled, +/area/quartermaster/qm) +"wST" = ( +/obj/spawner/window/low_wall/full/firelocks/nogrille, +/obj/structure/curtain/black, +/obj/effect/paint_stripe/palebottlegreen, +/turf/simulated/floor/plating, +/area/vacant/vacant_shop) +"wTt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/space) +"wTG" = ( +/obj/item/stack/cable_coil/yellow, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/table/rack, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/sleep/Dorm_8) +"wUb" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/space) +"wUd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/fire_alarm/west_mount{ + pixel_x = -26 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/toilet) +"wUh" = ( +/obj/machinery/button/remote/airlock{ + id = "dorm1"; + name = "Room 1 Lock"; + pixel_x = -26; + pixel_y = -4; + specialfunctions = 4 + }, +/turf/simulated/floor/wood, +/area/maintenance/dormitory) +"wUy" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/glass/mining{ + name = "Mining Prep Room"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/supply/mining, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"wUB" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/door/window{ + desc = "Electric Hazard Behind. Enter at own risk"; + dir = 1; + name = "Electron Reservoir"; + req_one_access = list() + }, +/turf/simulated/floor/crystal, +/area/station/stairs_two) +"wUX" = ( +/obj/item/radio/intercom{ + pixel_y = -24 + }, +/obj/effect/floor_decal/borderfloor, +/obj/machinery/portable_atmospherics/hydroponics, +/turf/simulated/floor/tiled, +/area/space) +"wVH" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/space) +"wWd" = ( +/obj/machinery/camera/network/outside, +/turf/space, +/area/crew_quarters/sleep/Dorm_9) +"wWe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/carpet/sblucarpet, +/area/quartermaster/foyer) +"wWE" = ( +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/red/border, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"wXo" = ( +/obj/machinery/light_switch{ + pixel_x = -9; + pixel_y = 30 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_2) +"xah" = ( +/obj/structure/table/woodentable, +/obj/item/storage/box/glasses/meta, +/turf/simulated/floor/wood, +/area/space) +"xaz" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/bar) +"xaB" = ( +/obj/effect/floor_decal/corner/green{ + dir = 9 + }, +/obj/machinery/portable_atmospherics/hydroponics, +/turf/simulated/floor/tiled/dark, +/area/space) +"xaC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/red{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"xbR" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/bar) +"xcL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central6{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"xcM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/sleep/Dorm_10) +"xdl" = ( +/obj/landmark/spawnpoint/latejoin/station/cryogenics, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/sleep/cryo) +"xdn" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/holopad, +/turf/simulated/floor/tiled, +/area/hallway/primary/starboard) +"xfA" = ( +/obj/structure/table/steel, +/obj/item/radio/intercom{ + pixel_y = -24 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/item/storage/box/evidence{ + pixel_x = -7; + pixel_y = 4 + }, +/obj/item/pen/red{ + pixel_x = -7 + }, +/turf/simulated/floor/tiled, +/area/security/hallway) +"xfE" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass/security{ + name = "Visitation"; + req_one_access = null + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/map_helper/access_helper/airlock/station/security/department, +/turf/simulated/floor/tiled, +/area/crew_quarters/bar) +"xfO" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/table/rack, +/obj/item/clothing/ears/earmuffs/headphones, +/obj/item/clothing/ears/earmuffs/headphones, +/obj/item/clothing/ears/earmuffs/headphones, +/obj/item/clothing/ears/earmuffs/headphones, +/turf/simulated/floor/carpet, +/area/space) +"xfV" = ( +/obj/machinery/fitness/punching_bag/clown, +/turf/simulated/floor/tiled/dark, +/area/space) +"xgB" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner_oldtile/white/diagonal, +/obj/machinery/recipe_lookup/drinks{ + pixel_y = 32; + pixel_x = -32 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/bar) +"xgY" = ( +/turf/simulated/floor/wood, +/area/quartermaster/qm) +"xhI" = ( +/obj/structure/bed/chair/comfy/blue{ + dir = 4 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/bar) +"xio" = ( +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/map_helper/access_helper/airlock/station/mining_operations, +/obj/machinery/door/airlock/glass/mining{ + name = "Magmatic Rift Leap Pad"; + req_one_access = null + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"xiQ" = ( +/obj/machinery/vending/hydronutrients, +/turf/simulated/floor/tiled/techfloor, +/area/hydroponics) +"xiX" = ( +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/space) +"xjf" = ( +/obj/structure/closet/wardrobe, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/simulated/floor/wood, +/area/space) +"xjC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/closet/crate/trashcart, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/space) +"xjI" = ( +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "security_lockdown"; + name = "Security Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/firedoor/glass{ + dir = 8 + }, +/obj/spawner/window/low_wall/reinforced/full, +/obj/effect/paint_stripe/darkred, +/turf/simulated/floor, +/area/space) +"xjJ" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/structure/bed/chair/sofa/left, +/obj/structure/window/basic{ + dir = 1 + }, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/bar) +"xlD" = ( +/obj/structure/table/woodentable, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/station/stairs_two) +"xlH" = ( +/obj/machinery/power/solar, +/obj/structure/cable/yellow, +/turf/simulated/floor/airless, +/area/crew_quarters/sleep/Dorm_9) +"xlN" = ( +/obj/effect/floor_decal/corner/green{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"xlY" = ( +/turf/simulated/wall/r_wall/prepainted/engineering, +/area/crew_quarters/sleep/Dorm_1) +"xmk" = ( +/obj/machinery/recharge_station, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/toilet) +"xml" = ( +/turf/simulated/floor/tiled, +/area/space) +"xmA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/station/stairs_two) +"xnh" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/bar) +"xnG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/maintenance/dormitory) +"xod" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel, +/area/hallway/primary/port) +"xoC" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 32 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area_hallway) +"xoX" = ( +/obj/structure/sink{ + pixel_y = 22 + }, +/obj/structure/mirror{ + dir = 4; + pixel_y = 33 + }, +/obj/machinery/fire_alarm/west_mount{ + pixel_x = -24 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/toilet) +"xoY" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 8 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/space) +"xpH" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"xqe" = ( +/turf/simulated/wall/r_wall/prepainted/engineering, +/area/space) +"xqQ" = ( +/obj/structure/closet/secure_closet/miner, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"xqT" = ( +/obj/machinery/vending/loadout/uniform, +/turf/simulated/floor/tiled/dark, +/area/vacant/vacant_shop) +"xrc" = ( +/turf/simulated/wall/prepainted, +/area/maintenance/substation/cargo) +"xrJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/airlock/glass, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/station/stairs_two) +"xtn" = ( +/obj/structure/bed/chair/office/dark, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/security/interrogation) +"xtX" = ( +/turf/simulated/wall/prepainted, +/area/hallway/primary/port) +"xuj" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area_hallway) +"xvA" = ( +/obj/machinery/photocopier, +/obj/machinery/requests_console/preset/security{ + pixel_y = 30 + }, +/obj/machinery/light{ + dir = 8; + light_range = 12 + }, +/obj/item/radio/intercom/department/security{ + dir = 8; + pixel_x = -24 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/security/lobby) +"xvK" = ( +/turf/space/basic, +/area/security/brig) +"xwD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"xwF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner_oldtile/white/diagonal, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/kitchen) +"xxv" = ( +/obj/machinery/mineral/input, +/obj/effect/floor_decal/industrial/loading, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/quartermaster/warehouse) +"xxx" = ( +/obj/structure/table/rack/shelf/steel, +/obj/item/gun/energy/laser, +/obj/item/gun/energy/laser, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/red, +/turf/simulated/floor/tiled/dark, +/area/space) +"xxI" = ( +/obj/machinery/power/solar, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/simulated/floor/airless, +/area/crew_quarters/recreation_area) +"xyM" = ( +/obj/structure/grille, +/obj/structure/window/phoronreinforced/full{ + icon_state = "phoronwindow0" + }, +/turf/simulated/floor/reinforced/airless, +/area/space) +"xyS" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold/visible/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"xyU" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 5 + }, +/turf/simulated/floor/reinforced/airless, +/area/space) +"xzk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/sleep/cryo) +"xAR" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 6 + }, +/turf/simulated/floor/reinforced/airless, +/area/space) +"xCh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/crystal, +/area/station/stairs_two) +"xDo" = ( +/obj/machinery/papershredder, +/obj/machinery/power/apc/west_mount, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hos) +"xDu" = ( +/obj/structure/table/rack/shelf/steel, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/red, +/obj/item/clothing/suit/armor/pcarrier/riot{ + pixel_x = 5; + pixel_y = -2 + }, +/obj/item/clothing/suit/armor/pcarrier/riot{ + pixel_x = 5; + pixel_y = -2 + }, +/obj/item/clothing/suit/armor/pcarrier/riot{ + pixel_x = -5; + pixel_y = -2 + }, +/obj/item/clothing/suit/armor/pcarrier/riot{ + pixel_x = -5; + pixel_y = -2 + }, +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/obj/item/shield/riot{ + pixel_x = 11; + pixel_y = -3 + }, +/obj/item/shield/riot{ + pixel_x = 11; + pixel_y = -3 + }, +/obj/item/shield/riot{ + pixel_x = 11; + pixel_y = -3 + }, +/obj/item/shield/riot{ + pixel_x = 11; + pixel_y = -3 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"xDD" = ( +/obj/effect/floor_decal/corner/red, +/obj/structure/table/bench/padded, +/turf/simulated/floor/tiled, +/area/vacant/vacant_shop) +"xEP" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/gloves/sterile/latex, +/obj/item/reagent_containers/syringe, +/turf/simulated/floor/tiled/old_cargo/white, +/area/crew_quarters/heads/hos) +"xFI" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = -31 + }, +/obj/effect/floor_decal/corner/red{ + dir = 10 + }, +/obj/structure/table/steel_reinforced, +/obj/item/retail_scanner/security, +/turf/simulated/floor/tiled/dark, +/area/space) +"xGn" = ( +/obj/structure/closet/firecloset, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/station/stairs_two) +"xGx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 6 + }, +/turf/simulated/wall/r_wall/prepainted/engineering, +/area/space) +"xHo" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/light/small, +/obj/item/suit_cooling_unit, +/obj/item/suit_cooling_unit, +/obj/item/suit_cooling_unit, +/obj/item/suit_cooling_unit, +/obj/item/suit_cooling_unit, +/obj/machinery/suit_storage_unit/standard_unit, +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/Dorm_1) +"xHr" = ( +/turf/space/basic, +/area/security/forensics) +"xHw" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"xHC" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/wood, +/area/space) +"xHT" = ( +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/monotile, +/area/prison/cell_block) +"xJc" = ( +/obj/machinery/fire_alarm/east_mount, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/security/security_processing) +"xJN" = ( +/obj/landmark{ + name = "carpspawn" + }, +/turf/space, +/area/space) +"xKx" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/bar) +"xKN" = ( +/obj/structure/stairs/spawner/west, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"xKY" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/glass/security{ + name = "Security EVA"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/security/brig, +/turf/simulated/floor/tiled, +/area/security/prison) +"xLM" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/bar_backroom) +"xMQ" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central6, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"xMX" = ( +/obj/machinery/light, +/obj/structure/table/steel, +/obj/item/reagent_containers/glass/bucket/wood, +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/obj/effect/floor_decal/corner/green{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"xNy" = ( +/obj/machinery/photocopier, +/turf/simulated/floor/wood, +/area/security/hallway) +"xNR" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/sleep/Dorm_8) +"xNV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"xOq" = ( +/obj/machinery/holopad, +/obj/machinery/camera/network/security{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/bar_backroom) +"xOx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"xOE" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/freezer) +"xOY" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/holopad, +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area_hallway) +"xPR" = ( +/obj/machinery/power/apc/south_mount, +/obj/structure/cable/green, +/turf/simulated/floor/tiled/dark, +/area/security/prison) +"xQE" = ( +/obj/machinery/button/remote/airlock{ + id = "dorm9"; + name = "Room 9 Lock"; + pixel_x = 26; + pixel_y = -4; + specialfunctions = 4 + }, +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/turf/simulated/floor/wood, +/area/space) +"xSH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/monotile, +/area/space) +"xSK" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/mining_main/storage) +"xSR" = ( +/obj/structure/dispenser{ + phorontanks = 0 + }, +/turf/simulated/floor/tiled, +/area/space) +"xTI" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/carpet/blucarpet, +/area/space) +"xUj" = ( +/turf/simulated/wall/r_wall/prepainted/engineering, +/area/crew_quarters/sleep/Dorm_9) +"xUA" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/security{ + id_tag = "detdoor"; + name = "Forensics Lab"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/security/forensics, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/space) +"xUJ" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"xUZ" = ( +/obj/machinery/power/apc/west_mount, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/civilian) +"xVr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/toilet) +"xWL" = ( +/turf/simulated/floor/wood, +/area/hallway/primary/port) +"xXf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"xXC" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9 + }, +/turf/simulated/floor/carpet/blucarpet, +/area/space) +"xXX" = ( +/obj/effect/floor_decal/techfloor{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/bar) +"xYB" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central6{ + dir = 4 + }, +/obj/machinery/requests_console/preset/cargo{ + pixel_x = 30 + }, +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + frequency = 1380; + id_tag = "belter_docking"; + name = "Belting Dock Controller"; + pixel_x = 24; + pixel_y = 30; + req_one_access = list(13,31) + }, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/mining_main/refinery) +"xZC" = ( +/obj/machinery/button/remote/blast_door{ + id = "portnacelle_blastdoor"; + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"yaJ" = ( +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/machinery/power/smes/buildable{ + charge = 15000; + cur_coils = 3 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/airless, +/area/victory/surfacebase/mining_main/eva) +"yaM" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/maintenance/dormitory) +"yaR" = ( +/obj/machinery/holopad, +/turf/simulated/floor/tiled/monotile, +/area/security/hallway) +"ybi" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 4 + }, +/turf/simulated/floor/reinforced/airless, +/area/space) +"ybs" = ( +/obj/structure/toilet{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/toilet) +"ycp" = ( +/turf/simulated/floor/tiled, +/area/victory/surfacebase/mining_main/refinery) +"ycB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"ydc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/monotile, +/area/security/lobby) +"ydh" = ( +/obj/structure/closet/secure_closet/brig, +/turf/simulated/floor/tiled/techmaint, +/area/crew_quarters/bar) +"ydX" = ( +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/obj/machinery/camera/network/civilian, +/obj/structure/flora/pottedplant/smalltree, +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area_hallway) +"ydZ" = ( +/obj/structure/bed/chair/shuttle{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel, +/area/shuttle/belter) +"yex" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/maintenance, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/sleep/cryo) +"yeO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/effect/floor_decal/corner_oldtile/white/diagonal, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/kitchen) +"yfM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/carpet/sblucarpet, +/area/quartermaster/qm) +"yfP" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/space) +"ygj" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/mining_main/uxstorage) +"ygn" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/blue{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"ygX" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/bar) +"yhm" = ( +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "security_lockdown"; + name = "Security Blast Doors"; + opacity = 0 + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/machinery/door/firedoor/glass{ + dir = 8 + }, +/obj/spawner/window/low_wall/borosillicate/reinforced/full, +/obj/structure/curtain/black{ + anchored = 1 + }, +/obj/effect/paint_stripe/darkred, +/turf/simulated/floor, +/area/space) +"yhP" = ( +/turf/simulated/floor/tiled/steel, +/area/space) +"yhT" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/security/hallway) +"yiz" = ( +/turf/space/basic, +/area/bridge) +"yiB" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/fitness/punching_bag, +/turf/simulated/floor/wood, +/area/space) +"yjG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/landmark/spawnpoint/job/cargo_technician, +/turf/simulated/floor/tiled, +/area/quartermaster/warehouse) +"yjM" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"yke" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/bar) +"ykB" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/grass, +/area/space) +"ykQ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Detective"; + req_one_access = null + }, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "security_lockdown"; + name = "Security Blast Doors"; + opacity = 0 + }, +/obj/map_helper/access_helper/airlock/station/security/forensics, +/turf/simulated/floor/lino, +/area/space) +"ykU" = ( +/obj/structure/bed/chair/sofa/right, +/obj/structure/window/basic{ + dir = 1 + }, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/bar) +"ylm" = ( +/obj/structure/table/bench/steel, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/landmark/spawnpoint/job/security_officer, +/turf/simulated/floor/tiled/monotile, +/area/space) +"ylI" = ( +/obj/item/radio/intercom{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/wood, +/area/space) + +(1,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(2,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(3,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(4,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +omy +omy +omy +omy +omy +omy +omy +jkE +jkE +kvl +kvl +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +"} +(5,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +xJN +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +kvl +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +"} +(6,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +"} +(7,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +"} +(8,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +"} +(9,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +yiz +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +yiz +yiz +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +"} +(10,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +yiz +wGM +wjc +wjc +wjc +wjc +xvK +xvK +xvK +xvK +xvK +xvK +xvK +xvK +xvK +oEg +yiz +yiz +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +"} +(11,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +xvK +xvK +xvK +xvK +xvK +xvK +xvK +xvK +xvK +xvK +xvK +xvK +xvK +xvK +xvK +xvK +xvK +oEg +xvK +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +"} +(12,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +xvK +xvK +xvK +xvK +xvK +xvK +xvK +xvK +xvK +xvK +xvK +xvK +xvK +xvK +xvK +xvK +xvK +oEg +xvK +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(13,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +xvK +xvK +xvK +xvK +xvK +xvK +xvK +xvK +xvK +xvK +xvK +xvK +xvK +xvK +xvK +xvK +xvK +pAN +xvK +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(14,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +xvK +xvK +xvK +xvK +xvK +xvK +xvK +xvK +xvK +xvK +xvK +xvK +xvK +xvK +xvK +xvK +xvK +oEg +xvK +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +"} +(15,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +xvK +xvK +xvK +xvK +xvK +xvK +xvK +xvK +xvK +xvK +xvK +xvK +xvK +xvK +xvK +xvK +xvK +oEg +xvK +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +"} +(16,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +xvK +xvK +xvK +xvK +xvK +xvK +xvK +xvK +xvK +xvK +xvK +xvK +xvK +wjc +wjc +wjc +wjc +vFG +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +"} +(17,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +xvK +xvK +xvK +xvK +xvK +xvK +xvK +xvK +xvK +xvK +xvK +xvK +xvK +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +"} +(18,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +xvK +xvK +xvK +xvK +xvK +xvK +xvK +xvK +xvK +xvK +xvK +xvK +xvK +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +"} +(19,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +omy +jkE +kvl +jkE +jkE +vFG +vFG +jkE +jkE +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +xvK +xvK +xvK +xvK +xvK +xvK +xvK +xvK +xvK +xvK +xvK +xvK +xvK +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +"} +(20,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +fiH +coJ +jkE +jkE +jkE +jkE +coJ +coJ +coJ +smZ +ilS +coJ +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +xvK +xvK +xvK +xvK +xvK +xvK +xvK +oEg +oEg +oEg +oEg +oEg +oEg +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +"} +(21,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +gkv +wjc +gkv +vFG +vFG +lcj +vFG +vFG +lcj +jkE +wjc +gkv +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +iIG +wjc +vFG +vFG +vFG +vFG +vFG +iIG +iIG +iIG +iIG +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +yhm +kNF +coJ +coJ +coJ +leY +ilS +coJ +coJ +eFO +gag +wvM +aLL +xaB +coJ +coJ +coJ +coJ +coJ +coJ +coJ +eOi +coJ +coJ +wjc +wjc +wjc +wjc +wjc +wjc +wjc +xvK +xvK +xvK +xvK +xvK +xvK +xvK +oEg +oEg +oEg +oEg +oEg +oEg +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +jkE +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(22,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +xqe +xqe +xqe +xqe +gtC +vFG +vFG +gtC +vFG +vFG +jkE +wjc +gkv +gkv +gkv +gkv +gkv +jkE +jkE +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +iIG +iIG +iIG +iIG +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +xfO +fNA +cca +rUe +fVI +cPf +tdS +exw +coJ +hBA +giN +wRr +iZN +ehz +coJ +coJ +coJ +coJ +coJ +coJ +coJ +coJ +coJ +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +omy +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(23,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +xqe +xqe +xqe +xqe +gtC +vFG +vFG +gtC +vFG +vFG +jkE +wjc +gkv +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +iIG +iIG +iIG +iIG +wjc +wjc +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +pbJ +irZ +paa +paa +chV +chV +paa +irZ +paa +chV +chV +paa +paa +paa +chV +coJ +bkT +kYD +kYD +jlz +nzi +fdX +fXG +cdS +ngv +jRS +ykB +ddJ +vvm +biT +coJ +wjc +coJ +fTz +man +wjc +coJ +coJ +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +omy +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(24,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +xqe +xqe +xqe +xqe +kyZ +oHh +dkj +oHh +oHh +cjh +gkv +wjc +gkv +wjc +wjc +wjc +wjc +bhB +ecY +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +iIG +iIG +iIG +wjc +wjc +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +pbJ +tPv +mSt +qHn +ada +nKA +vwE +mSt +hda +ada +nSx +ykU +mSt +eCS +paa +coJ +hzQ +wME +uxu +nyy +nzi +brs +xfV +rwl +vYG +xlN +fsB +lhA +kBs +cbr +coJ +wjc +coJ +bCK +coJ +wjc +coJ +coJ +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +omy +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(25,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +xqe +xqe +xqe +xqe +rNW +tWi +aTb +xqe +ctF +xqe +wjc +gkv +gkv +gkv +gkv +gkv +dMY +mWK +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +iIG +iIG +iIG +wjc +wjc +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +pbJ +liT +eCr +vuy +exQ +nKA +geU +jBi +mZd +boB +gsO +hTh +eCr +iTQ +paa +coJ +lSh +fLr +uxq +qot +qot +nMe +mOI +mOI +bqC +bED +jhP +rjI +sje +pSh +coJ +wjc +wjc +wjc +wjc +wjc +coJ +coJ +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +omy +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(26,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +xqe +xqe +xqe +dKP +qQK +fGo +xqe +xqe +xqe +wjc +gkv +wjc +wjc +wjc +wjc +vil +lyC +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +iIG +iIG +wjc +wjc +vFG +vFG +vFG +vFG +wjc +wjc +wjc +pbJ +rff +rff +rNs +rNs +rNs +rNs +chV +chV +uhh +tmh +nNR +fpl +xaz +drN +tqQ +bUg +gzH +rpY +xjJ +iqZ +cVH +vov +eAa +joe +fnw +fnw +bIg +xOq +iUt +otr +otr +vlr +vlr +vlr +coJ +coJ +coJ +coJ +wjc +wjc +wjc +wjc +wjc +coJ +coJ +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +omy +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +"} +(27,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +xqe +xqe +evX +cwK +imT +aoq +hfF +xqe +xqe +wjc +gkv +wjc +wjc +wjc +wjc +vil +mWK +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wKL +aoS +aoS +bOp +szl +thP +fgu +jbv +bQy +vgo +vgo +vgo +vgo +vgo +vgo +vgo +rul +vgo +vgo +vgo +vgo +vgo +osR +eAa +vvt +tSp +tSp +sft +rKt +qTR +otr +otr +qMQ +vlr +coJ +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +coJ +coJ +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +omy +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +"} +(28,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +xqe +xqe +evX +xyS +uLV +qQK +hfF +xqe +xqe +xqe +gkv +wjc +wjc +wjc +wjc +vil +lyC +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wKL +pcp +aoS +mcG +mcG +wzk +fgu +xhI +vny +cFz +sVe +bIK +nKJ +nKJ +nKJ +nKJ +teb +vgo +vgo +vgo +vgo +qJn +osR +eAa +gST +tSp +tSp +xLM +ery +xKx +otr +otr +cEV +vlr +coJ +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +coJ +coJ +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +omy +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +"} +(29,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +xqe +xqe +xqe +tlx +hQg +uLV +xqe +xqe +xqe +xqe +gkv +wjc +wjc +wjc +wjc +vil +mWK +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wKL +aoS +aoS +mcG +ifA +hQC +fgu +nvl +yke +vgo +foH +nff +teq +mht +teq +mht +hra +vgo +vgo +ojq +qQk +wCm +osR +eAa +eKv +qmt +vHh +rmM +rNI +men +itV +otr +aKP +vlr +coJ +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +coJ +coJ +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +omy +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +"} +(30,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +xqe +xqe +xqe +kPQ +jpd +fGo +dxs +dxs +xqe +xqe +gkv +gkv +gkv +gkv +gkv +dMY +lyC +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wKL +wQE +mof +sKe +onm +jNJ +fgu +sFY +yke +uFJ +rZC +tQM +aOd +oJx +aOd +ggD +fnN +vgo +vgo +ltT +mSt +dFK +osR +eAa +tnh +aYH +okB +uqa +lbN +iTp +otr +noF +xml +rjt +coJ +wjc +wjc +coJ +coJ +coJ +coJ +coJ +coJ +coJ +coJ +coJ +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +omy +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +"} +(31,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +xqe +xqe +xqe +vSR +iFe +muO +dxs +btB +xqe +xqe +xqe +wjc +wjc +wjc +wjc +lLM +aWO +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +wjc +jSe +jSe +gLM +gLM +gLM +gLM +gLM +gVX +fgu +xbR +xnh +mQm +pJB +akl +hNG +fiA +lzn +enq +veV +chU +xXf +tPV +jBi +vir +osR +eAa +rnP +rnP +eAa +eAa +rBm +rVo +qHu +qHu +coJ +coJ +coJ +wjc +wjc +coJ +coJ +coJ +coJ +coJ +coJ +coJ +coJ +coJ +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +xHr +xHr +xHr +xHr +xHr +inU +inU +inU +inU +wjc +wjc +wjc +wjc +wjc +wjc +jkE +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +"} +(32,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +xqe +xqe +xGx +tVp +qDX +dxs +dxs +rav +xqe +gRd +xqe +xqe +wjc +wjc +wjc +vFG +vil +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +wjc +wjc +vFG +jSe +jSe +jSe +jSe +jSe +jSe +jSe +jSe +oSN +chU +mQt +ofR +pJB +bAU +thn +dzb +lzn +weZ +wCi +eUo +vgo +pfl +tmh +deg +gLM +qHu +mft +mft +mft +mft +mpF +amn +qHu +dnz +man +wjc +wjc +pjd +pTI +coJ +nzi +vzq +nzi +nzi +vzq +nzi +coJ +coJ +coJ +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +xHr +xHr +xHr +xHr +xHr +inU +inU +inU +inU +inU +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +coJ +coJ +coJ +coJ +coJ +wjc +wjc +wjc +wjc +"} +(33,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +xqe +xqe +gBe +kVE +qNW +ycB +pvJ +qWj +umU +uGe +gRd +xqe +wjc +wjc +wjc +vFG +vil +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +wjc +wjc +wjc +jSe +jSe +jSe +jSe +jSe +jSe +jSe +jSe +mWb +jST +pPT +cwP +bdq +xgB +emE +eLP +emE +ffS +akf +qGC +fcn +fcn +uNd +blC +gLM +jSe +ydh +ydh +rEN +dxg +lvf +wNN +qHu +qaD +coJ +wjc +wjc +pjd +pTI +coJ +xml +sZT +xml +xml +qCU +xml +coJ +coJ +coJ +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +xHr +xHr +xHr +xHr +xHr +inU +inU +inU +inU +inU +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +eKI +lXR +bPf +opE +dxS +wjc +wjc +wjc +wjc +"} +(34,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +xqe +xqe +gBe +iiK +cGe +rPE +dxs +dxs +hZb +wUb +gRd +xqe +xqe +wjc +wjc +vFG +vil +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +wjc +wjc +jSe +eUw +xXX +gLM +gLM +fgu +fgu +fgu +gLM +mLk +jsg +vgo +sLV +teq +teq +igs +mht +nff +fnN +nmB +vgo +vgo +vgo +sEg +gLM +jSe +jqp +oPw +oPw +xfE +hHw +vZO +ayj +soA +pWM +wjc +wjc +pjd +pTI +coJ +xml +sJp +xml +xml +iAa +xml +coJ +coJ +coJ +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +xHr +xHr +xHr +xHr +xHr +inU +inU +inU +inU +inU +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +kIl +dDm +ohJ +ioi +cAi +wjc +wjc +wjc +wjc +"} +(35,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +xqe +xqe +xqe +gBe +xZC +ptA +jvU +hLm +xqe +xqe +wUb +gRd +gRd +xqe +gkv +gkv +jkE +dMY +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +wjc +wjc +wjc +wjc +wKL +wKL +wKL +rck +qqz +qqz +fgu +gLM +kKR +vWN +vgo +jso +jKZ +ikn +ikn +ikn +ikn +vUa +nmB +vgo +qxE +bIK +rfy +tft +bfv +mGz +mGz +ydh +mft +slX +ygX +ohZ +kRt +iLP +wjc +wjc +pjd +pTI +coJ +xml +wVH +hUD +xml +mDS +xml +coJ +coJ +coJ +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +xHr +xHr +xHr +xHr +xHr +inU +inU +inU +inU +inU +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +coJ +coJ +xjI +coJ +coJ +wjc +wjc +wjc +wjc +"} +(36,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +xqe +xqe +xyM +tnm +qmb +ilv +don +xyM +xyM +xqe +wUb +gRd +gRd +xqe +wjc +wjc +vFG +vil +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +wjc +wjc +wjc +wjc +wKL +eJf +fQi +iHN +izW +hBs +ljQ +gLM +mYh +wdy +vgo +vgo +vgo +vgo +vgo +vgo +vgo +rul +nmB +vgo +jso +jKZ +jIs +tft +bfv +gxS +gxS +qHu +mft +qHu +qHu +qHu +lQH +pTI +wjc +wjc +pjd +pTI +coJ +nnD +kwx +xml +xml +kwx +jfT +coJ +coJ +coJ +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +xHr +xHr +xHr +xHr +xHr +inU +inU +inU +inU +inU +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +"} +(37,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +xqe +xqe +xyM +sUc +ivS +vCA +qfp +xyU +xyM +xqe +wUb +gRd +gRd +xqe +xqe +wjc +vFG +vil +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +wjc +wjc +wjc +wjc +wKL +wKL +wKL +wcN +vJD +wbI +wbI +cax +vgo +dzl +vgo +eBA +eBA +eBA +eBA +iQw +nXY +fCs +lco +fcn +fQF +fcn +gLM +tft +tft +tft +tft +tft +tft +tft +gLM +gLM +gLM +wKL +wKL +wjc +pjd +pTI +coJ +rrG +xml +xml +xml +xml +xml +coJ +coJ +coJ +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +xHr +xHr +xHr +xHr +xHr +inU +inU +inU +inU +inU +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +"} +(38,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +xqe +xqe +xyM +ybi +ybi +wue +kqu +fMX +xyM +xqe +wUb +gRd +gRd +gRd +xqe +wjc +vFG +vil +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wKL +sFq +pXB +lwl +syh +gIa +wbI +rKF +rKF +lFu +tGf +kOc +jKx +kOc +kOc +mbi +rKF +vks +pXS +bzQ +gLM +gLM +gLM +bfv +bfv +bfv +bfv +bfv +bfv +bfv +jSe +drw +jSe +wjc +coJ +wjc +pjd +pTI +coJ +rrG +xml +xml +xml +xml +xml +coJ +coJ +coJ +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +xHr +xHr +xHr +xHr +xHr +inU +inU +inU +inU +inU +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +"} +(39,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +xqe +xqe +xyM +wue +vty +kqu +kqu +xyU +xyM +xqe +wUb +gRd +gRd +gRd +xqe +xqe +jkE +lyC +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wKL +wKL +wKL +wKL +fgu +fgu +fgu +rKF +kdx +rCS +sGF +dOz +nnO +eLn +eLn +lsa +rKF +lGC +fLt +ggC +pSE +bfv +bfv +bfv +bfv +bfv +bfv +bfv +bfv +bfv +wjc +wjc +wjc +wjc +coJ +coJ +pjd +mWM +coJ +cdP +fhg +cdP +cdP +fmE +nJr +coJ +coJ +coJ +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +xHr +xHr +xHr +xHr +inU +inU +inU +inU +inU +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +"} +(40,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +xqe +xqe +xyM +xAR +dkD +kqu +kqu +fMX +xyM +xqe +wUb +gRd +gRd +gRd +gRd +xqe +xqe +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +uYk +uYk +uYk +rKF +tgq +aBz +wgF +xwF +vCU +eLn +eLn +rqb +rKF +qja +fLt +oza +tft +bfv +bfv +bfv +bfv +bfv +bfv +bfv +bfv +bfv +wjc +wjc +wjc +wjc +wjc +coJ +pjd +mWM +coJ +vcI +wHH +mSY +jCb +sfT +fjr +coJ +coJ +coJ +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +inU +inU +inU +inU +inU +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +"} +(41,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +xqe +xqe +xyM +wue +dkD +kqu +kqu +xyU +xyM +xqe +wUb +gRd +gRd +gRd +gRd +gRd +xqe +xqe +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +uYk +uYk +uYk +rKF +rKF +mHU +rKF +hkU +hkU +dLK +gVO +jZh +rKF +gvp +eYf +eUt +tkN +rWH +rWH +rWH +rWH +rWH +rWH +rWH +rWH +rWH +wjc +wjc +wjc +wjc +wjc +coJ +pjd +mWM +coJ +uMv +nlt +pgN +sEK +shK +txm +coJ +coJ +coJ +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +inU +inU +inU +inU +inU +wjc +wjc +wjc +wjc +wjc +jkE +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +coJ +cDK +bFt +jPY +coJ +coJ +coJ +coJ +fiH +wjc +"} +(42,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +xqe +xqe +xyM +xyM +fAe +kqu +kqu +fMX +xyM +xqe +wUb +gRd +gRd +gRd +gRd +gRd +cQu +gpC +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +uYk +uYk +uYk +rKF +eXW +oFR +qij +eLn +eLn +eLn +eLn +jGm +sKM +qja +lyu +nMB +jlq +fyF +bpt +yaM +hGR +nHR +nHR +nHR +nHR +cEl +wjc +wjc +wjc +wjc +wjc +coJ +pjd +mWM +coJ +lJl +wym +coJ +coJ +vFB +aBI +coJ +coJ +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +inU +inU +inU +inU +inU +wjc +wjc +wjc +wjc +wjc +omy +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +coJ +qUa +ogo +vsa +nYa +dBz +obp +coJ +coJ +wjc +"} +(43,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +xqe +xqe +xqe +xyM +xyM +xyM +xyM +xyM +xyM +xqe +dql +feU +feU +feU +feU +feU +dgh +gRd +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +uYk +uYk +uYk +rKF +iZT +bWP +oXi +nsn +whc +eSu +pNr +jGm +sKM +qja +eTR +lHg +hll +hll +hll +hll +hll +hll +hll +hll +hll +hll +wKL +wKL +wjc +wjc +wjc +coJ +pjd +mWM +wjc +wjc +wjc +wjc +coJ +coJ +coJ +coJ +wjc +wjc +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +omy +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +coJ +aHL +ntA +xSH +wxf +cot +nCt +uRS +coJ +wjc +"} +(44,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +xqe +xqe +xqe +xqe +xqe +xqe +xqe +xqe +xqe +xqe +gRd +gRd +gRd +gRd +gRd +gRd +xoY +gRd +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +uYk +uYk +uYk +rKF +cZG +ipx +pFM +jSb +tZw +ucC +eLn +jGm +sKM +kSb +poB +pOC +hll +evJ +oEW +tJl +fqt +kYe +eYI +gBW +wKk +tJl +qgG +wKL +wjc +wjc +wjc +coJ +pjd +mWM +wjc +wjc +wjc +wjc +coJ +coJ +wjc +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +omy +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +coJ +pDg +tqK +jsr +jZl +dBz +cIn +nCt +coJ +wjc +"} +(45,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +xqe +xqe +xqe +gRd +gRd +gRd +gRd +gRd +gRd +gRd +gRd +gRd +gRd +gRd +gRd +gPC +piw +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +uYk +uYk +uYk +rKF +qxm +dhE +oJn +bmO +mgr +dWK +eLn +jGm +sKM +qja +ame +ggC +kVe +fJu +dyR +vwk +fEg +qit +bRJ +dyR +bRJ +dyR +iBu +wKL +wjc +wjc +wjc +coJ +pjd +mWM +coJ +coJ +coJ +coJ +coJ +coJ +wjc +vFG +vFG +vFG +vFG +coJ +coJ +coJ +coJ +coJ +coJ +coJ +coJ +coJ +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +omy +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wxf +dBz +dBz +cot +coJ +wjc +"} +(46,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +xqe +xqe +xqe +gRd +gRd +gRd +gRd +gRd +gRd +gRd +gRd +gRd +gRd +lXv +gRd +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +lKl +cKF +cKF +cKF +lKl +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +uYk +uYk +uYk +rKF +kAU +jui +tmT +eIx +eLn +eSu +eLn +jGm +sKM +qja +xcL +ggC +aCx +hcP +qit +dyR +fEg +aqa +bRJ +dyR +bRJ +dyR +wtS +wKL +wjc +wjc +wjc +coJ +pjd +mWM +coJ +kbF +bdR +qSI +uxk +coJ +wjc +wjc +wjc +wjc +wjc +coJ +coJ +coJ +coJ +hSj +coJ +coJ +coJ +coJ +coJ +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +jkE +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +sSF +xMX +dBz +psU +coJ +wjc +"} +(47,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +xqe +xqe +gRd +gRd +gRd +gRd +gRd +gRd +gRd +gRd +gRd +hZY +gRd +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +lKl +owe +nji +sjT +lKl +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +uYk +uYk +uYk +rKF +ejW +yeO +iZZ +iZZ +iZZ +iZZ +iZZ +cXJ +lsK +jwg +llw +ggC +sCK +hcP +aqa +sSS +fEg +aqa +bRJ +dyR +bRJ +dyR +hjB +wKL +wjc +wjc +wjc +coJ +pjd +mWM +coJ +tIe +xml +xml +kct +coJ +wjc +wjc +wjc +wjc +wjc +coJ +coJ +coJ +fhP +aWJ +lJV +coJ +coJ +coJ +coJ +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +omy +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +"} +(48,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +xqe +xqe +xqe +gRd +gRd +gRd +gRd +gRd +gRd +gRd +gRd +gbL +vjB +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +lKl +kna +dPS +lPz +lKl +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +uYk +uYk +uYk +jfm +eLn +bfC +vDv +tDs +bTK +bTK +uRs +hMk +vwu +qja +gqX +ggC +kVe +hcP +aqa +dyR +fEg +jmI +bRJ +dyR +bRJ +dyR +eGX +wKL +wjc +wjc +wjc +coJ +pjd +mWM +coJ +rot +xml +ovx +jXT +coJ +wjc +wjc +wjc +wjc +wjc +coJ +coJ +coJ +bCg +iam +lOP +bpV +coJ +coJ +coJ +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +omy +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +"} +(49,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +xqe +xqe +xqe +gRd +gRd +gRd +gRd +gRd +gRd +xoY +nYQ +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +fCu +wjc +wjc +lKl +oqY +yhP +yhP +lKl +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +uYk +uYk +uYk +nXl +nXl +hzo +nXl +nXl +nXl +nXl +nXl +rKF +rKF +nlO +auI +qJK +nuo +rXf +qlP +gXa +sBt +ekN +rbz +biZ +biZ +biZ +aNO +kxc +wjc +wjc +wjc +coJ +pjd +mWM +coJ +gSK +xml +eBI +uke +coJ +wjc +wjc +wjc +wjc +wjc +coJ +coJ +coJ +coJ +axq +coJ +coJ +coJ +coJ +coJ +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +sqj +sqj +sqj +sqj +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +omy +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +coJ +kuN +pEa +uVm +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +"} +(50,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +xqe +xqe +gRd +gRd +gRd +gRd +gRd +gRd +kmQ +gRd +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +fCu +wjc +wjc +lKl +wQh +yhP +yhP +lKl +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +uYk +uYk +uYk +uYk +uYk +uYk +uYk +nXl +uGb +vrn +qll +fCW +uJP +gtg +gtg +rKF +rKF +qXp +sEy +rtl +kVe +ukA +eJR +gcn +aoL +dyR +gJg +dyR +gJg +dyR +wFL +wKL +wjc +wjc +wjc +coJ +pjd +mWM +coJ +coJ +iVr +sZT +xSR +coJ +wjc +wjc +wjc +wjc +wjc +coJ +muz +qQj +cyv +spT +dFd +ulX +veG +coJ +coJ +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +sqj +sqj +sqj +sqj +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +jkE +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +kyx +kBF +pbY +gLx +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +"} +(51,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +xqe +gRd +gRd +gRd +gRd +gRd +gRd +xoY +gRd +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +jkE +jkE +vFG +vFG +fCu +vFG +wjc +oRa +lfz +yhP +kDi +lKl +wjc +wjc +wjc +dTY +dTY +dTY +dTY +dTY +wjc +uYk +uYk +uYk +uYk +uYk +uYk +uYk +nXl +pKn +vgg +gIQ +xOE +gtg +gtg +guU +fNe +fNe +tzh +nQt +tzh +hll +hll +hll +hEf +vOE +cCp +gJg +dyR +bRJ +dyR +wUX +wKL +wjc +wjc +wjc +coJ +pjd +mWM +pYo +coJ +xml +jiH +riv +coJ +wjc +wjc +wjc +wjc +wjc +coJ +tMv +rOX +aEf +spT +iWR +feT +fMn +coJ +coJ +wjc +wjc +wjc +ojg +ojg +ojg +ojg +ojg +ojg +wjc +wjc +sqj +sqj +sqj +sqj +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +omy +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +iiJ +nFa +eHe +rit +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +"} +(52,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +xqe +gRd +gRd +gRd +gRd +gRd +gRd +xoY +gRd +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +jkE +jkE +vFG +vFG +vFG +fCu +fCu +wjc +lKl +rFC +yhP +icW +lKl +wjc +wjc +wjc +dTY +dTY +dTY +dTY +dTY +wjc +uYk +uYk +uYk +uYk +uYk +uYk +uYk +nXl +nAY +ofH +uYl +lwr +gtg +hEl +fNe +feZ +mJM +rBD +qrg +rgJ +mJM +feZ +fNe +xiQ +mOH +hWc +dyR +dyR +dyR +dyR +eGX +wKL +wjc +wjc +wjc +coJ +pjd +mWM +jhV +xKY +gCm +lcc +qIv +ryB +wGM +wGM +wGM +wjc +wjc +coJ +qwv +nzi +xxx +spT +oTE +nzi +qEJ +coJ +coJ +wjc +wjc +wjc +ojg +ojg +ojg +ojg +ojg +ojg +wjc +wjc +sqj +sqj +sqj +sqj +sqj +sqj +sqj +sqj +sqj +sqj +wjc +wjc +wjc +omy +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +oFA +tCW +eph +gYF +wjc +wjc +wjc +wjc +wjc +coJ +vFG +vFG +vFG +"} +(53,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +xqe +gRd +gRd +gRd +gRd +gRd +gRd +lXv +gRd +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +jkE +vFG +vFG +vFG +vFG +vFG +fCu +wjc +lKl +mMB +yhP +icW +lKl +wjc +wjc +wjc +dTY +dTY +dTY +dTY +dTY +wjc +uYk +uYk +uYk +uYk +uYk +uYk +uYk +nXl +nAY +lSo +uYl +lwr +lSo +vEk +fNe +xKN +nNq +qja +agu +ggC +lZK +xKN +fNe +tpb +ozN +kDN +kAJ +bRJ +bRJ +nJt +eGX +wKL +wjc +wjc +wjc +coJ +pjd +mWM +xPR +ryB +kOm +rpu +vws +ryB +wGM +wGM +wGM +wjc +wjc +coJ +xDu +nzi +llU +tXi +hZf +nzi +riR +coJ +coJ +wjc +wjc +wjc +ojg +ojg +ojg +ojg +ojg +ojg +wjc +wjc +sqj +sqj +sqj +sqj +sqj +sqj +sqj +sqj +sqj +sqj +wjc +wjc +wjc +omy +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +coJ +nxu +huS +faW +wjc +wjc +wjc +wjc +wjc +kvl +vFG +vFG +vFG +"} +(54,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +xqe +gRd +gRd +gRd +gRd +gRd +gRd +gPC +gRd +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +jkE +vFG +vFG +wjc +wjc +wjc +fCu +gEh +dzk +dzk +dzk +dzk +lKl +wjc +wjc +wjc +dTY +dTY +dTY +dTY +dTY +wjc +uYk +uYk +uYk +uYk +uYk +uYk +uYk +nXl +nXl +nXl +nXl +nXl +nXl +fNe +dkF +fLt +aor +kSb +owd +mqK +dGz +ocy +fNe +fNe +hll +hll +hll +hll +hll +hll +wKL +wKL +wjc +wjc +wjc +coJ +pjd +mWM +ryB +ryB +ryB +ryB +ryB +wGM +wGM +wGM +wGM +wjc +coJ +coJ +sfg +eic +hdq +cmk +ltj +pnJ +awR +coJ +coJ +wjc +wjc +wjc +ojg +ojg +ojg +ojg +ojg +ojg +wjc +wjc +sqj +sqj +sqj +sqj +sqj +sqj +sqj +sqj +sqj +sqj +wjc +wjc +wjc +omy +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +coJ +kBF +pbY +moO +wjc +wjc +wjc +wjc +wjc +hsB +vFG +vFG +vFG +"} +(55,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +xqe +gRd +gRd +gRd +gRd +gRd +gRd +xoY +gRd +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +jkE +vFG +vFG +wjc +wjc +wjc +fCu +gEh +qWi +uOJ +npR +uOJ +vFG +wjc +wjc +wjc +dTY +dTY +dTY +dTY +dTY +wjc +uYk +uYk +uYk +uYk +uYk +uYk +uYk +uYk +uYk +wjc +wjc +wjc +wjc +wjc +wjc +rOw +vMh +jwg +pkq +ggC +xWL +jlL +dnx +hkB +wre +wre +wre +wre +wre +wre +wjc +wjc +wjc +wjc +wjc +coJ +pTI +mWM +gTv +ryB +ryB +wGM +wGM +wGM +wGM +wGM +wGM +coJ +coJ +coJ +coJ +coJ +gYl +uBn +kzC +coJ +coJ +coJ +wjc +wjc +wjc +wjc +ojg +ojg +ojg +ojg +ojg +ojg +wjc +wjc +sqj +sqj +sqj +sqj +sqj +sqj +sqj +sqj +sqj +wjc +wjc +wjc +wjc +omy +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +coJ +coJ +fvf +dMS +wjc +wjc +wjc +wjc +wjc +jkE +vFG +vFG +vFG +"} +(56,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +xqe +gRd +gRd +gRd +gRd +gRd +gRd +kmQ +fgb +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +omy +vFG +vFG +wjc +wjc +wjc +fCu +gEh +gEh +gEh +gEh +gEh +wjc +wjc +wjc +wjc +dTY +dTY +dTY +dTY +dTY +wjc +uYk +uYk +uYk +uYk +uYk +uYk +uYk +uYk +uYk +wjc +wjc +wjc +wjc +wjc +wjc +eUx +xWL +qja +gqX +ggC +xWL +jnl +oNU +hkB +wre +wre +wre +wre +wre +wre +wjc +wjc +wjc +wjc +wjc +coJ +pTI +mWM +gTv +gTv +ryB +ryB +ryB +ryB +ryB +ryB +ryB +coJ +coJ +coJ +fON +hdy +gxF +viX +fAm +dUT +uBJ +coJ +coJ +wjc +wjc +wjc +ojg +ojg +ojg +ojg +ojg +ojg +wjc +wjc +sqj +sqj +sqj +sqj +sqj +sqj +wjc +wjc +wjc +wjc +wjc +wjc +wjc +omy +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +coJ +cRe +tJc +vbN +qoh +qrx +lCA +lCA +lCA +jkE +vFG +vFG +vFG +"} +(57,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +xqe +gRd +gRd +gRd +gRd +gRd +gRd +elM +btk +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +omy +vFG +vFG +wjc +wjc +wjc +fCu +gEh +dzk +cTj +cTj +cTj +lKl +wjc +wjc +wjc +dTY +dTY +dTY +dTY +dTY +wjc +uYk +uYk +uYk +uYk +uYk +uYk +uYk +uYk +uYk +wjc +wjc +wjc +wjc +wjc +wjc +bPv +tYn +irA +qea +aoX +oNU +oNU +oNU +hkB +hkB +wre +wre +wre +iYi +iYi +coJ +coJ +coJ +coJ +coJ +coJ +pTI +mWM +gTv +gTv +gTv +gTv +ryB +ryB +ryB +ryB +ryB +coJ +coJ +coJ +lvY +asS +ibu +ygn +jlu +nzi +lZw +coJ +coJ +wjc +wjc +wjc +sqj +ojg +ojg +ojg +ojg +ojg +wjc +wjc +sqj +sqj +sqj +sqj +sqj +sqj +wjc +wjc +wjc +wjc +wjc +wjc +wjc +omy +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +coJ +qQT +rHD +ufS +fRT +qrx +lCA +lCA +lCA +jkE +vFG +vFG +vFG +"} +(58,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +xqe +gRd +gRd +gRd +gRd +gRd +gRd +elM +nYQ +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +jkE +vFG +vFG +wjc +wjc +wjc +fCu +gEh +dzk +bew +oSG +gUi +lKl +wjc +wjc +wjc +dTY +dTY +dTY +dTY +dTY +wjc +uYk +uYk +uYk +uYk +uYk +uYk +uYk +uYk +uYk +wjc +wjc +wjc +wjc +wjc +wjc +xtX +xtX +qja +xUJ +jFt +fJa +wjc +wjc +wjc +wjc +wjc +wjc +ffQ +bOa +rwg +eGo +sQF +sQF +sQF +sQF +sQF +caw +mWM +gTv +gTv +gTv +gTv +jjW +jjW +jjW +jjW +jjW +olR +olR +oeM +eWV +nzi +sca +fCl +qqM +nzi +lDQ +coJ +coJ +wjc +wjc +wjc +sqj +ojg +ojg +ojg +ojg +ojg +wjc +wjc +sqj +sqj +sqj +sqj +sqj +sqj +wjc +wjc +wjc +wjc +wjc +wjc +wjc +omy +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +qQV +grn +azv +rFp +qsF +qrx +lCA +lCA +lCA +jkE +vFG +vFG +vFG +"} +(59,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vjB +vjB +vjB +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +xqe +gRd +gRd +gRd +gRd +gRd +gRd +elM +lbY +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +jkE +jkE +vFG +wjc +wjc +wjc +fCu +gEh +dzk +tet +ydZ +vem +lKl +wjc +wjc +wjc +dTY +dTY +dTY +dTY +dTY +wjc +uYk +uYk +uYk +uYk +uYk +uYk +uYk +uYk +uYk +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +gcW +eKD +ggC +qAa +wjc +wjc +wjc +wjc +wjc +wjc +sGV +wya +sUS +snx +aaJ +aaJ +aaJ +aaJ +aaJ +caw +mWM +gTv +gTv +gTv +llM +llM +llM +llM +llM +llM +nZs +nZs +tBU +nzi +nzi +btb +teE +nWO +feT +gba +coJ +coJ +wjc +wjc +wjc +sqj +ojg +ojg +ojg +ojg +ojg +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +omy +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +"} +(60,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +tRn +vFG +efB +sHt +gQn +cTB +bqx +kMI +hvT +xwD +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +kAl +vFG +vFG +wjc +wjc +wjc +fCu +gEh +dzk +bvG +bbg +fUp +lKl +wjc +wjc +wjc +dTY +dTY +dTY +dTY +dTY +wjc +uYk +uYk +uYk +uYk +uYk +uYk +uYk +uYk +uYk +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +kSb +iAe +hvw +oNU +wjc +wjc +wjc +wjc +wjc +wjc +vlr +vlr +vlr +kBR +nKh +kBR +eNH +vqJ +fip +caw +mWM +mkl +mkl +mkl +mkl +mkl +mkl +mkl +ryB +gTv +pTI +pTI +coJ +wGB +gms +utM +omd +ezY +wGB +qLQ +coJ +coJ +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +jkE +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +"} +(61,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +csx +rkb +lAS +fXG +rFT +aiu +iGO +kla +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +jkE +vFG +vFG +wjc +wjc +wjc +fCu +gEh +trX +mKC +bdF +fzp +lKl +wjc +wjc +wjc +dTY +dTY +dTY +dTY +dTY +wjc +uYk +uYk +uYk +uYk +fgu +eVw +qqu +qqu +uDJ +wKL +giq +giq +giq +giq +giq +giq +giq +aVZ +eKD +szg +oNU +giq +giq +giq +giq +giq +giq +vlr +aiq +gJD +kEv +mwg +lmE +khy +fip +fip +caw +mWM +mkl +iSZ +jTl +imA +vmw +wfl +bnY +ryB +ryB +qkX +pTI +vlr +fif +lJl +vlr +vlr +eng +ayM +coJ +coJ +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +jkE +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(62,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vjB +vjB +vjB +vjB +vjB +vjB +lgp +wKL +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +jkE +vFG +vFG +wjc +wjc +wjc +fCu +gEh +dzk +qIi +coV +mFZ +lKl +wjc +wjc +wjc +dTY +dTY +dTY +dTY +dTY +wjc +uYk +uYk +uYk +uYk +fgu +mrE +fIK +nUt +wKc +wKL +rfh +xml +xml +xml +xml +xml +xml +qja +eKD +ggC +sIN +hLZ +hLZ +hLZ +hLZ +hLZ +rwt +vlr +iZa +vEp +kUt +mwg +hNd +tvu +kBR +fip +fip +pRw +mkl +mkl +jrB +sJN +knd +knd +wfl +daQ +ryB +pjd +pTI +vlr +jsJ +tey +kIu +eYc +vlr +tlE +vOA +coJ +coJ +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +omy +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(63,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +lCA +lCA +lCA +lCA +lCA +dod +vHa +dZk +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +jkE +kAl +vFG +wjc +wjc +wjc +fCu +wjc +dzk +voZ +gcA +pHw +lKl +wjc +wjc +wjc +wjc +dTY +dTY +dTY +wjc +wjc +wjc +wjc +wjc +wjc +slc +qqB +qTf +wqI +rtT +dXb +rfh +xml +xml +xml +xml +xml +xml +fLt +fLt +fLt +xml +xml +xml +xml +xml +lAA +jas +vlr +mjc +kzJ +kUt +mwg +eDI +bwZ +kBR +cdz +vNt +ubu +rhS +mkl +esG +esG +esG +kcx +esG +kxm +ryB +oQS +wgh +fwY +nAt +nzi +uoN +iBd +vlr +vlr +vlr +coJ +coJ +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +aHy +aHy +aHy +aHy +aHy +aHy +aHy +aHy +aHy +aHy +wjc +wjc +wjc +omy +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +coJ +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(64,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +lCA +lCA +lCA +lCA +lCA +vjB +eAb +nUA +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +vFG +vFG +jkE +omy +vFG +vFG +vFG +vFG +fCu +wjc +lKl +oIU +utN +pHw +lKl +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wKL +ffu +tjr +wKL +wKL +wKL +rfh +xml +jas +oqR +oqR +oqR +oqR +pFn +pFn +pFn +oqR +oqR +oqR +oqR +rfh +lAA +jas +fgD +jJl +gqB +kUt +pZp +jJZ +faf +kBR +dSS +fNk +jQq +lYT +mkl +czU +sYw +cXs +rPO +iED +juV +tWk +hEP +pTI +vlr +hKh +cuM +fXG +uDY +vlr +qrn +vVj +coJ +coJ +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +aHy +aHy +aHy +aHy +aHy +aHy +aHy +aHy +aHy +aHy +wjc +wjc +wjc +omy +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +coJ +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(65,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +lCA +lCA +lCA +lCA +lCA +vjB +osG +brh +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +jkE +vFG +nCo +fYv +aWP +tCS +tCS +ckf +lLf +kga +wjc +fCu +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wKL +swq +nzi +wKL +wjc +wjc +vkE +oQo +sEh +giq +giq +giq +giq +giq +giq +giq +giq +giq +giq +giq +vkE +oQo +sEh +dRL +cuA +cuA +mJI +luI +aSr +nEU +ptH +oPO +wHy +wmr +ndA +mkl +mEP +ire +gYQ +sZK +bvw +xNy +owH +xOx +pTI +ngI +tBR +eVR +cPK +qmI +dHf +kYD +kYD +coJ +coJ +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +aHy +aHy +aHy +aHy +aHy +aHy +aHy +aHy +aHy +aHy +wjc +wjc +wjc +omy +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +coJ +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(66,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +lCA +lCA +lCA +lCA +lCA +dod +vHa +nYQ +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +kAl +jkE +rix +fYv +aWP +tCS +wQg +ntG +yaJ +kga +wjc +fCu +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wKL +ttX +wni +wKL +wjc +wjc +rSn +ksT +nLK +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +rSn +ksT +nLK +ykQ +cuA +cuA +uxC +ulu +uxC +uxC +rNK +fEj +fNk +jQq +xEP +mkl +pnr +rPO +fiT +mbE +lkB +qkT +esO +kGo +kdP +vlr +rHc +bKw +kFL +xFI +vlr +lAk +nzi +coJ +coJ +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +aHy +aHy +aHy +aHy +aHy +aHy +aHy +aHy +aHy +wjc +wjc +wjc +wjc +omy +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +coJ +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(67,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +vFG +lCA +lCA +lCA +lCA +vjB +kRa +gRd +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +jkE +jkE +vFG +nCo +fYv +aWP +tCS +rjc +nPK +cHF +kga +kWy +cdC +cdC +cdC +cdC +uSQ +qAJ +qAJ +bZs +uYk +uYk +wjc +wjc +wKL +sMf +pgA +wKL +wjc +wjc +wtL +xMQ +hwn +wjc +dpE +hwh +kGh +dpE +wjc +wjc +wjc +wjc +wjc +wjc +wtL +xMQ +hwn +vlr +bVc +cuA +vNc +rqf +hFq +cuA +vlr +tZC +fKm +qsd +bhZ +mkl +fls +rPO +rPO +rPO +rUI +nti +fKv +xOx +pTI +fwY +xNV +dgE +yjM +ieM +vlr +knD +gbV +coJ +coJ +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +aHy +aHy +aHy +aHy +aHy +aHy +aHy +aHy +aHy +wjc +wjc +wjc +wjc +omy +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +coJ +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(68,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +vFG +lCA +lCA +lCA +lCA +vjB +eAb +fwt +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +jkE +vFG +nCo +fYv +aWP +vuG +ooC +dkB +vrX +kga +kWy +cdC +eeI +gYJ +dEt +qgW +gPP +qAJ +bZs +uYk +uYk +wjc +wjc +wKL +wKL +wKL +wKL +wjc +wjc +rlU +wzI +orD +wjc +dpE +fgP +jtW +dpE +wjc +wjc +wjc +wjc +wjc +wjc +rlU +wzI +orD +wjc +vlr +bmp +vlr +vlr +vlr +vlr +iRT +aMT +ezu +mDr +axe +mkl +uOD +knd +knd +knd +knd +bUa +klv +hEP +pTI +vlr +jUO +giY +cQg +laM +vlr +tlE +kmo +coJ +coJ +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +aHy +aHy +aHy +aHy +aHy +aHy +aHy +aHy +aHy +aHy +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +coJ +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(69,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +vFG +lCA +lCA +lCA +lCA +vjB +qNm +giq +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +dwp +dwp +mqS +mqS +mqS +mqS +mqS +dwp +gYA +dby +gRy +gRy +kEu +kWy +cdC +iJD +tyc +ekF +tyc +mEG +qAJ +bZs +uYk +uYk +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +xod +wye +lIK +wjc +dpE +dpE +lDd +dpE +dpE +dpE +dpE +dpE +wjc +wjc +xod +wye +lIK +wjc +wRx +wRx +wRx +wRx +wRx +wRx +coJ +yfP +yfP +gvu +pLv +mkl +rxJ +ghe +pxG +knd +knd +kBd +tWk +hEP +pTI +coJ +ppt +coJ +lJl +coJ +coJ +coJ +coJ +qRL +coJ +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +aHy +aHy +aHy +aHy +aHy +aHy +aHy +aHy +aHy +aHy +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +coJ +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(70,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +vFG +lCA +lCA +lCA +lCA +vjB +cnY +opE +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +dwp +dwp +mqS +hCZ +hCZ +bmz +eXQ +aCM +rTA +gDF +vDU +qvJ +txD +lxI +oDM +xgY +lcG +pEY +oeN +mcG +mox +sNd +aPd +aPd +lET +dyV +wjc +wjc +wjc +wjc +wjc +wjc +wtL +jSS +wpe +wjc +dpE +dlw +sAf +oSC +srn +sWf +qxT +dpE +wjc +wjc +wtL +jSS +wpe +vlr +wRx +wRx +wRx +wRx +wRx +wRx +coJ +phH +kcV +mow +mkl +mkl +mkl +mkl +mkl +vfK +cip +txR +tWk +hEP +oQW +vlr +pGX +ubo +kXU +wBX +cFv +hhD +vQs +coJ +fiH +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +lCW +lCW +lCW +lCW +lCW +lCW +lCW +lCW +aHy +yiz +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +coJ +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(71,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +vFG +lCA +lCA +lCA +lCA +dod +jPT +uap +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +dwp +dwp +mqS +dZw +vxW +vyT +qPf +cKS +ycp +sMZ +pAq +csX +vjE +iow +qvt +xgY +yfM +swp +qpF +mcG +qAJ +lIO +lIO +lIO +gRd +bzV +wjc +wjc +wjc +wjc +wjc +wjc +wtL +eKD +fyh +wjc +dpE +nFR +fMQ +mjF +gKD +qxT +qxT +qzs +wjc +wjc +wtL +eKD +fyh +vlr +wRx +wRx +wRx +rQZ +cDW +pRK +lik +lik +lik +lik +lik +xvA +xDo +wAB +mkl +mkl +mkl +tWk +tWk +dah +nFF +vlr +dhA +dhA +rko +dhA +dhA +dhA +tRU +coJ +coJ +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +lCW +lCW +lCW +lCW +lCW +lCW +lCW +lCW +nHe +nHe +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +coJ +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(72,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +vFG +lCA +lCA +lCA +lCA +vjB +jPT +hUZ +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +dwp +dwp +mqS +eaU +bVF +bVF +ycp +ycp +qKy +xYB +hwP +lIv +wSQ +emo +uSQ +wmE +apC +fgz +qzr +nUY +qAJ +uTl +qFw +rzr +gRd +iWl +wjc +wjc +wjc +wjc +wjc +wjc +wtL +eKD +nXQ +wjc +fSr +qxT +qxT +qxT +nzH +iAu +oUq +dtH +wjc +wjc +wtL +eKD +nXQ +vlr +wRx +wRx +wRx +rQZ +cDW +msa +lYO +lYO +vDu +uMI +boa +hEG +rlx +adV +vgu +pcq +joV +eBc +grc +pjd +pTI +vlr +olj +qgx +mnb +naO +aHr +aWq +aWk +coJ +coJ +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +lCW +lCW +lCW +lCW +lCW +lCW +lCW +lCW +nHe +nHe +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +coJ +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(73,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +vFG +lCA +lCA +lCA +lCA +vjB +gjk +xjC +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +dwp +dwp +bVF +fOL +bVF +bDI +kub +awW +nWr +nWr +tiA +dAA +iFF +aix +aix +aix +dEU +oCH +aix +aix +aix +aix +aix +qAJ +iIG +iWl +wjc +wjc +wjc +wjc +wjc +wjc +cvJ +iAe +ibX +wjc +dpE +ixg +cJQ +cJQ +lWc +cJQ +nkM +dpE +wjc +wjc +cvJ +iAe +ibX +vlr +wRx +wRx +wRx +rQZ +cDW +nbM +fcD +fcD +dzB +nsH +mQR +adV +jAf +fll +nkO +rMp +fSP +xfA +grc +pjd +pTI +vlr +xaC +hQH +hum +nSs +oaO +tGm +lzG +coJ +coJ +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +lCW +lCW +lCW +lCW +lCW +lCW +lCW +lCW +nHe +nHe +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +coJ +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(74,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +vFG +lCA +lCA +lCA +lCA +vjB +hde +nYQ +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +dwp +dwp +bVF +qPa +bVF +nfi +rRy +pbW +nWr +bNm +tUH +jpf +aek +cyR +aix +nax +mGr +oxp +aix +uPE +nqS +eyU +nqS +cGw +iIG +leP +wjc +wjc +wjc +wjc +wjc +wjc +sfl +eKD +ggC +wjc +dpE +otq +gMj +jjP +tGX +gMj +wjU +dpE +wjc +wjc +sfl +eKD +ggC +bqC +wRx +wRx +wRx +rQZ +cDW +qae +fyk +fyk +dzB +fGu +qaF +bRZ +lBk +jaC +aFl +kwP +wKj +cWS +grc +pjd +pTI +vlr +cCC +vlr +aEF +vlr +vlr +kCQ +eou +coJ +coJ +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +nHe +lCW +nHe +nHe +nHe +nHe +lCW +lCW +nHe +nHe +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +coJ +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(75,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +vFG +lCA +lCA +lCA +lCA +vjB +ikk +fqK +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +dwp +dwp +mqS +kgZ +bVF +kCG +rRy +aRf +nWr +hyz +aFk +mar +aHS +uXK +wUy +iKl +lhf +fjA +wrd +wyR +nqS +sXd +nqS +cGw +iIG +iWl +wjc +wjc +wjc +wjc +wjc +wjc +kFd +eKD +ggC +wjc +dpE +esv +gMj +tcb +cMH +ufk +oYw +dpE +wjc +wjc +kFd +eKD +ggC +vlr +fwY +aOY +uPo +cDW +cDW +gfi +fyk +fyk +dzB +vnG +pRK +pRK +tOa +rqL +brV +brV +pRK +grc +grc +pjd +pTI +fwY +wOi +gCN +nsk +vbi +sZT +sZT +vUZ +coJ +coJ +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +nHe +nHe +nHe +nHe +nHe +nHe +lCW +nHe +nHe +nHe +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +coJ +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(76,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +lCA +lCA +lCA +lCA +vjB +jPT +gRd +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +dwp +dwp +bVF +sxj +hCZ +qyz +uGQ +hlC +nWr +tuJ +xSK +wan +nZO +cxK +aix +mzn +oaB +amV +aix +xpH +nqS +nqS +nqS +nyT +iIG +mCH +wjc +wjc +wjc +wjc +wjc +wjc +cJA +eKD +ggC +wjc +dpE +uAB +gMj +gMj +pQy +gMj +xqT +rYj +wjc +wjc +cJA +eKD +ggC +uoF +hLZ +hLZ +hLZ +oMD +oMD +mjh +pLG +pLG +cqW +dyA +udc +auh +gXB +bOL +qFq +rrW +eXk +eAf +rfn +rqa +qkX +vlr +cRj +hte +hOC +msz +sZT +sZT +doY +coJ +coJ +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +nHe +nHe +nHe +nHe +nHe +nHe +nHe +nHe +nHe +nHe +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(77,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +lCA +lCA +lCA +lCA +vjB +jPT +brh +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +dwp +dwp +bVF +fOL +hCZ +kKD +gPl +aXC +jPk +aJE +gWy +wan +gKU +nHK +aix +sJy +fdh +sTV +oCH +mPQ +kIB +vnn +vnn +bdc +iIG +iWl +wjc +wjc +wjc +wjc +wjc +wjc +fUW +eKD +ggC +wjc +dpE +vIT +gMj +gMj +gMj +gMj +boI +rYj +wjc +wjc +fUW +eKD +ggC +tfX +oqR +oqR +oqR +mmr +mmr +czS +ydc +ydc +esn +xHT +lwy +klb +oGt +jvN +sZw +oOR +bCR +fwa +mfU +wpx +pnI +swE +pBU +raJ +fXa +eFD +wFw +pBd +vaG +coJ +coJ +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +nHe +nHe +nHe +nHe +nHe +nHe +nHe +nHe +nHe +nHe +wjc +wjc +wjc +wjc +wjc +wjc +buj +buj +buj +buj +buj +buj +buj +buj +buj +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(78,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +vjB +vjB +vjB +vjB +vjB +jPT +gRd +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +dwp +dwp +mqS +eaU +bVF +ahm +rRy +nRD +nWr +iPR +fUa +wan +nZO +iyL +aix +atY +neJ +vjP +oCH +isx +bUV +nZO +pNw +iXG +iIG +iWl +wjc +wjc +wjc +wjc +wjc +wjc +eDr +har +ttV +wjc +dpE +ceK +gMj +gMj +gMj +gMj +feP +dpE +wjc +wjc +eDr +har +ttV +vlr +vlr +vlr +vlr +pRK +pRK +bnd +dsM +kFc +nkn +iWf +ehm +rGM +ehm +dtQ +kaZ +ehm +dtQ +exM +grc +pjd +pTI +fAs +mrG +kmn +bfw +ylm +mfc +iVW +mBW +coJ +coJ +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +nHe +nHe +nHe +nHe +nHe +nHe +nHe +nHe +nHe +nHe +wjc +wjc +wjc +wjc +wjc +wjc +buj +buj +buj +buj +buj +buj +buj +buj +buj +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(79,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +vjB +gRd +gRd +gRd +brh +jPT +gRd +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +dwp +dwp +mqS +gbS +iPt +tDS +atd +pkJ +nWr +lcF +cOi +kuV +nZO +iyL +iFF +nrr +oaB +kyB +aix +aix +oCH +xio +oCH +qAJ +iIG +hdL +wjc +wjc +wjc +wjc +wjc +wjc +vmH +drx +pWy +wjc +dpE +djg +fNm +qJl +dKb +uDz +dje +dpE +wjc +wjc +vmH +drx +pWy +pRK +ryZ +uRr +ryZ +ryZ +pRK +wIB +dpA +mLp +hPX +hNZ +sUT +ryo +ehm +sUT +wmf +ehm +sUT +ixk +grc +pjd +pTI +vlr +djy +oOt +dqk +bWr +xml +xml +wnq +coJ +coJ +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +nHe +nHe +nHe +nHe +nHe +nHe +nHe +nHe +nHe +nHe +wjc +wjc +wjc +wjc +wjc +wjc +buj +buj +buj +buj +buj +buj +buj +buj +buj +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(80,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +dod +nYQ +gRd +gRd +gRd +aVS +gRd +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +cAP +cAP +vAu +gHm +sJS +hCZ +oZs +kKf +nWr +mnN +cRp +ngz +nZO +iyL +iFF +nrr +uaW +upi +mQv +qLK +igm +mOz +uPt +gAq +aoS +ueK +fGs +aFH +qxO +rda +sow +qxO +qja +eKD +ggC +wjc +dpE +dpE +dpE +rYj +rYj +dpE +dpE +dpE +wjc +wjc +qja +eKD +ggC +mxz +sYq +mbx +ptB +ptB +vcl +gbX +abo +vOk +byd +hNZ +dgl +igf +kHI +knW +qaT +kHI +knW +tdp +gup +sJm +pRV +fwY +enY +gsz +rST +lZM +chS +chS +vlr +coJ +coJ +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +nHe +nHe +nHe +nHe +nHe +nHe +nHe +nHe +nHe +nHe +wjc +wjc +wjc +wjc +wjc +wjc +buj +buj +buj +buj +buj +buj +buj +buj +buj +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(81,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +dod +qix +kEL +dLs +qQn +vTg +gRd +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +cAP +cAP +vAu +nLg +wFO +viC +jdf +eUF +nWr +sCZ +cNt +cNt +dUu +xqQ +iFF +nrr +eCq +uKN +aKb +hbK +upe +mOz +kbh +oQe +aUn +ccY +iYz +qcO +pMT +bpQ +lZX +lZX +piI +blI +cfj +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +piI +blI +cfj +pRK +tGo +ucb +sYq +sYq +ptq +mfY +eAk +dXK +swb +ehm +bTZ +tlm +ehm +nie +tlm +ehm +tuG +njR +grc +eXp +wWE +coJ +coJ +coJ +coJ +coJ +vlr +coJ +coJ +coJ +coJ +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +hie +hie +hie +hie +hie +hie +nHe +nHe +hie +hie +wjc +wjc +wjc +wjc +wjc +wjc +buj +buj +buj +buj +buj +buj +buj +buj +buj +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(82,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +vFG +wjc +wjc +wjc +vjB +gRd +dPW +giq +giq +giq +giq +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +fPx +fPx +vjB +vFG +vFG +vFG +vFG +vFG +giq +xml +elm +gRd +wjc +wjc +wjc +cAP +cAP +vAu +aOh +pIs +mCA +ngz +ngz +nWr +nWr +dFI +dFI +aix +aix +aix +eov +eCq +oMz +mQv +mHd +qJs +qJB +qzG +eHf +gPA +dRv +cCU +mbo +bbG +jQb +aYd +iSi +vkE +oQo +sEh +wjc +wjc +wjc +xrc +xrc +iAh +xrc +xrc +wjc +wjc +wjc +vkE +oQo +sEh +pRK +naI +gTX +wCV +wCV +grc +fHD +nLo +nLo +lxo +lxo +lxo +lxo +lxo +eoE +eoE +eoE +eoE +grc +grc +sRb +pTI +vlr +uOa +ftQ +fMD +jPj +erM +aoS +iUd +coJ +coJ +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +hie +hie +hie +hie +hie +hie +nHe +nHe +hie +hie +wjc +wjc +wjc +wjc +wjc +wjc +uFS +uFS +uFS +uFS +uFS +uFS +uFS +uFS +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(83,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +vFG +wjc +wjc +wjc +vjB +wxv +dPW +giq +gRd +gRd +gRd +rYa +ltr +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +pBA +fZL +vjB +vFG +vFG +vFG +vFG +vFG +giq +lOd +pqn +xml +wjc +wjc +wjc +cAP +cAP +vAu +nnY +bGX +mCA +mpG +mpG +lfP +bWM +vvQ +yjG +fjA +lCr +iOD +tSw +jvC +uWw +gRz +uWw +mIE +qtl +tUx +dUo +vuo +wQX +rGl +rGl +rGl +rGl +rGl +rGl +rSn +ksT +nLK +wjc +wjc +wjc +xrc +woO +kCp +pOF +xrc +wjc +wjc +wjc +rSn +ksT +nLK +pRK +tGo +sYq +sYq +sYq +jAu +lxp +ijr +ijr +lxo +gZJ +riH +mFM +wSh +aKz +eoE +elT +qjm +nhk +grc +pjd +oKB +bqC +sUf +dun +dun +inx +aoS +aoS +ngJ +coJ +coJ +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +hie +hie +hie +hie +hie +hie +hie +hie +hie +hie +wjc +wjc +wjc +wjc +wjc +wjc +uFS +uFS +uFS +uFS +uFS +uFS +uFS +uFS +uFS +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(84,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +vFG +wjc +wjc +wjc +dod +gRd +dPW +giq +pzy +auf +aaG +ftN +oSv +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +rfh +mPi +vjB +vFG +vFG +vFG +vFG +vFG +giq +giq +bVS +giq +wjc +wjc +wjc +cAP +cAP +vAu +ygj +vwS +mCA +qoM +piP +tMI +tMI +cZl +tMI +oBi +eGA +jqw +gml +iiP +mHd +nGc +nst +tYa +mOz +oQe +dZH +dZH +wWe +wjc +wjc +wjc +wjc +wjc +wjc +wtL +xMQ +hwn +wjc +wjc +wjc +nUH +jVX +mVn +fQb +pMq +wjc +wjc +wjc +wtL +xMQ +hwn +pRK +nvC +luE +lkW +lkW +grc +lxp +aFu +aFu +fqw +fMj +iVu +tos +vfS +jND +jVx +kmz +hPQ +bgj +oQH +beS +kdP +vlr +nIS +dun +dun +viO +qWI +clW +kcw +mgb +jkE +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +hie +hie +hie +hie +hie +hie +hie +hie +hie +hie +wjc +wjc +wjc +wjc +wjc +wjc +uFS +uFS +uFS +uFS +uFS +uFS +uFS +uFS +uFS +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(85,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +vFG +wjc +wjc +wjc +dod +bqO +mAr +eQy +aWp +hmg +oOv +gpq +jlb +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +rfh +lxM +vjB +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +cAP +cAP +vAu +irJ +mCA +mCA +jMj +hYs +hYs +hYs +cDM +ilH +ilH +sfB +jRs +kBp +kBp +ckn +ckn +ckn +tqv +hIt +aYj +gfs +rja +ccY +wjc +wjc +wjc +wjc +wjc +wjc +rlU +wzI +orD +wjc +wjc +wjc +xrc +rVt +gWe +ddC +pMq +wjc +wjc +wjc +rlU +wzI +orD +pRK +pRK +pRK +pRK +pRK +grc +oOZ +lhs +lhs +lxo +uKf +pPe +nwd +pUv +dvB +eoE +bVK +fhO +uga +grc +pjd +pTI +drl +rhf +rhf +rhf +gZU +sbK +mNJ +qan +lox +jkE +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +hie +hie +hie +hie +hie +hie +hie +hie +hie +hie +vFG +vFG +vFG +vFG +vFG +vFG +uFS +uFS +uFS +uFS +uFS +uFS +uFS +uFS +uFS +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(86,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +vFG +wjc +wjc +wjc +dod +gRd +bzV +giq +gRd +iZs +pNv +gRd +esq +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +rfh +wES +vjB +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +tHl +tHl +wiL +fzv +xxv +chC +mpG +iBL +mpG +mHg +snt +saa +mpG +sfB +rpl +npg +kBp +dJg +ewg +kBp +kBp +kBp +iIG +iIG +wjT +wjT +wjT +wjT +wjT +wjT +wjT +wjT +xod +wye +lIK +wjc +wjc +wjc +xrc +xrc +xrc +xrc +pMq +wjc +wjc +wjc +xod +wye +lIK +grc +rzj +esg +iiz +qhI +grc +lxp +adl +adl +aNV +wuQ +wuQ +vVU +iNU +ggs +eoE +uMW +qYQ +cUC +grc +sJK +pTI +vlr +wJt +oqN +tfV +xah +dKK +ylI +iOe +coJ +coJ +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +hie +hie +hie +hie +hie +hie +hie +hie +hie +hie +vFG +vFG +vFG +vFG +vFG +vFG +uFS +uFS +uFS +uFS +uFS +uFS +uFS +uFS +uFS +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(87,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +vFG +wjc +wjc +wjc +vjB +gRd +bzV +giq +nYQ +dEv +aSi +gRd +jiJ +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +cil +jGV +vjB +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +tHl +tHl +lcT +jGv +mpG +hZz +mpG +hYs +hYs +hYs +gsk +uCF +uCF +uBD +fTv +fTv +hvV +xHw +iIw +kgN +kdL +jDF +cso +iIG +wjT +wjT +wjT +wjT +wjT +wjT +wjT +wjT +wtL +jSS +wpe +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wtL +jSS +wpe +grc +seX +hxR +sCA +tsO +aTD +joo +iSt +iSt +lxo +cbf +laG +eDG +rVx +jND +rOb +oAS +iAE +pmq +hbv +pjd +pTI +vlr +vlr +vlr +vlr +vlr +vlr +vlr +vlr +vlr +vlr +wjc +wjc +wjc +wjc +wjc +wjc +vlr +wjc +wjc +vlr +vlr +hie +hie +hie +hie +hie +hie +hie +hie +hie +hie +vFG +vFG +vFG +vFG +vFG +vFG +uFS +uFS +uFS +uFS +uFS +uFS +uFS +uFS +uFS +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(88,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +vFG +wjc +wjc +wjc +vjB +giq +qDC +giq +giq +giq +giq +giq +giq +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +tJL +qxO +ktS +wKL +nDp +vcK +bMS +nfV +vjB +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +tHl +tHl +lcT +vqq +mpG +mpG +mpG +mpG +mpG +wmc +dGB +idG +mpG +mpG +qnz +qnz +qny +qnz +lAR +pdv +jlX +wxQ +pZD +iIG +wjT +wjT +wjT +wjT +wjT +wjT +wjT +wjT +wtL +eKD +fyh +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wtL +eKD +fyh +grc +uHZ +yaR +iXr +jvi +wEU +iSL +thb +thb +fqw +smu +iVu +odr +odr +afH +eoE +xtn +wcB +sDU +grc +pWA +lEt +vlr +iSJ +wTt +jwJ +coJ +coJ +coJ +pbu +coJ +coJ +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +hie +hie +hie +hie +hie +hie +hie +hie +hie +hie +vFG +vFG +vFG +vFG +vFG +vFG +uxL +uxL +uxL +uxL +uxL +uxL +uxL +uxL +uxL +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(89,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +vFG +wjc +wjc +wjc +vjB +jsA +iWl +wLD +pfo +giq +rDh +xml +sYm +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +mPV +iVW +rua +iLT +uiL +xml +xml +jRA +isW +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +tHl +tHl +lcT +iqC +mpG +mpG +pSi +mCA +rQl +mpG +mpG +mpG +mfb +mpG +iRu +dDI +kBp +sSw +dtT +kBW +qnz +qnz +wjD +iIG +wjT +wjT +wjT +wjT +wjT +wjT +wjT +wjT +wtL +eKD +nXQ +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wtL +eKD +nXQ +grc +uHZ +tlt +oqT +aFg +grc +lxp +jJg +jJg +lxo +sEw +gTF +xJc +odr +shQ +eoE +aOb +gWI +wzQ +grc +qsz +uMo +vlr +iSJ +nVN +fju +coJ +coJ +pgF +tYA +pgF +coJ +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +hie +hie +hie +hie +hie +hie +hie +hie +hie +hie +vFG +vFG +vFG +vFG +vFG +vFG +uxL +uxL +uxL +uxL +uxL +uxL +uxL +uxL +uxL +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(90,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +vFG +wjc +wjc +wjc +vjB +ooh +btN +vig +dyV +giq +jbB +lwk +vBf +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vjl +cdV +rjp +wKL +rfh +fEK +xml +uob +isW +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +tHl +tHl +wiL +sDF +dZy +mpG +mpG +mpG +daW +mpG +dZy +mpG +mfb +mpG +iRu +dex +kBp +cPR +kzZ +kBW +wxQ +wxQ +qYk +iIG +wjT +wjT +wjT +wjT +wjT +wjT +wjT +wjT +cvJ +iAe +ibX +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +cvJ +iAe +ibX +grc +grc +lSP +bli +grc +grc +lxp +ijr +ijr +lxo +lxo +bAz +lxo +lFs +eoE +eoE +eoE +eoE +grc +grc +aWC +eYj +vlr +vtg +sIb +gPW +coJ +coJ +pgF +tjr +pgF +coJ +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +uxL +uxL +uxL +uxL +uxL +uxL +uxL +uxL +uxL +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(91,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +sGD +iSr +vjB +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +tHl +tHl +wiL +lUU +uOC +uOC +uOC +uuD +daW +tuS +vIU +dwC +mfb +jfA +qnz +mga +kBp +wxQ +kzZ +kBW +wxQ +cZh +cso +iIG +wjT +wjT +wjT +wjT +wjT +wjT +wjT +wjT +sfl +eKD +ggC +wjc +wjc +wjc +ofb +ofb +ofb +ofb +ofb +ofb +wjc +wjc +sfl +eKD +ggC +rRe +wLu +kpy +qgE +tiK +tiK +vvP +bKj +bKj +jXs +aKU +qUi +kpy +swK +kpy +nol +lKc +fOO +oYB +yhT +fXd +jdy +xUA +eMM +tEz +iSJ +coJ +coJ +dVe +pJK +pgF +coJ +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +uxL +uxL +uxL +uxL +uxL +uxL +uxL +uxL +uxL +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(92,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +rfh +iSr +vjB +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +tHl +tHl +wiL +wiL +wiL +lcT +lcT +lcT +jjQ +rWO +lcT +rWO +gmj +lcT +ldD +sLo +sLo +sLo +kBp +cSG +kBp +kBp +iIG +iIG +wjT +wjT +wjT +wjT +wjT +wjT +wjT +wjT +kFd +eKD +ggC +wjc +wjc +wjc +ofb +ofb +ofb +ofb +ofb +ofb +wjc +wjc +kFd +eKD +ggC +sze +eMJ +eMH +eMH +eMH +eMH +eMJ +uyH +uyH +shT +eMH +mnT +eMH +eMJ +pgg +klu +sbB +fQP +dZa +uyg +tbT +duB +vlr +sCc +hvt +fju +coJ +coJ +coJ +coJ +coJ +coJ +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +uxL +uxL +uxL +uxL +uxL +uxL +uxL +uxL +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(93,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +tOX +ksu +vjB +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +oEA +oEA +hsN +gMr +stN +gMr +lcT +hMe +nuI +lGK +xml +kUx +eXV +lCA +fCu +oeH +wjc +wjc +wjc +wjT +wjT +wjT +wjT +wjT +wjT +wjT +wjT +qja +eKD +ggC +wjc +xml +xml +fsq +fsq +fsq +fsq +fsq +fsq +xml +wjc +vkE +oQo +sEh +vlr +vlr +vlr +vlr +vlr +vlr +vlr +vlr +coJ +coJ +coJ +vlr +vlr +vlr +vlr +vlr +vlr +vlr +vlr +coJ +coJ +coJ +coJ +iSJ +wjc +iSJ +coJ +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(94,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wKL +bGk +vjB +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +hsN +hsN +hsN +stN +stN +stN +mEE +kZi +hIL +qtb +qYV +auN +gdK +ioP +fCu +dod +wjc +wjc +wjc +wjT +wjT +wjT +wjT +wjT +wjT +wjT +wjT +piI +blI +cfj +wjc +xml +xml +fsq +fsq +fsq +fsq +fLt +fLt +xml +wjc +qja +gqX +ggC +giq +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vlr +vlr +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(95,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +jkE +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +wjc +wjc +wjc +wjc +wjc +lsX +wjT +wjT +wjT +wjT +wjT +wjT +lsX +vkE +oQo +sEh +wjc +xml +xml +fsq +fsq +fsq +fsq +xml +xml +xml +wjc +qja +gqX +ggC +mRe +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +coJ +coJ +coJ +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(96,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +kAl +vFG +vFG +omy +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +wjc +pRI +cSy +wdM +kxM +hta +ige +uZU +pRI +rSn +ksT +nLK +wjc +xml +xml +fsq +fsq +fsq +fsq +xml +xml +xml +wjc +qja +gqX +ggC +mRe +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(97,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +jkE +vFG +vFG +omy +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +wjc +pRI +hbx +wdM +gdr +jwX +nOs +jkF +pRI +wtL +xMQ +hwn +wjc +wjc +wjc +ofb +ofb +ofb +ofb +wjc +wjc +wjc +wjc +wtL +xMQ +hwn +giq +giq +giq +giq +giq +tlN +hou +giq +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(98,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +jkE +vFG +vFG +omy +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +fUZ +wjc +pRI +bWx +wdM +flZ +hta +qju +obo +pRI +rlU +wzI +orD +wjc +wjc +wjc +pPr +pPr +pPr +pPr +wjc +wjc +wjc +wjc +rlU +wzI +orD +hou +rxu +bXx +sOg +aoS +aoS +irH +giq +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +rRV +rRV +rRV +rRV +rRV +rRV +rRV +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(99,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +mql +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +kAl +jkE +jkE +omy +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +wjc +pRI +gfT +wdM +pMG +hta +bML +keI +pRI +xod +wye +lIK +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +xod +wye +lIK +hou +gCI +aoS +wMo +wGI +vtX +awT +giq +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +rRV +rRV +rRV +rRV +rRV +rRV +rRV +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(100,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +jkE +vFG +vFG +jkE +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +wjc +amW +ydX +hta +hta +hta +xuj +dCd +amW +wtL +jSS +wpe +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wtL +jSS +wpe +giq +ebN +aoS +aoS +aoS +tdE +pvv +giq +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +rRV +rRV +rRV +rRV +rRV +rRV +rRV +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(101,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +jkE +vFG +vFG +jkE +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +wjc +sJf +aUp +aUp +vCj +xOY +fCR +oOX +sJf +wtL +eKD +fyh +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wtL +eKD +fyh +hou +dpF +aoS +bKe +wGI +pMh +kcl +giq +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +jkE +jkE +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +rRV +rRV +rRV +rRV +rRV +rRV +rRV +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(102,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +kAl +vFG +vFG +jkE +omy +omy +omy +jkE +omy +omy +omy +omy +omy +omy +jkE +jkE +omy +wjc +afd +fWd +qsC +dUX +vww +kOv +tFe +afd +wtL +eKD +nXQ +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wtL +eKD +nXQ +giq +yiB +aoS +bKe +aoS +tdE +wsT +giq +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +jkE +vFG +vFG +vFG +vFG +vFG +vFG +jkE +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +rRV +rRV +rRV +rRV +rRV +rRV +rRV +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(103,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +jkE +vFG +vFG +jkE +vFG +vFG +jkE +vFG +vFG +vFG +vFG +vFG +jkE +vFG +vFG +vFG +omy +wjc +jAk +jAk +jAk +jAk +jAk +fAj +sBO +jAk +cvJ +iAe +ibX +wjc +wjc +wjc +xrc +xrc +iAh +xrc +xrc +wjc +wjc +wjc +cvJ +iAe +ibX +giq +xXC +xTI +xTI +dLw +tdE +mOk +giq +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +jkE +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +jkE +vFG +vFG +vFG +vFG +vFG +vFG +jkE +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +rRV +rRV +rRV +rRV +rRV +rRV +rRV +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(104,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +jkE +jkE +jkE +kAl +jkE +jkE +kAl +jkE +jkE +kAl +jkE +jkE +kAl +jkE +jkE +kAl +omy +wjc +jAk +njy +tLj +hEH +jAk +bLt +cUW +jAk +sfl +eKD +ggC +wjc +wjc +wjc +xrc +woO +kCp +pOF +xrc +wjc +wjc +wjc +sfl +eKD +ggC +giq +iti +iTd +iTd +jjD +tdE +pIJ +giq +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +jkE +vFG +vFG +vFG +vFG +vFG +vFG +jkE +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +rRV +rRV +rRV +rRV +rRV +rRV +rRV +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(105,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +jAk +wXo +vnL +pib +jAk +bML +sBO +jAk +kFd +eKD +ggC +wjc +wjc +wjc +nUH +jVX +mVn +fQb +pMq +wjc +wjc +wjc +kFd +eKD +ggC +eud +unc +wqn +wqn +khO +kYq +uPD +giq +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +jkE +jkE +jkE +jkE +jkE +jkE +xqe +gkv +xqe +jkE +jkE +jkE +jkE +jkE +jkE +jkE +jkE +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +rRV +rRV +rRV +rRV +rRV +rRV +rRV +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(106,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +xJN +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +jAk +unv +vmO +cfg +jAk +fTd +hfL +jAk +cJA +eKD +ggC +wjc +wjc +wjc +xrc +rVt +gWe +ddC +pMq +wjc +wjc +wjc +cJA +eKD +ggC +eud +aMt +fDp +kJd +wnE +hWA +bDv +giq +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +jkE +umW +cde +cOW +vFG +umW +cde +cOW +vFG +umW +cde +cOW +vFG +umW +cde +cOW +vFG +jkE +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +jkE +jkE +jkE +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +rRV +rRV +rRV +rRV +rRV +rRV +rRV +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(107,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +jAk +ecz +huf +hsM +lNn +cqi +cNm +jAk +fUW +eKD +ggC +wjc +wjc +wjc +xrc +xrc +xrc +xrc +pMq +wjc +wjc +wjc +fUW +eKD +ggC +eud +eud +eud +eud +eud +eud +eud +giq +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +umW +dPl +cOW +vFG +umW +dPl +cOW +vFG +umW +dPl +cOW +vFG +umW +dPl +cOW +vFG +jkE +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +jkE +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +rRV +rRV +rRV +rRV +rRV +rRV +rRV +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(108,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +jAk +nWR +jQV +eoz +jAk +bML +sBO +jAk +eDr +har +ttV +wjc +xml +xml +xml +xml +xml +xml +xml +xml +xml +wjc +eDr +har +ttV +eud +dEO +iwj +cmF +vvs +oRu +eud +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +umW +dPl +cOW +vFG +umW +dPl +cOW +vFG +umW +dPl +cOW +vFG +umW +dPl +cOW +vFG +jkE +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +xJN +vFG +vFG +jkE +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +rRV +rRV +rRV +rRV +rRV +rRV +rRV +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(109,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +aJV +aJV +aJV +aJV +aJV +xoC +nNw +aJV +vmH +drx +pWy +wjc +xml +xml +xml +xml +xml +xml +xml +xml +xml +wjc +vmH +drx +pWy +eud +bGL +nhD +tEg +wfu +ieR +eud +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +umW +dPl +cOW +vFG +umW +dPl +cOW +vFG +umW +dPl +cOW +vFG +umW +dPl +cOW +vFG +jkE +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +jkE +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +rRV +rRV +rRV +rRV +rRV +rRV +rRV +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(110,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +aJV +osD +pfa +lAw +aJV +fSq +suq +aJV +qja +eKD +ggC +wjc +xml +xml +xml +xml +xml +xml +xml +xml +xml +wjc +qja +eKD +ggC +eud +uIj +qWf +fgC +qWf +pCt +eud +gFf +bAl +bAl +nHR +rIH +vFG +vFG +wjc +wjc +wjc +wjc +vFG +umW +dPl +cOW +vFG +umW +dPl +cOW +vFG +umW +dPl +cOW +vFG +umW +dPl +cOW +vFG +jkE +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +jkE +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(111,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +aJV +mUI +hIq +lLB +pmn +kFt +qey +aJV +piI +blI +cfj +wjc +xml +xml +xml +xml +xml +xml +xml +xml +xml +wjc +piI +blI +cfj +eud +teR +tEg +tEg +tEg +lGl +eud +gFf +ePH +bAl +nHR +rIH +vFG +vFG +wjc +wjc +wjc +wjc +vFG +umW +dPl +cOW +vFG +umW +dPl +cOW +vFG +umW +dPl +cOW +vFG +umW +dPl +cOW +vFG +jkE +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +jkE +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(112,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +aJV +fun +nMc +vmc +aJV +cmS +rFh +aJV +vkE +oQo +sEh +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vkE +oQo +sEh +sqQ +eiD +wUd +grM +dKE +uQL +sqQ +kep +ePH +bAl +kyn +rIH +rIH +rIH +drw +drw +drw +drw +hCb +ahK +gAT +liw +hCb +ahK +wkw +cOW +vFG +umW +dPl +cOW +vFG +umW +dPl +cOW +vFG +jkE +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +jkE +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(113,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +aJV +jEq +csk +mQw +aJV +hta +snz +aJV +rSn +ksT +nLK +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +rSn +ksT +nLK +sqQ +eNR +hGe +wFN +ccQ +eNR +sqQ +lWt +ePH +ebc +nHR +drw +tTC +bLz +iyF +drw +drw +drw +hCb +ahK +wkw +liw +hCb +ahK +gAT +cOW +vFG +umW +dPl +cOW +vFG +umW +dPl +cOW +vFG +jkE +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +jkE +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(114,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +aJV +akk +gYW +rcQ +aJV +hta +uMJ +aJV +wtL +xMQ +hwn +wjc +nug +nug +nug +nug +nug +mPD +nug +nug +nug +wjc +wtL +xMQ +hwn +sqQ +sqQ +sqQ +xVr +sqQ +sqQ +sqQ +mTU +rWH +rWH +rWH +drw +jTq +clo +rIH +drw +drw +drw +hCb +ahK +wkw +liw +hCb +ahK +wkw +cOW +vFG +umW +dPl +cOW +vFG +umW +cde +cOW +vFG +jkE +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +jkE +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(115,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +rwf +bXx +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vWU +vWU +vWU +vWU +vWU +vWU +vWU +vWU +vWU +saA +wjc +wjc +wjc +rlU +wzI +orD +wjc +nug +sXU +sXU +cYw +kvO +dcy +sXU +sXU +nug +wjc +rlU +wzI +orD +sqQ +xmk +lMx +xVr +lMx +ybs +sqQ +myQ +myQ +myQ +myQ +myQ +mIH +dTF +dKF +dKF +dKF +xUj +jvm +nIh +sQR +xlH +hCb +ahK +wkw +liw +hCb +ahK +dPl +cOW +vFG +umW +dPl +cOW +vFG +jkE +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +jkE +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(116,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +tvd +prL +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vWU +vWU +vWU +vWU +vWU +vWU +vWU +vWU +vWU +vWU +wjc +wjc +wjc +xod +wye +lIK +wjc +nug +idw +idw +oJX +oJX +vQf +idw +idw +nug +wjc +xod +wye +lIK +sqQ +sqQ +sqQ +qfD +sqQ +sqQ +sqQ +jSK +qqC +bjt +cVe +myQ +siq +gIt +dKF +wTG +nvw +xUj +wWd +nIh +sQR +xlH +hCb +ahK +wkw +liw +hCb +ahK +dPl +cOW +vFG +umW +dPl +cOW +lKK +xqe +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +jkE +jkE +jkE +jkE +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(117,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +ghY +aoS +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vWU +vWU +miG +jUw +tsi +oBQ +rvv +faJ +vWU +vWU +wjc +wjc +wjc +wtL +jSS +wpe +wjc +nug +mVB +xdl +vQf +vQf +vQf +xdl +bUi +nug +wjc +wtL +jSS +wpe +sqQ +xoX +jCY +udA +mNI +qCm +sqQ +ear +jGy +tzO +fqe +myQ +uEa +iwa +rhq +czZ +tOk +xUj +xUj +nIh +sQR +xlH +hCb +ahK +wkw +liw +hCb +ahK +dPl +cOW +vFG +umW +dPl +cOW +vFG +jkE +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(118,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +ghY +ffZ +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +jkS +vWU +pIv +oBQ +geo +geo +oBQ +uBj +vWU +jkS +wjc +wjc +wjc +wtL +eKD +fyh +wjc +drJ +vuJ +jcR +xdl +vQf +xdl +xdl +tSD +nug +wjc +wtL +eKD +fyh +bFT +uGM +uGM +bxX +oio +fyB +sqQ +dgV +fxl +qup +vtk +myQ +eEI +pXI +dKF +vvf +bGf +edz +tHt +nIh +sQR +xlH +hCb +ahK +wkw +liw +hCb +ahK +cde +cOW +vFG +umW +dPl +cOW +vFG +jkE +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(119,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +xHC +oPm +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vWU +vWU +ujm +oBQ +gUw +rPs +oBQ +fCA +vWU +vWU +wjc +wjc +wjc +wtL +eKD +nXQ +wjc +drJ +iFK +jcR +xdl +vQf +rZX +rZX +rZX +nug +wjc +wtL +eKD +nXQ +sqQ +kaR +kaR +vDq +cfb +phF +sqQ +jbV +lKx +sRg +hHg +myQ +dKY +paJ +hBz +xNR +gWm +edz +bRc +nIh +sQR +xlH +hCb +ahK +wkw +liw +hCb +ahK +dPl +cOW +vFG +umW +dPl +cOW +vFG +jkE +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(120,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vWU +vWU +ehW +oBQ +geo +fhF +jaY +vVy +vWU +vWU +wjc +wjc +wjc +cvJ +iAe +ibX +wjc +nug +dYm +vQf +vQf +iNe +tKL +hVB +tKL +nug +wjc +cvJ +iAe +ibX +sqQ +sqQ +sqQ +sqQ +hxl +sqQ +sqQ +myQ +myQ +cPh +myQ +myQ +gLH +eKd +dKF +dKF +dKF +xUj +ogj +nIh +smw +xlH +hCb +ahK +wkw +liw +hCb +ahK +dPl +cOW +vFG +umW +dPl +cOW +vFG +jkE +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(121,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vWU +vWU +vvp +oBQ +geo +chR +ofd +mlp +vWU +vWU +wjc +wjc +wjc +sfl +eKD +ggC +wjc +nug +gSR +qBq +cNY +nug +nug +nug +nug +nug +wjc +sfl +eKD +ggC +dFk +lGL +pFj +rnB +aHW +iLY +cqT +rlo +jyW +aHW +cVq +dTo +mEN +gTg +rWk +kqm +niA +qVB +tKs +dpN +qGM +qGM +sPQ +sPQ +sPQ +sPQ +sPQ +sPQ +hRd +hRd +hRd +hRd +hRd +hRd +idY +jkE +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(122,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vWU +vWU +eyd +oBQ +geo +oBv +gaF +hmM +vWU +vWU +wjc +wjc +wjc +kFd +eKD +ggC +wjc +lDb +pXH +rjz +xzk +yex +ozQ +eln +jCl +rWH +wjc +kFd +eKD +ggC +uCB +uWd +mJZ +fHQ +uWd +ell +qHl +uWd +sbr +uWd +uWd +dTo +dnX +rdy +vYQ +vYQ +vYQ +vYQ +vYQ +xxI +dlY +lCa +hCb +ahK +mkJ +liw +hCb +ahK +bpU +cOW +vFG +umW +bpU +cOW +vFG +jkE +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(123,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +jkS +vWU +oRc +oBQ +oBQ +wjt +wJY +eUl +vWU +jkS +wjc +wjc +wjc +cJA +eKD +ggC +wjc +cEu +vQf +lPe +dwj +nug +tEV +gFf +mps +kiW +wjc +cJA +eKD +ggC +coo +coo +coo +nYJ +coo +coo +coo +buV +fii +buV +buV +buV +kGR +lYh +duV +rxU +mGW +xlY +iWG +laX +qQr +tmo +hCb +ahK +mkJ +liw +hCb +ahK +bpU +cOW +vFG +umW +bpU +cOW +vFG +jkE +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(124,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vWU +vWU +vWU +vWU +vWU +dIz +vWU +vWU +vWU +vWU +wjc +wjc +wjc +fUW +eKD +ggC +wjc +nug +kUs +jcR +tSD +nug +ajP +gFf +rIH +rIH +wjc +fUW +eKD +ggC +coo +ioB +rPT +oPY +luv +cPO +coo +djY +uMw +kdq +aRK +buV +jSj +lYh +dAo +wOo +xHo +xlY +iWG +laX +gwR +tmo +hCb +ahK +mkJ +liw +hCb +ahK +kky +cOW +vFG +umW +bpU +cOW +vFG +jkE +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(125,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vWU +vWU +vWU +vWU +vWU +hXT +vWU +sUR +vWU +vWU +wjc +wjc +wjc +eDr +har +ttV +wjc +nug +dcV +jcR +xdl +nug +fyF +gFf +rIH +lCA +wjc +eDr +har +ttV +coo +jSi +mnm +dsr +gmb +iQB +coo +fgF +xcM +eAg +jBy +buV +wOo +lYh +duV +wOo +rbk +xlY +tJR +laX +gwR +tmo +hCb +ahK +mkJ +liw +hCb +ahK +bpU +cOW +vFG +umW +bpU +cOW +vFG +jkE +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(126,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vmH +drx +pWy +wjc +nug +iFK +jcR +xdl +nug +mDw +gEC +rIH +lCA +wjc +vmH +drx +pWy +coo +vlz +mnm +mnm +mnm +oph +coo +tJH +rsc +tbe +jiL +buV +hTy +riA +duV +wOo +lJy +xlY +iWG +laX +gwR +tmo +hCb +ahK +mkJ +liw +hCb +ahK +bpU +cOW +vFG +umW +bpU +cOW +lKK +xqe +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(127,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +mXS +jGk +mjq +wjc +nug +iFK +jcR +xdl +nug +iKn +gFf +rIH +lCA +wjc +mXS +jGk +mjq +coo +wRQ +wqQ +isu +vlz +wRV +coo +tvR +szv +uMr +nxS +buV +cig +lYh +duV +rGC +bIN +xlY +iWG +laX +gwR +tmo +hCb +ahK +mkJ +liw +hCb +ahK +bpU +cOW +vFG +umW +bpU +cOW +vFG +jkE +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(128,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +nes +ldh +nes +nes +wjc +oRV +kcH +sDt +wjc +nug +iFK +uqm +lgG +nug +nHR +gFf +rIH +lCA +wjc +oRV +kcH +sDt +coo +coo +coo +coo +coo +coo +coo +tJa +aFE +rhe +kbQ +buV +fEO +lYh +duV +duV +xlY +xlY +iWG +laX +gwR +tmo +hCb +ahK +mkJ +liw +hCb +ahK +bpU +cOW +vFG +umW +bpU +cOW +vFG +jkE +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(129,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wlm +tUu +cEX +nes +wjc +bgq +qLm +bst +wjc +nug +nug +nug +nug +nug +nHR +gFf +rIH +lCA +wjc +bgq +qLm +bst +pmz +iit +kvN +rTp +mPe +klj +pmz +buV +buV +mew +buV +buV +wOo +lYh +pEA +lnq +iWG +rRg +iWG +laX +gwR +tmo +hCb +ahK +mkJ +cOW +vFG +umW +bpU +cOW +vFG +umW +kky +cOW +vFG +jkE +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(130,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +upO +lqM +kIn +nes +wjc +ojF +hWi +gcB +wjc +xml +xml +xml +xml +xml +xml +xml +xml +xml +wjc +ojF +hWi +gcB +pmz +boF +lSy +azV +sAx +iMg +pmz +aOk +mKY +czq +llL +buV +wOo +lYh +mlW +lnq +iWG +rRg +iWG +laX +gwR +tmo +hCb +ahK +mkJ +cOW +vFG +umW +bpU +cOW +vFG +umW +bpU +cOW +vFG +jkE +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(131,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +cCb +eDY +mVq +wST +wjc +vLy +qLm +pze +wjc +xml +xml +xml +xml +xml +xml +xml +xml +xml +wjc +vLy +qLm +pze +pmz +mTI +dOI +oUe +dOI +swC +pmz +jZy +jkC +uvk +rdZ +buV +vnb +lYh +pEA +lnq +iWG +rRg +iWG +laX +qQr +tmo +hCb +ahK +wPf +cOW +vFG +umW +bpU +cOW +vFG +umW +bpU +cOW +vFG +jkE +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(132,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +nTs +eDY +mVq +wST +wjc +tfe +qLm +gPI +wjc +xml +xml +xml +xml +xml +xml +xml +xml +xml +wjc +tfe +qLm +gPI +pmz +sya +swC +mwk +nGJ +jOS +pmz +buV +buV +buV +buV +buV +wOo +lYh +mlW +bvq +mlr +rRg +iWG +laX +gwR +tmo +hCb +ahK +mkJ +cOW +vFG +umW +bpU +cOW +vFG +umW +bpU +cOW +vFG +jkE +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(133,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +rZT +eDY +qBD +nes +wjc +gHW +mNQ +wLS +wjc +xml +xml +xml +xml +xml +xml +xml +xml +xml +wjc +gHW +mNQ +wLS +pmz +pmz +pmz +ufr +pmz +pmz +pmz +drw +drw +nHR +nHR +nHR +nHR +aAZ +iyF +hCb +hCb +aVl +hCb +ahK +mkJ +liw +hCb +ahK +mkJ +cOW +vFG +umW +bpU +cOW +vFG +umW +bpU +cOW +vFG +jkE +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(134,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +nes +ltp +rZT +eDY +gqk +ufN +wjc +bgq +jWc +pze +wjc +wjc +wjc +cnL +xUZ +rAR +mqs +cnL +wjc +wjc +wjc +bgq +jWc +pze +hes +cEQ +bxO +riD +jwX +wuH +wuH +jXq +jXq +fnf +mDW +dSN +dSN +jFR +rIH +hCb +hCb +aVl +hCb +ahK +mkJ +liw +hCb +ahK +mkJ +cOW +vFG +umW +bpU +cOW +vFG +umW +bpU +cOW +vFG +jkE +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(135,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +nyu +iAu +voG +cYg +qxT +kmK +wjc +bgq +lSK +szA +wjc +wjc +wjc +weX +dpl +oXO +kbS +cus +wjc +wjc +wjc +bgq +lSK +szA +lap +hta +jBJ +nCm +kqd +hta +hta +bpN +bpN +tsP +mps +rIH +rIH +rIH +rIH +hCb +hCb +aVl +hCb +ahK +mkJ +liw +hCb +ahK +mkJ +cOW +vFG +umW +bpU +cOW +vFG +umW +bpU +cOW +vFG +jkE +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(136,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +nes +pls +sfp +sZy +oqG +nes +wjc +jMc +jWc +pze +wjc +wjc +wjc +cnL +lgT +sRa +odf +cnL +wjc +wjc +wjc +jMc +jWc +pze +aMU +aMU +aMU +vLd +aMU +aMU +aMU +pZd +mps +mps +giq +wjc +wjc +wjc +wjc +vFG +vFG +omy +vFG +umW +kky +cOW +vFG +umW +kky +cOW +vFG +umW +kky +cOW +vFG +umW +kky +cOW +vFG +jkE +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +jkE +jkE +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(137,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +nes +eRh +ptY +res +iXC +nes +wjc +bgq +kFA +geO +wjc +wjc +wjc +cnL +cnL +cnL +cnL +wjc +wjc +wjc +wjc +bgq +kFA +geO +aMU +vEz +rJX +rBW +iYZ +aMU +plg +nWy +wUh +tnU +giq +wjc +vFG +vFG +vFG +vFG +vFG +omy +jkE +jkE +jkE +jkE +jkE +jkE +jkE +xqe +jkE +xqe +jkE +jkE +jkE +jkE +jkE +jkE +jkE +jkE +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +jkE +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(138,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +nes +tHz +gyt +lVh +ntN +nes +wjc +bgq +kFA +atx +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +bgq +kFA +atx +aMU +gav +quT +cSP +msg +aMU +gZK +wvw +lKT +tTL +giq +wjc +omy +omy +omy +jkE +jkE +jkE +vFG +vFG +vFG +vFG +vFG +jkE +vFG +vFG +vFG +vFG +jkE +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +jkE +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(139,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +nes +sjZ +fpV +sFl +xDD +nes +wjc +vLy +kFA +daA +giq +giq +giq +giq +giq +giq +giq +giq +giq +giq +giq +vLy +kFA +daA +giq +dsd +quT +cSP +sRB +aMU +pJR +jEE +hau +llc +giq +wjc +vFG +vFG +vFG +jkE +vFG +vFG +vFG +vFG +vFG +vFG +vFG +jkE +vFG +vFG +vFG +vFG +jkE +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +jkE +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(140,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +nes +nes +nes +nes +nes +nes +wjc +lgz +xdn +aBF +giq +tFp +xiX +bXx +lNi +giq +shl +qWI +nYY +lNi +giq +lgz +xdn +aBF +giq +fwO +fZl +aCs +pIG +aMU +aRE +qOX +eSr +kaY +giq +vFG +vFG +vFG +vFG +jkE +jkE +jkE +jkE +jkE +jkE +jkE +jkE +jkE +vFG +vFG +vFG +vFG +jkE +jkE +jkE +jkE +jkE +jkE +jkE +jkE +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +jkE +jkE +jkE +jkE +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(141,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +bVn +kFA +bst +giq +sat +pin +rtd +gZF +giq +xjf +pin +rtd +gZF +giq +bVn +kFA +bst +giq +wxD +cXe +gXy +msg +aMU +msg +aII +xnG +mJk +giq +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +jkE +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +xJN +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(142,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +bgq +kFA +pze +giq +kKj +umL +rwE +jaJ +giq +kKj +umL +rwE +jaJ +giq +bgq +kFA +pze +giq +giq +pbp +mps +mps +mps +mps +mps +pbp +mps +giq +jkE +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(143,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +lkX +mSf +gcB +giq +uFv +moT +wuV +vUy +giq +xQE +moT +wuV +sap +giq +lkX +mSf +gcB +giq +uII +wLw +bUJ +lAc +mps +vOD +kAr +oVt +lAc +giq +vFG +omy +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(144,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +bgq +kFA +pze +giq +giq +nPz +giq +giq +giq +giq +uXZ +giq +giq +giq +bgq +kFA +pze +giq +nHw +oHn +fTV +fBq +mps +tzE +sbV +woa +fBq +giq +vFG +omy +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(145,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +bgq +kFA +kgv +wjc +xml +xml +xml +xml +xml +xml +xml +xml +xml +wjc +bgq +kFA +kgv +giq +giq +mps +mps +mps +giq +giq +giq +giq +giq +giq +vFG +jkE +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(146,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +tSW +dms +muD +wjc +xml +xml +xml +xml +xml +xml +xml +xml +xml +wjc +tSW +dms +muD +wjc +wjc +nHR +gFf +iyF +vFG +vFG +vFG +jkE +vFG +vFG +vFG +jkE +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(147,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +bgq +jWc +pze +wjc +xml +xml +xml +xml +xml +xml +xml +xml +xml +wjc +bgq +jWc +pze +vFG +vFG +rWH +jFR +rIH +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(148,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +bgq +jWc +pze +wjc +wjc +wjc +lbF +gEH +gEH +lbF +wjc +wjc +wjc +wjc +bgq +jWc +pze +vFG +vFG +cEl +dUy +rIH +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(149,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +bgq +jWc +pze +wjc +wjc +wjc +gEH +wch +wch +gEH +wjc +wjc +wjc +wjc +bgq +jWc +pze +vFG +vFG +rIH +rIH +rIH +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(150,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +bgq +jWc +pze +wjc +wjc +wjc +gEH +wch +wch +wch +wjc +wjc +wjc +wjc +bgq +jWc +pze +wjc +wjc +lCA +lCA +vFG +vFG +vFG +omy +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +vEb +kwx +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(151,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +bgq +jWc +pze +wjc +wjc +wjc +gEH +wch +wch +wch +wjc +wjc +wjc +wjc +bgq +jWc +pze +wjc +wjc +lCA +lCA +vFG +vFG +vFG +jkE +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(152,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +bgq +jWc +pze +wjc +wjc +wjc +gEH +wch +wch +gEH +wjc +wjc +wjc +wjc +bgq +jWc +pze +wjc +wjc +lCA +lCA +jkE +omy +omy +omy +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(153,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +bgq +jWc +pze +wjc +wjc +wjc +lbF +gEH +gEH +lbF +wjc +wjc +wjc +wjc +bgq +jWc +pze +wjc +wjc +lCA +lCA +jkE +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(154,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +bgq +jWc +pze +xml +xml +xml +xml +xml +xml +xml +xml +xml +xml +xml +bgq +jWc +pze +wjc +wjc +lCA +lCA +omy +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +xJN +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(155,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +bgq +jWc +pze +txF +oUt +oUt +oUt +oUt +oUt +oUt +oUt +oUt +oUt +bic +bgq +jWc +pze +rIH +lCA +lCA +lCA +omy +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(156,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +bgq +jWc +pze +dZW +oUt +oUt +oUt +oUt +oUt +oUt +oUt +oUt +oUt +bic +bgq +jWc +pze +rIH +lCA +lCA +lCA +omy +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(157,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +xJN +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +omy +lCA +lCA +lCA +uvE +sXA +fnd +wjc +wjc +wjc +wjc +oJt +xrJ +oWR +luW +oJt +mps +mps +mps +hkn +mps +dXA +rIH +lCA +lCA +lCA +omy +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(158,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +omy +lCA +lCA +lCA +uvE +sLn +fnd +efR +oJt +oJt +oJt +oJt +flh +bBz +hhm +oJt +oJt +oJt +oJt +ePH +mps +kvG +rIH +lCA +lCA +lCA +omy +vFG +vFG +vFG +xJN +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(159,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +omy +lCA +lCA +lCA +uvE +vlV +fnd +fnd +gdg +mne +oWS +leD +dNa +lfY +xmA +ktV +oWS +mne +bHg +ePH +mps +mps +rIH +lCA +lCA +lCA +omy +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(160,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +xJN +vFG +vFG +jkE +lCA +lCA +lCA +uvE +vlV +fnd +vlV +oJt +hVb +lfY +leD +dNa +lfY +xmA +ktV +lfY +wxR +oJt +ePH +ePH +fGd +rIH +lCA +lCA +lCA +omy +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(161,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +jkE +jkE +vFG +vFG +uvE +cCW +fnd +efR +oJt +jIj +gcQ +nXw +dNa +lfY +xmA +gnd +gcQ +heW +oJt +iKn +ePH +gpX +rIH +vFG +vFG +jkE +jkE +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(162,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +omy +vFG +vFG +uvE +cgO +fnd +vlV +oJt +gcQ +gcQ +nXw +dNa +tra +xmA +gnd +gcQ +gcQ +oJt +vfQ +ePH +nHR +rIH +vFG +vFG +omy +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(163,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +omy +vFG +vFG +pdu +vlV +fnd +vlV +oJt +oJt +glZ +oJt +kyg +eIu +ihL +oJt +glZ +oJt +oJt +nHR +ePH +nHR +mrT +vFG +vFG +omy +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(164,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +omy +vFG +vFG +pdu +vlV +fnd +vlV +toA +ixv +lfY +ktV +oTC +mic +xmA +ktV +lfY +lqx +toA +mDw +ePH +hGR +mrT +vFG +vFG +omy +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(165,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +omy +vFG +vFG +pdu +efR +fnd +rjR +toA +ixv +lfY +ktV +dNa +lfY +xmA +ktV +lfY +lqx +toA +iKn +ePH +yaM +mrT +vFG +vFG +omy +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(166,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +jkE +vFG +vFG +pdu +vlV +fnd +vlV +oJt +oJt +oJt +oJt +aEM +aUc +fbB +oJt +oJt +oJt +oJt +mps +sSh +mps +rIH +vFG +vFG +omy +vFG +vFG +vFG +vFG +vFG +vFG +jjU +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(167,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +jkE +vFG +vFG +uvE +rjR +fnd +vlV +vlV +wgv +oJt +hdB +rOi +mxL +rgR +pNH +oJt +mNK +dek +mNK +pdK +kSP +toA +iAM +vFG +omy +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(168,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +jkE +vFG +gGg +uvE +npM +fnd +fnd +fnd +fnd +bwV +bnM +nVx +vKc +qMe +nUl +gct +pdK +pdK +pdK +pdK +pdK +toA +vFG +vFG +omy +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(169,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +jkE +jkE +jkE +uvE +mEU +mEU +mEU +mEU +mEU +oJt +cBq +noS +fIl +noS +nUl +jrc +oTU +esf +lDR +fAL +fAL +toA +vFG +vFG +omy +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(170,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +omy +vFG +vFG +uvE +efR +vlV +mEU +nPn +mDA +oJt +tlc +lps +uQB +eWO +nUl +jrc +xCh +ufd +wUB +tGl +pdK +toA +vFG +vFG +omy +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(171,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +omy +vFG +vFG +uvE +uvE +vlV +mEU +fpD +jYt +oJt +qLz +bho +oyT +bho +nUl +jrc +cOq +oor +gnX +pdK +toA +toA +vFG +vFG +jkE +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +xJN +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(172,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +uvE +uvE +uvE +tkp +kEY +gWM +sJj +noJ +tJm +noJ +sij +aYk +ftn +aBO +toA +toA +toA +omy +omy +omy +jkE +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(173,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +uvE +uvE +uvE +oJt +lvF +scW +scW +scW +gFH +oJt +toA +toA +toA +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(174,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +uvE +toA +xGn +noS +noS +noS +gLc +toA +toA +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(175,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +jrc +jrc +qKC +xlD +pIp +jrc +jrc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(176,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +xJN +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +jrc +jrc +jrc +jrc +jrc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(177,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(178,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(179,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +xJN +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(180,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(181,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(182,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +xJN +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(183,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +wjc +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(184,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(185,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(186,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(187,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(188,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(189,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(190,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(191,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} +(192,1,1) = {" +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +vFG +"} diff --git a/maps/victory/levels/deck3.dmm b/maps/victory/levels/deck3.dmm new file mode 100644 index 000000000000..fb6bf90d0cec --- /dev/null +++ b/maps/victory/levels/deck3.dmm @@ -0,0 +1,62778 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aaK" = ( +/obj/structure/lattice, +/turf/simulated/floor/airless/ceiling, +/area/space) +"abL" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 5 + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab) +"acc" = ( +/turf/simulated/floor/tiled, +/area/medical/resleeving) +"acf" = ( +/obj/effect/floor_decal/spline/plain, +/obj/structure/flora/ausbushes/ywflowers, +/turf/simulated/floor/grass, +/area/medical/psych_ward) +"act" = ( +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "xenobio4"; + name = "Containment Blast Doors"; + opacity = 0 + }, +/obj/spawner/window/low_wall/reinforced/full, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"acD" = ( +/obj/structure/table/standard, +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 5 + }, +/obj/item/pen/red{ + pixel_x = -1; + pixel_y = 3 + }, +/obj/item/pen/blue{ + pixel_x = -5; + pixel_y = -1 + }, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"adc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/obj/effect/floor_decal/techfloor/hole{ + dir = 8 + }, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"ade" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/button/remote/blast_door{ + dir = 1; + id = "xenobiovs5"; + name = "Divider Blast Doors"; + pixel_y = -38; + req_one_access = list(29,47) + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"aeS" = ( +/obj/machinery/photocopier, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/cmo) +"aeW" = ( +/obj/structure/table/steel_reinforced, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"afb" = ( +/obj/machinery/sleep_console{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"afc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 9 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"afh" = ( +/turf/simulated/wall/prepainted, +/area/crew_quarters/medical_restroom) +"afR" = ( +/obj/item/radio/intercom{ + dir = 8; + pixel_x = -28; + req_access = list() + }, +/obj/structure/bed/chair/comfy/brown{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/medical/psych/psych_2) +"agS" = ( +/obj/machinery/door/firedoor, +/obj/spawner/window/low_wall/reinforced/full, +/obj/structure/curtain/open/shower/medical{ + name = "Privacy curtain" + }, +/turf/simulated/floor/plating, +/area/medical/patient_a) +"ahH" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 9 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab) +"ajj" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/medical/morgue) +"ako" = ( +/turf/simulated/floor/carpet/purcarpet, +/area/rnd/breakroom) +"alr" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/effect/floor_decal/corner/paleblue/full{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/medical/surgeryprep) +"alX" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/recoveryrestroom) +"amr" = ( +/obj/machinery/camera/network/civilian{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central6, +/obj/machinery/air_alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"amL" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"amU" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/computer/med_data/laptop, +/obj/item/hand_labeler, +/obj/effect/floor_decal/corner/blue{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/medical/reception) +"amZ" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/machinery/recharger, +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/tiled/white, +/area/medical/medbay4) +"anx" = ( +/obj/machinery/computer/robotics{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/assembly/robotics) +"apg" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"apy" = ( +/obj/map_helper/airlock/sensor/chamber_sensor, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/airlock_sensor{ + frequency = 1380; + pixel_y = 24 + }, +/turf/simulated/floor/plating, +/area/medical/patient_wing) +"apK" = ( +/obj/machinery/light, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/blue/border, +/turf/simulated/floor/tiled/white, +/area/medical/ward) +"apN" = ( +/obj/structure/table/standard, +/obj/item/soap/nanotrasen, +/obj/item/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = -4 + }, +/obj/random/medical/lite, +/obj/random/medical/lite, +/obj/random/medical/lite, +/obj/random/medical/lite, +/obj/random/medical/lite, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/blue/border, +/turf/simulated/floor/tiled/white, +/area/shuttle/emt/general) +"aqP" = ( +/obj/structure/disposalpipe/trunk, +/obj/structure/disposaloutlet{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/rnd/xenobiology) +"aqT" = ( +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/anomaly_lab) +"arr" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"arH" = ( +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/machinery/power/apc/south_mount, +/obj/structure/table/woodentable, +/obj/item/toy/plushie/kitten, +/turf/simulated/floor/wood, +/area/medical/psych/psych_1) +"arT" = ( +/obj/machinery/computer/mecha, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/rnd/rdoffice) +"arY" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner2{ + dir = 8 + }, +/obj/structure/table/carbon/reinforced, +/obj/item/storage/box/treats, +/turf/simulated/floor/tiled/dark, +/area/assembly/robotics) +"asv" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/medical/sleeper) +"atV" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay4) +"auq" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/obj/machinery/door/airlock/multi_tile/metal{ + name = "Infectious Diseases & Treatment Center" + }, +/obj/map_helper/access_helper/airlock/station/medical/department, +/turf/simulated/floor/tiled/white, +/area/medical/virologyaccess) +"avn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/medical/medbay_primary_storage) +"avB" = ( +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "xenobio2"; + name = "Containment Blast Doors"; + opacity = 0 + }, +/obj/spawner/window/low_wall/reinforced/full, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"avE" = ( +/obj/landmark/spawnpoint/job/cyborg, +/turf/simulated/floor/tiled/techfloor, +/area/assembly/chargebay) +"aww" = ( +/obj/machinery/computer/ship/helm{ + dir = 8 + }, +/obj/item/gps/internal/base{ + desc = "A tracking beacon embedded in the shuttle systems, to help explorers find where they landed."; + gps_tag = "EMT"; + name = "shuttle beacon" + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/emt/cockpit) +"awE" = ( +/obj/machinery/optable, +/obj/machinery/oxygen_pump/anesthetic{ + pixel_x = -28 + }, +/turf/simulated/floor/tiled/monotile, +/area/medical/surgery2) +"awP" = ( +/obj/machinery/scale, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 10 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay4) +"axp" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/medical/sleeper) +"ayB" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/red{ + dir = 4 + }, +/obj/machinery/meter, +/obj/item/radio/intercom{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled, +/area/rnd/test_area) +"ayI" = ( +/obj/machinery/light, +/obj/machinery/computer/ship/navigation/telescreen{ + pixel_y = -37 + }, +/obj/structure/flora/pottedplant/orientaltree, +/obj/effect/floor_decal/corner/beige{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"azK" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/camera/network/medbay{ + dir = 4 + }, +/obj/machinery/disease2/diseaseanalyser, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/red, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/medical/virology) +"aBb" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/ward) +"aBk" = ( +/obj/machinery/cryopod{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"aBt" = ( +/obj/machinery/button/remote{ + dir = 4; + id = "emg_pump"; + name = "EMERGENCY XENO-BIO KILL SWITCH"; + pixel_x = -24 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/rdoffice) +"aCZ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 + }, +/obj/structure/closet/secure_closet/hydroponics{ + name = "Xenobotanist's locker"; + req_access = list(); + req_one_access = list(30,35,47,77) + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"aDe" = ( +/obj/structure/lattice, +/obj/structure/grille, +/turf/space, +/area/space) +"aDi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "xenobio2"; + name = "Containment Blast Doors"; + opacity = 0 + }, +/obj/spawner/window/low_wall/reinforced/full, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"aDx" = ( +/turf/simulated/wall/prepainted/science, +/area/assembly/robotics) +"aDY" = ( +/turf/simulated/floor/tiled/white, +/area/medical/recoveryrestroom) +"aEn" = ( +/obj/item/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 26 + }, +/mob/living/simple_mob/slime/xenobio/rainbow/kendrick, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/rdoffice) +"aEO" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 6 + }, +/obj/machinery/ai_status_display{ + pixel_y = -32 + }, +/obj/landmark/spawnpoint/overflow, +/turf/simulated/floor/tiled/techfloor, +/area/teleporter/departing) +"aET" = ( +/obj/structure/morgue{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/medical/morgue) +"aEU" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/cmo) +"aEX" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "medbayquar"; + name = "Medbay Emergency Lockdown Shutters"; + opacity = 0 + }, +/obj/structure/window/reinforced/polarized/full{ + id = "cmo_office" + }, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/wall_frame/prepainted, +/turf/simulated/floor/plating, +/area/crew_quarters/heads/cmo) +"aFj" = ( +/obj/machinery/door/firedoor/glass, +/obj/map_helper/airlock/door/int_door, +/obj/machinery/access_button/airlock_interior{ + dir = 1; + frequency = 1380; + master_tag = "emt_shuttle_dock"; + pixel_y = 24 + }, +/obj/machinery/door/airlock/glass_external{ + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/external_airlock, +/turf/simulated/floor/plating, +/area/medical/patient_wing) +"aFA" = ( +/obj/machinery/computer/diseasesplicer, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/medical/virology) +"aFC" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/beige/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay4) +"aFN" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 8 + }, +/obj/machinery/door/firedoor/glass{ + dir = 4 + }, +/obj/spawner/window/low_wall/reinforced/full, +/turf/simulated/floor/plating, +/area/medical/virologyisolation) +"aFW" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"aHb" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/maintenance/medbay/aft) +"aHe" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 8 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/medical/medbay4) +"aHi" = ( +/obj/machinery/door/blast/regular{ + id = "xenobiovs4"; + layer = 8; + name = "Divider Blast Door"; + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"aHG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"aHX" = ( +/obj/effect/floor_decal/techfloor, +/obj/machinery/fire_alarm/south_mount{ + pixel_y = -24 + }, +/obj/structure/flora/pottedplant/stoutbush, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"aIx" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"aIF" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/simulated/floor/tiled/white, +/area/medical/patient_b) +"aIH" = ( +/obj/machinery/camera/network/research{ + dir = 4; + network = list("Xenobiology") + }, +/obj/machinery/computer/mecha{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/assembly/robotics) +"aIK" = ( +/obj/structure/bed/chair/office/dark, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/beige/border, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"aJe" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightorange/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay3) +"aJg" = ( +/obj/machinery/portable_atmospherics/canister/empty, +/obj/effect/floor_decal/industrial/warning/full, +/obj/machinery/camera/network/research{ + dir = 6; + network = list("Research","Toxins Test Area") + }, +/obj/structure/closet/hydrant{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/rnd/test_area) +"aKv" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 9 + }, +/obj/machinery/camera/network/civilian{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/teleporter/departing) +"aKR" = ( +/obj/machinery/computer/aifixer, +/turf/simulated/floor/tiled, +/area/rnd/rdoffice) +"aLf" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virologyaccess) +"aLW" = ( +/obj/machinery/holopad, +/obj/effect/floor_decal/corner/blue/diagonal, +/turf/simulated/floor/tiled/white, +/area/medical/exam_room/exam_1) +"aOb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/research) +"aOx" = ( +/obj/structure/cable/green, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay3) +"aOH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/rnd/test_area) +"aOX" = ( +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/techfloor{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"aPs" = ( +/obj/structure/lattice, +/turf/space/basic, +/area/space) +"aPI" = ( +/turf/simulated/wall/prepainted/medical, +/area/medical/surgery2) +"aPL" = ( +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/machinery/power/terminal, +/turf/simulated/floor, +/area/shuttle/emt/general) +"aPX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora/lab_atmos) +"aQo" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/ears/earmuffs, +/obj/item/clothing/glasses/goggles, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/dark, +/area/rnd/research/testingrange) +"aRa" = ( +/turf/simulated/wall/r_wall/prepainted/science, +/area/rnd/research/testingrange) +"aRl" = ( +/obj/structure/table/steel_reinforced, +/obj/item/storage/firstaid/surgery, +/turf/simulated/floor/tiled, +/area/medical/surgery) +"aSk" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/embedded_controller/radio/airlock/access_controller{ + id_tag = "virology_airlock_control"; + name = "Virology Access Console"; + pixel_x = -25; + pixel_y = -24; + tag_exterior_door = "virology_airlock_exterior"; + tag_interior_door = "virology_airlock_interior" + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virologyaccess) +"aSs" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/carpet/sblucarpet, +/area/medical/psych/psych_1) +"aSW" = ( +/obj/effect/floor_decal/corner/beige/full{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"aTQ" = ( +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled, +/area/rnd/misc_lab) +"aUb" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/paleblue/full{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/medical/surgeryprep) +"aUo" = ( +/obj/machinery/button/windowtint{ + id = "psyche"; + pixel_x = 24; + pixel_y = -2 + }, +/obj/machinery/button/remote/airlock{ + desc = "A remote control switch for the medbay recovery room door."; + dir = 8; + id = "mentaldoor2"; + name = "Door Switch"; + pixel_x = 28; + pixel_y = 9 + }, +/turf/simulated/floor/wood, +/area/medical/psych/psych_1) +"aUR" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"aVO" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/vending/wallmed1{ + name = "Emergency NanoMed"; + pixel_y = -30 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"aWr" = ( +/obj/machinery/fire_alarm/west_mount{ + pixel_x = -26 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"aXm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"aXF" = ( +/obj/machinery/door/firedoor/glass, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightorange/border{ + dir = 8 + }, +/obj/machinery/door/airlock/multi_tile/metal{ + name = "Medbay Employee Entrance" + }, +/obj/map_helper/access_helper/airlock/station/medical/department, +/turf/simulated/floor/tiled/white, +/area/medical/medbay3) +"aXN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/turf/simulated/floor/tiled{ + icon_state = "techmaint" + }, +/area/victory/station/stairs_three) +"aXR" = ( +/obj/machinery/atmospherics/portables_connector, +/turf/simulated/floor/tiled, +/area/rnd/test_area) +"aZa" = ( +/obj/effect/floor_decal/techfloor{ + dir = 6 + }, +/obj/machinery/light/small, +/obj/machinery/media/jukebox, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/workshop) +"aZo" = ( +/obj/machinery/optable{ + name = "Robotics Operating Table" + }, +/turf/simulated/floor/tiled/old_tile/purple, +/area/assembly/robotics/surgery) +"aZG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "psyche-a-inner"; + name = "Ward A Back Area Access"; + pixel_x = -26; + pixel_y = 24; + req_one_access = list(5) + }, +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "psyche-a-outer"; + name = "Ward A Lockdown"; + pixel_x = -26; + pixel_y = 32; + req_one_access = list(5) + }, +/turf/simulated/floor/tiled, +/area/medical/psych_ward) +"aZT" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/obj/machinery/door/firedoor{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/aft) +"aZV" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/victory/station/stairs_three) +"aZZ" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/ward) +"bbD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/medical_restroom) +"bbY" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/substation/medical_science) +"bcX" = ( +/obj/machinery/computer/ship/engines, +/turf/simulated/floor, +/area/shuttle/emt/general) +"bds" = ( +/obj/machinery/portable_atmospherics/canister/oxygen/prechilled{ + start_pressure = 9000 + }, +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/medical/medbay_primary_storage) +"bdJ" = ( +/obj/machinery/iv_drip, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"bfS" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/station_map{ + dir = 4; + pixel_x = -32 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"bge" = ( +/turf/simulated/shuttle/wall/voidcraft/hard_corner, +/area/hallway/primary/aft) +"bgr" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/surgeryprep) +"bhD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/rnd/rdoffice) +"bix" = ( +/obj/machinery/iv_drip, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/patient_wing) +"biy" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virologyisolation) +"biX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 6 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/emt/general) +"bjg" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"bji" = ( +/obj/machinery/atmospherics/component/unary/heater{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/test_area) +"bks" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/medbreak) +"bkt" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/patient_c) +"bkF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/machinery/door/airlock/glass/research{ + name = "XenoArcheology"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/science/xenoarcheology, +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab) +"bkU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"blH" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/mauve/border, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"bmd" = ( +/obj/structure/closet/l3closet/scientist/double, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"bnr" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/white, +/area/medical/surgery2) +"bnP" = ( +/obj/effect/floor_decal/industrial/outline/blue, +/obj/machinery/iv_drip, +/turf/simulated/floor/tiled, +/area/medical/surgery) +"bpn" = ( +/obj/structure/sink/kitchen{ + pixel_y = 28 + }, +/obj/effect/floor_decal/industrial/danger/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"bqe" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/medical/morgue) +"bqS" = ( +/turf/simulated/floor/tiled, +/area/rnd/rdoffice) +"brk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/power/apc/south_mount, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/xenobiology/xenoflora_storage) +"bsC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/xenobiology/xenoflora_storage) +"bsW" = ( +/obj/structure/table/standard, +/obj/machinery/computer/atmoscontrol/laptop{ + monitored_alarm_ids = list("xenopenvent"); + req_one_access = list(47,24,11) + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"btU" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 5 + }, +/obj/machinery/atmospherics/component/unary/vent_pump{ + external_pressure_bound = 0; + frequency = 1445; + icon_state = "map_vent_in"; + id_tag = "burn_out"; + initialize_directions = 4; + pump_direction = 0 + }, +/turf/simulated/floor/reinforced/airless, +/area/rnd/test_area) +"buE" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/techfloor, +/area/medical/morgue) +"bvp" = ( +/obj/machinery/computer/operating{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/medical/surgery) +"bwA" = ( +/obj/machinery/shower{ + dir = 1 + }, +/obj/structure/curtain/medical, +/turf/simulated/floor/tiled/techfloor/grid, +/area/medical/surgeryprep) +"bwC" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/white, +/area/medical/surgeryprep) +"bxz" = ( +/obj/structure/curtain/open/shower, +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/machinery/shower{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 9 + }, +/obj/machinery/air_alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/research_restroom) +"bxO" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"byw" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue, +/obj/machinery/organ_printer/flesh, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/surgeryprep) +"bzj" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/blue/border, +/obj/machinery/air_alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/white, +/area/medical/patient_wing) +"bzV" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/machinery/light/small, +/turf/simulated/floor/tiled, +/area/rnd/storage) +"bAd" = ( +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/ward) +"bAI" = ( +/mob/living/bot/medibot/medass, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"bAJ" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/medical/reception) +"bAN" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/black{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virologyisolation) +"bAO" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/structure/closet/secure_closet/paramedic, +/obj/item/stack/medical/splint, +/obj/item/material/knife/machete, +/obj/item/clothing/accessory/holster/machete, +/obj/item/clothing/accessory/permit/gun/paramedic, +/obj/item/bodybag/cryobag, +/obj/item/bodybag/cryobag, +/turf/simulated/floor/tiled, +/area/medical/medbay_emt_bay) +"bBu" = ( +/obj/structure/catwalk, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/medbay/aft) +"bBA" = ( +/obj/structure/grille, +/obj/structure/lattice, +/turf/space, +/area/space) +"bBJ" = ( +/obj/effect/floor_decal/corner/beige{ + dir = 6 + }, +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"bCG" = ( +/turf/simulated/wall/r_wall/prepainted/medical, +/area/medical/ward) +"bCS" = ( +/obj/machinery/door/firedoor/glass, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/machinery/door/airlock/multi_tile/glass{ + id_tag = "MedbayEmergency"; + name = "Medbay Emergency Access" + }, +/obj/map_helper/access_helper/airlock/station/medical/department, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "medbayquar"; + name = "Medbay Emergency Lockdown Shutters"; + opacity = 0 + }, +/turf/simulated/floor/tiled/white, +/area/medical/surgeryprep) +"bDe" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/black{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/medical/virology) +"bDo" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay3) +"bDG" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/research_foyer_auxiliary) +"bDT" = ( +/turf/simulated/wall/prepainted/medical, +/area/medical/psych/psych_1) +"bEc" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora/lab_atmos) +"bEz" = ( +/obj/structure/window/reinforced, +/obj/structure/table/glass, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"bFw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/white, +/area/medical/surgery2) +"bFy" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/test_area) +"bFz" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/holopad, +/turf/simulated/floor/tiled/white, +/area/medical/ward) +"bFH" = ( +/obj/machinery/shipsensors, +/turf/simulated/floor/airless, +/area/shuttle/emt/general) +"bGt" = ( +/obj/machinery/door/firedoor, +/obj/spawner/window/low_wall/reinforced/full, +/turf/simulated/floor/plating, +/area/medical/resleeving) +"bGx" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/ward) +"bHu" = ( +/obj/effect/shuttle_landmark/victory/deck3/port, +/turf/space, +/area/space) +"bHz" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/donkpockets, +/obj/item/storage/box/donkpockets, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/medbreak) +"bHA" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay3) +"bIw" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"bIW" = ( +/obj/structure/sign/department/robo, +/turf/simulated/wall/prepainted/science, +/area/assembly/robotics) +"bJp" = ( +/obj/machinery/light, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/blue/border, +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/patient_wing) +"bJH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/medical/patient_wing) +"bJZ" = ( +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/reception) +"bKV" = ( +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/obj/structure/table/steel, +/obj/machinery/recharger, +/obj/item/cell/device/weapon, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/workshop) +"bKW" = ( +/obj/machinery/atmospherics/component/unary/cryo_cell, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/medical/resleeving) +"bLe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/medical_restroom) +"bLL" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/test_area) +"bMe" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/aft) +"bMn" = ( +/turf/simulated/floor/tiled/white, +/area/medical/reception) +"bMV" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/ward) +"bNl" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/xenobiology) +"bNp" = ( +/turf/simulated/wall/prepainted/medical, +/area/medical/medbay_primary_storage) +"bOw" = ( +/obj/structure/closet/secure_closet/personal/patient, +/obj/machinery/air_alarm{ + dir = 8; + pixel_x = 25 + }, +/turf/simulated/floor/carpet/tealcarpet, +/area/medical/patient_b) +"bOx" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/machinery/camera/network/medbay{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/medical/surgeryprep) +"bPE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"bPH" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner2{ + dir = 6 + }, +/obj/machinery/transhuman/resleever, +/turf/simulated/floor/tiled/dark, +/area/assembly/robotics) +"bPO" = ( +/obj/machinery/atmospherics/pipe/vent/high_volume, +/turf/simulated/floor/airless, +/area/rnd/test_area) +"bQP" = ( +/obj/structure/table/woodentable, +/obj/item/toy/plushie/therapy/green, +/turf/simulated/floor/carpet/sblucarpet, +/area/medical/psych/psych_2) +"bQS" = ( +/obj/effect/floor_decal/corner/blue/diagonal, +/obj/machinery/scale, +/turf/simulated/floor/tiled/white, +/area/medical/exam_room/exam_1) +"bRc" = ( +/obj/structure/cable/green, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/power/apc/east_mount, +/obj/machinery/button/windowtint{ + dir = 8; + id = "ward_b"; + pixel_x = 24; + pixel_y = 24 + }, +/turf/simulated/floor/tiled/white, +/area/medical/patient_b) +"bSL" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/medical/sleeper) +"bTa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/assembly/robotics) +"bTc" = ( +/obj/effect/floor_decal/industrial/warning/dust, +/obj/machinery/button/remote/blast_door{ + id = "mechbay-inner"; + name = "Mech Bay"; + pixel_x = 26; + pixel_y = -26; + req_access = list(29,47); + req_one_access = list(47) + }, +/turf/simulated/floor/tiled/dark, +/area/assembly/robotics/surgery) +"bTw" = ( +/obj/effect/floor_decal/industrial/outline/blue, +/obj/item/roller_holder, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/ward) +"bUY" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab/containment_two) +"bVe" = ( +/obj/structure/table/standard, +/obj/item/multitool, +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab) +"bVy" = ( +/obj/machinery/artifact_analyser, +/turf/simulated/floor/tiled/dark, +/area/rnd/anomaly_lab/containment_two) +"bWt" = ( +/obj/effect/floor_decal/techfloor{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/aft) +"bWA" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Rest Room"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/medical/department, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/medical_restroom) +"bXb" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/wood, +/area/medical/medbay4) +"bXJ" = ( +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/scale, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"bXX" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/vending/medical, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"bYa" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"bYn" = ( +/obj/structure/table/woodentable, +/obj/structure/flora/pottedplant/bamboo, +/turf/simulated/floor/wood, +/area/victory/station/stairs_three) +"bYw" = ( +/obj/structure/table/glass, +/obj/item/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/megaphone, +/obj/item/paper/monitorkey, +/turf/simulated/floor/tiled, +/area/rnd/rdoffice) +"bYA" = ( +/obj/structure/closet{ + name = "spare clothes" + }, +/obj/item/clothing/under/color/black, +/obj/item/clothing/under/color/black, +/obj/item/clothing/under/color/grey, +/obj/item/clothing/under/color/grey, +/obj/item/clothing/under/color/white, +/obj/item/clothing/under/color/white, +/obj/item/clothing/under/color/blue, +/obj/item/clothing/under/color/green, +/obj/item/clothing/under/color/lightpurple, +/obj/item/radio/headset, +/obj/item/radio/headset, +/obj/item/radio/headset, +/obj/item/clothing/shoes/black, +/obj/item/clothing/shoes/black, +/obj/item/clothing/shoes/black, +/obj/item/clothing/shoes/black, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/power/apc/south_mount, +/obj/structure/cable/green, +/turf/simulated/floor/tiled, +/area/medical/resleeving) +"bYC" = ( +/obj/machinery/bodyscanner{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"bYH" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/medical/medbay3) +"bYR" = ( +/obj/machinery/fire_alarm/south_mount{ + pixel_y = -24 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"bYT" = ( +/obj/machinery/power/breakerbox/activated{ + RCon_tag = "DECK 3" + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/medical_science) +"cac" = ( +/obj/structure/bed/chair/comfy/brown, +/obj/effect/floor_decal/corner/green{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"cam" = ( +/obj/machinery/washing_machine, +/turf/simulated/floor/tiled/white, +/area/rnd/research_restroom) +"cau" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/surgeryprep) +"caz" = ( +/obj/machinery/atmospherics/component/unary/outlet_injector{ + dir = 8; + frequency = 1445; + id = "burn_in"; + volume_rate = 700 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"cbh" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "medbayquar"; + name = "Medbay Emergency Lockdown Shutters"; + opacity = 0 + }, +/obj/structure/window/reinforced/polarized/full{ + id = "cmo_office" + }, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/structure/wall_frame/prepainted, +/turf/simulated/floor/plating, +/area/crew_quarters/heads/cmo) +"cbw" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/emt/general) +"cbF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor, +/area/medical/morgue) +"ccN" = ( +/obj/machinery/atmospherics/component/unary/vent_pump{ + icon_state = "map_vent_out"; + on = 1 + }, +/turf/simulated/floor/bluegrid{ + initial_gas_mix = "n2=500;TEMP=80"; + name = "Server Base" + }, +/area/rnd/research) +"cdE" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/turf/simulated/floor/tiled, +/area/rnd/storage) +"ceo" = ( +/turf/simulated/wall/prepainted/medical, +/area/medical/exam_room/exam_1) +"ces" = ( +/obj/machinery/holopad, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"cew" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 10 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/teleporter/departing) +"ceM" = ( +/obj/structure/dispenser, +/turf/simulated/floor/tiled, +/area/rnd/test_area) +"cfa" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/surgeryprep) +"cfl" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"cfG" = ( +/obj/machinery/door/firedoor, +/obj/spawner/window/low_wall/reinforced/full, +/turf/simulated/floor/plating, +/area/medical/morgue) +"cfI" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "ward_c" + }, +/obj/structure/wall_frame/prepainted, +/turf/simulated/floor/plating, +/area/medical/patient_c) +"cgs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/medical/virology) +"cgN" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = -31 + }, +/obj/structure/bookcase/manuals/research_and_development, +/turf/simulated/floor/wood, +/area/rnd/breakroom) +"cgQ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/starboard) +"chv" = ( +/turf/simulated/wall/prepainted/medical, +/area/medical/chemistry) +"chD" = ( +/turf/simulated/wall/prepainted, +/area/maintenance/substation/medical) +"chQ" = ( +/obj/machinery/atm{ + pixel_x = -33 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"cjf" = ( +/obj/machinery/door/firedoor/glass, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/medical/sleeper) +"cjM" = ( +/obj/structure/table/standard, +/obj/item/weldingtool, +/obj/item/weldingtool, +/obj/item/clothing/glasses/welding, +/obj/item/clothing/glasses/welding, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"ckU" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/blue/border, +/turf/simulated/floor/tiled/white, +/area/shuttle/emt/general) +"clg" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/closet/hydrant{ + pixel_x = 32 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay3) +"clp" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/test_area) +"cmc" = ( +/turf/simulated/wall/prepainted/science, +/area/rnd/xenobiology) +"cmy" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"cmO" = ( +/obj/structure/closet/hydrant{ + pixel_y = 32 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/patient_wing) +"cnh" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"cny" = ( +/obj/structure/stairs/spawner/south, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"coH" = ( +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/glass/research{ + name = "Xenoflora Research"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/science/xenobotany, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora_storage) +"coV" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance/medical{ + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/medical/department, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint2) +"cps" = ( +/obj/structure/table/reinforced, +/obj/random/plushie, +/obj/random/plushie, +/obj/effect/floor_decal/corner/beige{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"cpB" = ( +/obj/structure/table/glass, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/mauve/border, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/air_alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora/lab_atmos) +"cqv" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 5 + }, +/obj/machinery/requests_console/preset/research{ + pixel_x = 32 + }, +/obj/item/tool/wrench, +/turf/simulated/floor/tiled, +/area/rnd/reception_desk) +"cqR" = ( +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/machinery/door/airlock/glass/research{ + name = "Research Lounge"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/science/department, +/turf/simulated/floor/tiled, +/area/rnd/breakroom) +"cqX" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/light, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/blue/border, +/turf/simulated/floor/tiled/white, +/area/medical/medbay3) +"crw" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/purple{ + dir = 1 + }, +/turf/simulated/wall/prepainted/science, +/area/rnd/xenobiology) +"crH" = ( +/obj/machinery/door/airlock/maintenance/common, +/turf/simulated/floor/plating, +/area/maintenance/medbay/fore) +"csb" = ( +/turf/simulated/floor/airless/ceiling, +/area/space) +"csx" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/voidcraft/vertical{ + frequency = 1380 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/access_button{ + frequency = 1380; + master_tag = "emt_shuttle_docker"; + name = "exterior access button"; + pixel_x = -30; + pixel_y = 10 + }, +/obj/map_helper/airlock/door/ext_door, +/obj/map_helper/access_helper/airlock/station/medical/department, +/turf/simulated/floor/tiled/white, +/area/shuttle/emt/general) +"csz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/starboard) +"csA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/effect/floor_decal/corner/beige{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"ctW" = ( +/turf/simulated/floor/tiled/white, +/area/medical/resleeving) +"cuL" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/diagonal, +/turf/simulated/floor/tiled/white, +/area/medical/exam_room/exam_1) +"cvD" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/glass/research{ + name = "Xenoflora Research"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/science/xenobotany, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora/lab_atmos) +"cvM" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/xenoflora/lab_atmos) +"cvP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/dark, +/area/assembly/robotics/surgery) +"cxI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/camera/network/research{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/research) +"cyt" = ( +/obj/machinery/iv_drip, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/machinery/light, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"cyw" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/rnd/test_area) +"czv" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"czU" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 + }, +/obj/machinery/light_switch{ + pixel_x = 25 + }, +/obj/fiftyspawner/cardboard, +/turf/simulated/floor/tiled, +/area/rnd/reception_desk) +"cAb" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"cAA" = ( +/obj/machinery/door/firedoor/glass{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/medical{ + name = "Pre-Revival Processing"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/medical/morgue, +/turf/simulated/floor/tiled/techfloor, +/area/medical/morgue) +"cBb" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/medbreak) +"cBT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/recoveryrestroom) +"cBY" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"cDA" = ( +/obj/machinery/light/small/emergency{ + dir = 1 + }, +/obj/structure/loot_pile/maint/boxfort, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint2) +"cDC" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on, +/obj/machinery/fire_alarm/east_mount, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/medical_restroom) +"cEs" = ( +/obj/machinery/atmospherics/component/unary/outlet_injector{ + dir = 1; + frequency = 1445; + id = "burn_in"; + volume_rate = 700 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"cEy" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab) +"cEL" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "xenobio5"; + name = "Containment Blast Doors"; + opacity = 0 + }, +/obj/spawner/window/low_wall/reinforced/full, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"cEY" = ( +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/power/apc/north_mount, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"cFb" = ( +/obj/machinery/door/firedoor, +/obj/spawner/window/low_wall/reinforced/full, +/turf/simulated/floor/plating, +/area/medical/medbay_primary_storage) +"cFy" = ( +/obj/machinery/vending/snack, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"cFz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/fire_alarm/east_mount, +/turf/simulated/floor/tiled/white, +/area/medical/patient_c) +"cGc" = ( +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/machinery/power/apc/west_mount, +/turf/simulated/floor/tiled/techfloor, +/area/medical/morgue) +"cGx" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"cGH" = ( +/obj/structure/sign/directions/cryo{ + dir = 1; + pixel_y = 24 + }, +/obj/structure/sign/directions/cargo{ + dir = 1; + pixel_y = 30 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"cGO" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/rdoffice) +"cHb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/holopad, +/turf/simulated/floor/tiled/white, +/area/medical/patient_wing) +"cHj" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/medical/medbay3) +"cHx" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide{ + start_pressure = 8500 + }, +/obj/effect/floor_decal/industrial/outline/red, +/obj/machinery/camera/network/research{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"cHC" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora/lab_atmos) +"cIp" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/mauve/border, +/turf/simulated/floor/tiled, +/area/rnd/research_foyer_auxiliary) +"cIZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/rnd/research_foyer_auxiliary) +"cKJ" = ( +/obj/machinery/fire_alarm/north_mount, +/turf/simulated/floor/tiled, +/area/medical/medbay_emt_bay) +"cLl" = ( +/obj/machinery/door/window/brigdoor/eastleft{ + name = "Containment Pen"; + req_access = list(55) + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"cLW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/fire_alarm/east_mount, +/turf/simulated/floor/tiled/white, +/area/medical/patient_b) +"cMb" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Unit 2" + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/medical_restroom) +"cMM" = ( +/obj/structure/table/reinforced, +/obj/machinery/computer/ship/navigation/telescreen{ + pixel_y = -37 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"cNf" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/effect/floor_decal/corner/blue/diagonal, +/turf/simulated/floor/tiled/white, +/area/medical/exam_room/exam_1) +"cNK" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/machinery/light_switch{ + pixel_x = -26; + pixel_y = -4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/patient_a) +"cNP" = ( +/obj/structure/table/woodentable, +/obj/item/flashlight/lamp/green{ + pixel_x = -5; + pixel_y = 4 + }, +/turf/simulated/floor/carpet/sblucarpet, +/area/medical/psych/psych_1) +"cNW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black, +/turf/simulated/floor/plating, +/area/maintenance/medbay/fore) +"cOu" = ( +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/aft) +"cOC" = ( +/obj/machinery/door/firedoor/glass{ + dir = 4 + }, +/obj/spawner/window/low_wall/reinforced/full, +/turf/simulated/floor/plating, +/area/medical/reception) +"cOG" = ( +/obj/machinery/camera/network/research, +/obj/item/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 26 + }, +/obj/structure/closet/secure_closet/scientist, +/turf/simulated/floor/wood, +/area/rnd/breakroom) +"cOM" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central6, +/obj/machinery/camera/network/civilian{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"cPx" = ( +/obj/machinery/cell_charger, +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = -28 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/mauve/border, +/obj/structure/table/carbon/reinforced, +/turf/simulated/floor/tiled/dark, +/area/assembly/robotics) +"cQu" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"cRF" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/closet/hydrant{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/dark, +/area/assembly/robotics/surgery) +"cRH" = ( +/obj/structure/table/standard, +/obj/item/flashlight/lamp, +/obj/machinery/power/apc/north_mount, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/anomaly_lab/containment_two) +"cSS" = ( +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/disposal, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lightorange/border{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/medical/chemistry) +"cSU" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/patient_wing) +"cTd" = ( +/obj/machinery/atmospherics/valve/digital{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab) +"cTl" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/pipedispenser, +/turf/simulated/floor/tiled, +/area/rnd/test_area) +"cTK" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/substation/research) +"cTS" = ( +/obj/machinery/power/apc/east_mount, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/structure/closet/l3closet/scientist/double, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/rnd/research_foyer) +"cVq" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/item/radio/beacon/anchored, +/turf/simulated/floor/tiled/white, +/area/medical/reception) +"cWK" = ( +/obj/machinery/station_map{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"cWM" = ( +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/machinery/door/blast/regular{ + id = "mechbay-inner"; + name = "Mech Bay" + }, +/turf/simulated/floor/tiled/techfloor, +/area/assembly/chargebay) +"cWS" = ( +/obj/structure/toilet{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/patient_c) +"cXC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/turf/simulated/shuttle/wall/voidcraft/blue, +/area/shuttle/emt/general) +"cXQ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/research{ + id_tag = "researchdoor"; + name = "Robotics Lab" + }, +/obj/map_helper/access_helper/airlock/station/science/robotics, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/assembly/robotics) +"cYH" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/white, +/area/medical/medbay4) +"cYX" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/mauve/border, +/obj/machinery/vending/hydronutrients, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"cZD" = ( +/obj/machinery/fire_alarm/north_mount, +/turf/simulated/floor/wood, +/area/victory/station/stairs_three) +"cZK" = ( +/obj/machinery/body_scanconsole, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"cZR" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -23 + }, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"dbb" = ( +/obj/machinery/door/window/brigdoor/northright{ + name = "Containment Pen"; + req_access = list(55) + }, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "xenobio5"; + name = "Containment Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"dbh" = ( +/obj/machinery/camera/network/medbay{ + dir = 5 + }, +/obj/structure/bed/chair/comfy/brown{ + dir = 4 + }, +/obj/machinery/light_switch{ + pixel_x = -25 + }, +/turf/simulated/floor/wood, +/area/medical/medbay4) +"dbo" = ( +/turf/simulated/wall/prepainted/science, +/area/assembly/chargebay) +"dbq" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/closet/hydrant{ + pixel_x = 32 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay4) +"dbE" = ( +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "xenobio10"; + name = "Containment Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/window/brigdoor/southright{ + name = "Containment Pen"; + req_access = list(55) + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"dci" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/blue/border, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/reception) +"ddn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/closet/secure_closet/personal/patient, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virologyisolation) +"ddG" = ( +/obj/machinery/door/firedoor/glass{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/blue/border, +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 4; + id_tag = "MedbayFoyer"; + name = "Recovery Wing" + }, +/obj/map_helper/access_helper/airlock/station/medical/department, +/turf/simulated/floor/tiled/white, +/area/medical/ward) +"ddT" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/assembly/chargebay) +"dec" = ( +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/suit/space/void/medical/emt, +/obj/item/clothing/head/helmet/space/void/medical/emt, +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/item/clothing/mask/breath, +/obj/machinery/camera/network/medbay{ + dir = 5 + }, +/obj/structure/table/rack, +/obj/item/tank/jetpack/oxygen, +/obj/machinery/camera/network/medbay{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/medical/medbay_emt_bay) +"dgC" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/medical{ + id_tag = "mentaldoor"; + name = "Mental Health"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/medical/psychiatry, +/turf/simulated/floor/wood, +/area/medical/psych/psych_2) +"dgF" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay3) +"dic" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/bed/padded, +/obj/item/bedsheet/medical, +/obj/machinery/computer/ship/navigation/telescreen{ + pixel_y = 27 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virologyisolation) +"dip" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/holopad, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"djp" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/substation/medical_science) +"djx" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/test_area) +"djF" = ( +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/plating, +/area/maintenance/medbay/aft) +"dkr" = ( +/obj/machinery/light, +/obj/structure/table/standard, +/turf/simulated/floor/tiled, +/area/holodeck_control) +"dkQ" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/medical/surgeryprep) +"dlt" = ( +/obj/spawner/window/low_wall/reinforced/full, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "xenobio9"; + name = "Containment Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"dlw" = ( +/obj/machinery/door/firedoor{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/holodeck_control) +"dlB" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central6, +/turf/simulated/floor/tiled, +/area/rnd/reception_desk) +"dlN" = ( +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "psyche-b-inner"; + name = "Ward B"; + opacity = 0 + }, +/turf/simulated/floor/tiled/dark, +/area/medical/psych_ward) +"dmF" = ( +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/spawner/window/low_wall/reinforced/full, +/turf/simulated/floor/plating, +/area/rnd/xenobiology/xenoflora/lab_atmos) +"dni" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/white, +/area/rnd/research_restroom) +"doR" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/medical/virology) +"dpx" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/grass, +/area/medical/psych_ward) +"dqh" = ( +/turf/simulated/wall/prepainted/medical, +/area/medical/medbay3) +"dqY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/holopad, +/turf/simulated/floor/tiled/white, +/area/medical/ward) +"drj" = ( +/obj/structure/reagent_dispensers/water_cooler/full, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/medbreak) +"drp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/holopad, +/turf/simulated/floor/tiled/dark, +/area/rnd/research/testingrange) +"drq" = ( +/obj/machinery/mech_recharger, +/obj/machinery/light, +/turf/simulated/floor/bluegrid, +/area/assembly/chargebay) +"drR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"dsi" = ( +/obj/effect/floor_decal/corner/green/full, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology/xenoflora) +"dsT" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow, +/obj/machinery/camera/network/research{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab) +"dsY" = ( +/turf/simulated/floor/wood, +/area/victory/station/stairs_three) +"dtz" = ( +/turf/simulated/floor/tiled{ + icon_state = "techmaint" + }, +/area/victory/station/stairs_three) +"duc" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/medical/morgue) +"dug" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/rnd/research_foyer_auxiliary) +"dui" = ( +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"dum" = ( +/obj/item/defib_kit/compact/loaded, +/obj/item/defib_kit/compact/loaded, +/obj/structure/table/steel_reinforced, +/obj/item/storage/box/syringes{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/box/syringes{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/medical/medbay_emt_bay) +"duZ" = ( +/turf/simulated/wall/prepainted, +/area/maintenance/medbay/fore) +"dvL" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/obj/machinery/portable_atmospherics/canister/nitrogen, +/turf/simulated/floor/tiled, +/area/rnd/storage) +"dwr" = ( +/obj/structure/dogbed, +/mob/living/simple_mob/animal/passive/dog/tamaskan/Spice{ + desc = "The robotics new spry canine friend! He seems to love old rock music from Sol."; + name = "Rocket" + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/mauve/border, +/turf/simulated/floor/tiled/dark, +/area/assembly/robotics) +"dwF" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/resleeving) +"dwM" = ( +/obj/structure/disposaloutlet, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"dwU" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/ward) +"dxA" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/glass/medical{ + name = "Medbay Reception"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/medical/department, +/turf/simulated/floor/tiled, +/area/medical/reception) +"dyF" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/rnd/test_area) +"dyM" = ( +/obj/effect/floor_decal/techfloor{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/starboard) +"dyS" = ( +/turf/simulated/wall/prepainted/medical, +/area/maintenance/fpmaint2) +"dyX" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/holopad, +/turf/simulated/floor/tiled/white, +/area/medical/surgery2) +"dzg" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/portable_atmospherics/canister/carbon_dioxide{ + start_pressure = 8500 + }, +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"dzs" = ( +/obj/machinery/fire_alarm/north_mount, +/obj/machinery/light_switch{ + pixel_x = 25 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/research_restroom) +"dzN" = ( +/turf/simulated/floor/tiled, +/area/medical/psych_ward) +"dAa" = ( +/obj/structure/bed/chair/wheelchair, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 9 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/patient_wing) +"dAl" = ( +/obj/machinery/recharge_station, +/obj/machinery/light/small, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"dAn" = ( +/obj/structure/closet{ + name = "spare clothes" + }, +/obj/item/clothing/under/color/black, +/obj/item/clothing/under/color/black, +/obj/item/clothing/under/color/grey, +/obj/item/clothing/under/color/grey, +/obj/item/clothing/under/color/white, +/obj/item/clothing/under/color/white, +/obj/item/clothing/under/color/blue, +/obj/item/clothing/under/color/green, +/obj/item/clothing/under/color/lightpurple, +/obj/item/radio/headset, +/obj/item/radio/headset, +/obj/item/radio/headset, +/obj/item/clothing/shoes/black, +/obj/item/clothing/shoes/black, +/obj/item/clothing/shoes/black, +/obj/item/clothing/shoes/black, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/medical/resleeving) +"dAF" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled, +/area/medical/virologyaccess) +"dAV" = ( +/turf/simulated/floor/wood, +/area/medical/medbay4) +"dCq" = ( +/obj/machinery/camera/network/research{ + dir = 4; + network = list("Xenobiology") + }, +/turf/simulated/floor/tiled/techfloor, +/area/medical/morgue) +"dCW" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virologyisolation) +"dEc" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/machinery/recharger/wallcharger{ + pixel_x = 5; + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"dEl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/medical/reception) +"dEC" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/medical{ + id_tag = "er1"; + name = "Exam Room 1"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/medical/department, +/turf/simulated/floor/tiled/white, +/area/medical/exam_room/exam_1) +"dEU" = ( +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/obj/structure/closet/emcloset, +/obj/effect/floor_decal/industrial/outline/red, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/ward) +"dFg" = ( +/obj/machinery/camera/network/civilian{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"dFm" = ( +/obj/machinery/air_alarm/monitor/isolation{ + alarm_id = "isolation_one"; + dir = 8; + pixel_x = 22 + }, +/obj/structure/table/standard, +/turf/simulated/floor/tiled/white, +/area/medical/virologyisolation) +"dGi" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/red, +/obj/effect/floor_decal/corner/green/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/medical/virology) +"dGj" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/medical/psych/psych_2) +"dGL" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/anomaly_lab/containment_one) +"dHc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/camera/network/research{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/rdoffice) +"dHs" = ( +/turf/simulated/wall/prepainted/medical, +/area/medical/surgeryprep) +"dHH" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/curtain/open/shower/medical, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/white, +/area/medical/surgeryprep) +"dIa" = ( +/obj/structure/cable/green, +/obj/machinery/power/apc/south_mount, +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/turf/simulated/floor/tiled, +/area/rnd/storage) +"dIj" = ( +/turf/simulated/wall/prepainted/medical, +/area/medical/surgery) +"dIx" = ( +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"dIJ" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/teleporter/departing) +"dJs" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/closet/l3closet/virology, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 9 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/camera/network/medbay{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virologyaccess) +"dJW" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide{ + start_pressure = 8500 + }, +/obj/effect/floor_decal/industrial/outline/red, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"dKK" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"dKQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/medical/morgue) +"dKT" = ( +/obj/structure/closet/secure_closet/personal/patient, +/obj/machinery/air_alarm{ + dir = 8; + pixel_x = 25 + }, +/turf/simulated/floor/carpet/tealcarpet, +/area/medical/patient_c) +"dLn" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/medbreak) +"dLx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/surgery) +"dLG" = ( +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/tiled/white, +/area/medical/medbay4) +"dNk" = ( +/obj/effect/floor_decal/spline/plain, +/obj/item/toy/plushie/red_fox, +/turf/simulated/floor/grass, +/area/medical/psych_ward) +"dNs" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 4 + }, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/medical/virology) +"dNv" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/obj/landmark/spawnpoint/latejoin/station/gateway, +/obj/effect/floor_decal/techfloor/orange{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/teleporter/departing) +"dNE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/carpet/tealcarpet, +/area/medical/patient_b) +"dNT" = ( +/obj/machinery/camera/network/civilian{ + dir = 4 + }, +/obj/map_helper/airlock/atmos/chamber_pump, +/obj/machinery/atmospherics/component/unary/vent_pump/high_volume{ + dir = 4; + id_tag = "deck3_airlock" + }, +/turf/simulated/floor/tiled{ + icon_state = "techmaint" + }, +/area/victory/station/stairs_three) +"dNU" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/obj/landmark/spawnpoint/latejoin/station/gateway, +/obj/effect/floor_decal/techfloor/orange{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/teleporter/departing) +"dOr" = ( +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/spawner/window/low_wall/reinforced/full, +/turf/simulated/floor/plating, +/area/medical/psych_ward) +"dPT" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/obj/machinery/seed_extractor, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"dQf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"dQC" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/open, +/area/victory/station/stairs_three) +"dQN" = ( +/turf/simulated/wall/prepainted/medical, +/area/crew_quarters/medical_restroom) +"dQR" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/medical/morgue) +"dRt" = ( +/obj/machinery/light_switch{ + pixel_x = 25 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/medical_restroom) +"dSa" = ( +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"dSf" = ( +/obj/structure/sink{ + pixel_y = 24 + }, +/obj/structure/mirror{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/research_restroom) +"dSA" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 4 + }, +/obj/machinery/door/airlock/glass, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"dSG" = ( +/obj/item/paper_bin{ + pixel_x = -1; + pixel_y = 4 + }, +/obj/item/pen, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/mauve/border, +/obj/structure/table/carbon/reinforced, +/turf/simulated/floor/tiled/dark, +/area/assembly/robotics) +"dSN" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/medical/virologyaccess) +"dSQ" = ( +/obj/effect/floor_decal/techfloor{ + dir = 6 + }, +/obj/machinery/newscaster{ + pixel_y = -31 + }, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"dSY" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/camera/network/research{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"dTF" = ( +/obj/machinery/transhuman/resleever, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/white, +/area/medical/resleeving) +"dTO" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/map_helper/airlock/atmos/chamber_pump, +/obj/machinery/atmospherics/component/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1380; + id_tag = "emt_shuttle_docker_pump" + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/emt/general) +"dTP" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/table/reinforced, +/turf/simulated/floor/tiled/white, +/area/medical/patient_a) +"dUn" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/shuttle/wall/voidcraft/blue, +/area/shuttle/emt/general) +"dUW" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/assembly/robotics/surgery) +"dVV" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/rnd/breakroom) +"dYI" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/structure/closet/secure_closet/personal/patient, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/white, +/area/medical/surgeryprep) +"dYN" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/component/unary/vent_pump{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab/containment_one) +"dYS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/rnd/test_area) +"dZd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/beige/border, +/turf/simulated/floor/tiled/white, +/area/medical/medbay4) +"dZN" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/resleeving) +"dZX" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/computer/med_data/laptop{ + dir = 1; + pixel_x = null + }, +/obj/structure/table/carbon/reinforced, +/turf/simulated/floor/tiled/dark, +/area/assembly/robotics/surgery) +"eam" = ( +/obj/structure/closet/hydrant{ + pixel_x = 32 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/ward) +"eaq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"eat" = ( +/obj/item/storage/box/beakers{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/structure/table/glass, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/obj/item/storage/box/syringes, +/obj/item/reagent_containers/dropper, +/obj/item/reagent_containers/dropper, +/obj/item/reagent_containers/dropper, +/obj/item/hand_labeler, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"eaI" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/medical/reception) +"ebY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central6{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab) +"ece" = ( +/obj/machinery/computer/security/mining{ + dir = 8; + name = "psychiatric wing camera monitor"; + network = list("Psychiatric") + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/beige/border, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"ecE" = ( +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"ecT" = ( +/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{ + scrub_id = "rnd_can_store" + }, +/turf/simulated/floor/tiled, +/area/rnd/test_area) +"edn" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/structure/closet/secure_closet/paramedic, +/obj/item/stack/medical/splint, +/obj/item/material/knife/machete, +/obj/item/clothing/accessory/holster/machete, +/obj/item/clothing/accessory/permit/gun/paramedic, +/obj/machinery/fire_alarm/south_mount{ + pixel_y = -24 + }, +/obj/item/bodybag/cryobag, +/obj/item/bodybag/cryobag, +/turf/simulated/floor/tiled, +/area/medical/medbay_emt_bay) +"edC" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/button/remote/airlock{ + desc = "A remote control switch for the medbay recovery room door."; + dir = 8; + id = "er1"; + name = "Exam Room 1 Lock"; + pixel_x = 26; + pixel_y = 10; + specialfunctions = 4 + }, +/obj/machinery/button/windowtint{ + dir = 6; + id = "exam_1"; + pixel_x = 24 + }, +/obj/machinery/camera/network/medbay{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/diagonal, +/turf/simulated/floor/tiled/white, +/area/medical/exam_room/exam_1) +"edP" = ( +/obj/structure/sign/warning/airlock{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"eew" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"efa" = ( +/obj/structure/sign/greencross, +/turf/simulated/wall/r_wall/prepainted/medical, +/area/crew_quarters/heads/cmo) +"efb" = ( +/obj/structure/table/steel, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/glass, +/turf/simulated/floor/plating, +/area/rnd/misc_lab) +"eff" = ( +/obj/structure/table/steel_reinforced, +/obj/item/storage/box/traumainjectors, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/item/radio/intercom{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"efr" = ( +/obj/structure/table/rack, +/obj/item/storage/belt/archaeology, +/obj/item/clothing/suit/space/anomaly, +/obj/item/clothing/head/helmet/space/anomaly, +/obj/item/clothing/mask/breath, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/item/storage/belt/archaeology, +/obj/item/clothing/suit/space/anomaly, +/obj/item/clothing/head/helmet/space/anomaly, +/obj/item/clothing/mask/breath, +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab) +"efz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"efL" = ( +/obj/machinery/atmospherics/component/unary/engine{ + dir = 4 + }, +/turf/simulated/shuttle/plating/airless/carry, +/area/shuttle/emt/general) +"efT" = ( +/obj/map_helper/airlock/door/int_door, +/obj/machinery/door/airlock/glass_external{ + name = "Public Airlock"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/external_airlock, +/turf/simulated/floor/tiled{ + icon_state = "techmaint" + }, +/area/victory/station/stairs_three) +"ego" = ( +/obj/effect/floor_decal/corner/blue/diagonal, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/exam_room/exam_2) +"egt" = ( +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/rnd/breakroom) +"egu" = ( +/obj/machinery/door/firedoor/glass{ + dir = 4 + }, +/obj/spawner/window/low_wall/reinforced/full, +/turf/simulated/floor/plating, +/area/medical/surgeryprep) +"egX" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightorange/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/chemistry) +"egY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab) +"ehf" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/portable_atmospherics/canister/carbon_dioxide{ + start_pressure = 8500 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"ehv" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/surgeryprep) +"ehA" = ( +/obj/structure/toilet{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/patient_d) +"ehC" = ( +/obj/machinery/camera/network/medbay, +/obj/item/radio/intercom{ + dir = 1; + pixel_y = 24; + req_access = list() + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/patient_wing) +"ejb" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/closet/crate/robotics, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/assembly/robotics) +"ejt" = ( +/obj/structure/bed/chair/office/dark, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"ejy" = ( +/obj/machinery/requests_console{ + department = "Robotics"; + departmentType = 2; + name = "Robotics RC"; + pixel_y = 30 + }, +/obj/machinery/mecha_part_fabricator/pros, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/assembly/robotics) +"ejD" = ( +/obj/structure/sign/warning/caution, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/spawner/window/low_wall/reinforced/full, +/turf/simulated/floor/plating, +/area/rnd/test_area) +"ejF" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/spray/cleaner, +/obj/item/storage/fancy/vials, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 5 + }, +/obj/machinery/light_switch{ + pixel_x = -25 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/medical/virology) +"ejI" = ( +/turf/simulated/wall/prepainted, +/area/hallway/primary/port) +"ekI" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "xenobio4"; + name = "Containment Blast Doors"; + opacity = 0 + }, +/obj/spawner/window/low_wall/reinforced/full, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"ekU" = ( +/turf/simulated/wall/r_wall/prepainted/medical, +/area/medical/psych_ward) +"eme" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/beige/border, +/turf/simulated/floor/tiled/white, +/area/medical/medbay4) +"enA" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/medical{ + name = "Patient Ward D"; + req_one_access = null + }, +/turf/simulated/floor/tiled/white, +/area/medical/patient_d) +"eow" = ( +/obj/structure/anomaly_container, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rnd/anomaly_lab) +"epc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/portable_atmospherics/canister/nitrogen, +/turf/simulated/floor/tiled, +/area/rnd/storage) +"eqt" = ( +/obj/structure/sign/department/chem, +/turf/simulated/wall/prepainted/medical, +/area/medical/chemistry) +"eri" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virologyaccess) +"ety" = ( +/obj/structure/closet/emcloset, +/obj/machinery/camera/network/research{ + dir = 4; + network = list("Xenobiology") + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/research_foyer_auxiliary) +"etB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/medical/sleeper) +"etN" = ( +/obj/structure/morgue, +/turf/simulated/floor/tiled/techfloor, +/area/medical/morgue) +"etO" = ( +/obj/machinery/camera/network/research{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor, +/obj/structure/flora/pottedplant/stoutbush, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/workshop) +"ewY" = ( +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/item/radio{ + pixel_x = -4 + }, +/obj/item/radio{ + pixel_x = 4; + pixel_y = -4 + }, +/obj/item/radio{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/structure/table/steel_reinforced, +/obj/item/hand_labeler, +/obj/machinery/power/apc/south_mount, +/turf/simulated/floor/tiled, +/area/medical/medbay_emt_bay) +"eyb" = ( +/obj/machinery/shower{ + pixel_y = 16 + }, +/obj/structure/curtain/open/shower, +/turf/simulated/floor/tiled/techfloor/grid, +/area/medical/patient_b) +"eyv" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/red, +/obj/machinery/atmospherics/pipe/tank/phoron{ + volume = 30000 + }, +/turf/simulated/floor, +/area/shuttle/emt/general) +"ezb" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"ezA" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/voidcraft/vertical{ + name = "Cockpit" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/map_helper/access_helper/airlock/station/medical/department, +/turf/simulated/floor/tiled/white, +/area/shuttle/emt/general) +"ezI" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/component/unary/vent_pump{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab/containment_two) +"ezO" = ( +/obj/machinery/camera/network/research, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"eAh" = ( +/obj/item/storage/firstaid/surgery, +/obj/structure/table/standard, +/obj/item/autopsy_scanner, +/obj/item/storage/box/bodybags, +/obj/item/storage/box/freezer, +/turf/simulated/floor/tiled{ + icon_state = "techmaint" + }, +/area/medical/morgue) +"eAv" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"eBe" = ( +/obj/structure/closet/emcloset, +/obj/effect/floor_decal/techfloor{ + dir = 10 + }, +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -23 + }, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"eBL" = ( +/obj/structure/table/woodentable, +/obj/item/paicard, +/turf/simulated/floor/wood, +/area/victory/station/stairs_three) +"eBV" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/medical{ + name = "Patient Ward A"; + req_one_access = null + }, +/turf/simulated/floor/tiled/white, +/area/medical/patient_a) +"eCw" = ( +/obj/structure/bed/chair, +/turf/simulated/floor/tiled/white, +/area/medical/reception) +"eCA" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/machinery/power/apc/north_mount, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/white, +/area/medical/patient_wing) +"eCY" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab) +"eEv" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/surgeryprep) +"eEE" = ( +/turf/simulated/wall/prepainted, +/area/maintenance/substation/medical_science) +"eEO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/rnd/reception_desk) +"eEW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/white, +/area/rnd/research_restroom) +"eEX" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora/lab_atmos) +"eGv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/medical/resleeving) +"eHm" = ( +/turf/simulated/floor/tiled, +/area/hallway/primary/aft) +"eHS" = ( +/obj/machinery/sleep_console, +/obj/effect/floor_decal/corner/paleblue{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"eID" = ( +/obj/machinery/button/remote/blast_door{ + id = "mechbay-inner"; + name = "Mech Bay"; + pixel_x = 26; + pixel_y = 26; + req_access = list(29,47); + req_one_access = list(47) + }, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/assembly/chargebay) +"eJc" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/sink/kitchen{ + name = "industrial sink"; + pixel_y = 22 + }, +/turf/simulated/floor/tiled/dark, +/area/assembly/robotics/surgery) +"eKi" = ( +/obj/structure/table/rack, +/obj/item/hardsuit/hazmat/equipped{ + req_access = list(65) + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -28 + }, +/obj/item/cartridge/signal/science, +/obj/item/cartridge/signal/science, +/obj/item/clothing/glasses/welding/superior, +/turf/simulated/floor/tiled, +/area/rnd/rdoffice) +"eKJ" = ( +/obj/machinery/door/firedoor/glass{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/glass/medical{ + name = "Paramedic Storage"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/medical/department, +/turf/simulated/floor/tiled/white, +/area/medical/medbay_emt_bay) +"eLb" = ( +/obj/machinery/camera/network/research{ + dir = 4; + network = list("Xenobiology") + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/xenobiology/xenoflora_storage) +"eLe" = ( +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/obj/machinery/computer/crew, +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/medical/reception) +"eLj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor, +/area/medical/morgue) +"eMi" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/surgeryprep) +"eMm" = ( +/obj/effect/floor_decal/industrial/outline/blue, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -23 + }, +/obj/structure/bed/roller, +/turf/simulated/floor/tiled/monotile, +/area/medical/surgeryprep) +"eMZ" = ( +/turf/simulated/wall/r_wall/prepainted/science, +/area/space) +"eNH" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/obj/machinery/button/remote/blast_door{ + id = "mechbay"; + name = "Mech Bay Access"; + pixel_x = -32; + pixel_y = 27; + req_access = list(29,47); + req_one_access = list(47) + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central1, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"eOr" = ( +/obj/machinery/media/jukebox, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/assembly/robotics) +"ePH" = ( +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/ward) +"ePT" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/cmo) +"eQq" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/turf/simulated/floor/airless, +/area/rnd/test_area) +"eQr" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/dust/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/rnd/storage) +"eQu" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology/xenoflora) +"eRt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/effect/floor_decal/borderfloor, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/effect/floor_decal/corner/blue/border, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/cmo) +"eRP" = ( +/obj/machinery/camera/network/research{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/simulated/floor/tiled, +/area/rnd/storage) +"eSf" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/rnd/rdoffice) +"eSg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/blue/border, +/turf/simulated/floor/tiled/white, +/area/medical/ward) +"eSw" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/machinery/power/apc/east_mount, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/turf/simulated/floor/tiled, +/area/medical/surgeryprep) +"eSQ" = ( +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab) +"eTk" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/blue/border, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay3) +"eTX" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/research{ + name = "Research Entrance" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/map_helper/access_helper/airlock/station/science/department, +/turf/simulated/floor/tiled, +/area/rnd/research_foyer) +"eUu" = ( +/obj/item/clothing/head/feathertrilby, +/obj/structure/closet, +/turf/simulated/floor/plating, +/area/maintenance/medbay/fore) +"eUx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/holopad, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"eUy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/carpet/sblucarpet, +/area/medical/psych/psych_2) +"eUQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/mauve/border, +/turf/simulated/floor/tiled, +/area/rnd/research_foyer_auxiliary) +"eVl" = ( +/obj/machinery/light/small, +/obj/structure/catwalk, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/medbay/aft) +"eVG" = ( +/turf/simulated/wall/prepainted/medical, +/area/medical/patient_b) +"eVZ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/rnd/test_area) +"eWi" = ( +/obj/machinery/door/firedoor, +/obj/spawner/window/low_wall/reinforced/full, +/obj/structure/curtain/open/shower/medical{ + name = "Privacy curtain" + }, +/turf/simulated/floor/plating, +/area/medical/patient_c) +"eWn" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 8 + }, +/turf/simulated/floor/carpet/blue, +/area/crew_quarters/medbreak) +"eWN" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/purple{ + dir = 1 + }, +/turf/simulated/wall/r_wall/prepainted/science, +/area/rnd/xenobiology) +"eWW" = ( +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"eWX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/meter, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/medical/medbay_primary_storage) +"eXe" = ( +/obj/machinery/light, +/turf/simulated/floor/wood, +/area/victory/station/stairs_three) +"eXE" = ( +/obj/structure/catwalk, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/medbay/aft) +"eXW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/machinery/holopad, +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab) +"eYa" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/machinery/fire_alarm/south_mount{ + pixel_y = -24 + }, +/turf/simulated/floor/tiled, +/area/medical/resleeving) +"eYh" = ( +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/obj/effect/floor_decal/corner/blue/diagonal, +/turf/simulated/floor/tiled/white, +/area/medical/exam_room/exam_1) +"eYk" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/component/binary/passive_gate{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/xenobiology/xenoflora_storage) +"eYr" = ( +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/spawner/window/low_wall/reinforced/full, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/rnd/rdoffice) +"eYM" = ( +/turf/simulated/wall/r_wall/prepainted/medical, +/area/crew_quarters/heads/cmo) +"eYX" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloorwhite, +/turf/simulated/floor/tiled/white, +/area/medical/resleeving) +"eZV" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/black, +/turf/simulated/floor/tiled, +/area/medical/virology) +"eZX" = ( +/obj/machinery/camera/network/research{ + dir = 8; + network = list("Research","Toxins Test Area") + }, +/obj/structure/closet/secure_closet/guncabinet/robotics, +/turf/simulated/floor/tiled/techfloor, +/area/assembly/chargebay) +"eZZ" = ( +/obj/structure/table/woodentable, +/obj/item/flashlight/lamp/green, +/obj/structure/plushie/ian{ + dir = 8; + pixel_y = 6 + }, +/turf/simulated/floor/wood, +/area/medical/psych/psych_1) +"faD" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"fbl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/sink{ + pixel_y = 19 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"fby" = ( +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay3) +"fbI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"fcw" = ( +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/plating, +/area/maintenance/medbay/aft) +"fcH" = ( +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/turf/simulated/floor/tiled, +/area/rnd/storage) +"fcX" = ( +/turf/simulated/wall/prepainted/medical, +/area/medical/patient_d) +"fdp" = ( +/obj/structure/closet/crate, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/medbay/aft) +"fdv" = ( +/obj/machinery/atmospherics/component/unary/heater{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab) +"feG" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/holopad, +/turf/simulated/floor/tiled/white, +/area/medical/ward) +"feP" = ( +/obj/structure/table/steel, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/turf/simulated/floor/tiled, +/area/rnd/misc_lab) +"ffh" = ( +/obj/effect/floor_decal/corner/blue, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/surgeryprep) +"ffI" = ( +/turf/simulated/wall/r_wall/prepainted/science, +/area/rnd/rdoffice) +"ffK" = ( +/obj/structure/closet/emcloset, +/obj/effect/floor_decal/industrial/outline/red, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/ward) +"fhj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/assembly/robotics) +"fiD" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/assembly/robotics/surgery) +"fjh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloorwhite, +/turf/simulated/floor/tiled/white, +/area/medical/resleeving) +"fjt" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/obj/structure/table/steel_reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/storage/firstaid/surgery, +/obj/item/autopsy_scanner, +/turf/simulated/floor/tiled, +/area/medical/morgue) +"fjC" = ( +/obj/machinery/door/window/brigdoor/southright{ + name = "Containment Pen"; + req_access = list(55) + }, +/turf/simulated/floor/wood, +/area/rnd/xenobiology) +"fkK" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/medical/surgeryprep) +"flF" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 6 + }, +/obj/machinery/newscaster{ + pixel_y = -31 + }, +/obj/structure/table/standard, +/turf/simulated/floor/tiled/white, +/area/medical/reception) +"flY" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"fmi" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/white, +/area/medical/surgery) +"fmm" = ( +/turf/simulated/wall/prepainted/science, +/area/rnd/xenobiology/xenoflora_storage) +"fmp" = ( +/obj/machinery/air_alarm{ + frequency = 1441; + pixel_y = 22 + }, +/turf/simulated/floor/tiled/techfloor, +/area/assembly/chargebay) +"fmI" = ( +/obj/effect/floor_decal/industrial/outline/red, +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled, +/area/medical/resleeving) +"fmZ" = ( +/obj/machinery/computer/ship/navigation/telescreen{ + pixel_y = -37 + }, +/obj/machinery/vending/coffee, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"fnt" = ( +/turf/simulated/wall/r_wall/prepainted/medical, +/area/medical/resleeving) +"foh" = ( +/obj/machinery/camera/network/research{ + dir = 8; + network = list("Research","Toxins Test Area") + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"foz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/techfloor, +/area/medical/morgue) +"fpV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"fqm" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/landmark/spawnpoint/job/medical_doctor, +/turf/simulated/floor/tiled, +/area/medical/reception) +"fqJ" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/carpet/purcarpet, +/area/rnd/breakroom) +"frq" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay4) +"fry" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/sleeper{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/emt/general) +"frz" = ( +/obj/machinery/air_alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/medical_science) +"frJ" = ( +/obj/structure/table/bench/padded, +/turf/simulated/floor/tiled, +/area/holodeck_control) +"fsw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/camera/network/research{ + dir = 4; + network = list("Xenobiology") + }, +/obj/item/radio/intercom{ + dir = 8; + pixel_x = -28; + req_access = list() + }, +/turf/simulated/floor/tiled/dark, +/area/assembly/robotics/surgery) +"fsC" = ( +/obj/structure/sign/department/sci, +/turf/simulated/wall/prepainted/science, +/area/rnd/reception_desk) +"fsM" = ( +/obj/machinery/door/firedoor{ + dir = 1 + }, +/obj/machinery/door/blast/regular{ + id = "mechbay-inner"; + name = "Mech Bay" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor, +/area/assembly/chargebay) +"fsS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/effect/floor_decal/techfloor/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/aft) +"fti" = ( +/obj/item/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 21 + }, +/obj/machinery/door/firedoor/glass{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"fts" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/rnd/test_area) +"fus" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/item/radio/intercom{ + dir = 8; + pixel_x = -28; + req_access = list() + }, +/obj/landmark/spawnpoint/overflow/station, +/turf/simulated/floor/tiled/techfloor, +/area/teleporter/departing) +"fuU" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/effect/floor_decal/corner/blue/diagonal, +/turf/simulated/floor/tiled/white, +/area/medical/exam_room/exam_2) +"fwu" = ( +/turf/simulated/wall/prepainted/medical, +/area/medical/sleeper) +"fwy" = ( +/obj/effect/floor_decal/industrial/outline/red, +/obj/machinery/atmospherics/pipe/tank/phoron{ + volume = 30000 + }, +/turf/simulated/floor, +/area/shuttle/emt/general) +"fwJ" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 5 + }, +/obj/machinery/atmospherics/component/unary/outlet_injector{ + frequency = 1445; + id = "burn_in"; + volume_rate = 700 + }, +/turf/simulated/floor/reinforced/airless, +/area/rnd/test_area) +"fwL" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/camera/network/research{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/anomaly_lab/containment_two) +"fxa" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/research{ + name = "Xenoflora Research"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/science/xenobiology, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"fxj" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay3) +"fxR" = ( +/obj/structure/cable/green, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/machinery/power/emitter{ + anchored = 1; + dir = 1; + pixel_y = 8; + state = 2 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/anomaly_lab) +"fxU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/table/glass, +/obj/item/paper_bin, +/obj/item/pen, +/obj/item/folder/white_cmo, +/obj/item/stamp/cmo, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/cmo) +"fzt" = ( +/obj/spawner/window/low_wall/reinforced/full, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "xenobio8"; + name = "Containment Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"fzF" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint2) +"fzO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/test_area) +"fAo" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/medical/psych_ward) +"fAD" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"fBi" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/medical{ + name = "Patient Ward B"; + req_one_access = null + }, +/turf/simulated/floor/tiled/white, +/area/medical/patient_b) +"fBJ" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"fBT" = ( +/obj/structure/table/reinforced, +/obj/random/toy, +/obj/effect/floor_decal/corner/green{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"fCa" = ( +/obj/machinery/camera/network/outside, +/turf/space, +/area/space) +"fCr" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/holopad/ship, +/turf/simulated/floor/tiled/white, +/area/shuttle/emt/general) +"fDK" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"fDP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/button/remote/blast_door{ + id = "xenobiovs4"; + name = "Divider Blast Doors"; + req_access = list(55); + pixel_y = 38 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/xenobiology) +"fGD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/purple{ + dir = 5 + }, +/turf/simulated/wall/r_wall/prepainted/science, +/area/rnd/xenobiology) +"fHi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/medical/psych_ward) +"fHl" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/map_helper/airlock/door/ext_door, +/obj/machinery/door/airlock/glass_external{ + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/external_airlock, +/turf/simulated/floor/plating, +/area/medical/patient_wing) +"fIn" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/ward) +"fIp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/machinery/power/apc/south_mount, +/obj/effect/floor_decal/techfloor{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/research) +"fIs" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 9 + }, +/turf/simulated/floor/reinforced/airless, +/area/rnd/test_area) +"fIt" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/medical/morgue) +"fIE" = ( +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/machinery/vending/cigarette, +/turf/simulated/floor/tiled/monotile, +/area/rnd/breakroom) +"fIJ" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 4 + }, +/turf/simulated/floor/carpet/blue, +/area/crew_quarters/medbreak) +"fIK" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/medical) +"fIS" = ( +/obj/machinery/button/remote/airlock{ + desc = "A remote control switch for the medbay recovery room door."; + id = "MedbayFoyer"; + name = "Door Switch"; + pixel_x = -5; + pixel_y = 27 + }, +/obj/machinery/button/remote/airlock{ + desc = "A remote control switch for the medbay recovery room door's bolts."; + id = "MedbayFoyer"; + name = "Medical Door Bolt"; + pixel_x = 8; + pixel_y = 27; + specialfunctions = 4; + req_one_access = list(5) + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"fJj" = ( +/obj/machinery/optable, +/obj/machinery/air_alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/techfloor, +/area/medical/morgue) +"fKp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/medical/sleeper) +"fKw" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/medbay/fore) +"fLa" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/camera/network/medbay{ + dir = 8; + network = list("Psychiatric") + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"fLw" = ( +/obj/machinery/camera/network/civilian{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor, +/turf/simulated/floor/tiled, +/area/hallway/primary/starboard) +"fMh" = ( +/obj/structure/mirror{ + pixel_y = 33 + }, +/obj/structure/sink{ + pixel_y = 19 + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"fMp" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/light, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/blue/border, +/turf/simulated/floor/tiled/white, +/area/medical/patient_wing) +"fMY" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 10 + }, +/obj/machinery/vending/medical, +/turf/simulated/floor/tiled, +/area/medical/surgeryprep) +"fNb" = ( +/obj/machinery/fire_alarm/south_mount{ + pixel_y = -24 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/blue/border, +/obj/structure/table/standard, +/turf/simulated/floor/tiled/white, +/area/medical/reception) +"fNB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/assembly/robotics) +"fNZ" = ( +/turf/simulated/floor/tiled, +/area/medical/medbay_emt_bay) +"fOo" = ( +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/bordercorner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/surgeryprep) +"fOE" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/landmark/spawnpoint/job/scientist, +/turf/simulated/floor/carpet/purcarpet, +/area/rnd/breakroom) +"fOX" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/workshop) +"fPm" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/catwalk, +/obj/machinery/door/airlock/maintenance/engi{ + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/substation/medical_science) +"fPM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/component/binary/pump, +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab) +"fQj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/fire_alarm/east_mount, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"fRk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"fRq" = ( +/obj/structure/closet/crate/bin{ + desc = "A large bin for medical and other personnel that deals with bio-grade waste."; + icon_closed = "biohazard"; + icon_opened = "biohazardopen"; + icon_state = "biohazard"; + name = "biohazard bin" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/medical/virology) +"fRZ" = ( +/turf/simulated/wall/prepainted, +/area/hallway/primary/aft) +"fSf" = ( +/obj/machinery/door/window/brigdoor/northright{ + name = "Containment Pen"; + req_access = list(55) + }, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "xenobio4"; + name = "Containment Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor/wood, +/area/rnd/xenobiology) +"fSg" = ( +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "xenobio7"; + name = "Containment Blast Doors"; + pixel_x = 24; + pixel_y = 24; + req_access = list(55) + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/xenobiology) +"fSO" = ( +/obj/structure/sign/department/medbay, +/turf/simulated/wall/prepainted/medical, +/area/medical/reception) +"fTE" = ( +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/glass, +/obj/structure/table/reinforced, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/mauve/border, +/turf/simulated/floor/tiled, +/area/rnd/reception_desk) +"fTU" = ( +/obj/machinery/computer/rdconsole/core, +/obj/machinery/fire_alarm/north_mount, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/reception_desk) +"fUn" = ( +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "medbayquar"; + name = "Medbay Emergency Lockdown Shutters"; + opacity = 0 + }, +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightorange/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/medical/medbay3) +"fUH" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 8 + }, +/obj/item/storage/box/syringegun, +/obj/item/storage/box/syringegun, +/obj/item/gun/launcher/syringe, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/medical/medbay_primary_storage) +"fUM" = ( +/obj/item/radio/intercom{ + dir = 4; + pixel_x = 24 + }, +/obj/structure/toilet{ + pixel_y = 10 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/medical_restroom) +"fVB" = ( +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/medbay/fore) +"fWa" = ( +/obj/machinery/camera/network/outside{ + dir = 5 + }, +/turf/space, +/area/space) +"fWy" = ( +/obj/machinery/atmospherics/pipe/tank/phoron{ + dir = 4; + name = "Xenoflora Waste Buffer"; + start_pressure = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/xenobiology/xenoflora_storage) +"fWJ" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"fWQ" = ( +/obj/structure/closet/secure_closet/personal/patient, +/obj/machinery/camera/network/medbay{ + dir = 1; + network = list("Psychiatric") + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"fWZ" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"fXo" = ( +/obj/machinery/door/blast/regular{ + id = "xenobiovs6"; + layer = 8; + name = "Divider Blast Door"; + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"fZo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/medical/sleeper) +"fZv" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/table/bench/padded, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"gbZ" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 5 + }, +/obj/structure/flora/pottedplant/decorative, +/turf/simulated/floor/grass, +/area/medical/psych_ward) +"gck" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"gcM" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/camera/network/medbay{ + dir = 1; + network = list("Psychiatric") + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"gdj" = ( +/obj/machinery/camera/network/medbay{ + dir = 8 + }, +/obj/structure/closet/hydrant{ + pixel_x = 32 + }, +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"geo" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/medbay/fore) +"gep" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"geD" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/assembly/robotics/surgery) +"geE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/loading{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/medical/virologyaccess) +"gfA" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ + dir = 1 + }, +/turf/simulated/floor/reinforced/airless, +/area/rnd/test_area) +"ggD" = ( +/turf/simulated/floor/tiled/white, +/area/rnd/research_restroom) +"ggO" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/turf/simulated/floor/tiled, +/area/medical/sleeper) +"ghn" = ( +/obj/structure/table/rack, +/obj/item/storage/belt/archaeology, +/obj/item/clothing/suit/space/anomaly, +/obj/item/clothing/head/helmet/space/anomaly, +/obj/item/clothing/mask/breath, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/item/storage/belt/archaeology, +/obj/item/clothing/mask/breath, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/item/clothing/suit/bio_suit/anomaly, +/obj/item/clothing/head/bio_hood/anomaly, +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab) +"gii" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/light_switch{ + pixel_x = 25 + }, +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab) +"giU" = ( +/obj/structure/closet/emcloset, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/red, +/turf/simulated/floor/tiled/white, +/area/medical/medbay4) +"gjp" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "cmo_office" + }, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/structure/wall_frame/prepainted, +/turf/simulated/floor/plating, +/area/crew_quarters/heads/cmo) +"gjw" = ( +/obj/machinery/door/firedoor/glass{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance/rnd{ + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/science/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/substation/research) +"gkl" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12 + }, +/turf/simulated/floor/tiled/white, +/area/medical/surgery2) +"gkq" = ( +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/obj/machinery/organ_printer/flesh, +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/surgeryprep) +"gkx" = ( +/obj/structure/table/woodentable, +/obj/item/reagent_containers/food/drinks/bottle/orangejuice, +/turf/simulated/floor/carpet/blue, +/area/crew_quarters/medbreak) +"glw" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 8 + }, +/obj/landmark/spawnpoint/overflow/station, +/turf/simulated/floor/tiled/techfloor, +/area/teleporter/departing) +"gly" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/workshop) +"glD" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/carpet/tealcarpet, +/area/medical/patient_a) +"gmh" = ( +/obj/machinery/computer/arcade/battle, +/obj/effect/floor_decal/corner/beige{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"gmB" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/assembly/robotics/surgery) +"gmM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay4) +"gmW" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/structure/flora/ausbushes/ppflowers, +/turf/simulated/floor/grass, +/area/medical/psych_ward) +"goh" = ( +/obj/machinery/door/airlock/glass, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"goH" = ( +/turf/simulated/floor/wood, +/area/rnd/breakroom) +"gpg" = ( +/obj/machinery/door/firedoor/glass, +/obj/spawner/window/low_wall/reinforced/full, +/turf/simulated/floor/plating, +/area/assembly/robotics) +"gpS" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/reception_desk) +"gqb" = ( +/obj/structure/closet/secure_closet/medical1, +/obj/item/storage/box/pillbottles, +/obj/item/storage/box/syringes, +/obj/item/radio/headset/headset_med, +/obj/item/storage/box/pillbottles, +/obj/item/storage/fancy/vials, +/obj/item/storage/fancy/vials, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightorange/border{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/chemistry) +"gqW" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/assembly/robotics) +"grd" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/machinery/light_switch{ + pixel_x = -26; + pixel_y = -4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/patient_c) +"grl" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/machinery/light_switch{ + pixel_x = -26; + pixel_y = -4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/patient_b) +"gry" = ( +/obj/effect/floor_decal/corner/blue/diagonal, +/obj/machinery/holopad, +/turf/simulated/floor/tiled/white, +/area/medical/exam_room/exam_2) +"gsB" = ( +/obj/machinery/door/firedoor/glass{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/machinery/door/window/brigdoor/westright{ + dir = 4; + name = "Research Desk"; + req_access = null; + req_one_access = list(8,44) + }, +/obj/item/deskbell, +/turf/simulated/floor/tiled, +/area/rnd/reception_desk) +"gtM" = ( +/obj/landmark{ + name = "carpspawn" + }, +/turf/space, +/area/space) +"gub" = ( +/obj/landmark/spawnpoint/job/scientist, +/turf/simulated/floor/tiled, +/area/rnd/reception_desk) +"guj" = ( +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/spawner/window/low_wall/reinforced/full, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/rnd/rdoffice) +"guA" = ( +/obj/machinery/fire_alarm/south_mount{ + pixel_y = -24 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/blue/border, +/turf/simulated/floor/tiled/white, +/area/medical/ward) +"guG" = ( +/obj/structure/curtain/open/shower/medical, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/white, +/area/medical/surgeryprep) +"guJ" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/research) +"guQ" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/white, +/area/medical/virologyisolation) +"gvn" = ( +/obj/machinery/optable, +/obj/machinery/oxygen_pump/anesthetic{ + pixel_x = -28 + }, +/turf/simulated/floor/tiled/monotile, +/area/medical/surgery) +"gvw" = ( +/obj/machinery/computer/timeclock/premade/south, +/obj/effect/floor_decal/techfloor, +/turf/simulated/floor/tiled, +/area/hallway/primary/starboard) +"gwo" = ( +/obj/structure/ladder, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/maintenance/medbay/fore) +"gwr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/aft) +"gwT" = ( +/obj/machinery/door/firedoor, +/obj/spawner/window/low_wall/reinforced/full, +/turf/simulated/floor/plating, +/area/medical/chemistry) +"gyu" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/medical) +"gzw" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/obj/machinery/light{ + color = "#0098c8"; + dir = 1 + }, +/obj/item/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 26 + }, +/turf/simulated/floor/tiled, +/area/medical/virologyaccess) +"gzO" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging, +/turf/simulated/floor/reinforced/airless, +/area/rnd/test_area) +"gBj" = ( +/obj/structure/closet/firecloset, +/turf/simulated/floor/plating, +/area/maintenance/medbay/aft) +"gBH" = ( +/obj/machinery/camera/network/medbay, +/obj/structure/closet/secure_closet/psych, +/turf/simulated/floor/wood, +/area/medical/psych/psych_1) +"gBN" = ( +/obj/structure/table/steel_reinforced, +/obj/item/reagent_containers/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + name = "Surgery Cleaner"; + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/stack/nanopaste{ + amount = 30 + }, +/turf/simulated/floor/tiled, +/area/medical/surgery2) +"gBW" = ( +/obj/effect/floor_decal/industrial/warning/dust, +/obj/machinery/button/remote/blast_door{ + id = "mechbay"; + name = "Mech Bay Access"; + pixel_x = -32; + pixel_y = -24; + req_access = list(29,47); + req_one_access = list(47) + }, +/turf/simulated/floor/tiled/dark, +/area/assembly/robotics) +"gCj" = ( +/obj/structure/cable/green, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/light{ + color = "#0098c8" + }, +/obj/machinery/power/apc/south_mount, +/turf/simulated/floor/tiled, +/area/medical/virologyaccess) +"gCw" = ( +/obj/machinery/atmospherics/component/binary/pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/test_area) +"gDB" = ( +/obj/structure/closet, +/obj/random/maintenance/research, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/medbay/aft) +"gDW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/machinery/camera/network/research, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/research) +"gEp" = ( +/obj/machinery/camera/network/medbay{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/beige/border, +/turf/simulated/floor/tiled/white, +/area/medical/medbay4) +"gFG" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/closet/excavation, +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab) +"gFT" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/rnd/storage) +"gFX" = ( +/obj/structure/table/steel_reinforced, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/item/mirrortool, +/turf/simulated/floor/tiled/white, +/area/medical/resleeving) +"gGo" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 5 + }, +/turf/simulated/floor, +/area/shuttle/emt/general) +"gGu" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/blue/border, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay3) +"gHo" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/storage) +"gHG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black, +/turf/simulated/wall/r_wall/prepainted/medical, +/area/medical/virology) +"gIr" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on, +/obj/structure/table/reinforced, +/obj/item/paper{ + desc = ""; + info = "This is a direct notice to anyone using firing range: All tests involving destruction of testing facilities MUST be run through Research Director or Central Command before anyone even so much as thinks about going through with this, or be moved outside to where test cannot affect any existing facility. This is both to maintain a professional environment, and ensure nobody else is harmed during these experiments. Nobody wants another 'two SM shards going nuclear in the firing range' incident again, especially not the people handling your paychecks."; + name = "note to science staff" + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/research/testingrange) +"gIy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/xenobiology/xenoflora_storage) +"gIR" = ( +/obj/item/radio/intercom{ + dir = 4; + pixel_x = 24 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 5 + }, +/obj/machinery/vending/coffee, +/turf/simulated/floor/tiled/white, +/area/medical/reception) +"gJS" = ( +/obj/machinery/power/apc/north_mount, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/turf/simulated/floor/carpet/purcarpet, +/area/rnd/breakroom) +"gKZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"gLF" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"gMn" = ( +/obj/machinery/air_alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/rnd/breakroom) +"gMI" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightorange/border{ + dir = 8 + }, +/obj/machinery/power/apc/west_mount, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/white, +/area/medical/chemistry) +"gMS" = ( +/obj/machinery/computer/crew{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 10 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"gNf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/obj/machinery/vending/medical, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 6 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virologyisolation) +"gOV" = ( +/obj/machinery/smartfridge/chemistry/chemvator, +/turf/simulated/wall, +/area/medical/chemistry) +"gPr" = ( +/obj/effect/floor_decal/corner/blue/diagonal, +/turf/simulated/floor/tiled/white, +/area/medical/exam_room/exam_1) +"gPQ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/machinery/door/firedoor, +/obj/spawner/window/low_wall/reinforced/full, +/turf/simulated/floor/plating, +/area/rnd/anomaly_lab/containment_one) +"gQh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/sink{ + pixel_y = 19 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"gQH" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"gQO" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/medical/resleeving) +"gSb" = ( +/obj/item/storage/box/masks{ + pixel_y = 5 + }, +/obj/item/storage/box/gloves, +/obj/structure/table/carbon/reinforced, +/turf/simulated/floor/tiled/dark, +/area/assembly/robotics/surgery) +"gSJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/starboard) +"gSR" = ( +/obj/effect/floor_decal/industrial/warning/dust, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/assembly/robotics/surgery) +"gTY" = ( +/obj/structure/table/glass, +/obj/item/storage/box/monkeycubes, +/obj/item/storage/box/monkeycubes, +/obj/item/storage/box/monkeycubes, +/obj/item/extinguisher, +/obj/machinery/requests_console{ + department = "Virology"; + name = "Virology Requests Console"; + pixel_y = -32 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/green/border, +/turf/simulated/floor/tiled/white, +/area/medical/virologyisolation) +"gUD" = ( +/obj/structure/bed/chair/wheelchair, +/obj/effect/shuttle_landmark/victory/deck3/emt, +/obj/overmap/entity/visitable/ship/landable/emt/victory, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + frequency = 1380; + id_tag = "emt_shuttle_docker"; + pixel_x = 1; + pixel_y = 26 + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/emt/general) +"gVf" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/regular{ + id = "mechbay"; + name = "Mech Bay" + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/assembly/robotics) +"gWK" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/red, +/turf/simulated/floor/tiled, +/area/rnd/test_area) +"gXk" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -23 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 9 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/medical/ward) +"gXK" = ( +/obj/machinery/fire_alarm/south_mount{ + pixel_y = -24 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 6 + }, +/obj/effect/floor_decal/corner/lightorange/border{ + dir = 6 + }, +/obj/structure/closet/wardrobe/chemistry_white, +/turf/simulated/floor/tiled/white, +/area/medical/chemistry) +"gYw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/camera/network/medbay{ + dir = 1; + network = list("Psychiatric") + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"gYU" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "medbayquar"; + name = "Medbay Emergency Lockdown Shutters"; + opacity = 0 + }, +/obj/spawner/window/low_wall/reinforced/full, +/turf/simulated/floor/plating, +/area/medical/resleeving) +"gYW" = ( +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/machinery/door/airlock/glass, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"gZg" = ( +/obj/machinery/light, +/obj/structure/bed/roller, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/blue/border, +/obj/effect/floor_decal/industrial/outline/red, +/turf/simulated/floor/tiled/white, +/area/shuttle/emt/general) +"gZv" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/glass/research{ + name = "Weapons Testing Range"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/science/department, +/turf/simulated/floor/tiled/dark, +/area/rnd/research/testingrange) +"gZZ" = ( +/turf/simulated/floor/tiled/white, +/area/medical/surgery) +"haj" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/assembly/chargebay) +"haG" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/medical/patient_wing) +"hbm" = ( +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"hbZ" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/chemistry) +"hce" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/turf/simulated/floor, +/area/shuttle/emt/general) +"hdc" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/effect/floor_decal/corner/green{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology/xenoflora) +"hdd" = ( +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "xenobio3"; + name = "Containment Blast Doors"; + opacity = 0 + }, +/obj/spawner/window/low_wall/reinforced/full, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"hdr" = ( +/obj/structure/table/steel_reinforced, +/obj/item/storage/firstaid/adv, +/obj/item/storage/firstaid/adv{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/medical/medbay_primary_storage) +"hdw" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 10 + }, +/turf/simulated/floor/reinforced/airless, +/area/rnd/test_area) +"hff" = ( +/obj/structure/toilet{ + pixel_y = 10 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/medical_restroom) +"hfZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/assembly/robotics) +"hgb" = ( +/obj/machinery/fire_alarm/east_mount, +/obj/structure/table/steel_reinforced, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"hgr" = ( +/obj/structure/table/standard, +/obj/item/melee/baton/slime/loaded, +/obj/item/gun/energy/taser/xeno, +/obj/item/slime_scanner, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"hhH" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/aft) +"hhW" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/techfloor{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"hia" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/turf/simulated/floor/grass, +/area/rnd/xenobiology/xenoflora) +"hih" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled{ + icon_state = "techmaint" + }, +/area/victory/station/stairs_three) +"hiV" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/vending/coffee, +/turf/simulated/floor/wood, +/area/crew_quarters/medbreak) +"hjm" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled, +/area/medical/psych_ward) +"hjr" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"hjJ" = ( +/obj/machinery/holopad/ship, +/turf/simulated/floor/tiled, +/area/rnd/rdoffice) +"hjT" = ( +/obj/machinery/air_alarm{ + frequency = 1441; + pixel_y = 22 + }, +/obj/effect/floor_decal/corner/blue/diagonal, +/turf/simulated/floor/tiled/white, +/area/medical/exam_room/exam_1) +"hjX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/machinery/door/airlock/research{ + name = "Toxins Lab" + }, +/obj/map_helper/access_helper/airlock/station/science/toxins, +/turf/simulated/floor/tiled, +/area/rnd/test_area) +"hkx" = ( +/obj/machinery/papershredder, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/cmo) +"hln" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/sink{ + pixel_y = 19 + }, +/obj/structure/mirror{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"hlr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "xenobio1"; + name = "Containment Blast Doors"; + opacity = 0 + }, +/obj/spawner/window/low_wall/reinforced/full, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"hlv" = ( +/obj/effect/floor_decal/industrial/outline/blue, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/structure/bed/roller, +/turf/simulated/floor/tiled/monotile, +/area/medical/surgeryprep) +"hlB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/beige{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"hlM" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"hmb" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"hmG" = ( +/obj/structure/closet/crate/freezer, +/obj/item/virusdish/random, +/obj/item/virusdish/random, +/obj/item/virusdish/random, +/obj/item/virusdish/random, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black, +/obj/effect/floor_decal/corner/green/border{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/medical/virology) +"hmJ" = ( +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/machinery/computer/med_data/laptop{ + dir = 1; + pixel_x = null; + pixel_y = -32 + }, +/obj/structure/bed/chair/office/dark, +/obj/effect/floor_decal/corner/blue/diagonal, +/obj/machinery/power/apc/north_mount, +/obj/landmark/spawnpoint/job/medical_doctor, +/turf/simulated/floor/tiled/white, +/area/medical/exam_room/exam_1) +"hnd" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/machinery/ai_status_display{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"hnl" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/medical/morgue) +"hnr" = ( +/obj/item/slime_extract/grey, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"hnB" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/medical/medbay_primary_storage) +"hpi" = ( +/obj/structure/table/woodentable, +/obj/item/flashlight/lamp/green, +/turf/simulated/floor/carpet/sblucarpet, +/area/medical/psych/psych_2) +"hpE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/research_foyer_auxiliary) +"hqb" = ( +/obj/structure/table/steel_reinforced, +/obj/item/flashlight/lamp, +/obj/effect/floor_decal/corner/blue/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/exam_room/exam_2) +"hqc" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/random/plushie, +/obj/random/plushie, +/obj/random/plushie, +/obj/machinery/light, +/obj/effect/floor_decal/corner/beige{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"hqs" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/turf/simulated/floor/bluegrid{ + initial_gas_mix = "n2=500;TEMP=80"; + name = "Server Base" + }, +/area/rnd/research) +"hqx" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"hrJ" = ( +/obj/machinery/camera/network/medbay, +/obj/structure/closet/emcloset, +/obj/effect/floor_decal/industrial/outline/red, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightorange/border{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay3) +"hrZ" = ( +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/grass, +/area/medical/psych_ward) +"hsN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/obj/effect/floor_decal/corner/beige/full{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"htp" = ( +/obj/effect/floor_decal/techfloor/orange, +/turf/simulated/floor/tiled/techfloor, +/area/teleporter/departing) +"hui" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"huo" = ( +/obj/structure/table/steel_reinforced, +/obj/item/storage/firstaid/surgery, +/obj/item/surgical/bioregen, +/turf/simulated/floor/tiled, +/area/medical/surgery) +"huG" = ( +/obj/machinery/camera/network/research{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/research/testingrange) +"huO" = ( +/turf/simulated/wall/prepainted/medical, +/area/medical/virologyaccess) +"huY" = ( +/obj/machinery/door/firedoor{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"hvb" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/table/glass, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"hve" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 10 + }, +/obj/machinery/newscaster{ + pixel_y = -31 + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"hwg" = ( +/obj/machinery/power/apc/south_mount, +/obj/structure/cable/green, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/rnd/research/testingrange) +"hwG" = ( +/obj/structure/table/steel_reinforced, +/obj/item/storage/box/syringes, +/obj/item/clothing/accessory/stethoscope, +/obj/effect/floor_decal/corner/blue/diagonal, +/turf/simulated/floor/tiled/white, +/area/medical/exam_room/exam_2) +"hwO" = ( +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab) +"hwR" = ( +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/spawner/window/low_wall/reinforced/full, +/turf/simulated/floor/plating, +/area/rnd/workshop) +"hxs" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "exam_1" + }, +/obj/structure/wall_frame/prepainted, +/turf/simulated/floor/plating, +/area/medical/exam_room/exam_1) +"hxK" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/medical/ward) +"hxQ" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow, +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab) +"hyb" = ( +/obj/effect/floor_decal/techfloor, +/obj/effect/floor_decal/techfloor/hole, +/turf/simulated/floor/tiled, +/area/hallway/primary/starboard) +"hyM" = ( +/obj/effect/floor_decal/techfloor{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/starboard) +"hzh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/bookcase, +/obj/item/book/manual/medical_diagnostics_manual, +/obj/item/book/manual/engineering_particle_accelerator, +/obj/item/book/manual/detective, +/obj/item/book/manual/chef_recipes, +/obj/item/book/manual/anomaly_testing, +/obj/item/book/manual/anomaly_spectroscopy, +/obj/item/book/manual/atmospipes, +/obj/effect/floor_decal/corner/beige{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"hzj" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/recharger, +/obj/item/bodybag/cryobag{ + pixel_x = -8 + }, +/obj/item/bodybag/cryobag{ + pixel_x = -8 + }, +/obj/item/bodybag/cryobag{ + pixel_x = -8 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/medical/medbay_primary_storage) +"hzN" = ( +/obj/machinery/iv_drip, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/machinery/camera/network/medbay{ + network = list("Psychiatric") + }, +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay4) +"hAv" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"hAY" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/recharger, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"hBf" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/spawner/window/low_wall/borosillicate/reinforced/full, +/turf/simulated/floor/reinforced/airless, +/area/rnd/test_area) +"hBp" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/power/terminal{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/medical) +"hBs" = ( +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"hBA" = ( +/obj/item/radio/intercom{ + pixel_y = -24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/research/testingrange) +"hBV" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/bed/chair/office/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/medical/virology) +"hCj" = ( +/turf/simulated/wall/r_wall/prepainted/medical, +/area/medical/patient_a) +"hCJ" = ( +/obj/structure/flora/pottedplant/smallcactus, +/turf/simulated/floor/wood, +/area/medical/psych/psych_1) +"hCO" = ( +/obj/machinery/disease2/isolator, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/medical/virology) +"hDs" = ( +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/beige/border, +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 4; + id_tag = "PsycheFoyer"; + name = "Psychiatric Wing"; + req_access = list() + }, +/obj/map_helper/access_helper/airlock/station/medical/department, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"hDD" = ( +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/command{ + id_tag = "RDdoor"; + name = "Research Director"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/head_office/research_director, +/turf/simulated/floor/tiled, +/area/rnd/rdoffice) +"hDL" = ( +/obj/machinery/atmospherics/component/unary/heater{ + icon_state = "heater" + }, +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora/lab_atmos) +"hDQ" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/emt/general) +"hDT" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + id_tag = "researchdoor"; + name = "Robotics Morgue" + }, +/obj/map_helper/access_helper/airlock/station/science/robotics, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/assembly/robotics) +"hEJ" = ( +/obj/structure/closet/hydrant{ + pixel_x = 32 + }, +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/maintenance/medbay/aft) +"hFc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/rnd/reception_desk) +"hFl" = ( +/obj/structure/mirror{ + pixel_y = 30 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay4) +"hFt" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/medical/reception) +"hFZ" = ( +/obj/machinery/r_n_d/destructive_analyzer, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/obj/machinery/camera/network/research, +/obj/structure/reagent_dispensers/acid{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled, +/area/rnd/reception_desk) +"hGa" = ( +/obj/effect/floor_decal/corner/green{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology/xenoflora) +"hGf" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/fire_alarm/south_mount{ + pixel_y = -24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/blue/border, +/turf/simulated/floor/tiled/white, +/area/medical/ward) +"hHa" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance/rnd{ + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/science/department, +/turf/simulated/floor/plating, +/area/assembly/chargebay) +"hJP" = ( +/obj/effect/floor_decal/techfloor{ + dir = 5 + }, +/obj/machinery/atmospherics/component/unary/freezer{ + dir = 8; + icon_state = "freezer_1"; + power_setting = 20; + set_temperature = 73; + use_power = 1 + }, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/research) +"hKe" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay4) +"hKL" = ( +/obj/structure/closet/secure_closet/CMO, +/obj/item/cmo_disk_holder, +/obj/item/flashlight/pen, +/obj/item/storage/belt/medical, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/accessory/stethoscope, +/obj/item/defib_kit/compact/combat/loaded, +/obj/item/book/manual/standard_operating_procedure, +/obj/item/healthanalyzer/improved, +/obj/item/storage/fancy/vials, +/obj/item/clothing/mask/surgical, +/obj/item/storage/secure/briefcase/ml3m_pack_cmo, +/obj/item/clothing/accessory/poncho/roles/cloak/cmo, +/obj/machinery/fire_alarm/west_mount{ + pixel_x = -24 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/cmo) +"hKM" = ( +/obj/structure/table/steel_reinforced, +/obj/item/storage/box/nifsofts_medical, +/obj/item/storage/box/syringes{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/box/syringes{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/box/syringes{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/hand_labeler, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/medical/medbay_primary_storage) +"hLb" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/medical/virology) +"hMz" = ( +/obj/machinery/power/smes/buildable{ + RCon_tag = "Substation - Research" + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/research) +"hMB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay3) +"hNe" = ( +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "xenobio8"; + name = "Containment Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/window/brigdoor/southright{ + name = "Containment Pen"; + req_access = list(55) + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"hNl" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "xenobio10"; + name = "Containment Blast Doors"; + pixel_x = -24; + pixel_y = -24; + req_access = list(55) + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"hNv" = ( +/obj/machinery/transhuman/synthprinter, +/obj/machinery/camera/network/research{ + dir = 8; + network = list("Research","Toxins Test Area") + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/assembly/robotics) +"hNI" = ( +/obj/structure/disposalpipe/trunk, +/obj/machinery/disposal, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"hNU" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central6, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/rnd/research_foyer) +"hNW" = ( +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora/lab_atmos) +"hQc" = ( +/obj/machinery/shield_diffuser, +/obj/map_helper/airlock/door/ext_door, +/obj/machinery/door/airlock/glass_external{ + name = "Public Airlock"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/external_airlock, +/turf/simulated/floor/tiled{ + icon_state = "techmaint" + }, +/area/victory/station/stairs_three) +"hQw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/glass/research{ + name = "Xenoflora Research"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/science/xenobotany, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora/lab_atmos) +"hQy" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/table/glass, +/obj/machinery/microwave, +/turf/simulated/floor/wood, +/area/rnd/breakroom) +"hQR" = ( +/obj/machinery/computer/crew{ + dir = 1 + }, +/obj/machinery/light, +/obj/effect/floor_decal/corner/blue/full{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/medical/reception) +"hQY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/obj/machinery/holopad, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"hRa" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/closet/hydrant{ + pixel_y = 32 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"hRI" = ( +/obj/machinery/artifact_scanpad, +/turf/simulated/floor/tiled/dark, +/area/rnd/anomaly_lab/containment_one) +"hRL" = ( +/obj/machinery/light{ + dir = 8; + light_range = 12 + }, +/obj/structure/window/phoronreinforced{ + dir = 4 + }, +/obj/machinery/atmospherics/component/binary/pump/high_power{ + dir = 8; + id = "emg_pump"; + name = "Emergency Pen Flood Manual Switch" + }, +/obj/structure/window/phoronreinforced, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"hRR" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightorange/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/medical/medbay3) +"hRV" = ( +/obj/item/bedsheet/medical, +/obj/structure/bed/padded, +/turf/simulated/floor/carpet/tealcarpet, +/area/medical/patient_d) +"hSv" = ( +/obj/item/storage/firstaid/surgery, +/obj/item/robotanalyzer, +/obj/item/robotanalyzer, +/obj/item/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 26 + }, +/obj/structure/table/carbon/reinforced, +/turf/simulated/floor/tiled/old_tile/purple, +/area/assembly/robotics/surgery) +"hUa" = ( +/obj/machinery/air_alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/blue/border, +/turf/simulated/floor/tiled/white, +/area/medical/patient_wing) +"hUF" = ( +/obj/structure/closet{ + name = "spare clothes" + }, +/obj/item/clothing/under/color/black, +/obj/item/clothing/under/color/black, +/obj/item/clothing/under/color/grey, +/obj/item/clothing/under/color/grey, +/obj/item/clothing/under/color/white, +/obj/item/clothing/under/color/white, +/obj/item/clothing/under/color/blue, +/obj/item/clothing/under/color/green, +/obj/item/clothing/under/color/lightpurple, +/obj/item/radio/headset, +/obj/item/radio/headset, +/obj/item/radio/headset, +/obj/item/clothing/shoes/black, +/obj/item/clothing/shoes/black, +/obj/item/clothing/shoes/black, +/obj/item/clothing/shoes/black, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/radio/intercom{ + pixel_y = -24 + }, +/turf/simulated/floor/tiled, +/area/medical/resleeving) +"hVK" = ( +/obj/effect/floor_decal/corner/paleblue/full, +/turf/simulated/floor/tiled/white, +/area/medical/surgeryprep) +"hVQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 5 + }, +/obj/machinery/computer/centrifuge, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/medical/virology) +"hWK" = ( +/obj/machinery/power/apc/south_mount, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8; + light_range = 12 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/emt/cockpit) +"hXy" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/patient_wing) +"hYh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/camera/network/research, +/obj/effect/floor_decal/industrial/danger/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"hYp" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"hZk" = ( +/obj/machinery/iv_drip, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled, +/area/medical/surgery2) +"hZx" = ( +/obj/structure/table/glass, +/obj/item/book/manual/standard_operating_procedure, +/turf/simulated/floor/carpet/purcarpet, +/area/rnd/breakroom) +"iat" = ( +/obj/structure/table/steel, +/turf/simulated/floor/plating, +/area/maintenance/medbay/aft) +"iaO" = ( +/obj/machinery/r_n_d/circuit_imprinter, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/rnd/reception_desk) +"ibj" = ( +/obj/machinery/door/firedoor/glass{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/obj/machinery/door/airlock/medical{ + name = "Virology Labs"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/medical/department, +/turf/simulated/floor/tiled/white, +/area/medical/virologyisolation) +"ibB" = ( +/obj/effect/floor_decal/corner/blue/diagonal, +/turf/simulated/floor/tiled/white, +/area/medical/exam_room/exam_2) +"ice" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/assembly/robotics) +"icA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock{ + name = "Restroom" + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"icD" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"icZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/holopad, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/workshop) +"idf" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/machinery/power/sensor{ + name = "Powernet Sensor - Medical Subgrid"; + name_tag = "Medical Subgrid" + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/medical) +"ido" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/fire_alarm/east_mount, +/turf/simulated/floor/tiled, +/area/medical/psych_ward) +"idK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/holopad, +/turf/simulated/floor/tiled/dark, +/area/assembly/robotics/surgery) +"idX" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/turf/simulated/floor/carpet/sblucarpet, +/area/medical/psych/psych_2) +"iei" = ( +/obj/machinery/suspension_gen, +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab) +"iev" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/victory/station/stairs_three) +"ieJ" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"ieR" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"ieT" = ( +/obj/structure/curtain/open/shower/medical, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/machinery/door/firedoor/glass{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/surgeryprep) +"ifg" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/lightorange/border, +/turf/simulated/floor/tiled/white, +/area/medical/chemistry) +"ifA" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/simulated/floor/tiled/white, +/area/medical/patient_a) +"igd" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/emt/general) +"igt" = ( +/obj/machinery/holopad, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"iiq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"iiB" = ( +/obj/effect/floor_decal/techfloor{ + dir = 10 + }, +/obj/machinery/computer/ship/navigation/telescreen{ + pixel_y = -37 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/aft) +"ijc" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/mauve/border, +/obj/machinery/camera/network/research{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora/lab_atmos) +"ijd" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/computer/timeclock/premade/west, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"ije" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/medical/morgue) +"ijz" = ( +/obj/structure/closet/excavation, +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab) +"ijZ" = ( +/turf/simulated/wall/prepainted/science, +/area/rnd/workshop) +"ikD" = ( +/obj/structure/toilet{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/research_restroom) +"ikE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"ikR" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/regular{ + id = "mechbay-inner"; + name = "Mech Bay" + }, +/turf/simulated/floor/tiled/techfloor, +/area/assembly/chargebay) +"ikZ" = ( +/obj/machinery/camera/network/outside{ + dir = 1 + }, +/turf/space, +/area/space) +"iln" = ( +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/patient_wing) +"ilx" = ( +/obj/machinery/holopad, +/turf/simulated/floor/tiled/techfloor, +/area/medical/morgue) +"ilA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/research/testingrange) +"ioE" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"ioN" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/medical) +"ioP" = ( +/obj/machinery/door/airlock/glass, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/aft) +"ioT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"ioV" = ( +/obj/machinery/shower{ + dir = 1 + }, +/obj/structure/curtain/medical, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/medical/surgeryprep) +"ipe" = ( +/obj/structure/table/steel_reinforced, +/obj/effect/floor_decal/corner/blue/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/exam_room/exam_2) +"iph" = ( +/obj/machinery/shower{ + pixel_y = 16 + }, +/obj/structure/curtain/open/shower, +/turf/simulated/floor/tiled/techfloor/grid, +/area/medical/patient_d) +"ipB" = ( +/obj/structure/table/rack, +/obj/item/clothing/mask/gas, +/obj/item/clothing/suit/storage/hooded/wintercoat/science, +/obj/item/tank/emergency/oxygen/engi, +/obj/item/clothing/mask/gas, +/obj/item/clothing/suit/storage/hooded/wintercoat/science, +/obj/item/tank/emergency/oxygen/engi, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/item/clothing/suit/space/anomaly, +/obj/item/clothing/suit/space/anomaly, +/obj/item/clothing/head/helmet/space/anomaly, +/obj/item/clothing/head/helmet/space/anomaly, +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab) +"iqg" = ( +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/component/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora/lab_atmos) +"ira" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/blue/border, +/obj/machinery/computer/guestpass{ + dir = 1; + pixel_y = -20 + }, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/reception) +"irg" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/medical/resleeving) +"iro" = ( +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/spawner/window/low_wall/reinforced/full, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/rnd/rdoffice) +"iry" = ( +/obj/structure/cable/green, +/obj/machinery/power/apc/west_mount, +/obj/structure/table/steel_reinforced, +/obj/item/storage/box/masks{ + pixel_x = -7 + }, +/obj/item/storage/box/gloves{ + pixel_x = 6 + }, +/obj/item/storage/box/syringes{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"irM" = ( +/turf/simulated/floor/tiled, +/area/rnd/reception_desk) +"itb" = ( +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"itd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint2) +"itp" = ( +/obj/machinery/light, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/blue/border, +/turf/simulated/floor/tiled/white, +/area/medical/patient_wing) +"itJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/glass/medical{ + name = "Chemistry"; + req_access = list(); + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/medical/chemistry, +/turf/simulated/floor/tiled/white, +/area/medical/chemistry) +"iui" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora/lab_atmos) +"iuo" = ( +/obj/structure/closet/secure_closet/medical2, +/turf/simulated/floor/tiled, +/area/medical/surgery2) +"iuJ" = ( +/obj/machinery/fire_alarm/south_mount{ + pixel_y = -24 + }, +/obj/structure/closet/coffin, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint2) +"ivj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/xenobiology/xenoflora_storage) +"ivq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/computer/skills{ + dir = 1 + }, +/obj/structure/table/glass, +/turf/simulated/floor/tiled, +/area/rnd/rdoffice) +"ivz" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/item/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 26 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/starboard) +"ivK" = ( +/obj/structure/table/standard, +/obj/item/flashlight/lamp, +/obj/machinery/power/apc/north_mount, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/anomaly_lab/containment_one) +"ixd" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/surgeryprep) +"iym" = ( +/obj/spawner/window/low_wall/reinforced/full, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/medbay/aft) +"iyp" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint2) +"iyz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/carpet/tealcarpet, +/area/medical/patient_d) +"iyI" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/research_foyer_auxiliary) +"iyL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/machinery/door/airlock/research{ + name = "Research Lab" + }, +/obj/map_helper/access_helper/airlock/station/science/research_lab, +/turf/simulated/floor/tiled, +/area/rnd/reception_desk) +"iyW" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/table/steel_reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/obj/item/clothing/head/surgery/black, +/obj/item/clothing/under/rank/medical/scrubs/black, +/obj/item/storage/box/bodybags, +/obj/item/hand_labeler, +/turf/simulated/floor/tiled, +/area/medical/morgue) +"izh" = ( +/obj/structure/table/bench/padded, +/turf/simulated/floor/tiled, +/area/medical/medbay_emt_bay) +"izp" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab/containment_one) +"izJ" = ( +/obj/effect/floor_decal/corner/green{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology/xenoflora) +"izN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/assembly/robotics/surgery) +"izS" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/blue/border, +/turf/simulated/floor/tiled/white, +/area/medical/medbay3) +"iAr" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/machinery/atmospherics/portables_connector, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora/lab_atmos) +"iAs" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/item/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 26 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/aft) +"iBd" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/camera/network/medbay{ + dir = 5 + }, +/obj/structure/table/steel_reinforced, +/obj/structure/closet/secure_closet/medical_wall{ + name = "O- Blood Locker"; + pixel_x = -32; + req_access = list(5) + }, +/obj/item/reagent_containers/blood/OMinus, +/obj/item/reagent_containers/blood/OMinus, +/obj/item/reagent_containers/blood/OMinus, +/obj/item/reagent_containers/blood/OMinus, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"iBU" = ( +/obj/structure/table/steel, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/turf/simulated/floor/tiled, +/area/rnd/misc_lab) +"iCr" = ( +/obj/structure/stairs/spawner/north, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"iCF" = ( +/obj/structure/toilet{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/patient_b) +"iDi" = ( +/obj/random/maintenance/clean, +/obj/structure/closet, +/obj/item/radio/intercom{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/plating, +/area/maintenance/medbay/aft) +"iEe" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass{ + dir = 4 + }, +/obj/machinery/door/airlock/medical{ + name = "Operating Theatre 1"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/medical/surgery, +/turf/simulated/floor/tiled/white, +/area/medical/surgeryprep) +"iEo" = ( +/obj/machinery/fire_alarm/west_mount{ + pixel_x = -24 + }, +/turf/simulated/open, +/area/holodeck_control) +"iEr" = ( +/obj/effect/floor_decal/techfloor{ + dir = 6 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"iEL" = ( +/obj/machinery/camera/network/medbay{ + network = list("Psychiatric") + }, +/obj/structure/table/steel_reinforced, +/obj/item/radio/intercom{ + dir = 1; + pixel_y = 24; + req_access = list() + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"iFB" = ( +/obj/structure/table/steel_reinforced, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/beige/border, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"iFF" = ( +/obj/machinery/atmospherics/component/unary/vent_pump{ + dir = 1; + external_pressure_bound = 0; + external_pressure_bound_default = 0; + icon_state = "map_vent_in"; + initialize_directions = 1; + internal_pressure_bound = 4000; + internal_pressure_bound_default = 4000; + on = 1; + pressure_checks = 2; + pressure_checks_default = 2; + pump_direction = 0 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/bluegrid{ + initial_gas_mix = "n2=500;TEMP=80"; + name = "Server Base" + }, +/area/rnd/research) +"iFZ" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/spray/cleaner, +/turf/simulated/floor/carpet/purcarpet, +/area/rnd/breakroom) +"iGC" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/medical/reception) +"iGJ" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/structure/closet/hydrant{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/starboard) +"iHO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/aft) +"iIb" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/medical/surgeryprep) +"iIy" = ( +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/machinery/power/apc/west_mount, +/turf/simulated/floor/tiled/dark, +/area/assembly/robotics/surgery) +"iIR" = ( +/obj/structure/table/standard, +/obj/item/soap/nanotrasen, +/turf/simulated/floor/tiled, +/area/holodeck_control) +"iJo" = ( +/obj/structure/table/steel_reinforced, +/obj/item/defib_kit/loaded{ + pixel_y = 3 + }, +/obj/machinery/air_alarm{ + dir = 8; + pixel_x = 25 + }, +/obj/item/tool/screwdriver, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"iJp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/floor_decal/corner/beige{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"iKc" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/rdoffice) +"iKm" = ( +/obj/structure/table/steel, +/obj/item/electronic_assembly/large/default, +/obj/effect/floor_decal/techfloor{ + dir = 5 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/workshop) +"iKn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/holopad, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"iKx" = ( +/obj/machinery/atmospherics/component/binary/passive_gate/on, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint2) +"iKZ" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/medical{ + id_tag = "er2"; + name = "Exam Room 2"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/medical/department, +/turf/simulated/floor/tiled/white, +/area/medical/exam_room/exam_2) +"iLk" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging, +/obj/machinery/air_sensor{ + frequency = 1445; + id_tag = "burn_sensor"; + output = 63 + }, +/turf/simulated/floor/reinforced/airless, +/area/rnd/test_area) +"iMe" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/machinery/atmospherics/portables_connector, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora/lab_atmos) +"iNo" = ( +/obj/spawner/window/low_wall/reinforced/full, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "xenobio9"; + name = "Containment Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"iNI" = ( +/obj/effect/floor_decal/techfloor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/aft) +"iOj" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/medical/virologyaccess) +"iOv" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "ward_a" + }, +/obj/structure/wall_frame/prepainted, +/turf/simulated/floor/plating, +/area/medical/patient_a) +"iPf" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/aft) +"iPU" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/medbay/fore) +"iQA" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/rnd/research/testingrange) +"iRq" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/obj/structure/table/steel_reinforced, +/obj/item/storage/box/masks{ + pixel_x = 1 + }, +/obj/item/storage/box/masks{ + pixel_x = -7 + }, +/turf/simulated/floor/tiled/white, +/area/medical/surgeryprep) +"iRy" = ( +/obj/machinery/door/firedoor, +/obj/spawner/window/low_wall/reinforced/full, +/turf/simulated/floor/plating, +/area/rnd/breakroom) +"iRK" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 4; + id_tag = "MedbayFoyer"; + name = "Recovery Wing" + }, +/obj/machinery/door/firedoor/glass{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/blue/border, +/obj/map_helper/access_helper/airlock/station/medical/department, +/turf/simulated/floor/tiled/white, +/area/medical/ward) +"iRX" = ( +/turf/simulated/wall/prepainted/medical, +/area/medical/morgue) +"iRZ" = ( +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/spawner/window/low_wall/reinforced/full, +/turf/simulated/floor/plating, +/area/victory/station/stairs_three) +"iST" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/obj/effect/floor_decal/techfloor/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"iTl" = ( +/obj/structure/closet/secure_closet/scientist, +/turf/simulated/floor/wood, +/area/rnd/breakroom) +"iUD" = ( +/obj/machinery/air_alarm{ + dir = 8; + pixel_x = 25 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/washing_machine, +/turf/simulated/floor/tiled/techfloor, +/area/medical/ward) +"iUO" = ( +/obj/structure/cable/green, +/obj/structure/table/woodentable, +/obj/structure/plushie/ian{ + dir = 8; + pixel_y = 6 + }, +/obj/item/toy/plushie/kitten, +/obj/machinery/power/apc/south_mount, +/turf/simulated/floor/wood, +/area/medical/psych/psych_2) +"iVb" = ( +/obj/machinery/door/firedoor, +/obj/spawner/window/low_wall/reinforced/full, +/turf/simulated/floor/plating, +/area/medical/ward) +"iVj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"iVw" = ( +/obj/effect/floor_decal/techfloor/corner, +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"iVG" = ( +/obj/machinery/camera/network/research{ + dir = 4; + network = list("Xenobiology") + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"iVW" = ( +/obj/machinery/camera/network/medbay, +/obj/structure/table/reinforced, +/obj/machinery/chemical_dispenser/full, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightorange/border{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/medical/chemistry) +"iWo" = ( +/obj/machinery/disease2/isolator, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/medical/virology) +"iWB" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/structure/closet/hydrant{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"iWN" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay3) +"iWZ" = ( +/obj/structure/window/reinforced, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"iXx" = ( +/obj/machinery/computer/guestpass{ + dir = 4; + pixel_x = -28 + }, +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/aft) +"iXI" = ( +/obj/machinery/air_alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled, +/area/medical/medbay_emt_bay) +"iYh" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virologyaccess) +"iZs" = ( +/obj/structure/sign/directions/evac{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"iZN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/table/steel_reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/light_switch{ + pixel_x = 25 + }, +/obj/effect/floor_decal/corner/blue/diagonal, +/turf/simulated/floor/tiled/white, +/area/medical/exam_room/exam_2) +"jaa" = ( +/obj/machinery/door/firedoor{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"jam" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/item/radio/intercom{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"jbd" = ( +/obj/machinery/ai_status_display{ + pixel_y = -32 + }, +/obj/structure/bed/chair/comfy/brown{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"jbC" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "cmo_office" + }, +/obj/structure/cable/green, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/wall_frame/prepainted, +/turf/simulated/floor/plating, +/area/crew_quarters/heads/cmo) +"jbE" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/target_stake, +/turf/simulated/floor/tiled/dark, +/area/rnd/research/testingrange) +"jbQ" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 4 + }, +/obj/machinery/button/remote/blast_door{ + id = "mechbay-inner"; + name = "Mech Bay"; + pixel_x = 26; + pixel_y = -26; + req_access = list(29,47); + req_one_access = list(47) + }, +/turf/simulated/floor/tiled/dark, +/area/assembly/robotics) +"jct" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/reception_desk) +"jdh" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/workshop) +"jdn" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay4) +"jff" = ( +/turf/simulated/wall/prepainted/medical, +/area/medical/patient_c) +"jfA" = ( +/obj/structure/table/woodentable, +/obj/machinery/computer/med_data/laptop{ + dir = 4 + }, +/turf/simulated/floor/carpet/sblucarpet, +/area/medical/psych/psych_2) +"jfJ" = ( +/obj/machinery/camera/network/civilian{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"jgb" = ( +/obj/machinery/air_alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/wood, +/area/medical/medbay4) +"jhz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/yellow, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"jie" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/blue/border, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/fire_alarm/south_mount{ + pixel_y = -24 + }, +/turf/simulated/floor/tiled/white, +/area/medical/patient_wing) +"jin" = ( +/obj/structure/closet/secure_closet/personal/patient, +/obj/machinery/air_alarm{ + dir = 8; + pixel_x = 25 + }, +/turf/simulated/floor/carpet/tealcarpet, +/area/medical/patient_a) +"jkz" = ( +/obj/structure/sign/greencross, +/turf/simulated/wall/prepainted/medical, +/area/medical/reception) +"jkE" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"jkG" = ( +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/machinery/door/blast/regular{ + id = "mechbay"; + name = "Mech Bay" + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/assembly/robotics) +"jlG" = ( +/obj/machinery/r_n_d/protolathe, +/turf/simulated/floor/tiled, +/area/rnd/reception_desk) +"jlX" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/item/bedsheet/medical, +/obj/machinery/light{ + dir = 8; + light_range = 12 + }, +/obj/machinery/computer/ship/navigation/telescreen{ + pixel_x = -32 + }, +/obj/structure/bed/padded, +/obj/effect/floor_decal/corner/blue{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"jmm" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/medical/sleeper) +"jmW" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/xenobiology/xenoflora_storage) +"jnq" = ( +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/item/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 26 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/anomaly_lab) +"joq" = ( +/obj/structure/sign/directions/medical{ + dir = 4; + pixel_y = 42 + }, +/obj/structure/sign/directions/command{ + dir = 4; + pixel_y = 36 + }, +/obj/structure/sign/directions/science{ + dir = 4; + pixel_y = 30 + }, +/obj/structure/sign/directions/security{ + dir = 4; + pixel_y = 24 + }, +/obj/machinery/door/airlock/glass, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"jor" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"jrd" = ( +/obj/structure/table/steel, +/obj/fiftyspawner/rods, +/obj/fiftyspawner/rods, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/rnd/misc_lab) +"jrk" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/turf/simulated/floor/wood, +/area/medical/medbay4) +"jrX" = ( +/obj/structure/table/steel_reinforced, +/obj/item/storage/box/gloves{ + pixel_x = 1; + pixel_y = 6 + }, +/obj/item/storage/box/gloves{ + pixel_x = -4 + }, +/obj/item/storage/box/gloves{ + pixel_x = 6 + }, +/obj/effect/floor_decal/corner/blue/full{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/white, +/area/medical/surgeryprep) +"jsc" = ( +/obj/machinery/cryopod/robot, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/mauve/border, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner, +/turf/simulated/floor/tiled/dark, +/area/assembly/robotics) +"jsq" = ( +/obj/structure/sign/greencross{ + name = "Authorized Medical Personnel Only"; + pixel_x = -32 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8; + light_range = 12 + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay3) +"jsz" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/sign/deck/third, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/spawner/window/low_wall/reinforced/full, +/turf/simulated/floor/plating, +/area/teleporter/departing) +"jsK" = ( +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/door/airlock/command{ + id_tag = "RDdoor"; + name = "Research Director"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/head_office/research_director, +/turf/simulated/floor/tiled, +/area/rnd/rdoffice) +"jsT" = ( +/obj/machinery/door/firedoor, +/obj/spawner/window/low_wall/reinforced/full, +/obj/structure/curtain/open/shower/medical{ + name = "Privacy curtain" + }, +/turf/simulated/floor/plating, +/area/medical/patient_b) +"jtb" = ( +/obj/structure/closet, +/turf/simulated/floor/wood, +/area/rnd/xenobiology) +"juw" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/turf/simulated/floor/tiled, +/area/medical/sleeper) +"juF" = ( +/turf/simulated/wall/prepainted/medical, +/area/medical/reception) +"jvd" = ( +/obj/machinery/holopad, +/turf/simulated/floor/tiled/white, +/area/medical/resleeving) +"jvp" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/component/unary/vent_scrubber{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab/containment_two) +"jvv" = ( +/obj/structure/table/steel, +/obj/fiftyspawner/steel, +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/workshop) +"jvz" = ( +/turf/simulated/open, +/area/holodeck_control) +"jvA" = ( +/obj/structure/window/reinforced, +/turf/simulated/floor/tiled, +/area/holodeck_control) +"jvO" = ( +/obj/structure/cable/green, +/obj/machinery/power/apc/east_mount, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/substation/research) +"jwS" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/toilet{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/recoveryrestroom) +"jwV" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"jxy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/recoveryrestroom) +"jxU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/test_area) +"jye" = ( +/obj/machinery/atmospherics/component/unary/heat_exchanger{ + dir = 4 + }, +/obj/structure/window/phoronreinforced{ + dir = 4 + }, +/obj/structure/window/phoronreinforced{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/test_area) +"jym" = ( +/obj/machinery/clonepod/transhuman, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/white, +/area/medical/resleeving) +"jyA" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/item/storage/firstaid/adv{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/storage/firstaid/adv, +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/tiled, +/area/medical/medbay_emt_bay) +"jzz" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 8 + }, +/obj/machinery/status_display{ + pixel_x = -32 + }, +/obj/machinery/camera/network/civilian{ + dir = 4 + }, +/obj/landmark/spawnpoint/overflow/station, +/turf/simulated/floor/tiled/techfloor, +/area/teleporter/departing) +"jzA" = ( +/obj/structure/window/reinforced, +/turf/simulated/open, +/area/victory/station/stairs_three) +"jzJ" = ( +/obj/machinery/photocopier, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/rdoffice) +"jAz" = ( +/obj/effect/floor_decal/corner/beige/bordercorner{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/beige/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay4) +"jAX" = ( +/obj/machinery/light_switch{ + pixel_x = 25 + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"jBH" = ( +/obj/machinery/power/apc/south_mount, +/obj/machinery/camera/network/research{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/mauve/border, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/green, +/obj/machinery/seed_storage/xenobotany, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"jCw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"jCH" = ( +/obj/machinery/button/remote/airlock{ + desc = "A remote control switch for the CMO's office."; + id = "cmodoor"; + name = "CMO Office Door Control"; + pixel_x = -8; + pixel_y = -36 + }, +/obj/machinery/button/remote/blast_door{ + desc = "A remote control-switch for shutters."; + id = "virologyquar"; + name = "Virology Emergency Lockdown Control"; + pixel_y = -28; + req_access = list(5) + }, +/obj/machinery/button/remote/blast_door{ + desc = "A remote control-switch for shutters."; + id = "medbayquar"; + name = "Medbay Emergency Lockdown Control"; + pixel_y = -36; + req_access = list(5) + }, +/obj/machinery/button/windowtint{ + id = "cmo_office"; + pixel_x = -6; + pixel_y = -28 + }, +/obj/structure/table/glass, +/obj/machinery/computer/med_data/laptop{ + dir = 8 + }, +/obj/machinery/keycard_auth{ + pixel_x = 26; + pixel_y = -26 + }, +/obj/machinery/light_switch{ + pixel_x = 25 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/cmo) +"jDf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/medical/medbay_primary_storage) +"jDs" = ( +/obj/machinery/recharge_station, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/medical/ward) +"jEh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/white, +/area/medical/surgery) +"jEU" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/red{ + dir = 4 + }, +/obj/machinery/fire_alarm/east_mount, +/turf/simulated/floor/tiled, +/area/rnd/test_area) +"jFt" = ( +/obj/structure/table/standard, +/obj/item/storage/box/gloves{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/box/gloves{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/box/masks, +/obj/item/storage/box/masks, +/obj/machinery/light, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/green/border, +/obj/item/radio/intercom{ + pixel_y = -24 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virologyisolation) +"jFD" = ( +/obj/machinery/air_alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/research_restroom) +"jGa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/glass{ + name = "Holodeck" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/holodeck_control) +"jGo" = ( +/obj/structure/flora/pottedplant/tropical, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/rnd/research_foyer) +"jGQ" = ( +/obj/structure/closet/secure_closet/medical3, +/obj/item/storage/belt/medical, +/obj/item/soap/nanotrasen, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 10 + }, +/obj/machinery/air_alarm{ + dir = 8; + pixel_x = 25 + }, +/turf/simulated/floor/tiled, +/area/medical/medbay_primary_storage) +"jGS" = ( +/obj/structure/closet/emcloset, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/rnd/research_foyer_auxiliary) +"jHd" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab) +"jHx" = ( +/obj/machinery/door/firedoor/glass{ + dir = 4 + }, +/obj/machinery/door/airlock/medical{ + name = "Wash Room"; + req_one_access = null + }, +/turf/simulated/floor/tiled/white, +/area/medical/patient_a) +"jHB" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 9 + }, +/obj/item/reagent_containers/glass/beaker, +/turf/simulated/floor/tiled, +/area/rnd/reception_desk) +"jJY" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"jLg" = ( +/obj/machinery/camera/network/medbay{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/medical/morgue) +"jLs" = ( +/obj/machinery/holopad, +/turf/simulated/floor/tiled, +/area/medical/medbay_emt_bay) +"jMj" = ( +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/medbay/aft) +"jMN" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"jNo" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/obj/item/bedsheet/medical, +/obj/machinery/light{ + dir = 8; + light_range = 12 + }, +/obj/machinery/computer/ship/navigation/telescreen{ + pixel_x = -32 + }, +/obj/structure/bed/padded, +/obj/effect/floor_decal/corner/blue{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"jNv" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/test_area) +"jNG" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/obj/machinery/camera/network/medbay, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/patient_wing) +"jOk" = ( +/obj/machinery/door/airlock{ + name = "Research Shower" + }, +/turf/simulated/floor/tiled/white, +/area/rnd/research_restroom) +"jOO" = ( +/obj/structure/sign/directions/medical{ + dir = 4; + pixel_y = 42 + }, +/obj/structure/sign/directions/command{ + dir = 1; + pixel_y = 36 + }, +/obj/structure/sign/directions/science{ + dir = 4; + pixel_y = 30 + }, +/obj/structure/sign/directions/security{ + dir = 1; + pixel_y = 24 + }, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/machinery/door/airlock/glass, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"jPu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/substation/research) +"jPF" = ( +/turf/simulated/floor/tiled/white, +/area/medical/medbay4) +"jPQ" = ( +/obj/structure/morgue{ + dir = 2 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/medical/morgue) +"jPR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"jPU" = ( +/obj/item/bedsheet/medical, +/obj/structure/bed/padded, +/turf/simulated/floor/carpet/tealcarpet, +/area/medical/patient_c) +"jQZ" = ( +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/spawner/window/low_wall/reinforced/full, +/turf/simulated/floor/plating, +/area/crew_quarters/medbreak) +"jRs" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/blue/border, +/turf/simulated/floor/tiled/white, +/area/medical/medbay3) +"jRF" = ( +/obj/effect/floor_decal/industrial/outline/blue, +/obj/structure/bed/chair/wheelchair, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/patient_wing) +"jRH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/vending/cola, +/turf/simulated/floor/wood, +/area/crew_quarters/medbreak) +"jRK" = ( +/turf/simulated/floor/reinforced{ + name = "Holodeck Projector Floor" + }, +/area/holodeck/alphadeck) +"jSC" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled, +/area/medical/medbay_emt_bay) +"jUa" = ( +/obj/machinery/camera/network/civilian{ + dir = 8 + }, +/obj/machinery/vending/snack, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"jUt" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/structure/bed/chair, +/turf/simulated/floor/tiled/white, +/area/medical/reception) +"jVj" = ( +/obj/structure/table/standard, +/obj/item/storage/box/freezer{ + pixel_x = 5; + pixel_y = 2 + }, +/obj/item/storage/box/freezer, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/emt/general) +"jVW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/red, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/medical/virology) +"jWf" = ( +/obj/machinery/camera/network/research{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab) +"jWy" = ( +/obj/machinery/computer/timeclock/premade/south, +/obj/machinery/camera/network/civilian{ + dir = 1 + }, +/obj/structure/bed/chair/comfy/brown{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"jYw" = ( +/obj/machinery/air_alarm/monitor/isolation{ + alarm_id = "isolation_two"; + dir = 8; + pixel_x = 22 + }, +/obj/structure/table/standard, +/turf/simulated/floor/tiled/white, +/area/medical/virologyisolation) +"jYD" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/blue/border, +/turf/simulated/floor/tiled/white, +/area/medical/patient_wing) +"jYT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/glass{ + name = "Holodeck" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"jZb" = ( +/obj/effect/floor_decal/techfloor, +/obj/machinery/newscaster{ + pixel_y = -31 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera/network/civilian{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/aft) +"jZP" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay3) +"jZY" = ( +/turf/simulated/wall/prepainted/medical, +/area/crew_quarters/medbreak) +"kas" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/blue/border, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/patient_wing) +"kaB" = ( +/obj/structure/flora/pottedplant/shoot, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/reception) +"kck" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"kdg" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"kdL" = ( +/obj/machinery/holopad, +/turf/simulated/floor/tiled/white, +/area/medical/reception) +"keI" = ( +/obj/structure/table/glass, +/obj/machinery/photocopier/faxmachine{ + department = "CMO's Office" + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/cmo) +"keM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab) +"kfr" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/medical/sleeper) +"kfs" = ( +/obj/machinery/air_alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"kfN" = ( +/turf/simulated/floor/wood, +/area/medical/psych/psych_2) +"kfV" = ( +/obj/effect/floor_decal/techfloor{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"kgh" = ( +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"khL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/holodeck_control) +"khV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/obj/machinery/shower{ + dir = 1 + }, +/obj/machinery/door/window/eastleft, +/turf/simulated/floor/tiled/techfloor/grid, +/area/medical/virologyaccess) +"kiy" = ( +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/machinery/washing_machine, +/obj/machinery/power/apc/north_mount, +/turf/simulated/floor/tiled/white, +/area/rnd/research_restroom) +"kjr" = ( +/obj/machinery/air_alarm{ + frequency = 1441; + pixel_y = 22 + }, +/obj/effect/floor_decal/corner/blue/diagonal, +/turf/simulated/floor/tiled/white, +/area/medical/exam_room/exam_2) +"kjt" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/computer/security/mining{ + dir = 4; + name = "psychiatric wing camera monitor"; + network = list("Psychiatric"); + req_one_access = list(5) + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay4) +"kkr" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/red, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/medical/virology) +"kkS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"kle" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay3) +"klq" = ( +/obj/machinery/door/firedoor{ + dir = 1 + }, +/obj/machinery/door/blast/regular{ + id = "mechbay"; + name = "Mech Bay" + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/assembly/robotics) +"klY" = ( +/turf/simulated/wall/prepainted/medical, +/area/medical/exam_room/exam_2) +"kmB" = ( +/obj/machinery/artifact_analyser, +/turf/simulated/floor/tiled/dark, +/area/rnd/anomaly_lab/containment_one) +"kmH" = ( +/obj/machinery/light{ + dir = 4; + use_power = 0 + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = 24; + pixel_y = -8 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"knT" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/misc_lab) +"kow" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"koS" = ( +/turf/simulated/wall/r_wall/prepainted/science, +/area/rnd/anomaly_lab) +"kpp" = ( +/obj/structure/loot_pile/maint/trash, +/turf/simulated/floor/plating, +/area/maintenance/medbay/aft) +"kra" = ( +/obj/structure/closet/hydrant, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"krA" = ( +/obj/machinery/smartfridge/secure/extract, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"ktj" = ( +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/machinery/status_display{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora/lab_atmos) +"ktr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/item/radio/intercom{ + dir = 1; + pixel_y = 24; + req_access = list() + }, +/obj/effect/floor_decal/corner/beige{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"ktt" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/computer/guestpass{ + dir = 4; + pixel_x = -28 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"ktI" = ( +/obj/machinery/door/firedoor/glass{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/medical{ + name = "Operating Theatre 2"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/medical/surgery, +/turf/simulated/floor/tiled/white, +/area/medical/surgeryprep) +"kuF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood, +/area/crew_quarters/medbreak) +"kuT" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/rnd/research_foyer) +"kvb" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "xenobio8"; + name = "Containment Blast Doors"; + pixel_x = 24; + pixel_y = -24; + req_access = list(55) + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"kwz" = ( +/turf/simulated/floor/tiled, +/area/rnd/misc_lab) +"kxi" = ( +/turf/simulated/wall/r_wall/prepainted/science, +/area/rnd/anomaly_lab/containment_two) +"kxm" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/obj/machinery/camera/network/civilian, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"kxn" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/rnd/test_area) +"kxG" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/beige/border, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"kxT" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/maintenance/medbay/aft) +"kyR" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/maintenance/substation/medical_science) +"kzb" = ( +/obj/structure/catwalk, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/medbay/fore) +"kzf" = ( +/obj/machinery/camera/network/civilian, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"kzm" = ( +/obj/machinery/light/small/emergency{ + dir = 8 + }, +/obj/structure/ladder/updown, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint2) +"kzM" = ( +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/starboard) +"kBG" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"kBS" = ( +/obj/machinery/air_alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/structure/bed/chair/comfy/brown{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/medical/psych/psych_2) +"kCJ" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloorwhite/corner, +/obj/effect/floor_decal/corner/blue/bordercorner, +/turf/simulated/floor/tiled/white, +/area/medical/patient_wing) +"kCM" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"kDe" = ( +/obj/machinery/status_display{ + pixel_y = 30 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/xenobiology) +"kDf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"kDA" = ( +/obj/structure/morgue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/medical/morgue) +"kDI" = ( +/obj/item/roller, +/obj/structure/table/steel_reinforced, +/obj/item/roller{ + pixel_y = 8 + }, +/obj/item/roller{ + pixel_y = 16 + }, +/turf/simulated/floor/tiled, +/area/medical/medbay_emt_bay) +"kDN" = ( +/obj/machinery/door/firedoor/glass{ + dir = 4 + }, +/obj/machinery/door/blast/regular{ + dir = 4; + id = "mechbay-inner"; + name = "Mech Bay" + }, +/turf/simulated/floor/tiled/techfloor, +/area/assembly/robotics) +"kDZ" = ( +/obj/machinery/atmospherics/component/binary/pump/on, +/turf/simulated/floor/tiled, +/area/rnd/test_area) +"kEK" = ( +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/obj/structure/table/steel, +/obj/fiftyspawner/steel, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/workshop) +"kFN" = ( +/obj/machinery/power/apc/north_mount, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/medical_science) +"kGH" = ( +/obj/machinery/atmospherics/component/unary/freezer, +/turf/simulated/floor/tiled, +/area/rnd/test_area) +"kHp" = ( +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/workshop) +"kHF" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/table/reinforced, +/turf/simulated/floor/tiled/white, +/area/medical/patient_b) +"kHG" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/obj/structure/reagent_dispensers/coolanttank, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/anomaly_lab) +"kHZ" = ( +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/structure/filingcabinet/chestdrawer{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 10 + }, +/obj/machinery/power/apc/west_mount, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/cmo) +"kIf" = ( +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "xenobio5"; + name = "Containment Blast Doors"; + opacity = 0 + }, +/obj/spawner/window/low_wall/reinforced/full, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"kJq" = ( +/obj/machinery/door/firedoor/glass{ + dir = 4 + }, +/obj/machinery/door/airlock/medical{ + name = "Wash Room"; + req_one_access = null + }, +/turf/simulated/floor/tiled/white, +/area/medical/patient_d) +"kJt" = ( +/obj/machinery/atmospherics/valve{ + name = "Waste" + }, +/turf/simulated/floor/tiled, +/area/rnd/test_area) +"kKM" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/sign/greencross{ + pixel_x = -32 + }, +/obj/structure/bed/roller, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"kKY" = ( +/obj/machinery/door/firedoor, +/obj/spawner/window/low_wall/reinforced/full, +/turf/simulated/floor/plating, +/area/rnd/anomaly_lab/containment_one) +"kMe" = ( +/obj/machinery/portable_atmospherics/canister/phoron, +/turf/simulated/floor/tiled, +/area/rnd/storage) +"kMg" = ( +/obj/machinery/computer/security/mining{ + dir = 4; + name = "psychiatric wing camera monitor"; + network = list("Psychiatric") + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/beige/border, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"kMD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/purple{ + dir = 5 + }, +/turf/simulated/wall/prepainted/science, +/area/maintenance/research) +"kMH" = ( +/obj/item/storage/toolbox/mechanical{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/clothing/glasses/welding, +/obj/item/storage/belt/utility, +/obj/structure/table/reinforced, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/mauve/border, +/obj/item/storage/belt/utility, +/obj/item/clothing/glasses/welding, +/turf/simulated/floor/tiled, +/area/rnd/reception_desk) +"kNr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/medical/resleeving) +"kNK" = ( +/obj/machinery/vending/medical, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/ward) +"kOA" = ( +/obj/machinery/door/window/brigdoor/westright{ + name = "Containment Pen"; + req_access = list(55) + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "xenobio3"; + name = "Containment Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"kQP" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/assembly/robotics/surgery) +"kQU" = ( +/turf/simulated/wall/r_wall/prepainted/science, +/area/rnd/xenobiology/xenoflora_storage) +"kRv" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/red{ + dir = 4 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled, +/area/rnd/test_area) +"kTr" = ( +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/maintenance/medbay/aft) +"kTz" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/turf/simulated/floor/carpet/purcarpet, +/area/rnd/breakroom) +"kUn" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/air_alarm{ + dir = 8; + pixel_x = 25 + }, +/obj/machinery/holopad, +/turf/simulated/floor/tiled, +/area/medical/morgue) +"kUA" = ( +/obj/item/roller_holder, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/medical/ward) +"kUS" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood, +/area/medical/psych/psych_1) +"kVo" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/turf/simulated/floor/tiled, +/area/medical/sleeper) +"kVv" = ( +/obj/machinery/door/window/brigdoor/northright{ + name = "Containment Pen"; + req_access = list(55) + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"kVZ" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/blue/border, +/turf/simulated/floor/tiled/white, +/area/medical/patient_wing) +"kWR" = ( +/obj/machinery/light, +/obj/machinery/door/firedoor/glass{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"kXa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/aft) +"kXu" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/requests_console/preset/rd{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled, +/area/rnd/rdoffice) +"kXE" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor, +/obj/effect/floor_decal/techfloor/hole, +/turf/simulated/floor/tiled, +/area/hallway/primary/starboard) +"kYx" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/medical/psych_ward) +"kZg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/techfloor, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/starboard) +"kZh" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/rnd/breakroom) +"kZF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/light_switch{ + pixel_x = 25 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/resleeving) +"kZU" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/bed/chair/comfy/brown{ + dir = 1 + }, +/turf/simulated/floor/carpet/sblucarpet, +/area/medical/psych/psych_1) +"lad" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/medical/virology) +"lar" = ( +/obj/structure/catwalk, +/obj/machinery/door/airlock/maintenance/medical{ + name = "Virology Maintenance Access"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/medical/virology, +/turf/simulated/floor/plating, +/area/maintenance/medbay/fore) +"las" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"laO" = ( +/obj/item/radio/intercom{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"lbw" = ( +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/spawner/window/low_wall/reinforced/full, +/turf/simulated/floor/plating, +/area/maintenance/research) +"lbH" = ( +/obj/machinery/door/firedoor, +/obj/spawner/window/low_wall/reinforced/full, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/rnd/rdoffice) +"lcu" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 9 + }, +/obj/structure/reagent_dispensers/water_cooler/full, +/turf/simulated/floor/tiled/white, +/area/medical/reception) +"lcw" = ( +/obj/machinery/fire_alarm/north_mount, +/obj/machinery/camera/network/civilian, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"lcH" = ( +/obj/machinery/button/remote/blast_door{ + dir = 1; + id = "xenobiovs6"; + name = "Divider Blast Doors"; + pixel_y = -38; + req_one_access = list(29,47) + }, +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "xenobio9"; + name = "Containment Blast Doors"; + pixel_x = -8; + pixel_y = -24; + req_access = list(55) + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"ldd" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/dust, +/turf/simulated/floor/tiled, +/area/rnd/storage) +"lev" = ( +/obj/structure/bed/chair/office/dark, +/obj/landmark/spawnpoint/job/psychiatrist, +/turf/simulated/floor/carpet/sblucarpet, +/area/medical/psych/psych_1) +"leM" = ( +/obj/machinery/fire_alarm/east_mount, +/turf/simulated/floor/tiled/white, +/area/medical/recoveryrestroom) +"lfj" = ( +/obj/effect/floor_decal/corner/blue/bordercorner, +/obj/effect/floor_decal/borderfloorwhite/corner, +/obj/effect/floor_decal/corner/blue/bordercorner, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/medical/reception) +"lfu" = ( +/turf/simulated/floor/tiled, +/area/medical/medbay_primary_storage) +"lfY" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Unit 1" + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/medical_restroom) +"lgg" = ( +/obj/structure/ladder/up, +/turf/simulated/floor/plating, +/area/maintenance/research) +"lgN" = ( +/obj/machinery/newscaster{ + pixel_y = -31 + }, +/obj/structure/table/reinforced, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"liz" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/maintenance/medical{ + name = "Washing Machine & Maintenance"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/medical/department, +/turf/simulated/floor/tiled/white, +/area/medical/ward) +"liB" = ( +/obj/machinery/atmospherics/pipe/tank/air, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor, +/area/shuttle/emt/general) +"liR" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/computer/atmoscontrol/laptop{ + monitored_alarm_ids = list("isolation_one","isolation_two"); + pixel_y = 30; + req_one_access = list(47,24,11) + }, +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab) +"lja" = ( +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/structure/catwalk, +/obj/machinery/power/apc/north_mount, +/turf/simulated/floor/plating, +/area/maintenance/medbay/aft) +"ljL" = ( +/obj/structure/closet/crate, +/obj/random/maintenance/research, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/medbay/aft) +"ljT" = ( +/obj/machinery/air_alarm{ + frequency = 1441; + pixel_y = 22 + }, +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"llq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/camera/network/medbay{ + network = list("Psychiatric") + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"llr" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"lma" = ( +/obj/structure/toilet{ + dir = 1 + }, +/obj/machinery/light/small, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/medical_restroom) +"lmG" = ( +/obj/machinery/porta_turret/crescent{ + density = 1; + faction = "neutral" + }, +/turf/simulated/floor/airless/ceiling, +/area/bridge) +"lnk" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/catwalk, +/obj/machinery/door/airlock/maintenance/rnd{ + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/science/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/substation/research) +"lnu" = ( +/obj/structure/sign/department/operational{ + name = "SURGERY - AUTHORIZED PERSONNEL ONLY" + }, +/turf/simulated/wall/prepainted/medical, +/area/medical/sleeper) +"lnH" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/medical/medbay4) +"log" = ( +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/suit/straight_jacket, +/obj/structure/closet/secure_closet/personal{ + name = "hazardous patient closet"; + req_access = list(45) + }, +/turf/simulated/floor/tiled, +/area/medical/psych_ward) +"loA" = ( +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/machinery/power/apc/north_mount, +/obj/structure/bed/chair/office/dark, +/obj/machinery/computer/med_data/laptop{ + dir = 1; + pixel_x = null; + pixel_y = -32 + }, +/obj/effect/floor_decal/corner/blue/diagonal, +/turf/simulated/floor/tiled/white, +/area/medical/exam_room/exam_2) +"loK" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/purple{ + dir = 4 + }, +/turf/simulated/wall/r_wall/prepainted/science, +/area/rnd/xenobiology) +"loL" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/blue/border, +/obj/item/radio/intercom{ + pixel_y = -24 + }, +/turf/simulated/floor/tiled/white, +/area/medical/ward) +"loQ" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/carpet/tealcarpet, +/area/medical/patient_b) +"lpx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/obj/machinery/button/remote/blast_door{ + id = "xenobiovs3"; + name = "Divider Blast Doors"; + req_access = list(55); + pixel_y = 38 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/xenobiology) +"lqx" = ( +/obj/structure/closet/secure_closet/medical_wall{ + name = "O- Blood Locker"; + pixel_x = 32 + }, +/obj/item/reagent_containers/blood/OMinus, +/obj/item/reagent_containers/blood/OMinus, +/obj/item/reagent_containers/blood/OMinus, +/obj/item/reagent_containers/blood/OMinus, +/obj/effect/floor_decal/corner/blue/full{ + dir = 4 + }, +/obj/machinery/fire_alarm/south_mount{ + pixel_y = -24 + }, +/obj/machinery/camera/network/medbay{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/surgeryprep) +"lqJ" = ( +/obj/machinery/camera/network/civilian{ + dir = 1 + }, +/obj/machinery/door/firedoor/glass{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"lrJ" = ( +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/spawner/window/low_wall/reinforced/full, +/obj/spawner/window/low_wall/reinforced/full, +/turf/simulated/floor/plating, +/area/medical/psych_ward) +"lsM" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/fire_alarm/east_mount, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay4) +"lsR" = ( +/obj/machinery/fire_alarm/south_mount{ + pixel_y = -24 + }, +/obj/effect/floor_decal/corner/blue/diagonal, +/turf/simulated/floor/tiled/white, +/area/medical/exam_room/exam_2) +"lta" = ( +/obj/structure/closet/crate/medical, +/obj/item/storage/firstaid/regular{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/storage/firstaid/regular{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/bodybag/cryobag{ + pixel_x = 5 + }, +/obj/item/bodybag/cryobag{ + pixel_x = 5 + }, +/obj/item/storage/firstaid/o2{ + layer = 2.8; + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/storage/box/masks, +/obj/item/storage/box/gloves{ + pixel_x = 3; + pixel_y = 4 + }, +/obj/item/storage/firstaid/toxin, +/obj/item/storage/firstaid/fire{ + layer = 2.9; + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/storage/firstaid/adv{ + pixel_x = -2 + }, +/obj/item/reagent_containers/blood/empty, +/obj/item/reagent_containers/blood/empty, +/obj/item/reagent_containers/blood/empty, +/obj/item/reagent_containers/blood/empty, +/obj/item/reagent_containers/blood/empty, +/obj/item/defib_kit/loaded, +/obj/effect/floor_decal/corner/blue/borderfull, +/turf/simulated/floor/tiled/white, +/area/shuttle/emt/general) +"ltB" = ( +/obj/machinery/light, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/beige/border, +/turf/simulated/floor/tiled/white, +/area/medical/medbay4) +"lui" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/rnd/research_foyer_auxiliary) +"luA" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/starboard) +"luC" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay3) +"luQ" = ( +/obj/structure/table/steel_reinforced, +/obj/item/storage/firstaid/surgery, +/obj/item/surgical/bioregen, +/turf/simulated/floor/tiled, +/area/medical/surgery2) +"lwb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/carpet/sblucarpet, +/area/medical/psych/psych_1) +"lwk" = ( +/turf/simulated/wall/r_wall/prepainted/medical, +/area/medical/patient_wing) +"lwt" = ( +/obj/machinery/computer/cryopod/gateway{ + pixel_x = 32 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/teleporter/departing) +"lwJ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/component/unary/vent_scrubber{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab/containment_one) +"lyv" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/medical/psych_ward) +"lza" = ( +/obj/machinery/atmospherics/pipe/simple/visible/universal{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/xenobiology/xenoflora_storage) +"lzH" = ( +/obj/machinery/power/apc/south_mount, +/obj/structure/cable/green, +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab) +"lzL" = ( +/obj/effect/floor_decal/corner/blue/diagonal, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/exam_room/exam_1) +"lzQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/holopad, +/turf/simulated/floor/tiled/white, +/area/medical/virologyisolation) +"lAl" = ( +/obj/machinery/holopad, +/turf/simulated/floor/tiled, +/area/medical/medbay_primary_storage) +"lAJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/red, +/turf/simulated/floor/tiled/dark, +/area/assembly/robotics) +"lBn" = ( +/obj/effect/floor_decal/industrial/warning/dust, +/obj/machinery/light_switch{ + pixel_x = 25 + }, +/turf/simulated/floor/tiled/dark, +/area/assembly/robotics/surgery) +"lCd" = ( +/obj/machinery/door/blast/regular{ + id = "xenobiovs2"; + layer = 8; + name = "Divider Blast Door" + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"lCA" = ( +/obj/machinery/camera/network/research{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/rnd/research_foyer) +"lCB" = ( +/obj/machinery/computer/guestpass{ + dir = 4; + pixel_x = -28 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/research_foyer) +"lDf" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"lDm" = ( +/obj/machinery/r_n_d/server/core, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/bluegrid{ + initial_gas_mix = "n2=500;TEMP=80"; + name = "Server Base" + }, +/area/rnd/research) +"lFV" = ( +/obj/machinery/camera/network/civilian, +/obj/item/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 21 + }, +/obj/machinery/atmospherics/component/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"lGk" = ( +/obj/structure/bookcase/manuals/research_and_development, +/turf/simulated/floor/wood, +/area/rnd/breakroom) +"lGn" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"lGI" = ( +/obj/machinery/door/firedoor, +/obj/spawner/window/low_wall/reinforced/full, +/turf/simulated/floor/plating, +/area/rnd/reception_desk) +"lHu" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/reception) +"lHz" = ( +/turf/simulated/wall/prepainted/medical, +/area/maintenance/medbay/fore) +"lHG" = ( +/obj/item/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 26 + }, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"lHT" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"lIp" = ( +/obj/structure/lattice, +/turf/space, +/area/space) +"lIJ" = ( +/obj/machinery/air_alarm{ + dir = 8; + pixel_x = 25 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/cmo) +"lIL" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging, +/obj/machinery/sparker{ + id = "burn_chamber"; + pixel_x = -26 + }, +/turf/simulated/floor/reinforced/airless, +/area/rnd/test_area) +"lJc" = ( +/obj/structure/sign/department/medbay, +/turf/simulated/wall/prepainted/medical, +/area/medical/medbay4) +"lKf" = ( +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/patient_wing) +"lKg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/holopad, +/turf/simulated/floor/tiled, +/area/rnd/reception_desk) +"lKq" = ( +/obj/machinery/camera/network/medbay{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/medical/reception) +"lKI" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"lKZ" = ( +/obj/machinery/atmospherics/component/binary/pump{ + name = "main fuel pump" + }, +/obj/structure/fuel_port{ + dir = 4; + pixel_x = 29 + }, +/turf/simulated/floor, +/area/shuttle/emt/general) +"lLL" = ( +/obj/structure/bed/chair/office/light, +/obj/landmark/spawnpoint/job/chief_medical_officer, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/cmo) +"lLS" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/research) +"lLU" = ( +/obj/machinery/camera/network/medbay, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/machinery/power/apc/north_mount, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay3) +"lLW" = ( +/obj/machinery/requests_console/preset/cmo{ + pixel_x = 31 + }, +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/cmo) +"lNs" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/reception) +"lOB" = ( +/obj/machinery/ai_status_display{ + pixel_x = -32 + }, +/obj/machinery/door/firedoor{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/holodeck_control) +"lPc" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/medical{ + name = "Morgue"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/medical/morgue, +/turf/simulated/floor/tiled/techfloor, +/area/medical/morgue) +"lPw" = ( +/obj/machinery/bodyscanner{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/hatch, +/turf/simulated/floor/tiled/white, +/area/medical/surgeryprep) +"lPA" = ( +/obj/machinery/r_n_d/circuit_imprinter, +/obj/item/reagent_containers/glass/beaker/sulphuric, +/obj/structure/reagent_dispensers/acid{ + pixel_y = 30 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/assembly/robotics) +"lPK" = ( +/obj/machinery/door/firedoor/glass{ + dir = 4 + }, +/obj/machinery/door/airlock/medical{ + name = "Wash Room"; + req_one_access = null + }, +/turf/simulated/floor/tiled/white, +/area/medical/patient_b) +"lRg" = ( +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/surgeryprep) +"lRu" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"lRN" = ( +/obj/structure/disposalpipe/trunk, +/obj/structure/disposaloutlet{ + dir = 8 + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"lRT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/medical/virology) +"lSc" = ( +/obj/structure/flora/pottedplant/orientaltree, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/medical/medbay4) +"lSq" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 5 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"lSK" = ( +/obj/machinery/button/remote/airlock{ + id = "RDdoor"; + name = "RD Office Door Control"; + pixel_x = -30; + pixel_y = -18 + }, +/obj/machinery/button/windowtint{ + id = "rd_office"; + pixel_x = -24; + pixel_y = -16 + }, +/obj/structure/bed/chair/office/light, +/obj/landmark/spawnpoint/job/research_director, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/rnd/rdoffice) +"lTq" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled, +/area/holodeck_control) +"lTx" = ( +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/turf/space, +/area/rnd/xenobiology) +"lTF" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/white, +/area/medical/patient_wing) +"lVD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/processor, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"lYc" = ( +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/surgeryprep) +"lYl" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay3) +"lYt" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor, +/area/medical/morgue) +"lYE" = ( +/obj/machinery/vending/medical, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/medical/medbay_primary_storage) +"lYK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/medical/sleeper) +"lYO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/shuttle/wall/voidcraft/blue, +/area/shuttle/emt/general) +"lYU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay3) +"lZl" = ( +/obj/item/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 26 + }, +/obj/structure/filingcabinet/medical{ + desc = "A large cabinet with hard copy medical records."; + name = "Medical Records" + }, +/obj/effect/floor_decal/corner/blue/full{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/medical/reception) +"lZR" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/machinery/door/airlock/glass, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"mai" = ( +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/spawner/window/low_wall/reinforced/full, +/turf/simulated/floor/plating, +/area/holodeck_control) +"mbb" = ( +/obj/machinery/door/blast/regular{ + id = "xenobiovs"; + layer = 8; + name = "Divider Blast Door" + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"mbc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"mbs" = ( +/obj/effect/floor_decal/techfloor{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"mdU" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor, +/turf/simulated/floor/tiled, +/area/hallway/primary/starboard) +"meh" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/spawner/window/low_wall/borosillicate/reinforced/full, +/turf/simulated/floor/reinforced/airless, +/area/rnd/test_area) +"meR" = ( +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"mge" = ( +/obj/structure/bed/roller, +/obj/machinery/vending/wallmed1{ + name = "Emergency NanoMed"; + pixel_x = 28 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/outline/red, +/turf/simulated/floor/tiled/white, +/area/shuttle/emt/general) +"mgX" = ( +/obj/machinery/air_alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 + }, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/reception_desk) +"mia" = ( +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/power/smes/buildable{ + RCon_tag = "Substation - Medical" + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/medical) +"miA" = ( +/obj/item/radio/intercom{ + pixel_y = -24 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"mjW" = ( +/obj/effect/floor_decal/techfloor{ + dir = 10 + }, +/obj/machinery/light, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"mkj" = ( +/obj/machinery/portable_atmospherics/canister/phoron, +/obj/machinery/camera/network/research{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/storage) +"mkk" = ( +/obj/machinery/door/airlock{ + name = "Restroom" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/white, +/area/medical/recoveryrestroom) +"mkA" = ( +/obj/machinery/door/firedoor, +/obj/spawner/window/low_wall/reinforced/full, +/obj/structure/curtain/open/shower/medical{ + name = "Privacy curtain" + }, +/turf/simulated/floor/plating, +/area/medical/patient_d) +"mlj" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/structure/table/steel, +/obj/item/integrated_circuit_printer, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/workshop) +"mmt" = ( +/turf/simulated/floor/tiled/techfloor, +/area/rnd/workshop) +"mmI" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"mmM" = ( +/obj/item/radio/intercom{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"mna" = ( +/turf/simulated/shuttle/wall/voidcraft/blue, +/area/hallway/primary/aft) +"mob" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay4) +"mow" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "xenobio7"; + name = "Containment Blast Doors"; + opacity = 0 + }, +/obj/spawner/window/low_wall/reinforced/full, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"moH" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/xenobiology) +"mqc" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/medical/sleeper) +"mqr" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/research{ + name = "Research Entrance" + }, +/obj/map_helper/access_helper/airlock/station/science/department, +/turf/simulated/floor/tiled, +/area/rnd/research_foyer) +"mqD" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/item/reagent_containers/glass/bucket, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"mrk" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/turf/simulated/floor/tiled, +/area/rnd/storage) +"mrL" = ( +/obj/structure/closet/secure_closet/medical_wall/pills{ + pixel_x = -32 + }, +/obj/effect/floor_decal/corner/blue/diagonal, +/turf/simulated/floor/tiled/white, +/area/medical/exam_room/exam_2) +"mth" = ( +/turf/simulated/wall/r_wall/prepainted/science, +/area/rnd/research_foyer_auxiliary) +"mts" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/black, +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -23 + }, +/turf/simulated/floor/tiled, +/area/medical/virologyaccess) +"mtC" = ( +/obj/machinery/button/remote/blast_door{ + id = "xenobio2"; + name = "Containment Blast Doors"; + pixel_x = -25; + pixel_y = -8; + req_access = list(55) + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 8 + }, +/obj/machinery/button/remote/blast_door{ + id = "xenobio1"; + name = "Containment Blast Doors"; + pixel_x = -25; + pixel_y = 8; + req_access = list(55) + }, +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "xenobiovs"; + name = "Containment Blast Doors"; + pixel_x = -38; + req_access = list(55) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/xenobiology) +"mtG" = ( +/obj/machinery/light, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/blue/border, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/bed/padded, +/obj/item/bedsheet/medical, +/obj/effect/floor_decal/corner/paleblue{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/surgeryprep) +"mtS" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/white, +/area/medical/ward) +"muB" = ( +/obj/structure/lattice, +/obj/machinery/camera/network/outside, +/turf/space, +/area/space) +"muS" = ( +/obj/machinery/portable_atmospherics/canister/empty, +/obj/effect/floor_decal/industrial/warning/full, +/turf/simulated/floor/tiled, +/area/rnd/test_area) +"mwl" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint2) +"mwF" = ( +/obj/machinery/door/firedoor, +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -23 + }, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"mxu" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/obj/machinery/requests_console{ + department = "Science"; + departmentType = 2; + name = "Science Requests Console"; + pixel_y = 29 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"mxO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/research/testingrange) +"mxS" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/mauve/border, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"mza" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"mzd" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"mzm" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/dark, +/area/assembly/robotics/surgery) +"mzy" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/item/bedsheet/medical, +/obj/machinery/light{ + dir = 8; + light_range = 12 + }, +/obj/machinery/computer/ship/navigation/telescreen{ + pixel_x = -32 + }, +/obj/structure/bed/padded, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"mzX" = ( +/obj/machinery/ai_status_display{ + pixel_y = -32 + }, +/turf/simulated/floor/reinforced{ + name = "Holodeck Projector Floor" + }, +/area/holodeck/alphadeck) +"mzY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "psyche-doc-access"; + name = "Access Switch"; + pixel_x = -26; + pixel_y = 24; + req_one_access = list(5) + }, +/obj/effect/floor_decal/corner/beige{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"mAp" = ( +/obj/structure/closet/l3closet/scientist/double, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/rnd/research_foyer) +"mAv" = ( +/obj/machinery/shield_diffuser, +/turf/simulated/floor/airless/ceiling, +/area/space) +"mBc" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black, +/turf/simulated/floor/tiled/white, +/area/medical/virologyisolation) +"mDp" = ( +/turf/space, +/area/space) +"mDv" = ( +/obj/machinery/fire_alarm/north_mount, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/starboard) +"mEc" = ( +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/obj/structure/reagent_dispensers/water_cooler/full, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/workshop) +"mEE" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/rnd/misc_lab) +"mFn" = ( +/obj/machinery/button/remote/airlock{ + desc = "A remote control switch for the medbay recovery room door."; + id = "MedicalResleeving"; + name = "Exit Button"; + pixel_x = 8; + pixel_y = 26 + }, +/obj/machinery/button/windowtint{ + dir = 8; + id = "resleeving-tint"; + pixel_x = 2; + pixel_y = 24 + }, +/obj/machinery/camera/network/medbay, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/resleeving) +"mFr" = ( +/obj/machinery/chemical_dispenser/catering/bar_soft, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner2{ + dir = 10 + }, +/obj/structure/table/carbon/reinforced, +/turf/simulated/floor/tiled/dark, +/area/assembly/robotics) +"mFx" = ( +/turf/simulated/floor/wood, +/area/rnd/xenobiology) +"mFC" = ( +/obj/random/slimecore, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"mFI" = ( +/turf/simulated/floor/tiled/white, +/area/shuttle/emt/general) +"mFL" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/item/beach_ball, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/grass, +/area/medical/psych_ward) +"mGe" = ( +/obj/machinery/air_alarm{ + dir = 8; + pixel_x = 25 + }, +/obj/structure/table/bench/padded, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"mGW" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/catwalk, +/obj/machinery/fire_alarm/east_mount, +/turf/simulated/floor/plating, +/area/maintenance/medbay/aft) +"mHV" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/power/terminal{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/medical_science) +"mIa" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/blue/border, +/turf/simulated/floor/tiled/white, +/area/medical/patient_wing) +"mIe" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"mIF" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"mKe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/shuttle/wall/voidcraft/blue, +/area/shuttle/emt/general) +"mKr" = ( +/obj/random/trash_pile, +/turf/simulated/floor/plating, +/area/maintenance/medbay/fore) +"mLf" = ( +/obj/machinery/power/apc/west_mount, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/medbreak) +"mMo" = ( +/obj/effect/floor_decal/industrial/outline/red, +/obj/structure/closet/l3closet/scientist/double, +/obj/machinery/camera/network/research{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"mMN" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"mMS" = ( +/obj/machinery/door/firedoor/glass, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/medical/sleeper) +"mNh" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/maintenance/fpmaint2) +"mNR" = ( +/turf/simulated/wall/r_wall/prepainted/science, +/area/rnd/research) +"mOp" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/red{ + dir = 4 + }, +/obj/machinery/air_alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/camera/network/research{ + dir = 8; + network = list("Research","Toxins Test Area") + }, +/turf/simulated/floor/tiled, +/area/rnd/test_area) +"mOz" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/table/bench/padded, +/turf/simulated/floor/tiled, +/area/holodeck_control) +"mOF" = ( +/turf/simulated/shuttle/wall/voidcraft/hard_corner, +/area/shuttle/emt/general) +"mOM" = ( +/obj/structure/table/glass, +/turf/simulated/floor/carpet/purcarpet, +/area/rnd/breakroom) +"mPa" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/aft) +"mQm" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab) +"mQp" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virologyisolation) +"mQJ" = ( +/obj/machinery/atmospherics/valve/digital{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab) +"mRh" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/black{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/test_area) +"mRj" = ( +/obj/machinery/computer/general_air_control/large_tank_control{ + frequency = 1445; + input_tag = "burn_in"; + name = "Burn Chamber Air Control"; + output_tag = "burn_out"; + pressure_setting = 0; + sensors = list("burn_sensor"="Burn Chamber") + }, +/obj/machinery/button/ignition{ + id = "burn_chamber"; + pixel_y = 36 + }, +/obj/machinery/button/remote/blast_door{ + id = "burn_chamber_v"; + name = "Burn Chamber Vent"; + pixel_x = 4; + pixel_y = 28; + req_access = list(55) + }, +/turf/simulated/floor/tiled, +/area/rnd/test_area) +"mRk" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"mRv" = ( +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/machinery/power/apc/north_mount, +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/turf/simulated/floor/tiled, +/area/teleporter/departing) +"mSd" = ( +/obj/machinery/fire_alarm/north_mount, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"mSK" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/obj/item/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 21 + }, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"mSV" = ( +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/spawner/window/low_wall/reinforced/full, +/turf/simulated/floor/plating, +/area/shuttle/emt/general) +"mTN" = ( +/obj/structure/table/steel, +/obj/item/integrated_circuit_printer, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/workshop) +"mTQ" = ( +/obj/machinery/door/firedoor/glass{ + dir = 4 + }, +/obj/machinery/door/airlock/research{ + id_tag = "researchdoor"; + name = "Robotics Lab" + }, +/obj/map_helper/access_helper/airlock/station/science/robotics, +/turf/simulated/floor/tiled, +/area/assembly/robotics) +"mUK" = ( +/obj/machinery/photocopier, +/obj/effect/floor_decal/corner/blue/full{ + dir = 8 + }, +/obj/machinery/newscaster{ + pixel_x = -28 + }, +/turf/simulated/floor/tiled, +/area/medical/reception) +"mVc" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay3) +"mVR" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"mVT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central4{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"mWg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/aft) +"mWk" = ( +/obj/machinery/holopad, +/turf/simulated/floor/tiled/dark, +/area/assembly/robotics) +"mWG" = ( +/turf/simulated/floor/plating, +/area/maintenance/medbay/aft) +"mWV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/holopad, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora/lab_atmos) +"mXg" = ( +/obj/machinery/atmospherics/pipe/manifold/visible, +/obj/machinery/meter, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora/lab_atmos) +"mXs" = ( +/obj/machinery/fire_alarm/east_mount, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay4) +"mXR" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/fire_alarm/south_mount{ + pixel_y = -24 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/blue/border, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay3) +"mYG" = ( +/turf/simulated/wall/prepainted/science, +/area/rnd/xenobiology/xenoflora/lab_atmos) +"mYS" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/medical/chemistry) +"mYX" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/medical/surgeryprep) +"mZj" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/obj/machinery/meter, +/turf/simulated/floor, +/area/shuttle/emt/general) +"mZv" = ( +/obj/machinery/meter{ + frequency = 1443; + id = "dist_aux_meter"; + name = "Distribution Loop" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint2) +"nbe" = ( +/obj/machinery/air_alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/computer/message_monitor{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/effect/floor_decal/techfloor{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/research) +"nbH" = ( +/obj/effect/floor_decal/industrial/warning/cee{ + dir = 1 + }, +/obj/machinery/computer/general_air_control, +/turf/simulated/floor/tiled, +/area/rnd/storage) +"nbO" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/medical{ + id_tag = "er1"; + name = "Exam Room 1"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/medical/department, +/turf/simulated/floor/tiled/white, +/area/medical/exam_room/exam_1) +"nbQ" = ( +/obj/machinery/artifact_scanpad, +/turf/simulated/floor/tiled/dark, +/area/rnd/anomaly_lab/containment_two) +"nbZ" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/mauve/border, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora/lab_atmos) +"ndm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"nel" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/medbay/aft) +"neD" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/item/radio/beacon, +/obj/machinery/holopad, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"neI" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/obj/structure/sink{ + pixel_y = 19 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"neQ" = ( +/obj/structure/closet/secure_closet/medical3, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"nfD" = ( +/obj/item/storage/excavation, +/obj/item/pickaxe, +/obj/item/tool/wrench, +/obj/item/measuring_tape, +/obj/item/stack/flag/yellow, +/obj/structure/table/steel, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab) +"nfS" = ( +/obj/machinery/computer/transhuman/resleeving{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/resleeving) +"ngD" = ( +/obj/structure/bed/chair/comfy/beige, +/turf/simulated/floor/wood, +/area/victory/station/stairs_three) +"nhg" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/table/glass, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"nho" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightorange/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/medical/medbay3) +"nhq" = ( +/obj/structure/table/steel_reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"nhX" = ( +/obj/structure/closet/walllocker/emerglocker{ + pixel_y = 32 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/white, +/area/shuttle/emt/general) +"nic" = ( +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/spawner/window/low_wall/reinforced/full, +/turf/simulated/floor/plating, +/area/medical/medbay_emt_bay) +"nih" = ( +/obj/machinery/atmospherics/component/binary/pump/high_power/on{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/medbay/fore) +"njb" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"njl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/obj/machinery/shower{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/medical/virologyaccess) +"njG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay3) +"nkb" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/recoveryrestroom) +"nlx" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/patient_b) +"nnb" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/maintenance/medical{ + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/medical/psychiatry, +/turf/simulated/floor/plating, +/area/maintenance/medbay/fore) +"nnE" = ( +/obj/structure/table/glass, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/medical/reception) +"nnJ" = ( +/turf/simulated/floor/tiled, +/area/holodeck_control) +"nnL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"nok" = ( +/obj/machinery/mech_recharger, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/medical/medbay_emt_bay) +"noT" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightorange/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay3) +"npO" = ( +/obj/machinery/camera/network/civilian, +/obj/item/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 26 + }, +/turf/simulated/floor/tiled, +/area/holodeck_control) +"nqb" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/bed/chair/comfy/beige{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/rnd/xenobiology) +"nqv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/blue{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/medical/surgeryprep) +"nqR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/starboard) +"nrC" = ( +/obj/effect/floor_decal/techfloor{ + dir = 5 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"nrD" = ( +/obj/machinery/camera/network/civilian, +/obj/machinery/fire_alarm/north_mount, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"nsd" = ( +/obj/structure/closet/secure_closet/personal/patient, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"ntf" = ( +/obj/structure/sign/department/xenolab, +/turf/simulated/wall/prepainted/science, +/area/rnd/xenobiology) +"nuK" = ( +/obj/machinery/portable_atmospherics/powered/scrubber, +/turf/simulated/floor/tiled, +/area/rnd/test_area) +"nuY" = ( +/obj/structure/table/steel_reinforced, +/obj/item/reagent_containers/glass/bottle/biomass{ + pixel_x = -3; + pixel_y = -2 + }, +/obj/item/reagent_containers/glass/bottle/biomass{ + pixel_x = 3; + pixel_y = 5 + }, +/obj/item/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = 7; + pixel_y = 1 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/resleeving) +"nvB" = ( +/obj/machinery/botany/extractor, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"nvH" = ( +/obj/structure/sign/directions/evac{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"nwm" = ( +/obj/machinery/washing_machine, +/turf/simulated/floor/tiled/techfloor, +/area/medical/ward) +"nwz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/medical/surgery) +"nxO" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 6 + }, +/obj/structure/stairs/spawner/east, +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/patient_wing) +"nys" = ( +/obj/machinery/atmospherics/component/binary/pump{ + dir = 1; + name = "secondary fuel pump" + }, +/turf/simulated/floor, +/area/shuttle/emt/general) +"nyw" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/bordercorner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/medical/surgeryprep) +"nyz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/red, +/turf/simulated/floor/plating, +/area/maintenance/medbay/fore) +"nzx" = ( +/turf/simulated/open, +/area/victory/station/stairs_three) +"nzW" = ( +/obj/structure/closet/firecloset/full, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/requests_console/preset/research{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"nAr" = ( +/obj/structure/flora/pottedplant/tropical, +/turf/simulated/floor/wood, +/area/medical/psych/psych_1) +"nAQ" = ( +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/techfloor{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"nAR" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/resleeving) +"nBn" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/table/reinforced, +/obj/item/deskbell, +/obj/machinery/door/window/brigdoor/westright{ + dir = 1; + name = "Research Desk"; + req_access = list(29,47); + req_one_access = list(47) + }, +/turf/simulated/floor/tiled/monofloor, +/area/assembly/robotics) +"nBs" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/spawner/window/low_wall/reinforced/full, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/rnd/test_area) +"nCp" = ( +/obj/machinery/door/window/brigdoor/southright{ + req_access = list(55); + req_one_access = list(47) + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora/lab_atmos) +"nCE" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"nCS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/rnd/rdoffice) +"nDm" = ( +/obj/structure/table/steel_reinforced, +/obj/item/reagent_containers/spray/cleaner, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"nDp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/medical/patient_wing) +"nGf" = ( +/obj/item/bedsheet/medical, +/obj/structure/bed/padded, +/turf/simulated/floor/carpet/tealcarpet, +/area/medical/patient_b) +"nGk" = ( +/obj/structure/shuttle/engine/heater{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden, +/turf/simulated/shuttle/wall/voidcraft/hard_corner, +/area/shuttle/emt/general) +"nHz" = ( +/obj/structure/filingcabinet/chestdrawer{ + name = "Medical Forms" + }, +/turf/simulated/floor/wood, +/area/medical/psych/psych_1) +"nJM" = ( +/obj/structure/sign/directions/medical{ + dir = 8; + pixel_y = 42 + }, +/obj/structure/sign/directions/command{ + dir = 4; + pixel_y = 36 + }, +/obj/structure/sign/directions/science{ + dir = 8; + pixel_y = 30 + }, +/obj/structure/sign/directions/security{ + dir = 4; + pixel_y = 24 + }, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"nJV" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"nKo" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 6 + }, +/obj/machinery/meter, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner2{ + dir = 8 + }, +/obj/machinery/camera/network/research{ + dir = 4; + network = list("Xenobiology") + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora/lab_atmos) +"nKH" = ( +/obj/machinery/bodyscanner{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"nKL" = ( +/obj/item/storage/box/syringes, +/obj/item/reagent_containers/dropper, +/obj/structure/table/glass, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 5 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/obj/machinery/power/apc/west_mount, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/turf/simulated/floor/tiled, +/area/medical/virology) +"nLn" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay3) +"nMd" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/medical_restroom) +"nMh" = ( +/obj/machinery/requests_console{ + department = "Robotics"; + departmentType = 2; + name = "Robotics RC"; + pixel_y = 30 + }, +/obj/structure/closet/secure_closet/robotics, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/assembly/robotics) +"nMp" = ( +/obj/structure/sign/biohazard{ + pixel_y = 32 + }, +/obj/machinery/camera/network/medbay, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/ward) +"nMq" = ( +/obj/item/radio/intercom{ + pixel_y = -24 + }, +/obj/effect/floor_decal/techfloor, +/obj/structure/bed/chair/sofa/black/right{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/workshop) +"nMP" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/obj/machinery/station_map{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"nNk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"nNn" = ( +/obj/machinery/door/firedoor/glass, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virologyaccess) +"nNS" = ( +/obj/machinery/door/firedoor{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"nNX" = ( +/obj/machinery/door/airlock{ + name = "Unit 2" + }, +/turf/simulated/floor/tiled/white, +/area/rnd/research_restroom) +"nOm" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/mauve/border, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora/lab_atmos) +"nOG" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/obj/item/radio/intercom{ + pixel_y = -24 + }, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"nOJ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/reception_desk) +"nOX" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window/northleft, +/obj/structure/closet/l3closet/virology, +/obj/machinery/door/window/southleft, +/turf/simulated/floor/tiled, +/area/medical/virologyaccess) +"nOY" = ( +/obj/structure/closet/firecloset/full, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"nPa" = ( +/turf/simulated/floor/holofloor/tiled/dark, +/area/hallway/primary/aft) +"nPr" = ( +/obj/structure/cable/green{ + dir = 1; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/holodeck_control) +"nPK" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay3) +"nQd" = ( +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/medical_restroom) +"nSs" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/machinery/button/remote/airlock{ + desc = "A remote control switch for the medbay recovery room door."; + id = "MedbayFoyer"; + name = "Door Switch"; + pixel_x = 22; + pixel_y = 26 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/medical/reception) +"nSz" = ( +/obj/machinery/chem_master, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/obj/item/radio/intercom{ + dir = 8; + pixel_x = -28; + req_access = list() + }, +/obj/structure/table/glass, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"nSZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central6, +/turf/simulated/floor/tiled, +/area/teleporter/departing) +"nTu" = ( +/obj/effect/floor_decal/industrial/warning/full, +/turf/simulated/floor/greengrid/airless, +/area/rnd/test_area) +"nTN" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance/rnd{ + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/science/department, +/turf/simulated/floor/plating, +/area/maintenance/substation/research) +"nTO" = ( +/obj/item/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 21 + }, +/obj/machinery/mecha_part_fabricator, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/assembly/robotics) +"nUC" = ( +/obj/machinery/fire_alarm/south_mount{ + pixel_y = -24 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/blue/border, +/turf/simulated/floor/tiled/white, +/area/medical/patient_wing) +"nUG" = ( +/obj/structure/sign/warning/nosmoking_2, +/turf/simulated/wall/prepainted/science, +/area/rnd/workshop) +"nVE" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"nWM" = ( +/turf/simulated/floor/tiled/dark, +/area/rnd/research/testingrange) +"nWQ" = ( +/obj/effect/shuttle_landmark/victory/deck3/starboard, +/turf/space, +/area/space) +"nXe" = ( +/obj/structure/table/rack, +/obj/item/storage/belt/archaeology, +/obj/item/clothing/suit/space/anomaly, +/obj/item/clothing/head/helmet/space/anomaly, +/obj/item/clothing/mask/breath, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/item/storage/belt/archaeology, +/obj/item/clothing/mask/breath, +/obj/item/clothing/suit/bio_suit/anomaly, +/obj/item/clothing/head/bio_hood/anomaly, +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab) +"nXk" = ( +/turf/simulated/floor/plating, +/area/maintenance/medbay/fore) +"nXl" = ( +/obj/structure/table/glass, +/obj/machinery/button/remote/airlock{ + dir = 8; + id = "medical_emergency"; + name = "Emergency Medical Maintenance Access"; + pixel_x = 26; + pixel_y = -4; + specialfunctions = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/cmo) +"nXm" = ( +/obj/structure/barricade/cutout/lusty, +/turf/simulated/floor/plating, +/area/rnd/misc_lab) +"nYo" = ( +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/obj/structure/table/reinforced, +/obj/machinery/chem_master, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 5 + }, +/obj/effect/floor_decal/corner/lightorange/border{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/medical/chemistry) +"oaQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 10 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/medical/virology) +"oaU" = ( +/obj/item/radio/intercom{ + dir = 8; + pixel_x = -28; + req_access = list() + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/open, +/area/hallway/primary/port) +"oby" = ( +/obj/machinery/light, +/obj/effect/floor_decal/techfloor, +/turf/simulated/floor/tiled, +/area/hallway/primary/starboard) +"obW" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/research) +"obY" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"ocd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/holodeck_control) +"ocS" = ( +/turf/simulated/floor/grass, +/area/medical/psych_ward) +"ode" = ( +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/machinery/power/apc/north_mount, +/turf/simulated/floor/tiled/techfloor, +/area/assembly/chargebay) +"odm" = ( +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/machinery/power/apc/west_mount, +/obj/structure/sink{ + pixel_y = 19 + }, +/turf/simulated/floor/tiled/white, +/area/medical/recoveryrestroom) +"ody" = ( +/obj/structure/table/standard, +/obj/item/storage/box/beakers{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/storage/box/syringes, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"oey" = ( +/turf/simulated/wall/r_wall/prepainted/medical, +/area/medical/patient_b) +"oeP" = ( +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/turf/simulated/floor/tiled, +/area/holodeck_control) +"ofg" = ( +/obj/machinery/computer/ship/navigation/telescreen{ + pixel_y = -37 + }, +/obj/structure/bed/chair/comfy/brown{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"ogl" = ( +/obj/structure/closet/secure_closet/medical_wall/synth_anesthetics{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/old_tile/purple, +/area/assembly/robotics/surgery) +"ogu" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/assembly/robotics/surgery) +"ogK" = ( +/obj/structure/shuttle/engine/heater{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/turf/simulated/shuttle/wall/voidcraft/hard_corner, +/area/shuttle/emt/general) +"ogL" = ( +/obj/machinery/mech_recharger, +/obj/machinery/camera/network/research{ + dir = 1 + }, +/turf/simulated/floor/bluegrid, +/area/assembly/chargebay) +"ohg" = ( +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/machinery/power/apc/north_mount, +/turf/simulated/floor/plating, +/area/rnd/misc_lab) +"oik" = ( +/obj/machinery/camera/network/civilian{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"ojq" = ( +/turf/simulated/wall/prepainted/medical, +/area/medical/recoveryrestroom) +"ojL" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/table/steel_reinforced, +/obj/machinery/recharger, +/turf/simulated/floor/tiled, +/area/medical/surgeryprep) +"oke" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 + }, +/obj/structure/closet/l3closet/scientist/double, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"okq" = ( +/obj/structure/table/steel_reinforced, +/obj/item/reagent_containers/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + name = "Surgery Cleaner"; + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/stack/nanopaste{ + amount = 30 + }, +/turf/simulated/floor/tiled, +/area/medical/surgery) +"oks" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor/glass, +/obj/structure/wall_frame/prepainted, +/obj/structure/window/reinforced/polarized/full{ + id = "psyche" + }, +/turf/simulated/floor/plating, +/area/medical/psych/psych_1) +"oku" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"okH" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/dark, +/area/assembly/robotics/surgery) +"okJ" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/lightorange/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay3) +"okM" = ( +/obj/machinery/camera/network/research, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/obj/structure/sink/kitchen{ + pixel_y = 28 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"okU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/medical/surgery2) +"olh" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/rnd/test_area) +"olF" = ( +/obj/spawner/window/low_wall/reinforced/full, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "xenobio10"; + name = "Containment Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"omH" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/obj/landmark/spawnpoint/job/scientist, +/turf/simulated/floor/carpet/purcarpet, +/area/rnd/breakroom) +"omP" = ( +/obj/structure/cable/green, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/power/apc/east_mount, +/obj/machinery/button/windowtint{ + dir = 8; + id = "ward_a"; + pixel_x = 24; + pixel_y = 24 + }, +/turf/simulated/floor/tiled/white, +/area/medical/patient_a) +"onN" = ( +/obj/structure/shuttle/engine/heater{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/turf/simulated/shuttle/wall/voidcraft/hard_corner, +/area/shuttle/emt/general) +"ooU" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/turf/simulated/floor/tiled, +/area/medical/sleeper) +"opc" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay4) +"oph" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/item/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 21 + }, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"opn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/research_restroom) +"oqZ" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"orZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/mauve/bordercorner, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"osH" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"osS" = ( +/obj/item/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 21 + }, +/turf/simulated/wall/prepainted, +/area/maintenance/medbay/aft) +"otK" = ( +/obj/effect/floor_decal/industrial/warning/dust, +/obj/effect/floor_decal/industrial/warning/dust/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/storage) +"otT" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 8 + }, +/obj/machinery/door/firedoor/glass{ + dir = 4 + }, +/obj/machinery/access_button{ + command = "cycle_int"; + frequency = 1379; + master_tag = "virology_airlock_control"; + name = "Virology Access Button"; + pixel_y = 24; + req_access = list(39) + }, +/obj/machinery/door/airlock/medical{ + autoclose = 0; + frequency = 1379; + icon_state = "door_locked"; + id_tag = "virology_airlock_interior"; + locked = 1; + name = "Virology Interior Airlock"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/medical/virology, +/turf/simulated/floor/tiled/white, +/area/medical/virologyaccess) +"ouz" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/white, +/area/medical/surgeryprep) +"ouW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/dust, +/obj/effect/floor_decal/industrial/warning/dust/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/rnd/storage) +"ovA" = ( +/turf/simulated/floor/wood, +/area/medical/psych/psych_1) +"ovX" = ( +/obj/structure/closet{ + name = "mechanical equipment" + }, +/obj/item/clothing/head/welding{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/item/clothing/head/welding{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/item/clothing/glasses/welding, +/obj/item/clothing/glasses/welding, +/obj/item/storage/toolbox/mechanical, +/obj/item/storage/toolbox/mechanical, +/obj/item/multitool{ + pixel_x = 3 + }, +/obj/item/tool/crowbar, +/obj/item/tool/crowbar, +/obj/item/storage/belt/utility, +/obj/item/storage/toolbox/electrical{ + pixel_x = 1; + pixel_y = 6 + }, +/turf/simulated/floor/tiled/techfloor, +/area/medical/morgue) +"owo" = ( +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/spawner/window/low_wall/reinforced/full, +/turf/simulated/floor/plating, +/area/rnd/reception_desk) +"owE" = ( +/obj/machinery/holopad, +/turf/simulated/floor/tiled, +/area/medical/medbay3) +"owP" = ( +/obj/machinery/camera/network/medbay, +/obj/item/radio/intercom{ + dir = 1; + pixel_y = 24; + req_access = list() + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/ward) +"owZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/machinery/power/apc/east_mount, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/medical_restroom) +"oyK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virologyisolation) +"ozi" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/ward) +"oAm" = ( +/obj/structure/closet/coffin, +/obj/random/maintenance/research, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint2) +"oAr" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/blue/border, +/turf/simulated/floor/tiled/white, +/area/medical/ward) +"oBg" = ( +/obj/structure/table/standard, +/obj/item/tape_recorder{ + pixel_x = -3 + }, +/obj/item/paicard{ + pixel_x = 4 + }, +/obj/item/circuitboard/teleporter, +/obj/item/circuitboard/aicore{ + pixel_x = -2; + pixel_y = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/rdoffice) +"oBJ" = ( +/obj/structure/sign/department/rnd, +/turf/simulated/wall/prepainted/science, +/area/rnd/research_foyer) +"oBT" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/table/rack, +/turf/simulated/floor/plating, +/area/maintenance/medbay/aft) +"oCa" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/medical/medbay4) +"oDu" = ( +/obj/structure/window/reinforced, +/obj/structure/table/glass, +/obj/item/glass_jar, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"oDD" = ( +/obj/machinery/vending/fitness, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"oFh" = ( +/obj/structure/table/standard, +/obj/item/anobattery{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/anobattery{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/anobattery{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/anobattery{ + pixel_x = -6; + pixel_y = 2 + }, +/obj/item/tool/screwdriver, +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab) +"oFZ" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/blue/border, +/turf/simulated/floor/tiled/white, +/area/shuttle/emt/general) +"oGt" = ( +/obj/machinery/station_map{ + pixel_y = 32 + }, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/starboard) +"oGF" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on, +/turf/simulated/floor/tiled/dark, +/area/rnd/research/testingrange) +"oGQ" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/disposaloutlet{ + dir = 8 + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"oHb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"oHk" = ( +/obj/machinery/atmospherics/tvalve/bypass{ + dir = 1; + name = "Waste to PURGE" + }, +/turf/simulated/floor/plating, +/area/maintenance/medbay/fore) +"oIp" = ( +/obj/machinery/light_switch{ + pixel_x = 25 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/rnd/breakroom) +"oIt" = ( +/obj/machinery/door/firedoor/glass{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance/medical{ + name = "Emergency Maintenance Access Use Only"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/medical/department, +/turf/simulated/floor/plating, +/area/medical/surgery2) +"oIJ" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/full{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/surgeryprep) +"oIS" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/medical/medbay_emt_bay) +"oIU" = ( +/obj/machinery/door/airlock/glass_external{ + name = "Isolation Room 1"; + req_one_access = null + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/obj/map_helper/access_helper/airlock/station/science/xenoarcheology, +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab/containment_one) +"oJw" = ( +/obj/machinery/door/firedoor/glass, +/obj/spawner/window/low_wall/reinforced/full, +/turf/simulated/floor/plating, +/area/rnd/anomaly_lab/containment_two) +"oJy" = ( +/obj/machinery/body_scanconsole{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"oKz" = ( +/obj/structure/table/woodentable, +/obj/item/pen{ + pixel_y = 4 + }, +/obj/item/paper_bin{ + pixel_y = 4 + }, +/obj/machinery/light_switch{ + pixel_x = 25 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/medical/psych/psych_1) +"oLc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/holopad, +/turf/simulated/floor/tiled/white, +/area/medical/chemistry) +"oLd" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/obj/machinery/status_display{ + pixel_y = 30 + }, +/obj/machinery/botany/editor, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"oLT" = ( +/obj/effect/floor_decal/corner/blue/full, +/obj/machinery/light_switch{ + pixel_x = -25 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/white, +/area/medical/surgeryprep) +"oMf" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/camera/network/medbay{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay4) +"oMl" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/surgeryprep) +"oMP" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/power/apc/west_mount{ + cell_type = /obj/item/cell/super + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/turf/simulated/floor/tiled, +/area/rnd/test_area) +"oND" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/door/window/northleft{ + dir = 8; + name = "Server Room"; + req_access = list(30) + }, +/obj/machinery/door/window/northleft{ + dir = 4; + name = "Server Room"; + req_access = list(30) + }, +/turf/simulated/floor/bluegrid{ + initial_gas_mix = "n2=500;TEMP=80"; + name = "Server Base" + }, +/area/rnd/research) +"oNP" = ( +/obj/structure/sign/directions/cryo{ + pixel_y = -24 + }, +/obj/structure/sign/directions/cargo{ + pixel_y = -30 + }, +/obj/machinery/door/airlock/glass, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/aft) +"oOu" = ( +/obj/effect/floor_decal/corner/blue, +/obj/machinery/holopad, +/turf/simulated/floor/tiled/white, +/area/medical/surgeryprep) +"oOE" = ( +/obj/structure/closet/secure_closet/personal/patient, +/obj/machinery/air_alarm{ + dir = 8; + pixel_x = 25 + }, +/turf/simulated/floor/carpet/tealcarpet, +/area/medical/patient_d) +"oOF" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virologyisolation) +"oOO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/assembly/robotics) +"oOS" = ( +/obj/machinery/light/small, +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/medical_restroom) +"oQx" = ( +/obj/structure/closet/hydrant{ + pixel_x = -32 + }, +/obj/machinery/camera/network/civilian{ + dir = 4 + }, +/obj/structure/closet/lasertag/blue, +/turf/simulated/floor/tiled, +/area/holodeck_control) +"oQz" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12 + }, +/turf/simulated/floor/tiled/white, +/area/medical/surgery) +"oRa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/medical/reception) +"oRe" = ( +/obj/machinery/camera/network/medbay, +/mob/living/simple_mob/animal/passive/cat/runtime, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/cmo) +"oRR" = ( +/obj/machinery/door/blast/regular{ + id = "xenobiovs5"; + layer = 8; + name = "Divider Blast Door"; + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"oSi" = ( +/turf/simulated/floor/plating, +/area/maintenance/substation/medical_science) +"oSl" = ( +/obj/structure/sign/greencross, +/turf/simulated/wall, +/area/medical/sleeper) +"oSs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/table/steel_reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/light_switch{ + pixel_x = 25 + }, +/obj/effect/floor_decal/corner/blue/diagonal, +/turf/simulated/floor/tiled/white, +/area/medical/exam_room/exam_1) +"oSw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/rnd/rdoffice) +"oSH" = ( +/obj/structure/table/steel, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/rnd/misc_lab) +"oTe" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/structure/closet/hydrant{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled/white, +/area/medical/reception) +"oTA" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora/lab_atmos) +"oUc" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/obj/structure/closet/bombcloset, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"oUK" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/starboard) +"oVI" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/obj/machinery/power/apc/north_mount, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/machinery/camera/network/civilian, +/obj/effect/floor_decal/steeldecal/steel_decals_central4{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"oWr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/table/steel_reinforced, +/obj/item/storage/box/bodybags, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/resleeving) +"oWH" = ( +/obj/structure/table/reinforced, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/reception_desk) +"oXk" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central6, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"oXG" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/blue/border, +/turf/simulated/floor/tiled/white, +/area/medical/patient_wing) +"oXH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/rnd/test_area) +"oXI" = ( +/obj/effect/floor_decal/industrial/warning/cee{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/storage) +"oXO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/camera/network/medbay{ + network = list("Psychiatric") + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"oXR" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/assembly/robotics) +"oYo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/medical/reception) +"oYq" = ( +/obj/machinery/power/sensor{ + name = "Powernet Sensor - Deck 3 Subgrid"; + name_tag = "Deck 3 Subgrid" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/cable/green, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/substation/medical_science) +"oZp" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/mauve/border, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"oZt" = ( +/obj/spawner/window/low_wall/reinforced/full, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "xenobio10"; + name = "Containment Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"oZA" = ( +/obj/machinery/light{ + dir = 8; + light_range = 12 + }, +/obj/structure/closet/lasertag/red, +/turf/simulated/floor/tiled, +/area/holodeck_control) +"oZD" = ( +/obj/effect/floor_decal/corner/green{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"oZF" = ( +/obj/item/integrated_electronics/debugger{ + pixel_x = -5 + }, +/obj/item/integrated_electronics/wirer{ + pixel_x = 5 + }, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/structure/table/steel, +/obj/item/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 26 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/workshop) +"oZR" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/wood, +/area/rnd/breakroom) +"pad" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/rnd/breakroom) +"pal" = ( +/turf/simulated/floor/tiled/dark, +/area/rnd/anomaly_lab/containment_two) +"pbm" = ( +/obj/machinery/light{ + dir = 8; + light_range = 12 + }, +/obj/machinery/fire_alarm/west_mount{ + pixel_x = -24 + }, +/obj/machinery/holopad, +/turf/simulated/floor/tiled, +/area/holodeck_control) +"pbD" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"pch" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1; + name = "Toxins Input Connector" + }, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled, +/area/rnd/test_area) +"pcp" = ( +/obj/structure/sign/warning/nosmoking_1, +/turf/simulated/wall/prepainted/medical, +/area/medical/psych/psych_1) +"pdP" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"pee" = ( +/obj/structure/cable/green, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/power/apc/west_mount, +/turf/simulated/floor/tiled/white, +/area/medical/patient_d) +"peR" = ( +/obj/machinery/atmospherics/valve, +/obj/structure/closet/hydrant{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled, +/area/rnd/test_area) +"pfe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/map_helper/airlock/door/int_door, +/obj/machinery/door/airlock/glass_external{ + name = "Public Airlock"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/external_airlock, +/turf/simulated/floor/tiled{ + icon_state = "techmaint" + }, +/area/victory/station/stairs_three) +"pgh" = ( +/obj/machinery/sleeper{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"pgN" = ( +/obj/machinery/door/firedoor, +/obj/spawner/window/low_wall/reinforced/full, +/turf/simulated/floor/plating, +/area/holodeck_control) +"pgO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "xenobio5"; + name = "Containment Blast Doors"; + pixel_x = 24; + pixel_y = 24; + req_access = list(55) + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/xenobiology) +"pgV" = ( +/obj/machinery/computer/rdconsole/robotics, +/obj/machinery/air_alarm{ + frequency = 1441; + pixel_y = 22 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/assembly/robotics) +"phe" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/manifold/hidden/purple, +/turf/simulated/wall/r_wall/prepainted/science, +/area/rnd/xenobiology) +"phf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/research{ + name = "Xenobiology Lab"; + req_access = list() + }, +/obj/map_helper/access_helper/airlock/station/science/xenobiology, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"pho" = ( +/obj/machinery/camera/network/medbay, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/structure/bed/chair/wheelchair, +/obj/item/radio/intercom{ + dir = 1; + pixel_y = 24; + req_access = list() + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/ward) +"pid" = ( +/obj/structure/closet/hydrant{ + pixel_x = 32 + }, +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/tiled, +/area/medical/medbay_emt_bay) +"piP" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor/glass{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/medbay/aft) +"piY" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/purple{ + dir = 8 + }, +/turf/simulated/wall/r_wall/prepainted/science, +/area/rnd/xenobiology) +"pjz" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/item/radio/intercom{ + dir = 1; + pixel_y = 24; + req_access = list() + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"pky" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + id_tag = "MedbayFoyer"; + name = "General Wing" + }, +/obj/machinery/door/firedoor/glass, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/map_helper/access_helper/airlock/station/medical/department, +/turf/simulated/floor/tiled, +/area/medical/sleeper) +"pkD" = ( +/turf/simulated/floor/plating, +/area/maintenance/fpmaint2) +"pkR" = ( +/obj/machinery/atmospherics/pipe/simple/visible/universal, +/turf/simulated/floor/tiled, +/area/rnd/test_area) +"pmG" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"pnv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/machinery/door/airlock/glass/medical{ + name = "Patient Psychiatric Ward A"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/medical/department, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "psyche-b-outer"; + name = "Ward A"; + opacity = 0 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"pnD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 4 + }, +/obj/machinery/shower{ + pixel_y = 16 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/medical/virologyaccess) +"pnF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"poq" = ( +/obj/structure/lattice, +/obj/structure/grille, +/turf/space/basic, +/area/space) +"poV" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 4 + }, +/obj/item/radio/intercom{ + dir = 8; + pixel_x = -28; + req_access = list() + }, +/turf/simulated/floor/wood, +/area/medical/psych/psych_1) +"ppj" = ( +/turf/simulated/wall/prepainted/medical, +/area/medical/medbay_emt_bay) +"ppq" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/beige/border, +/turf/simulated/floor/tiled/white, +/area/medical/medbay4) +"pps" = ( +/obj/item/clothing/gloves/boxing, +/obj/item/clothing/gloves/boxing/yellow{ + pixel_x = -6; + pixel_y = 7 + }, +/obj/structure/table/steel, +/turf/simulated/floor/plating, +/area/maintenance/medbay/aft) +"ppE" = ( +/obj/machinery/radiocarbon_spectrometer, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/anomaly_lab) +"pqF" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/assembly/robotics) +"pqI" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/corner/paleblue/border, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"pqK" = ( +/obj/machinery/door/firedoor, +/obj/spawner/window/low_wall/reinforced/full, +/turf/simulated/floor/plating, +/area/rnd/anomaly_lab) +"pqY" = ( +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "medbayquar"; + name = "Medbay Emergency Lockdown Shutters"; + opacity = 0 + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/medical/reception) +"prx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab) +"psO" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/machinery/vending/medical, +/turf/simulated/floor/tiled, +/area/medical/medbay_emt_bay) +"pta" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/voidcraft/vertical{ + frequency = 1380 + }, +/obj/machinery/access_button{ + dir = 1; + frequency = 1380; + master_tag = "emt_shuttle_docker"; + name = "interior access button"; + pixel_x = -20; + pixel_y = -5 + }, +/obj/map_helper/airlock/door/int_door, +/obj/map_helper/access_helper/airlock/station/medical/department, +/turf/simulated/floor/tiled/white, +/area/shuttle/emt/general) +"ptn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"puo" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/medical/medbay_primary_storage) +"puN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/aft) +"puV" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = -31 + }, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"pvs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virologyisolation) +"pvZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/machinery/power/emitter{ + anchored = 1; + dir = 1; + pixel_y = 8; + state = 2 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/anomaly_lab) +"pwN" = ( +/obj/structure/table/reinforced, +/obj/machinery/microwave, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/medbreak) +"pyt" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 9 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/test_area) +"pyK" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/medical) +"pyL" = ( +/mob/living/bot/secbot/slime/slimesky, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"pyQ" = ( +/obj/structure/sign/warning/nosmoking_2, +/turf/simulated/wall/r_wall/prepainted/science, +/area/rnd/storage) +"pAX" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"pBq" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/camera/network/medbay{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virologyisolation) +"pBG" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/open, +/area/hallway/primary/port) +"pBU" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/medical{ + id_tag = "mentaldoor2"; + name = "Mental Health"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/medical/psychiatry, +/turf/simulated/floor/wood, +/area/medical/psych/psych_1) +"pBY" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"pCc" = ( +/obj/machinery/door/firedoor/glass, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/machinery/door/airlock/multi_tile/glass{ + id_tag = "MedbayFoyer"; + name = "Chem & Offices"; + req_access = list() + }, +/obj/map_helper/access_helper/airlock/station/medical/department, +/turf/simulated/floor/tiled/white, +/area/medical/patient_wing) +"pCA" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/patient_wing) +"pCH" = ( +/obj/effect/floor_decal/industrial/warning/dust, +/turf/simulated/floor/tiled/dark, +/area/assembly/robotics) +"pDh" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/carpet/purcarpet, +/area/rnd/breakroom) +"pDl" = ( +/turf/simulated/shuttle/wall/voidcraft/blue, +/area/shuttle/emt/general) +"pDw" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/red, +/obj/machinery/meter, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/rnd/test_area) +"pDz" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/machinery/button/remote/blast_door{ + id = "emtblast"; + name = "emergency blast shields"; + pixel_y = 30 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/emt/cockpit) +"pEE" = ( +/turf/simulated/wall/r_wall/prepainted/science, +/area/rnd/test_area) +"pEX" = ( +/obj/structure/sign/greencross, +/turf/simulated/wall/prepainted/medical, +/area/medical/medbay4) +"pFe" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/dust, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/rnd/storage) +"pFA" = ( +/obj/effect/floor_decal/borderfloorwhite/corner, +/obj/effect/floor_decal/corner/blue/bordercorner, +/turf/simulated/floor/tiled/white, +/area/medical/patient_wing) +"pFL" = ( +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/machinery/vending/snack, +/turf/simulated/floor/tiled/monotile, +/area/rnd/breakroom) +"pGL" = ( +/obj/structure/table/reinforced, +/obj/machinery/chem_master, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightorange/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/chemistry) +"pGO" = ( +/obj/structure/morgue{ + dir = 2 + }, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/techfloor, +/area/medical/morgue) +"pHm" = ( +/obj/machinery/power/apc/south_mount, +/obj/structure/cable/green, +/turf/simulated/floor/tiled/techfloor, +/area/medical/morgue) +"pHp" = ( +/obj/structure/bed/chair/office/dark, +/obj/landmark/spawnpoint/job/roboticist, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/mauve/border, +/turf/simulated/floor/tiled/dark, +/area/assembly/robotics) +"pHA" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/patient_wing) +"pHH" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass{ + dir = 4 + }, +/obj/machinery/access_button{ + command = "cycle_ext"; + frequency = 1379; + master_tag = "virology_airlock_control"; + name = "Virology Access Button"; + pixel_y = 23; + req_access = list(39) + }, +/obj/machinery/door/airlock/medical{ + autoclose = 0; + frequency = 1379; + icon_state = "door_locked"; + id_tag = "virology_airlock_exterior"; + locked = 1; + name = "Virology Exterior Airlock"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/medical/virology, +/turf/simulated/floor/tiled/white, +/area/medical/virologyaccess) +"pHO" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/medical/reception) +"pIb" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance/engi{ + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/substation/medical) +"pIC" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/beige/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay4) +"pKi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"pKn" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/table/reinforced, +/turf/simulated/floor/tiled/white, +/area/medical/patient_d) +"pLp" = ( +/obj/machinery/recharge_station, +/obj/effect/floor_decal/corner/beige/full, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"pLr" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/research) +"pLW" = ( +/obj/machinery/vending/coffee, +/turf/simulated/floor/tiled, +/area/holodeck_control) +"pMc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/xenobiology) +"pMz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"pMA" = ( +/obj/item/defib_kit/jumper_kit, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/structure/table/carbon/reinforced, +/turf/simulated/floor/tiled/old_tile/purple, +/area/assembly/robotics/surgery) +"pMC" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 5 + }, +/obj/landmark/spawnpoint/overflow, +/turf/simulated/floor/tiled/techfloor, +/area/teleporter/departing) +"pMH" = ( +/obj/machinery/door/airlock/glass{ + name = "Holodeck" + }, +/turf/simulated/floor/tiled, +/area/holodeck_control) +"pNT" = ( +/turf/simulated/wall/r_wall/prepainted/medical, +/area/medical/patient_c) +"pNX" = ( +/turf/simulated/wall/prepainted/medical, +/area/medical/psych/psych_2) +"pOm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "xenobio4"; + name = "Containment Blast Doors"; + pixel_x = -24; + pixel_y = 24; + req_access = list(55) + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/xenobiology) +"pOQ" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 6 + }, +/turf/simulated/floor/reinforced/airless, +/area/rnd/test_area) +"pPD" = ( +/obj/machinery/camera/network/outside{ + dir = 5 + }, +/turf/simulated/floor/airless/ceiling, +/area/space) +"pPO" = ( +/obj/effect/floor_decal/spline/plain, +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/grass, +/area/medical/psych_ward) +"pPZ" = ( +/obj/effect/floor_decal/corner/green/full{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology/xenoflora) +"pQv" = ( +/obj/machinery/camera/network/outside, +/turf/simulated/floor/airless/ceiling, +/area/space) +"pQM" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/blue/border, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/item/radio/intercom{ + pixel_y = -24 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay3) +"pRk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/medical/morgue) +"pRH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/command{ + id_tag = "cmodoor"; + name = "CMO's Office"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/head_office/chief_medical_officer, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/cmo) +"pRS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/window/westright{ + dir = 2; + name = "Virology Isolation Room Two"; + req_access = list(39) + }, +/obj/machinery/door/window/westright{ + dir = 1; + name = "Virology Isolation Room Two"; + req_access = list(39) + }, +/turf/simulated/floor/tiled/white, +/area/medical/virologyisolation) +"pRW" = ( +/turf/space/basic, +/area/space) +"pTw" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/holopad, +/turf/simulated/floor/tiled/white, +/area/medical/medbay4) +"pTU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 8 + }, +/obj/machinery/door/window/westleft, +/obj/machinery/shower{ + pixel_y = 16 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/medical/virologyaccess) +"pUe" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/beige/border, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"pUl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora/lab_atmos) +"pUp" = ( +/obj/structure/table/rack, +/obj/random/maintenance/clean, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/medbay/aft) +"pUq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/holopad, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"pUI" = ( +/turf/simulated/floor/plating, +/area/maintenance/substation/research) +"pUT" = ( +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/bordercorner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/medical/patient_wing) +"pVw" = ( +/obj/structure/closet/emcloset, +/obj/effect/floor_decal/industrial/outline/red, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/patient_wing) +"pVI" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/westleft{ + name = "Chemistry Reception Desk"; + req_one_access = list(5) + }, +/obj/machinery/door/firedoor/glass{ + dir = 4 + }, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "medbayquar"; + name = "Medbay Emergency Lockdown Shutters"; + opacity = 0 + }, +/turf/simulated/floor/tiled/white, +/area/medical/chemistry) +"pVZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/component/unary/vent_pump/on, +/turf/simulated/floor/tiled/dark, +/area/rnd/research/testingrange) +"pWg" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/medical{ + name = "Medical Storage"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/medical/department, +/turf/simulated/floor/tiled, +/area/medical/medbay_primary_storage) +"pWt" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/washing_machine, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"pWZ" = ( +/obj/structure/closet/hydrant{ + pixel_y = 32 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/ward) +"pXy" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/medical/ward) +"pXJ" = ( +/obj/machinery/camera/network/civilian, +/obj/item/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 21 + }, +/turf/simulated/floor/wood, +/area/victory/station/stairs_three) +"pXL" = ( +/obj/machinery/door/firedoor, +/obj/spawner/window/low_wall/reinforced/full, +/turf/simulated/floor/plating, +/area/rnd/xenobiology/xenoflora_storage) +"pXO" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/blue/border, +/turf/simulated/floor/tiled/white, +/area/medical/ward) +"pXQ" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/glass/research{ + name = "Research Lounge"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/science/department, +/turf/simulated/floor/tiled, +/area/rnd/breakroom) +"pYs" = ( +/turf/simulated/wall/prepainted/science, +/area/maintenance/substation/research) +"pYD" = ( +/obj/structure/table/steel_reinforced, +/obj/item/reagent_containers/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + name = "Surgery Cleaner"; + pixel_x = 2; + pixel_y = 2 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/medical/surgery2) +"pYY" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/bordercorner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/medical/sleeper) +"pZh" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/power/sensor{ + name = "Powernet Sensor - Research Subgrid"; + name_tag = "Research Subgrid" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/catwalk, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/research) +"pZu" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 8 + }, +/obj/machinery/camera/network/research{ + dir = 4; + network = list("Xenobiology") + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora/lab_atmos) +"pZN" = ( +/turf/simulated/floor/tiled, +/area/teleporter/departing) +"pZS" = ( +/obj/random/medical, +/obj/random/medical, +/obj/random/medical, +/obj/random/medical, +/obj/random/medical, +/obj/item/bodybag/cryobag, +/obj/item/bodybag/cryobag, +/obj/structure/table/steel_reinforced, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/item/stack/nanopaste{ + amount = 30 + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"qak" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"qaw" = ( +/obj/machinery/fire_alarm/south_mount{ + pixel_y = -24 + }, +/obj/structure/bed/padded, +/obj/item/bedsheet/medical, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/blue/border, +/obj/effect/floor_decal/corner/paleblue{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/surgeryprep) +"qbE" = ( +/obj/effect/floor_decal/techfloor, +/turf/simulated/floor/tiled, +/area/hallway/primary/starboard) +"qcN" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/rnd/misc_lab) +"qfo" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/reception_desk) +"qgo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 5 + }, +/obj/structure/table/glass, +/obj/item/storage/box/monkeycubes, +/obj/item/storage/box/monkeycubes, +/obj/item/storage/box/monkeycubes, +/obj/item/extinguisher, +/obj/machinery/camera/network/medbay{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/green/border, +/turf/simulated/floor/tiled/white, +/area/medical/virologyisolation) +"qgp" = ( +/obj/machinery/suit_cycler/medical, +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline, +/turf/simulated/floor/tiled, +/area/medical/medbay_emt_bay) +"qhO" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/medbreak) +"qhW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"qib" = ( +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/workshop) +"qig" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/landmark/spawnpoint/latejoin/station/gateway, +/obj/effect/floor_decal/techfloor/orange{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/teleporter/departing) +"qiH" = ( +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "xenobio9"; + name = "Containment Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/window/brigdoor/southright{ + name = "Containment Pen"; + req_access = list(55) + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"qiK" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "ward_b" + }, +/obj/structure/wall_frame/prepainted, +/turf/simulated/floor/plating, +/area/medical/patient_b) +"qjz" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/ward) +"qjW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/rnd/test_area) +"qks" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/xenobiology/xenoflora_storage) +"qls" = ( +/obj/machinery/door/window/westleft{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/medical/morgue) +"qlw" = ( +/turf/simulated/wall/prepainted/medical, +/area/victory/station/stairs_three) +"qlS" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/vending/cola, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"qnh" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/medical) +"qnn" = ( +/obj/machinery/door/firedoor/glass{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance/medical{ + name = "Emergency Maintenance Access Use Only"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/medical/department, +/turf/simulated/floor/plating, +/area/medical/surgery) +"qnO" = ( +/obj/structure/ladder, +/turf/simulated/floor/plating, +/area/maintenance/research) +"qog" = ( +/turf/simulated/floor/tiled/techfloor, +/area/assembly/chargebay) +"qoP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab) +"qpq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/rnd/rdoffice) +"qpC" = ( +/obj/structure/table/steel_reinforced, +/obj/effect/floor_decal/corner/blue/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/exam_room/exam_1) +"qpQ" = ( +/turf/simulated/wall/prepainted/science, +/area/rnd/research_foyer_auxiliary) +"qqe" = ( +/obj/machinery/fire_alarm/north_mount, +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab) +"qqi" = ( +/obj/machinery/vending/cigarette, +/turf/simulated/floor/tiled, +/area/holodeck_control) +"qqz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/carpet/tealcarpet, +/area/medical/patient_a) +"qrK" = ( +/obj/machinery/air_alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/blue/border, +/turf/simulated/floor/tiled/white, +/area/medical/ward) +"qrO" = ( +/obj/machinery/door/airlock{ + name = "Restroom" + }, +/obj/machinery/door/firedoor/glass{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/medical_restroom) +"qsP" = ( +/obj/structure/table/reinforced, +/obj/machinery/chemical_dispenser/full, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightorange/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/chemistry) +"qtE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/medical/psych_ward) +"qtF" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/assembly/robotics) +"qtU" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/landmark/spawnpoint/job/psychiatrist, +/turf/simulated/floor/carpet/sblucarpet, +/area/medical/psych/psych_2) +"qtW" = ( +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/mechanical, +/obj/item/storage/toolbox/mechanical, +/obj/item/storage/toolbox/mechanical, +/obj/item/clothing/glasses/welding, +/obj/item/clothing/glasses/welding, +/obj/item/clothing/glasses/welding, +/turf/simulated/floor/tiled, +/area/rnd/test_area) +"qvd" = ( +/obj/landmark/spawnpoint/overflow/station, +/turf/simulated/floor/tiled/techfloor, +/area/teleporter/departing) +"qvv" = ( +/obj/machinery/computer/cryopod/robot{ + pixel_y = -30 + }, +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/mauve/border, +/turf/simulated/floor/tiled/dark, +/area/assembly/robotics) +"qvQ" = ( +/obj/structure/sign/directions/cryo{ + pixel_y = -24 + }, +/obj/structure/sign/directions/cargo{ + pixel_y = -30 + }, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"qwk" = ( +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/machinery/power/apc/west_mount, +/obj/structure/closet/emcloset, +/obj/effect/floor_decal/industrial/outline/red, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay4) +"qwq" = ( +/obj/machinery/door/airlock{ + name = "Unit 1" + }, +/turf/simulated/floor/tiled/white, +/area/rnd/research_restroom) +"qwt" = ( +/obj/structure/table/steel_reinforced, +/obj/item/storage/box/masks{ + pixel_x = -7 + }, +/obj/item/storage/box/gloves{ + pixel_x = 6 + }, +/obj/item/storage/box/syringes{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/radio/intercom{ + dir = 8; + pixel_x = -28; + req_access = list() + }, +/obj/effect/floor_decal/corner/blue/diagonal, +/turf/simulated/floor/tiled/white, +/area/medical/exam_room/exam_1) +"qww" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/rnd/test_area) +"qxs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/holopad, +/turf/simulated/floor/tiled, +/area/hallway/primary/starboard) +"qyg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/research/testingrange) +"qys" = ( +/obj/machinery/door/blast/regular{ + id = "xenobiovs3"; + layer = 8; + name = "Divider Blast Door"; + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"qyX" = ( +/obj/machinery/camera/network/outside{ + dir = 8 + }, +/turf/space, +/area/space) +"qza" = ( +/obj/structure/table/woodentable, +/obj/machinery/computer/med_data/laptop, +/turf/simulated/floor/wood, +/area/medical/psych/psych_1) +"qzH" = ( +/obj/structure/table/reinforced, +/obj/random/toy, +/obj/effect/floor_decal/corner/beige{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"qzS" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virologyaccess) +"qAa" = ( +/obj/effect/floor_decal/corner/green{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"qAg" = ( +/obj/machinery/door/firedoor, +/obj/spawner/window/low_wall/reinforced/full, +/turf/simulated/floor/plating, +/area/medical/reception) +"qAp" = ( +/obj/machinery/door/firedoor/glass{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/medical{ + id_tag = "MedicalResleeving"; + name = "Resleeving Lab"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/medical/department, +/turf/simulated/floor/tiled/white, +/area/medical/resleeving) +"qBd" = ( +/obj/machinery/door/airlock/research{ + name = "Research Bathroom" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/rnd/research_restroom) +"qBq" = ( +/obj/effect/floor_decal/industrial/outline/blue, +/obj/machinery/iv_drip, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/ward) +"qCG" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay4) +"qCZ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"qDJ" = ( +/obj/machinery/door/firedoor/glass, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virologyaccess) +"qDS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/lightorange/border, +/turf/simulated/floor/tiled/white, +/area/medical/chemistry) +"qEp" = ( +/turf/simulated/floor/tiled/white, +/area/medical/surgery2) +"qFa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/blue/border, +/turf/simulated/floor/tiled/white, +/area/medical/patient_wing) +"qFl" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/photocopier/faxmachine{ + department = "Research Director's Office" + }, +/obj/structure/table/glass, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/rnd/rdoffice) +"qGj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/white, +/area/medical/resleeving) +"qHA" = ( +/obj/item/deskbell, +/obj/structure/table/reinforced, +/obj/machinery/door/window/westleft{ + req_one_access = list(5) + }, +/obj/machinery/door/firedoor/glass{ + dir = 4 + }, +/obj/item/paper_bin, +/obj/item/pen{ + pixel_y = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/reception) +"qIa" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay4) +"qIb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/medical/resleeving) +"qIy" = ( +/obj/machinery/door/firedoor, +/obj/spawner/window/low_wall/reinforced/full, +/obj/structure/curtain/open/shower/medical{ + name = "Privacy curtain" + }, +/turf/simulated/floor/plating, +/area/medical/psych_ward) +"qIz" = ( +/turf/simulated/wall/prepainted, +/area/victory/station/stairs_three) +"qJz" = ( +/obj/structure/closet/secure_closet/medical2, +/turf/simulated/floor/tiled, +/area/medical/surgery) +"qKo" = ( +/obj/machinery/atmospherics/component/unary/freezer{ + dir = 4; + icon_state = "freezer_1"; + power_setting = 20; + set_temperature = 73; + use_power = 1 + }, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/medical/medbay_primary_storage) +"qKw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/white, +/area/medical/patient_wing) +"qKx" = ( +/obj/machinery/suspension_gen, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab) +"qKA" = ( +/obj/item/mmi, +/obj/item/mmi, +/obj/item/mmi/digital/posibrain, +/obj/item/mmi/digital/posibrain, +/obj/structure/table/carbon/reinforced, +/turf/simulated/floor/tiled/dark, +/area/assembly/robotics/surgery) +"qKR" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"qLf" = ( +/obj/structure/table/rack, +/obj/item/suit_cooling_unit, +/obj/item/suit_cooling_unit, +/obj/machinery/camera/network/research{ + dir = 8; + network = list("Research","Toxins Test Area") + }, +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab) +"qLs" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/power/apc/east_mount, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora/lab_atmos) +"qLC" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/teleporter/departing) +"qLY" = ( +/obj/structure/closet/emcloset, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 9 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/outline/red, +/turf/simulated/floor/tiled/white, +/area/medical/medbay4) +"qMp" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 9 + }, +/obj/structure/table/steel_reinforced, +/obj/item/reagent_containers/glass/bottle/biomass{ + pixel_x = -3; + pixel_y = -2 + }, +/obj/item/reagent_containers/glass/bottle/biomass{ + pixel_x = 3; + pixel_y = 5 + }, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/white, +/area/medical/surgeryprep) +"qMX" = ( +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/machinery/door/airlock/glass, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"qNj" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/carpet/sblucarpet, +/area/medical/psych/psych_1) +"qNL" = ( +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"qOd" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/medical{ + id_tag = "MedicalResleeving"; + name = "Resleeving Lab"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/medical/department, +/turf/simulated/floor/tiled/white, +/area/medical/resleeving) +"qPc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/substation/medical_science) +"qPj" = ( +/obj/item/clothing/gloves/boxing/blue, +/obj/item/clothing/gloves/boxing/green{ + pixel_x = 6; + pixel_y = 7 + }, +/obj/structure/table/steel, +/turf/simulated/floor/plating, +/area/maintenance/medbay/aft) +"qPF" = ( +/obj/machinery/r_n_d/server/robotics, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/bluegrid{ + initial_gas_mix = "n2=500;TEMP=80"; + name = "Server Base" + }, +/area/rnd/research) +"qPH" = ( +/obj/effect/floor_decal/corner/blue/diagonal, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/exam_room/exam_2) +"qPZ" = ( +/obj/machinery/computer/diseasesplicer{ + dir = 1 + }, +/obj/structure/reagent_dispensers/virusfood{ + pixel_y = -32 + }, +/obj/effect/floor_decal/borderfloor, +/obj/item/radio/intercom{ + pixel_y = -24 + }, +/obj/effect/floor_decal/corner/green/border, +/turf/simulated/floor/tiled, +/area/medical/virology) +"qQB" = ( +/obj/structure/closet/crate, +/obj/item/target, +/obj/item/target, +/obj/item/target, +/obj/item/target, +/obj/item/target, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/camera/network/research{ + dir = 1 + }, +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = -28 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/research/testingrange) +"qQJ" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/blue/border, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay3) +"qQX" = ( +/obj/structure/closet/crate/biohazard, +/turf/simulated/floor/tiled, +/area/medical/surgery) +"qRd" = ( +/obj/spawner/window/low_wall/reinforced/full, +/turf/space/basic, +/area/medical/surgeryprep) +"qRe" = ( +/obj/machinery/door/airlock{ + name = "Restroom" + }, +/obj/machinery/door/firedoor/glass{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/medical_restroom) +"qRu" = ( +/turf/simulated/wall/r_wall/prepainted/science, +/area/rnd/xenobiology) +"qSj" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 9 + }, +/obj/machinery/biogenerator, +/obj/machinery/camera/network/research{ + dir = 4; + network = list("Xenobiology") + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"qSn" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/multi_tile/metal{ + name = "Infectious Diseases & Treatment Center" + }, +/obj/map_helper/access_helper/airlock/station/medical/department, +/turf/simulated/floor/tiled/white, +/area/medical/virologyaccess) +"qSo" = ( +/obj/machinery/iv_drip, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"qSB" = ( +/obj/machinery/fire_alarm/east_mount, +/obj/machinery/disease2/diseaseanalyser, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/medical/virology) +"qSK" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/grass, +/area/medical/psych_ward) +"qTq" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/research_restroom) +"qTx" = ( +/obj/machinery/power/apc/west_mount, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/effect/floor_decal/corner/blue{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/medical/reception) +"qTB" = ( +/obj/structure/catwalk, +/obj/structure/cable/green{ + dir = 1; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/medbay/aft) +"qUP" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled, +/area/maintenance/fpmaint2) +"qVn" = ( +/obj/structure/flora/pottedplant/stoutbush, +/turf/simulated/floor/wood, +/area/rnd/breakroom) +"qWG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"qXe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor/glass, +/obj/effect/floor_decal/corner/beige{ + dir = 9 + }, +/obj/machinery/door/airlock/glass/medical{ + name = "Psychiatric Play-Area Access"; + req_one_access = null + }, +/obj/machinery/door/blast/regular{ + id = "psyche-doc-access"; + name = "Play Area Access" + }, +/obj/map_helper/access_helper/airlock/station/medical/department, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"qXw" = ( +/obj/item/radio/intercom{ + dir = 1; + pixel_y = 24; + req_access = list() + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/patient_wing) +"qXW" = ( +/obj/structure/catwalk, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/medbay/aft) +"qYk" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/landmark/spawnpoint/job/medical_doctor, +/turf/simulated/floor/tiled/white, +/area/medical/chemistry) +"qYG" = ( +/obj/machinery/air_alarm{ + frequency = 1441; + pixel_y = 22 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/research/testingrange) +"qYN" = ( +/obj/machinery/atmospherics/component/unary/outlet_injector{ + dir = 1; + frequency = 1445; + id = "burn_in"; + volume_rate = 700 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/rnd/xenobiology) +"qYS" = ( +/obj/landmark/spawnpoint/latejoin/station/cyborg, +/turf/simulated/floor/tiled/dark, +/area/assembly/robotics) +"qYV" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/surgeryprep) +"qZA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/carpet/tealcarpet, +/area/medical/patient_c) +"qZM" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/emt/cockpit) +"raK" = ( +/obj/spawner/window/low_wall/reinforced/full, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "xenobio8"; + name = "Containment Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"rbc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint2) +"rbh" = ( +/obj/item/radio/intercom{ + dir = 8; + pixel_x = -28; + req_access = list() + }, +/obj/structure/closet/emcloset, +/obj/effect/floor_decal/industrial/outline/red, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay4) +"rbi" = ( +/obj/machinery/mech_recharger, +/obj/machinery/button/remote/blast_door{ + id = "mechbay-inner"; + name = "Mech Bay"; + pixel_x = -27; + pixel_y = -26; + req_access = list(29,47); + req_one_access = list(47) + }, +/turf/simulated/floor/bluegrid, +/area/assembly/chargebay) +"rbx" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/table/wooden_reinforced, +/turf/simulated/floor/wood, +/area/rnd/xenobiology) +"rbL" = ( +/obj/effect/floor_decal/corner/beige{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"rbM" = ( +/obj/machinery/holopad, +/turf/simulated/floor/tiled/white, +/area/medical/medbay4) +"rbQ" = ( +/obj/structure/table/reinforced, +/obj/machinery/cell_charger, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/reception_desk) +"rci" = ( +/turf/simulated/floor/airless, +/area/rnd/test_area) +"rcx" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/medical/resleeving) +"rcN" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_external{ + name = "Isolation Room 2"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/science/xenoarcheology, +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab/containment_two) +"rdw" = ( +/obj/machinery/power/apc/north_mount, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner2{ + dir = 1 + }, +/obj/structure/table/carbon/reinforced, +/obj/item/storage/box/glasses, +/obj/item/duct_tape_roll, +/obj/item/duct_tape_roll, +/turf/simulated/floor/tiled/dark, +/area/assembly/robotics) +"rdA" = ( +/turf/simulated/wall/r_wall/prepainted/medical, +/area/maintenance/fpmaint2) +"reb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/medical/medbay_emt_bay) +"reX" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"rfd" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central1, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"rfk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/highsecurity{ + name = "High-Risk Containment Ward"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/medical/department, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"rfs" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/simulated/floor/tiled, +/area/rnd/storage) +"rfH" = ( +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/obj/structure/table/steel_reinforced, +/obj/item/storage/firstaid/surgery, +/turf/simulated/floor/tiled, +/area/medical/surgery2) +"rfV" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"rfZ" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/recoveryrestroom) +"rig" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/black{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virologyisolation) +"rjB" = ( +/obj/effect/floor_decal/techfloor, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"rjP" = ( +/obj/machinery/door/firedoor, +/obj/spawner/window/low_wall/reinforced/full, +/turf/simulated/floor/plating, +/area/medical/virologyisolation) +"rkd" = ( +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora/lab_atmos) +"rkk" = ( +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/obj/machinery/button/crematorium{ + pixel_x = 26; + pixel_y = 23; + req_access = list(5) + }, +/turf/simulated/floor/tiled/techfloor, +/area/medical/morgue) +"rkN" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/corner/paleblue/border, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"rlT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora/lab_atmos) +"rmq" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 + }, +/obj/structure/closet/hydrant{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"rmr" = ( +/obj/machinery/atmospherics/pipe/tank/carbon_dioxide, +/turf/simulated/floor/plating, +/area/maintenance/medbay/fore) +"rmN" = ( +/obj/landmark/spawnpoint/job/roboticist, +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/assembly/robotics) +"rnp" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/patient_a) +"rnt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 9 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virologyisolation) +"rnw" = ( +/obj/structure/closet/l3closet/virology, +/obj/machinery/fire_alarm/south_mount{ + pixel_y = -24 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 10 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/white, +/area/medical/virologyaccess) +"rpj" = ( +/turf/simulated/wall/prepainted, +/area/maintenance/substation/research) +"rpN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"rqj" = ( +/obj/machinery/power/apc/east_mount, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/ward) +"rre" = ( +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/obj/effect/floor_decal/corner/blue/diagonal, +/turf/simulated/floor/tiled/white, +/area/medical/exam_room/exam_2) +"rrz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/xenobiology/xenoflora_storage) +"rrD" = ( +/obj/machinery/door/firedoor{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/aft) +"rsn" = ( +/obj/machinery/air_alarm{ + frequency = 1441; + pixel_y = 22 + }, +/obj/machinery/cell_charger, +/obj/item/surgical/bioregen, +/obj/structure/table/carbon/reinforced, +/turf/simulated/floor/tiled/old_tile/purple, +/area/assembly/robotics/surgery) +"rsx" = ( +/obj/structure/table/glass, +/obj/item/folder/white_rd, +/obj/item/stamp/rd, +/turf/simulated/floor/tiled, +/area/rnd/rdoffice) +"rsI" = ( +/obj/machinery/door/firedoor/glass{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/medical{ + name = "Medical Break Room"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/medical/department, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/medbreak) +"rsU" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/maintenance/medical{ + name = "Emergency Maintenance Access Use Only"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/medical/psychiatry, +/turf/simulated/floor/plating, +/area/medical/psych/psych_2) +"rtG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/rnd/breakroom) +"rug" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/ward) +"rup" = ( +/obj/machinery/door/firedoor, +/obj/spawner/window/low_wall/reinforced/full, +/turf/simulated/floor/plating, +/area/victory/station/stairs_three) +"rut" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/glass/beaker/large, +/obj/item/reagent_containers/glass/beaker/large, +/obj/item/reagent_containers/glass/beaker/large, +/obj/item/reagent_containers/dropper, +/obj/item/reagent_containers/dropper, +/obj/item/hand_labeler, +/obj/item/storage/box/touch_bottles, +/turf/simulated/floor/tiled/white, +/area/medical/chemistry) +"rvs" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/mauve/border, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"rvw" = ( +/obj/structure/window/reinforced, +/obj/structure/flora/pottedplant{ + icon_state = "plant-10" + }, +/obj/machinery/air_alarm{ + frequency = 1441; + pixel_y = 22 + }, +/turf/simulated/floor/tiled, +/area/holodeck_control) +"rwO" = ( +/obj/effect/floor_decal/techfloor{ + dir = 9 + }, +/obj/structure/table/steel, +/obj/item/storage/bag/circuits/basic, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/workshop) +"rxi" = ( +/obj/machinery/door/firedoor, +/obj/spawner/window/low_wall/reinforced/full, +/turf/simulated/floor/plating, +/area/shuttle/emt/general) +"rxP" = ( +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/machinery/door/airlock/maintenance/medical{ + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/medical/department, +/turf/simulated/floor/plating, +/area/maintenance/medbay/aft) +"rxV" = ( +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/substation/medical_science) +"ryc" = ( +/obj/machinery/computer/HolodeckControl{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/holodeck_control) +"ryg" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood, +/area/rnd/breakroom) +"ryl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint2) +"ryO" = ( +/obj/machinery/washing_machine, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/medical_restroom) +"ryR" = ( +/obj/machinery/camera/network/civilian, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/starboard) +"rzi" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 6 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = -31 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"rzv" = ( +/obj/machinery/light_switch{ + pixel_x = 25 + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled, +/area/medical/medbay_emt_bay) +"rAH" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/machinery/vending/phoronresearch, +/turf/simulated/floor/tiled, +/area/rnd/test_area) +"rAZ" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/camera/network/medbay{ + dir = 8 + }, +/obj/machinery/holopad, +/turf/simulated/floor/tiled/white, +/area/medical/surgery) +"rBc" = ( +/obj/effect/floor_decal/borderfloorwhite/corner, +/obj/effect/floor_decal/corner/beige/bordercorner, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"rDO" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock{ + name = "Restroom" + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay4) +"rEu" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 10 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 5 + }, +/obj/machinery/holopad, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"rEw" = ( +/obj/structure/closet/firecloset, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"rFW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/holopad, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"rGd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab) +"rGq" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/surgeryprep) +"rHQ" = ( +/obj/machinery/computer/centrifuge, +/turf/simulated/floor/tiled, +/area/medical/virology) +"rHV" = ( +/obj/machinery/vending/fitness, +/turf/simulated/floor/wood, +/area/crew_quarters/medbreak) +"rIa" = ( +/obj/machinery/door/firedoor/glass, +/obj/map_helper/airlock/door/ext_door, +/obj/machinery/access_button/airlock_exterior{ + dir = 1; + frequency = 1380; + master_tag = "emt_shuttle_dock"; + pixel_x = 24 + }, +/obj/machinery/door/airlock/glass_external{ + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/external_airlock, +/turf/simulated/floor/plating, +/area/medical/patient_wing) +"rIl" = ( +/obj/machinery/camera/network/medbay, +/obj/structure/closet/hydrant{ + pixel_y = 32 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/patient_wing) +"rIr" = ( +/obj/structure/sign/directions/evac, +/turf/simulated/wall/prepainted, +/area/victory/station/stairs_three) +"rIN" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/rnd/research/testingrange) +"rJd" = ( +/turf/simulated/floor/tiled/white, +/area/medical/medbay3) +"rJB" = ( +/obj/structure/table/standard, +/obj/item/anodevice, +/obj/item/anodevice{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/tool/crowbar, +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab) +"rJC" = ( +/obj/structure/bed/chair, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/emt/general) +"rKz" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/machinery/meter, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora/lab_atmos) +"rKI" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{ + dir = 1 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/xenobiology/xenoflora_storage) +"rKV" = ( +/obj/machinery/sleeper{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"rLn" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay3) +"rLu" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + name = "Medbay Lobby" + }, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "medbayquar"; + name = "Medbay Emergency Lockdown Shutters"; + opacity = 0 + }, +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/medical/reception) +"rLI" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/obj/item/radio/intercom{ + dir = 1; + pixel_y = 24; + req_access = list() + }, +/obj/structure/table/glass, +/obj/item/storage/box/botanydisk, +/obj/item/reagent_containers/glass/beaker/large, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"rLU" = ( +/obj/machinery/door/firedoor, +/obj/spawner/window/low_wall/reinforced/full, +/turf/simulated/floor/plating, +/area/medical/psych_ward) +"rMs" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint2) +"rMu" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/camera/network/research{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/anomaly_lab/containment_one) +"rME" = ( +/obj/machinery/door/firedoor/glass, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay3) +"rMY" = ( +/obj/machinery/computer/security/mining{ + dir = 4; + name = "xenobiology camera monitor"; + network = list("Xenobiology") + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"rNd" = ( +/obj/effect/floor_decal/techfloor, +/obj/machinery/computer/ship/navigation/telescreen{ + pixel_y = -37 + }, +/obj/machinery/door/firedoor/glass{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/starboard) +"rNf" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/fire_alarm/south_mount{ + pixel_y = -24 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/blue/border, +/turf/simulated/floor/tiled/white, +/area/medical/ward) +"rNh" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/medical{ + id_tag = "psychewaiting"; + name = "Psyche Lobby Room"; + req_one_access = null + }, +/turf/simulated/floor/tiled, +/area/medical/medbay4) +"rNS" = ( +/obj/machinery/door/firedoor/glass{ + dir = 4 + }, +/obj/spawner/window/low_wall/reinforced/full, +/turf/simulated/floor/plating, +/area/medical/virologyisolation) +"rOo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/purple{ + dir = 4 + }, +/turf/simulated/wall/r_wall/prepainted/science, +/area/rnd/xenobiology) +"rOJ" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/machinery/meter, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora/lab_atmos) +"rOL" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"rOO" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/substation/research) +"rPq" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/test_area) +"rPC" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"rQf" = ( +/turf/simulated/wall/prepainted/science, +/area/rnd/research_foyer) +"rQF" = ( +/obj/structure/closet/crate/biohazard, +/turf/simulated/floor/tiled, +/area/medical/surgery2) +"rRb" = ( +/obj/structure/catwalk, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/medbay/fore) +"rRE" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/emt/cockpit) +"rRJ" = ( +/obj/machinery/holopad, +/turf/simulated/floor/tiled, +/area/medical/reception) +"rRZ" = ( +/obj/machinery/door/firedoor/glass, +/obj/spawner/window/low_wall/reinforced/full, +/turf/simulated/floor/plating, +/area/medical/medbay_primary_storage) +"rST" = ( +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/spawner/window/low_wall/reinforced/full, +/turf/simulated/floor/plating, +/area/medical/chemistry) +"rUk" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central1, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"rUx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/medical/ward) +"rUX" = ( +/obj/machinery/light/small, +/obj/landmark{ + name = "blobstart" + }, +/turf/simulated/floor/plating, +/area/maintenance/medbay/aft) +"rVa" = ( +/obj/map_helper/airlock/atmos/chamber_pump, +/obj/machinery/atmospherics/component/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1380 + }, +/turf/simulated/floor/plating, +/area/medical/patient_wing) +"rVo" = ( +/obj/machinery/door/airlock/glass, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"rVB" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/ward) +"rWa" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"rWG" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor/hole{ + dir = 1 + }, +/obj/machinery/door/firedoor/glass{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/starboard) +"rWV" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/holodeck_control) +"rXQ" = ( +/obj/item/radio/intercom{ + dir = 4; + pixel_x = 22 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"rYp" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/voidcraft/vertical{ + name = "Engine Bay" + }, +/turf/simulated/floor, +/area/shuttle/emt/general) +"rYU" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 6 + }, +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/grass, +/area/medical/psych_ward) +"rZm" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/fire_alarm/south_mount{ + pixel_y = -24 + }, +/obj/machinery/light, +/obj/item/defib_kit/loaded, +/turf/simulated/floor/tiled, +/area/medical/surgery) +"rZR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/light_switch{ + pixel_x = -26; + pixel_y = -4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/patient_d) +"sag" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"scE" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/substation/medical_science) +"scT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"sdA" = ( +/obj/structure/table/reinforced, +/obj/machinery/cell_charger, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 10 + }, +/obj/machinery/newscaster{ + pixel_y = -31 + }, +/turf/simulated/floor/tiled, +/area/rnd/reception_desk) +"seE" = ( +/obj/item/bedsheet/medical, +/obj/structure/bed/padded, +/turf/simulated/floor/carpet/tealcarpet, +/area/medical/patient_a) +"sfy" = ( +/obj/structure/table/steel_reinforced, +/obj/item/storage/box/masks{ + pixel_x = -7 + }, +/obj/item/storage/box/gloves{ + pixel_x = 6 + }, +/obj/item/storage/box/syringes{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/machinery/light{ + dir = 8; + light_range = 12 + }, +/obj/item/radio/intercom{ + dir = 8; + pixel_x = -28; + req_access = list() + }, +/obj/effect/floor_decal/corner/blue/diagonal, +/turf/simulated/floor/tiled/white, +/area/medical/exam_room/exam_2) +"sgF" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/bordercorner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/junction/yjunction{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/medical/sleeper) +"shA" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab) +"sig" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/obj/machinery/camera/network/research, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora/lab_atmos) +"sjc" = ( +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/patient_wing) +"sje" = ( +/obj/structure/table/glass, +/obj/machinery/reagentgrinder, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"sjz" = ( +/turf/simulated/wall/r_wall/prepainted/science, +/area/rnd/xenobiology/xenoflora) +"sjN" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/carpet/tealcarpet, +/area/medical/patient_d) +"skH" = ( +/obj/machinery/fire_alarm/south_mount{ + pixel_y = -24 + }, +/obj/structure/bed/chair/wheelchair, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"skW" = ( +/obj/structure/curtain/open/shower/medical, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/blue/border, +/obj/machinery/door/firedoor/glass{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/surgeryprep) +"slc" = ( +/obj/structure/table/standard, +/obj/item/multitool, +/obj/machinery/camera/network/research{ + dir = 4; + network = list("Xenobiology") + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"slB" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/medical{ + name = "Patient Ward C"; + req_one_access = null + }, +/turf/simulated/floor/tiled/white, +/area/medical/patient_c) +"slM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/steeldecal/steel_decals_central6, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/aft) +"smf" = ( +/obj/machinery/fire_alarm/west_mount{ + pixel_x = -26 + }, +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab) +"snu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/machinery/door/airlock/glass/medical{ + name = "Psychiatric Play-Area Access"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/medical/department, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"snE" = ( +/obj/structure/table/glass, +/obj/item/storage/box/donkpockets, +/turf/simulated/floor/wood, +/area/rnd/breakroom) +"snO" = ( +/obj/effect/floor_decal/techfloor{ + dir = 9 + }, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"snQ" = ( +/obj/structure/table/standard, +/obj/item/paicard, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/holodeck_control) +"soK" = ( +/obj/landmark/spawnpoint/latejoin/station/gateway, +/obj/effect/floor_decal/techfloor/orange{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/teleporter/departing) +"soU" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/purple, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"sps" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/powered/pump, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/rnd/test_area) +"spv" = ( +/obj/machinery/atmospherics/component/unary/freezer{ + icon_state = "freezer_1"; + power_setting = 20; + set_temperature = 73; + use_power = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"spw" = ( +/obj/machinery/atmospherics/component/unary/freezer{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab) +"spA" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/obj/effect/floor_decal/corner/green{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"sqk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/turf/simulated/wall/r_wall/prepainted/medical, +/area/medical/virologyaccess) +"sqm" = ( +/obj/structure/closet/secure_closet/medical3, +/obj/item/storage/belt/medical, +/obj/item/soap/nanotrasen, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 10 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/medical/medbay_primary_storage) +"srS" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/multi_tile/glass{ + id_tag = "PsycheFoyer"; + name = "Psychiatric Processing"; + req_access = list() + }, +/obj/map_helper/access_helper/airlock/station/medical/department, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"sue" = ( +/obj/effect/floor_decal/corner/green{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"sun" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/purple{ + dir = 6 + }, +/turf/simulated/wall/r_wall/prepainted/science, +/area/rnd/xenobiology) +"suA" = ( +/obj/machinery/holopad, +/obj/effect/floor_decal/corner/green{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"suM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "psyche-doc-access"; + name = "Access Switch"; + pixel_x = -26; + pixel_y = 24; + req_one_access = list(5) + }, +/obj/effect/floor_decal/corner/beige{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"svd" = ( +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/turf/simulated/floor/plating, +/area/rnd/xenobiology/xenoflora/lab_atmos) +"svB" = ( +/obj/machinery/holopad, +/turf/simulated/floor/tiled, +/area/rnd/test_area) +"svR" = ( +/turf/simulated/wall/prepainted/science, +/area/rnd/breakroom) +"svV" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black, +/turf/simulated/floor/tiled, +/area/rnd/test_area) +"swx" = ( +/obj/structure/table/glass, +/obj/item/storage/box/beakers, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/medical/virology) +"swE" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/medical/ward) +"sxo" = ( +/obj/structure/filingcabinet/chestdrawer{ + name = "Medical Forms" + }, +/turf/simulated/floor/wood, +/area/medical/psych/psych_2) +"sxt" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/medical{ + name = "Psychiatric Ward"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/medical/department, +/turf/simulated/floor/tiled, +/area/medical/psych_ward) +"sxx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"syi" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner/beige/bordercorner{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/beige/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay4) +"syC" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/white, +/area/medical/recoveryrestroom) +"szf" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"szg" = ( +/obj/machinery/atmospherics/portables_connector, +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab) +"szC" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"sAb" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay4) +"sAZ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance/engi{ + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/substation/medical_science) +"sBd" = ( +/obj/structure/sign/deck/third, +/turf/simulated/wall/prepainted, +/area/victory/station/stairs_three) +"sBg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/xenobiology/xenoflora_storage) +"sCe" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/patient_wing) +"sCk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/holopad, +/turf/simulated/floor/tiled, +/area/medical/psych_ward) +"sCm" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"sCy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"sCJ" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass/medical{ + name = "Paramedic Storage"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/medical/department, +/turf/simulated/floor/tiled/white, +/area/medical/medbay_emt_bay) +"sCN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/assembly/robotics) +"sDs" = ( +/obj/structure/shuttle/engine/heater{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/turf/simulated/shuttle/wall/voidcraft/hard_corner, +/area/shuttle/emt/general) +"sDz" = ( +/turf/simulated/floor/tiled/techfloor, +/area/medical/ward) +"sDO" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/rnd/breakroom) +"sDS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab) +"sFi" = ( +/obj/machinery/atmospherics/valve{ + name = "EMERGENCY VENT TO SPACE" + }, +/turf/simulated/floor/tiled, +/area/rnd/test_area) +"sFK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/fire_alarm/east_mount, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"sHa" = ( +/obj/machinery/fire_alarm/south_mount{ + pixel_y = -24 + }, +/obj/structure/reagent_dispensers/watertank, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 10 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virologyisolation) +"sHs" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/medical/sleeper) +"sHy" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/medical/surgeryprep) +"sHS" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 4; + name = "Medbay Surgery" + }, +/obj/map_helper/access_helper/airlock/station/medical/department, +/turf/simulated/floor/tiled, +/area/medical/sleeper) +"sIj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"sIr" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/machinery/light, +/obj/machinery/power/apc/south_mount, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/blue/border, +/turf/simulated/floor/tiled/white, +/area/shuttle/emt/general) +"sIX" = ( +/obj/machinery/vending/giftvendor, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"sJj" = ( +/obj/structure/table/standard, +/obj/item/storage/box/monkeycubes{ + starts_with = list(/obj/item/reagent_containers/food/snacks/monkeycube/wrapped=10) + }, +/obj/item/storage/box/monkeycubes{ + starts_with = list(/obj/item/reagent_containers/food/snacks/monkeycube/wrapped=10) + }, +/obj/item/storage/box/monkeycubes{ + starts_with = list(/obj/item/reagent_containers/food/snacks/monkeycube/wrapped=10) + }, +/obj/item/storage/box/monkeycubes{ + starts_with = list(/obj/item/reagent_containers/food/snacks/monkeycube/wrapped=10) + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"sJr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"sLb" = ( +/obj/machinery/fire_alarm/south_mount{ + pixel_y = -24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/medbreak) +"sLp" = ( +/obj/effect/floor_decal/corner/green/full{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology/xenoflora) +"sLT" = ( +/turf/simulated/floor/tiled, +/area/rnd/test_area) +"sME" = ( +/obj/machinery/door/firedoor/glass, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/machinery/door/airlock/multi_tile/glass{ + id_tag = "MedbayFoyer"; + name = "Treatment Centre"; + req_access = list() + }, +/obj/map_helper/access_helper/airlock/station/medical/department, +/turf/simulated/floor/tiled/white, +/area/medical/reception) +"sNF" = ( +/obj/item/storage/excavation, +/obj/item/pickaxe, +/obj/item/tool/wrench, +/obj/item/measuring_tape, +/obj/item/stack/flag/yellow, +/obj/structure/table/steel, +/obj/machinery/atmospherics/component/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab) +"sNN" = ( +/obj/machinery/shower{ + pixel_y = 16 + }, +/obj/structure/curtain/open/shower, +/turf/simulated/floor/tiled/techfloor/grid, +/area/medical/patient_c) +"sOy" = ( +/obj/structure/table/steel_reinforced, +/obj/effect/floor_decal/corner/blue/diagonal, +/turf/simulated/floor/tiled/white, +/area/medical/exam_room/exam_1) +"sPn" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/blue/border, +/turf/simulated/floor/tiled/white, +/area/shuttle/emt/general) +"sPx" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/bordercorner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay3) +"sPV" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging, +/obj/machinery/sparker{ + id = "burn_chamber"; + pixel_x = 26 + }, +/turf/simulated/floor/reinforced/airless, +/area/rnd/test_area) +"sQe" = ( +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/turf/simulated/floor/plating, +/area/rnd/xenobiology) +"sQh" = ( +/obj/machinery/power/apc/south_mount, +/obj/effect/floor_decal/techfloor, +/obj/structure/cable/green, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/workshop) +"sQJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/turf/simulated/shuttle/wall/voidcraft/blue, +/area/shuttle/emt/general) +"sTi" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/item/radio/intercom{ + dir = 8; + pixel_x = -28; + req_access = list() + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/medical) +"sTG" = ( +/obj/structure/lattice, +/obj/machinery/camera/network/outside{ + dir = 5 + }, +/turf/space, +/area/space) +"sTI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 10 + }, +/obj/machinery/air_alarm{ + frequency = 1441; + pixel_y = 22 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/xenobiology/xenoflora_storage) +"sUg" = ( +/obj/structure/sign/greencross, +/turf/simulated/wall/prepainted/medical, +/area/medical/chemistry) +"sUx" = ( +/obj/machinery/washing_machine, +/turf/simulated/floor/tiled, +/area/medical/resleeving) +"sUJ" = ( +/obj/machinery/camera/network/medbay{ + dir = 8 + }, +/obj/structure/closet/secure_closet/psych, +/turf/simulated/floor/wood, +/area/medical/psych/psych_2) +"sVt" = ( +/obj/machinery/smartfridge/drying_rack, +/obj/machinery/camera/network/research{ + dir = 4; + network = list("Xenobiology") + }, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"sVF" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/research/testingrange) +"sWE" = ( +/obj/structure/catwalk, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/medbay/aft) +"sWT" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/dark, +/area/assembly/robotics) +"sXx" = ( +/obj/machinery/door/firedoor/glass{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/door/blast/regular{ + dir = 4; + id = "mechbay-inner"; + name = "Mech Bay" + }, +/turf/simulated/floor/tiled/techfloor, +/area/assembly/robotics) +"sXA" = ( +/obj/machinery/vending/cola, +/obj/effect/floor_decal/corner/beige{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"sYi" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/diagonal, +/turf/simulated/floor/tiled/white, +/area/medical/exam_room/exam_2) +"sYQ" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/patient_wing) +"sZy" = ( +/obj/effect/floor_decal/industrial/outline/red, +/obj/structure/closet/l3closet/scientist/double, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"taD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/medical/medbay_emt_bay) +"taE" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"tbn" = ( +/obj/machinery/door/firedoor/glass{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/airlock/research{ + id_tag = "researchdoor"; + name = "Robotics Morgue" + }, +/obj/map_helper/access_helper/airlock/station/science/robotics, +/turf/simulated/floor/tiled/techfloor, +/area/medical/morgue) +"tbM" = ( +/obj/machinery/door/firedoor/glass{ + dir = 4 + }, +/obj/spawner/window/low_wall/reinforced/full, +/turf/simulated/floor/plating, +/area/victory/station/stairs_three) +"tcG" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/landmark/spawnpoint/job/scientist, +/turf/simulated/floor/carpet/purcarpet, +/area/rnd/breakroom) +"tdj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/washing_machine, +/obj/machinery/computer/cryopod{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/medical/psych_ward) +"tdK" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/medical/reception) +"tem" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/high_volume{ + dir = 4; + id_tag = "deck3_airlock" + }, +/obj/map_helper/airlock/atmos/chamber_pump, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + frequency = 1380; + id_tag = "deck3_airlock"; + pixel_y = 32 + }, +/turf/simulated/floor/tiled{ + icon_state = "techmaint" + }, +/area/victory/station/stairs_three) +"teC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"teE" = ( +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/machinery/power/apc/west_mount, +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"tfa" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 5 + }, +/obj/item/reagent_containers/glass/bucket, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"tfh" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/medical/patient_wing) +"tfP" = ( +/obj/machinery/button/remote/airlock{ + desc = "A remote control switch for the medbay recovery room door."; + dir = 8; + id = "mentaldoor"; + name = "Door Switch"; + pixel_x = 28; + pixel_y = 9 + }, +/turf/simulated/floor/wood, +/area/medical/psych/psych_2) +"tgD" = ( +/turf/simulated/wall/prepainted/medical, +/area/medical/patient_a) +"tgM" = ( +/obj/structure/table/rack, +/obj/item/clothing/mask/gas, +/obj/item/clothing/suit/storage/hooded/wintercoat/science, +/obj/item/tank/emergency/oxygen/engi, +/obj/item/clothing/mask/gas, +/obj/item/clothing/suit/storage/hooded/wintercoat/science, +/obj/item/tank/emergency/oxygen/engi, +/obj/item/radio/intercom{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab) +"thc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/purple, +/turf/simulated/wall/r_wall/prepainted/science, +/area/rnd/xenobiology) +"thh" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/mauve/border, +/obj/structure/closet/crate/hydroponics, +/obj/item/reagent_containers/spray/plantbgone, +/obj/item/reagent_containers/spray/plantbgone, +/obj/item/reagent_containers/spray/plantbgone, +/obj/item/reagent_containers/spray/plantbgone, +/obj/item/reagent_containers/spray/plantbgone, +/obj/item/reagent_containers/spray/plantbgone, +/obj/item/reagent_containers/spray/plantbgone, +/obj/item/reagent_containers/spray/plantbgone, +/obj/item/reagent_containers/spray/plantbgone, +/obj/item/reagent_containers/spray/plantbgone, +/obj/item/reagent_containers/glass/bucket, +/obj/item/reagent_containers/glass/bucket, +/obj/item/reagent_containers/glass/bucket, +/obj/item/clothing/gloves/botanic_leather, +/obj/item/clothing/gloves/botanic_leather, +/obj/item/clothing/gloves/botanic_leather, +/obj/item/clothing/gloves/botanic_leather, +/obj/item/clothing/gloves/botanic_leather, +/obj/item/plant_analyzer, +/obj/item/plant_analyzer, +/obj/item/plant_analyzer, +/obj/item/tool/wirecutters/clippers/trimmers, +/obj/item/tool/wirecutters/clippers/trimmers, +/obj/item/material/knife/machete/hatchet, +/obj/item/material/knife/machete/hatchet, +/obj/item/material/minihoe/plasteel, +/obj/item/material/minihoe/plasteel, +/obj/item/material/minihoe/plasteel, +/obj/item/shovel/spade, +/obj/item/shovel/spade, +/obj/item/shovel/spade, +/obj/item/shovel/spade, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"thH" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay4) +"thZ" = ( +/obj/machinery/air_alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/medbay/fore) +"tij" = ( +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/turf/simulated/floor/plating, +/area/rnd/xenobiology/xenoflora) +"tiv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/techfloor{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/aft) +"tjU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab) +"tmk" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/ward) +"tmA" = ( +/obj/structure/toilet{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/patient_a) +"tmB" = ( +/obj/effect/floor_decal/techfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"tmX" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/medical/reception) +"toD" = ( +/turf/simulated/wall/prepainted/medical, +/area/medical/psych_ward) +"toX" = ( +/obj/machinery/vending/snack, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"tpj" = ( +/obj/machinery/atmospherics/pipe/tank/air{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint2) +"tpt" = ( +/obj/machinery/atmospherics/component/binary/pump{ + dir = 4; + name = "Port to Isolation" + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora/lab_atmos) +"tpX" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 5 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay4) +"tqA" = ( +/obj/structure/sign/directions/cryo{ + dir = 4; + pixel_y = -24 + }, +/obj/structure/sign/directions/cargo{ + dir = 4; + pixel_y = -30 + }, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/machinery/door/airlock/glass, +/obj/structure/sign/directions/evac{ + dir = 4; + pixel_y = -37 + }, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"tqI" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/blue/border, +/turf/simulated/floor/tiled/white, +/area/medical/medbay3) +"tqN" = ( +/obj/machinery/door/firedoor/glass, +/obj/spawner/window/low_wall/reinforced/full, +/turf/simulated/floor/plating, +/area/holodeck_control) +"tqY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"trK" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/cmo) +"trY" = ( +/turf/simulated/wall/prepainted, +/area/maintenance/medbay/aft) +"ttn" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled/white, +/area/rnd/research_restroom) +"ttB" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/structure/wall_frame/prepainted, +/obj/structure/window/reinforced/polarized/full{ + id = "psyche" + }, +/turf/simulated/floor/plating, +/area/medical/psych/psych_1) +"ttS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/outline/red, +/turf/simulated/floor/tiled/dark, +/area/assembly/robotics) +"tut" = ( +/obj/machinery/air_alarm/monitor/isolation{ + alarm_id = "isolation_two"; + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/anomaly_lab/containment_two) +"tuz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab) +"tuF" = ( +/turf/simulated/floor/tiled/white, +/area/crew_quarters/medical_restroom) +"tvV" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/obj/machinery/station_map{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"twF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/red, +/obj/machinery/door/airlock/maintenance/medical{ + name = "Virology Maintenance Access"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/medical/virology, +/turf/simulated/floor/plating, +/area/medical/virology) +"twM" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/research) +"twY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/medical/morgue) +"txB" = ( +/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{ + scrub_id = "rnd_can_store" + }, +/turf/simulated/floor/tiled, +/area/rnd/storage) +"tyV" = ( +/obj/machinery/camera/network/outside{ + dir = 1 + }, +/obj/machinery/shield_diffuser, +/turf/simulated/floor/airless, +/area/space) +"tzi" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/medical_science) +"tAf" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 10 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 5 + }, +/obj/landmark/spawnpoint/job/medical_doctor, +/obj/machinery/holopad, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"tAg" = ( +/turf/simulated/wall/prepainted, +/area/teleporter/departing) +"tAo" = ( +/obj/machinery/recharger/wallcharger{ + pixel_x = -22 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 8 + }, +/obj/machinery/button/remote/blast_door{ + id = "xenobio3"; + name = "Containment Blast Doors"; + req_access = list(55); + pixel_x = -25; + pixel_y = -5 + }, +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "xenobiovs2"; + name = "Containment Blast Doors"; + pixel_x = -38; + req_access = list(55) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/xenobiology) +"tAS" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay4) +"tAT" = ( +/obj/machinery/artifact_scanpad, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rnd/anomaly_lab) +"tBb" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/holodeck_control) +"tBo" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 6 + }, +/obj/machinery/light_switch{ + pixel_x = 25 + }, +/obj/structure/closet/l3closet/scientist/double, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"tCz" = ( +/obj/structure/bed/chair/wheelchair, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/patient_wing) +"tCI" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/camera/network/medbay{ + dir = 1; + network = list("Psychiatric") + }, +/turf/simulated/floor/tiled, +/area/medical/psych_ward) +"tDo" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/blue/border, +/turf/simulated/floor/tiled/white, +/area/medical/ward) +"tEk" = ( +/obj/machinery/power/breakerbox/activated{ + RCon_tag = "RESEARCH" + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/research) +"tEs" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/aft) +"tEP" = ( +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "medbayquar"; + name = "Medbay Emergency Lockdown Shutters"; + opacity = 0 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled, +/area/medical/medbay3) +"tFy" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/machinery/atmospherics/portables_connector, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora/lab_atmos) +"tFB" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "medbayquar"; + name = "Medbay Emergency Lockdown Shutters"; + opacity = 0 + }, +/obj/structure/window/reinforced/polarized/full{ + id = "cmo_office" + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/structure/wall_frame/prepainted, +/turf/simulated/floor/plating, +/area/crew_quarters/heads/cmo) +"tFQ" = ( +/obj/structure/morgue{ + dir = 2 + }, +/turf/simulated/floor/tiled/techfloor, +/area/medical/morgue) +"tFT" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/patient_wing) +"tGx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virologyisolation) +"tGK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "xenobio3"; + name = "Containment Blast Doors"; + opacity = 0 + }, +/obj/spawner/window/low_wall/reinforced/full, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"tHr" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/white, +/area/medical/ward) +"tHW" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay4) +"tIc" = ( +/obj/machinery/papershredder, +/obj/effect/floor_decal/corner/blue/full, +/obj/machinery/fire_alarm/south_mount{ + pixel_y = -24 + }, +/turf/simulated/floor/tiled, +/area/medical/reception) +"tIG" = ( +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay4) +"tJE" = ( +/obj/machinery/fire_alarm/north_mount, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor/hole{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/starboard) +"tKb" = ( +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"tKG" = ( +/turf/simulated/floor/airless, +/area/space) +"tKR" = ( +/obj/structure/bed/chair, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/structure/panic_button{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/emt/general) +"tLd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/rnd/research/testingrange) +"tLz" = ( +/obj/machinery/bomb_tester, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/rnd/test_area) +"tLU" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/mauve/border, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/rnd/research_foyer) +"tMu" = ( +/obj/machinery/camera/network/civilian, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/item/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 26 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/starboard) +"tMG" = ( +/obj/machinery/light/small, +/obj/structure/toilet{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"tNu" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black, +/obj/machinery/door/firedoor, +/obj/spawner/window/low_wall/borosillicate/reinforced/full, +/turf/simulated/floor/reinforced/airless, +/area/rnd/test_area) +"tNZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/machinery/door/airlock/glass, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"tOc" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/cmo) +"tOe" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/reception) +"tOP" = ( +/obj/machinery/vending/nifsoft_shop{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/teleporter/departing) +"tOS" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay4) +"tPb" = ( +/obj/machinery/fire_alarm/south_mount{ + pixel_y = -24 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"tPg" = ( +/obj/structure/toilet{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"tPG" = ( +/obj/structure/table/steel_reinforced, +/obj/item/reagent_containers/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + name = "Surgery Cleaner"; + pixel_x = 2; + pixel_y = 2 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled, +/area/medical/surgery) +"tPK" = ( +/obj/structure/sign/department/anomaly, +/turf/simulated/wall/r_wall/prepainted/science, +/area/rnd/anomaly_lab) +"tPY" = ( +/obj/structure/table/standard, +/obj/item/storage/bag/xenobio{ + pixel_x = -7; + pixel_y = 5 + }, +/obj/item/storage/bag/xenobio{ + pixel_x = 7; + pixel_y = 5 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"tQg" = ( +/obj/structure/table/woodentable, +/obj/item/reagent_containers/food/drinks/metaglass, +/turf/simulated/floor/carpet/blue, +/area/crew_quarters/medbreak) +"tQp" = ( +/turf/simulated/wall/prepainted/medical, +/area/medical/ward) +"tQL" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/cable/green, +/obj/machinery/power/apc/west_mount{ + cell_type = /obj/item/cell/super + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/medical) +"tRv" = ( +/obj/machinery/light_switch{ + pixel_x = -9; + pixel_y = 30 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/assembly/robotics) +"tRy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/window/westright{ + dir = 1; + name = "Virology Isolation Room One"; + req_access = list(39) + }, +/obj/machinery/door/window/westright{ + dir = 2; + name = "Virology Isolation Room One"; + req_access = list(39) + }, +/turf/simulated/floor/tiled/white, +/area/medical/virologyisolation) +"tSj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"tSo" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/grass, +/area/medical/psych_ward) +"tTu" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 10 + }, +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/grass, +/area/medical/psych_ward) +"tUb" = ( +/turf/simulated/wall/prepainted, +/area/maintenance/fpmaint2) +"tUr" = ( +/turf/simulated/floor/tiled/dark, +/area/assembly/robotics/surgery) +"tVI" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/ward) +"tVU" = ( +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightorange/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay3) +"tWJ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass, +/turf/simulated/floor/tiled, +/area/hallway/primary/starboard) +"tWU" = ( +/obj/structure/sign/warning/caution, +/turf/simulated/wall/r_wall/prepainted/science, +/area/rnd/storage) +"tWY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/maintenance/medbay/fore) +"tXS" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/medical/sleeper) +"tYf" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/corner/paleblue/border, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"tYH" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint2) +"tZm" = ( +/turf/simulated/wall/prepainted/medical, +/area/medical/medbay4) +"tZz" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/blue/border, +/turf/simulated/floor/tiled/white, +/area/medical/patient_wing) +"ucf" = ( +/obj/machinery/disease2/incubator, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/green/border, +/turf/simulated/floor/tiled, +/area/medical/virology) +"uck" = ( +/obj/machinery/atmospherics/component/unary/heat_exchanger{ + dir = 8 + }, +/obj/structure/window/phoronreinforced{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/test_area) +"ucO" = ( +/obj/machinery/portable_atmospherics/canister/phoron, +/obj/machinery/light/small, +/turf/simulated/floor/tiled, +/area/rnd/storage) +"udc" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay4) +"udr" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"ufe" = ( +/obj/structure/table/steel_reinforced, +/obj/item/storage/box/masks, +/obj/item/storage/box/gloves{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/box/gloves{ + pixel_x = 6 + }, +/obj/item/storage/box/masks{ + pixel_x = -7 + }, +/obj/item/storage/box/masks{ + pixel_x = -7 + }, +/obj/item/storage/box/gloves{ + pixel_x = 6 + }, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/medical/medbay_primary_storage) +"ufm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 6 + }, +/obj/machinery/requests_console/preset/research{ + pixel_x = 32 + }, +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"ufn" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/spray/cleaner, +/obj/item/storage/fancy/vials, +/obj/structure/reagent_dispensers/virusfood{ + pixel_x = 32 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/medical/virology) +"uhe" = ( +/turf/simulated/wall/r_wall/prepainted/medical, +/area/medical/virologyaccess) +"uht" = ( +/obj/structure/table/steel_reinforced, +/obj/effect/floor_decal/corner/blue/diagonal, +/turf/simulated/floor/tiled/white, +/area/medical/exam_room/exam_2) +"uhJ" = ( +/obj/machinery/access_button{ + frequency = 1380; + master_tag = "deck3_airlock"; + name = "exterior access button"; + pixel_x = 32; + pixel_y = 23 + }, +/turf/space, +/area/space) +"uiz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood, +/area/crew_quarters/medbreak) +"uje" = ( +/obj/machinery/power/smes/buildable{ + charge = 15000; + cur_coils = 3 + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor, +/area/shuttle/emt/general) +"uji" = ( +/obj/effect/floor_decal/corner/green{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"ujt" = ( +/obj/structure/table/steel_reinforced, +/obj/item/roller, +/obj/item/roller{ + pixel_y = 8 + }, +/obj/item/roller{ + pixel_y = 16 + }, +/obj/structure/cable/green, +/obj/machinery/power/apc/south_mount, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/medical/medbay_primary_storage) +"ujK" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"ukt" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/blue/border, +/turf/simulated/floor/tiled/white, +/area/medical/medbay3) +"ukC" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/machinery/button/remote/airlock{ + desc = "A remote control switch for the medbay emergency access door."; + id = "MedbayEmergency"; + name = "Door Switch"; + pixel_x = -24; + pixel_y = 5 + }, +/turf/simulated/floor/tiled/white, +/area/medical/surgeryprep) +"ukW" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/techfloor/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"ukZ" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/blue/border, +/obj/machinery/air_alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/white, +/area/medical/patient_wing) +"ulP" = ( +/obj/machinery/keycard_auth{ + pixel_x = 28; + pixel_y = -22 + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/rnd/rdoffice) +"umy" = ( +/obj/machinery/door/firedoor/glass{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/medical{ + name = "Medical Storage"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/medical/department, +/turf/simulated/floor/tiled, +/area/medical/medbay_primary_storage) +"unq" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab) +"unZ" = ( +/obj/structure/table/standard, +/obj/item/soap/nanotrasen, +/obj/structure/cable/green, +/obj/machinery/power/apc/south_mount, +/turf/simulated/floor/tiled, +/area/holodeck_control) +"uon" = ( +/obj/structure/closet/crate, +/obj/random/maintenance, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/medbay/aft) +"uor" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/component/unary/vent_pump/on, +/obj/machinery/air_alarm{ + frequency = 1441; + pixel_y = 22 + }, +/turf/simulated/floor/tiled, +/area/medical/virologyaccess) +"uow" = ( +/turf/simulated/wall/r_wall/prepainted/science, +/area/rnd/storage) +"upp" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/xenoflora/lab_atmos) +"upQ" = ( +/obj/machinery/light_switch{ + pixel_x = 25 + }, +/turf/simulated/floor/tiled, +/area/medical/morgue) +"uqK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/turf/simulated/floor/tiled/dark, +/area/rnd/research/testingrange) +"urd" = ( +/obj/machinery/door/firedoor/glass{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"uri" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/table/glass, +/obj/machinery/computer/skills{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/cmo) +"urC" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/ears/earmuffs, +/obj/item/clothing/glasses/goggles, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/light_switch{ + pixel_x = -9; + pixel_y = 30 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/research/testingrange) +"urJ" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/patient_d) +"utf" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/wood, +/area/rnd/breakroom) +"utr" = ( +/turf/simulated/wall/prepainted/medical, +/area/maintenance/medbay/aft) +"utE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/fire_alarm/east_mount, +/turf/simulated/floor/tiled/white, +/area/medical/patient_a) +"uuj" = ( +/obj/effect/floor_decal/corner/green/full{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology/xenoflora) +"uuo" = ( +/obj/machinery/door/firedoor, +/obj/spawner/window/low_wall/reinforced/full, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/rnd/rdoffice) +"uuw" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/structure/cable/green{ + dir = 1; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/medbay/aft) +"uuE" = ( +/obj/effect/floor_decal/corner/paleblue/border, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"uvd" = ( +/turf/simulated/wall/r_wall/prepainted/medical, +/area/medical/virologyisolation) +"uvO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/patient_wing) +"uwL" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/starboard) +"uwU" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/purple, +/turf/simulated/wall/r_wall/prepainted/science, +/area/rnd/xenobiology) +"uxu" = ( +/obj/structure/table/rack, +/obj/item/storage/firstaid, +/turf/simulated/floor/plating, +/area/maintenance/medbay/aft) +"uxB" = ( +/obj/machinery/fire_alarm/north_mount, +/obj/effect/floor_decal/techfloor{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/aft) +"uxG" = ( +/obj/machinery/air_alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/item/storage/box/donkpockets, +/obj/structure/table/glass, +/turf/simulated/floor/wood, +/area/rnd/breakroom) +"uyr" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/emt/general) +"uyJ" = ( +/obj/structure/table/steel_reinforced, +/obj/structure/closet/secure_closet/medical_wall{ + name = "O- Blood Locker"; + pixel_x = 32; + req_access = list(5) + }, +/obj/item/reagent_containers/blood/OMinus, +/obj/item/reagent_containers/blood/OMinus, +/obj/item/reagent_containers/blood/OMinus, +/obj/item/reagent_containers/blood/OMinus, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"uzv" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/glass, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"uzA" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora/lab_atmos) +"uzF" = ( +/obj/item/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 26 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/research_restroom) +"uAn" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/medical/surgeryprep) +"uCv" = ( +/obj/structure/catwalk, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/medbay/aft) +"uCH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"uCN" = ( +/obj/structure/table/standard, +/obj/item/folder/blue{ + pixel_x = 5 + }, +/obj/item/folder/red{ + pixel_y = 3 + }, +/obj/machinery/air_alarm{ + dir = 8; + pixel_x = 25 + }, +/obj/item/clothing/glasses/science, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"uDK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"uEl" = ( +/turf/simulated/wall/prepainted/science, +/area/medical/morgue) +"uEE" = ( +/obj/item/paper_bin, +/obj/item/pen, +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/tiled/white, +/area/medical/medbay4) +"uEG" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{ + scrub_id = "rnd_can_store" + }, +/turf/simulated/floor/tiled, +/area/rnd/storage) +"uFa" = ( +/obj/machinery/power/smes/buildable{ + RCon_tag = "Deck 3 Grid" + }, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/structure/cable, +/turf/simulated/floor/plating, +/area/maintenance/substation/medical_science) +"uFV" = ( +/obj/structure/table/steel_reinforced, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/machinery/lathe/medical/stocked, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"uGR" = ( +/obj/machinery/computer/operating{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/medical/surgery2) +"uHH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/white, +/area/medical/patient_wing) +"uHK" = ( +/obj/structure/disposaloutlet{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"uHQ" = ( +/obj/structure/table/steel, +/obj/item/storage/toolbox/mechanical, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/medbay/fore) +"uIi" = ( +/obj/machinery/holopad, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/cmo) +"uIx" = ( +/obj/machinery/door/firedoor/glass, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/medical/reception) +"uIP" = ( +/turf/simulated/wall/prepainted/medical, +/area/maintenance/substation/medical) +"uIS" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/pen, +/obj/structure/table/steel_reinforced, +/obj/item/paper_bin{ + pixel_x = 5; + pixel_y = 12 + }, +/obj/item/hand_labeler, +/turf/simulated/floor/tiled/white, +/area/medical/medbay4) +"uJh" = ( +/turf/simulated/wall/prepainted/science, +/area/assembly/robotics/surgery) +"uJJ" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/medical/sleeper) +"uKo" = ( +/obj/item/suit_cooling_unit{ + pixel_y = -5 + }, +/obj/item/tank/oxygen{ + pixel_y = -4 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/item/tank/oxygen{ + pixel_y = -4 + }, +/obj/item/hardsuit/medical{ + pixel_y = -4 + }, +/obj/structure/table/rack, +/turf/simulated/floor/tiled, +/area/medical/medbay_emt_bay) +"uLo" = ( +/turf/simulated/wall/r_wall/prepainted/science, +/area/rnd/xenobiology/xenoflora/lab_atmos) +"uLx" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 5 + }, +/obj/machinery/door/firedoor, +/obj/spawner/window/low_wall/borosillicate/reinforced/full, +/turf/simulated/floor/reinforced/airless, +/area/rnd/test_area) +"uLA" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightorange/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/chemistry) +"uMG" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "exam_2" + }, +/obj/structure/wall_frame/prepainted, +/turf/simulated/floor/plating, +/area/medical/exam_room/exam_2) +"uML" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/fire_alarm/east_mount, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/carpet/sblucarpet, +/area/medical/psych/psych_2) +"uNv" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/dark, +/area/rnd/research/testingrange) +"uPt" = ( +/turf/simulated/wall/r_wall/prepainted/science, +/area/maintenance/research) +"uPA" = ( +/obj/machinery/light_switch{ + pixel_x = -26; + pixel_y = -4 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/medical/morgue) +"uPS" = ( +/obj/structure/closet/crate{ + name = "Grenade Crate" + }, +/obj/item/grenade/chem_grenade, +/obj/item/grenade/chem_grenade, +/obj/item/grenade/chem_grenade, +/obj/item/assembly/igniter, +/obj/item/assembly/igniter, +/obj/item/assembly/igniter, +/obj/item/assembly/timer, +/obj/item/assembly/timer, +/obj/item/assembly/timer, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/camera/network/medbay, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/medical/medbay_primary_storage) +"uQR" = ( +/obj/effect/floor_decal/techfloor{ + dir = 10 + }, +/obj/structure/bed/chair/sofa/black/left{ + dir = 1 + }, +/obj/machinery/light/small, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/workshop) +"uQX" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/rnd/breakroom) +"uRp" = ( +/obj/structure/table/glass, +/obj/item/duct_tape_roll, +/turf/simulated/floor/carpet/purcarpet, +/area/rnd/breakroom) +"uRJ" = ( +/obj/structure/sign/deck/third, +/turf/simulated/wall/prepainted/medical, +/area/victory/station/stairs_three) +"uSa" = ( +/obj/machinery/atmospherics/component/unary/heat_exchanger{ + dir = 8 + }, +/obj/structure/window/phoronreinforced{ + dir = 8 + }, +/obj/structure/window/phoronreinforced{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/test_area) +"uSx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/assembly/robotics/surgery) +"uSM" = ( +/obj/structure/table/reinforced, +/obj/item/toy/eight_ball/conch, +/obj/machinery/computer/ship/navigation/telescreen{ + pixel_y = -37 + }, +/obj/random/toy, +/obj/effect/floor_decal/corner/beige{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"uTa" = ( +/obj/structure/ladder, +/turf/simulated/floor/tiled/techfloor, +/area/medical/ward) +"uVq" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/computer/crew{ + dir = 4; + req_one_access = list(5) + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay4) +"uVS" = ( +/obj/item/paper_bin{ + pixel_x = -1; + pixel_y = 4 + }, +/obj/structure/table/reinforced, +/obj/item/pen, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/reception_desk) +"uWQ" = ( +/obj/machinery/air_alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/closet/l3closet/scientist/double, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 + }, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/research_foyer) +"uXt" = ( +/obj/structure/loot_pile/maint/boxfort, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint2) +"uXW" = ( +/obj/machinery/air_alarm/monitor/isolation{ + alarm_id = "isolation_one"; + dir = 8; + pixel_x = 22 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/anomaly_lab/containment_one) +"uYg" = ( +/obj/structure/lattice, +/obj/machinery/camera/network/outside{ + dir = 8 + }, +/turf/space, +/area/space) +"uYk" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/maintenance/medical{ + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/medical/department, +/turf/simulated/floor/plating, +/area/medical/psych_ward) +"uZs" = ( +/obj/effect/floor_decal/corner/blue/diagonal, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/exam_room/exam_1) +"vaL" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/assembly/robotics/surgery) +"vbA" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/patient_wing) +"vbI" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled/techfloor, +/area/assembly/chargebay) +"vbJ" = ( +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/spawner/window/low_wall/reinforced/full, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/teleporter/departing) +"vct" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/medical/medbay_primary_storage) +"vcE" = ( +/obj/structure/table/steel_reinforced, +/obj/item/storage/toolbox/mechanical, +/obj/item/storage/toolbox/mechanical{ + pixel_x = 2; + pixel_y = 9 + }, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/medical/medbay_primary_storage) +"vcY" = ( +/obj/machinery/fire_alarm/south_mount{ + pixel_y = -24 + }, +/obj/random/trash_pile, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/medbay/fore) +"vdg" = ( +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/plating, +/area/maintenance/research) +"vdw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/assembly/robotics/surgery) +"vez" = ( +/turf/simulated/wall/prepainted/science, +/area/rnd/xenobiology/xenoflora) +"veP" = ( +/obj/structure/sign/directions/cargo{ + dir = 4; + pixel_y = 32 + }, +/obj/structure/sign/directions/cryo{ + dir = 4; + pixel_y = 25 + }, +/turf/simulated/open, +/area/victory/station/stairs_three) +"vfA" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/medical/morgue) +"vfE" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint2) +"vgs" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/turf/simulated/floor, +/area/shuttle/emt/general) +"vgG" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"vgT" = ( +/obj/machinery/fire_alarm/north_mount, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/medical/morgue) +"vha" = ( +/obj/machinery/fire_alarm/west_mount{ + pixel_x = -24 + }, +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/aft) +"vhp" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/rnd/test_area) +"vhu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central6, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/starboard) +"vhU" = ( +/obj/structure/table/standard, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/reagentgrinder, +/obj/structure/extinguisher_cabinet{ + dir = 8; + pixel_x = 30 + }, +/obj/item/stack/material/phoron{ + amount = 25 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"vjC" = ( +/obj/machinery/holopad, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"vkz" = ( +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/obj/machinery/vending/blood, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"vlH" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/rdoffice) +"vmM" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/medbay/aft) +"voG" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/rnd/breakroom) +"vpB" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/blue/border, +/obj/machinery/camera/network/medbay{ + dir = 1; + network = list("Psychiatric") + }, +/turf/simulated/floor/tiled/white, +/area/medical/patient_wing) +"vpS" = ( +/obj/machinery/atmospherics/component/unary/freezer{ + icon_state = "freezer" + }, +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 9 + }, +/obj/landmark{ + name = "blobstart" + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora/lab_atmos) +"vqe" = ( +/obj/machinery/door/firedoor/glass, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 8 + }, +/obj/machinery/door/airlock/multi_tile/glass{ + id_tag = "PsycheFoyer"; + name = "Psychiatric Wing"; + req_access = list() + }, +/obj/map_helper/access_helper/airlock/station/medical/department, +/turf/simulated/floor/tiled/white, +/area/medical/medbay4) +"vqf" = ( +/obj/structure/table/reinforced, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"vqh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/medical/morgue) +"vqV" = ( +/obj/machinery/camera/network/research{ + dir = 4; + network = list("Xenobiology") + }, +/obj/structure/bed, +/obj/item/bedsheet/blue, +/obj/machinery/camera/network/research, +/turf/simulated/floor/wood, +/area/rnd/xenobiology) +"vrg" = ( +/obj/structure/table/steel_reinforced, +/obj/item/storage/firstaid/o2, +/obj/item/storage/firstaid/o2, +/obj/item/storage/firstaid/toxin{ + pixel_y = 8 + }, +/obj/item/storage/firstaid/toxin{ + pixel_y = 8 + }, +/obj/machinery/fire_alarm/south_mount{ + pixel_y = -24 + }, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/medical/medbay_primary_storage) +"vrn" = ( +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -23 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/medical_restroom) +"vrz" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"vrE" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/emt/general) +"vrN" = ( +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"vrY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/loading{ + dir = 4 + }, +/obj/machinery/fire_alarm/south_mount{ + pixel_y = -24 + }, +/turf/simulated/floor/tiled, +/area/medical/virologyaccess) +"vsS" = ( +/obj/structure/bed/chair/office/dark, +/turf/simulated/floor/tiled/white, +/area/medical/medbay4) +"vsZ" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 1 + }, +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/techfloor, +/area/teleporter/departing) +"vtg" = ( +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "psyche-a-inner"; + name = "Ward A"; + opacity = 0 + }, +/turf/simulated/floor/tiled/dark, +/area/medical/psych_ward) +"vtj" = ( +/obj/machinery/recharge_station, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/recoveryrestroom) +"vtx" = ( +/obj/machinery/airlock_sensor{ + dir = 1; + frequency = 1380; + id_tag = "deck3_airlock"; + pixel_y = -22 + }, +/obj/map_helper/airlock/sensor/chamber_sensor, +/obj/map_helper/airlock/atmos/chamber_pump, +/obj/machinery/atmospherics/component/unary/vent_pump/high_volume{ + dir = 4; + id_tag = "deck3_airlock" + }, +/turf/simulated/floor/tiled{ + icon_state = "techmaint" + }, +/area/victory/station/stairs_three) +"vtH" = ( +/obj/machinery/computer/robotics, +/obj/machinery/camera/network/research, +/turf/simulated/floor/tiled, +/area/rnd/rdoffice) +"vtM" = ( +/obj/machinery/artifact_harvester, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rnd/anomaly_lab) +"vue" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/bed/psych, +/turf/simulated/floor/wood, +/area/medical/psych/psych_2) +"vul" = ( +/obj/machinery/light/small, +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plating, +/area/maintenance/research) +"vvh" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"vvQ" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/ward) +"vws" = ( +/turf/simulated/wall/r_wall/prepainted/science, +/area/rnd/misc_lab) +"vwx" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central6{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"vxY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/holopad, +/turf/simulated/floor/tiled/white, +/area/medical/surgeryprep) +"vya" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/glass/research{ + name = "Circuitry Workshop"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/science/fabrication, +/turf/simulated/floor/tiled, +/area/rnd/workshop) +"vyp" = ( +/obj/machinery/shield_diffuser, +/turf/simulated/floor/airless, +/area/space) +"vzk" = ( +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/machinery/power/apc/west_mount, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint2) +"vAo" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/xenobiology) +"vAJ" = ( +/turf/simulated/wall/r_wall/prepainted/medical, +/area/medical/morgue) +"vBb" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/medical/morgue) +"vBs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/machinery/door/airlock/research{ + name = "Toxins Storage" + }, +/obj/map_helper/access_helper/airlock/station/science/toxins, +/turf/simulated/floor/tiled, +/area/rnd/storage) +"vBL" = ( +/obj/machinery/holopad, +/turf/simulated/floor/wood, +/area/rnd/breakroom) +"vBU" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/assembly/robotics/surgery) +"vCa" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 10 + }, +/obj/item/radio/intercom{ + pixel_y = -24 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora/lab_atmos) +"vCs" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/surgeryprep) +"vCt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"vEl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/starboard) +"vFg" = ( +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/suit/space/void/medical/emt, +/obj/item/clothing/head/helmet/space/void/medical/emt, +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/item/clothing/mask/breath, +/obj/structure/table/rack, +/obj/item/tank/jetpack/oxygen, +/turf/simulated/floor/tiled, +/area/medical/medbay_emt_bay) +"vFj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/purple{ + dir = 9 + }, +/turf/simulated/wall/r_wall/prepainted/science, +/area/rnd/xenobiology) +"vFG" = ( +/obj/machinery/computer/shuttle_control/explore/emt{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/emt/cockpit) +"vFN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "psyche-b-inner"; + name = "Ward A Back Area Access"; + pixel_x = -26; + pixel_y = 24; + req_one_access = list(5) + }, +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "psyche-b-outer"; + name = "Ward B Lockdown"; + pixel_x = -26; + pixel_y = 32; + req_one_access = list(5) + }, +/turf/simulated/floor/tiled, +/area/medical/psych_ward) +"vGe" = ( +/turf/simulated/wall/prepainted/medical, +/area/medical/resleeving) +"vHc" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/turf/simulated/floor/tiled, +/area/rnd/storage) +"vHi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/medical/sleeper) +"vHw" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/simulated/floor/tiled/white, +/area/medical/patient_d) +"vHH" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/research{ + name = "Xenobiology Emergecy Flood Storage"; + req_access = list() + }, +/obj/map_helper/access_helper/airlock/station/science/xenobiology, +/turf/simulated/floor/tiled, +/area/rnd/research_foyer_auxiliary) +"vIj" = ( +/obj/machinery/body_scanconsole, +/obj/effect/floor_decal/industrial/hatch, +/turf/simulated/floor/tiled/white, +/area/medical/surgeryprep) +"vIE" = ( +/obj/machinery/computer/arcade/orion_trail, +/obj/effect/floor_decal/corner/beige{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"vIV" = ( +/obj/structure/table/steel_reinforced, +/obj/item/reagent_containers/glass/bottle/biomass{ + pixel_x = 3; + pixel_y = 5 + }, +/obj/item/reagent_containers/glass/bottle/biomass{ + pixel_x = -3; + pixel_y = -2 + }, +/obj/effect/floor_decal/corner/blue/full{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/white, +/area/medical/surgeryprep) +"vJt" = ( +/obj/structure/dispenser/oxygen, +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab) +"vKw" = ( +/obj/machinery/shower{ + pixel_y = 16 + }, +/obj/structure/curtain/open/shower, +/turf/simulated/floor/tiled/techfloor/grid, +/area/medical/patient_a) +"vLb" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/research_restroom) +"vLj" = ( +/obj/machinery/door/window/brigdoor/westright{ + name = "Containment Pen"; + req_access = list(55) + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "xenobio2"; + name = "Containment Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"vLs" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/carpet/sblucarpet, +/area/medical/psych/psych_2) +"vLB" = ( +/obj/item/roller_holder, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 5 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay4) +"vMn" = ( +/obj/machinery/camera/network/research{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"vMN" = ( +/obj/machinery/door/firedoor/glass{ + dir = 4 + }, +/obj/machinery/door/airlock/medical{ + name = "Wash Room"; + req_one_access = null + }, +/turf/simulated/floor/tiled/white, +/area/medical/patient_c) +"vNt" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 4; + name = "Chem & Offices" + }, +/obj/map_helper/access_helper/airlock/station/medical/department, +/turf/simulated/floor/tiled, +/area/medical/sleeper) +"vOA" = ( +/obj/machinery/sleep_console, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/emt/general) +"vOD" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/surgeryprep) +"vPe" = ( +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/machinery/power/apc/north_mount, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"vQu" = ( +/obj/machinery/camera/network/research{ + dir = 8; + network = list("Research","Toxins Test Area") + }, +/turf/simulated/floor/tiled/dark, +/area/assembly/robotics/surgery) +"vQX" = ( +/obj/structure/closet/secure_closet/medical2, +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/suit/straight_jacket, +/obj/item/reagent_containers/glass/bottle/stoxin, +/obj/item/reagent_containers/glass/bottle/stoxin, +/obj/item/reagent_containers/glass/bottle/stoxin, +/obj/item/storage/box/syringes, +/obj/item/gun/launcher/syringe, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay4) +"vRE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/holodeck_control) +"vRK" = ( +/obj/structure/sign/department/operational, +/turf/simulated/wall/prepainted/medical, +/area/medical/surgeryprep) +"vSe" = ( +/obj/machinery/door/airlock/glass, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"vTa" = ( +/obj/machinery/camera/network/medbay{ + dir = 8 + }, +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/closet/hydrant{ + pixel_x = 32 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/medical/medbay3) +"vTK" = ( +/obj/structure/bed/psych, +/turf/simulated/floor/wood, +/area/medical/psych/psych_1) +"vUf" = ( +/obj/structure/closet/secure_closet/personal/patient, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 5 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virologyisolation) +"vUs" = ( +/turf/simulated/wall/r_wall/prepainted/medical, +/area/medical/medbay_emt_bay) +"vUy" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"vUK" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/map_helper/airlock/sensor/chamber_sensor, +/obj/map_helper/airlock/atmos/chamber_pump, +/obj/machinery/airlock_sensor{ + frequency = 1380; + id_tag = "emt_shuttle_docker"; + pixel_x = 24 + }, +/obj/machinery/atmospherics/component/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1380; + id_tag = "emt_shuttle_docker_pump" + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/emt/general) +"vVP" = ( +/obj/machinery/power/apc/north_mount, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/research) +"vWo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/rnd/rdoffice) +"vWZ" = ( +/turf/simulated/wall/prepainted/science, +/area/rnd/research_restroom) +"vXA" = ( +/obj/structure/table/reinforced, +/obj/machinery/camera/network/research{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 6 + }, +/obj/item/hand_labeler, +/turf/simulated/floor/tiled, +/area/rnd/reception_desk) +"vXG" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/techfloor, +/turf/simulated/floor/tiled, +/area/hallway/primary/aft) +"vXJ" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay3) +"vYi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/camera/network/medbay{ + dir = 8 + }, +/obj/item/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 26 + }, +/turf/simulated/floor/tiled, +/area/medical/virologyaccess) +"vYN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/medical_restroom) +"vYZ" = ( +/obj/machinery/power/apc/east_mount, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/machinery/camera/network/medbay{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/surgery2) +"vZb" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/surgeryprep) +"vZg" = ( +/turf/simulated/floor/tiled/dark, +/area/assembly/robotics) +"vZv" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/obj/effect/floor_decal/corner/blue/diagonal, +/turf/simulated/floor/tiled/white, +/area/medical/exam_room/exam_1) +"waa" = ( +/obj/machinery/air_alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/research) +"wap" = ( +/obj/structure/cable/green, +/obj/machinery/power/apc/west_mount, +/turf/simulated/floor/tiled, +/area/rnd/rdoffice) +"waz" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/carpet/blue, +/area/crew_quarters/medbreak) +"wbh" = ( +/obj/machinery/access_button{ + dir = 1; + frequency = 1380; + master_tag = "deck3_airlock"; + name = "interior access button"; + pixel_y = -23 + }, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"wbG" = ( +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/bordercorner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/medical/reception) +"wbK" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/machinery/door/airlock/multi_tile/metal{ + dir = 4; + name = "Psychiatric Ward" + }, +/obj/map_helper/access_helper/airlock/station/medical/department, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"wbO" = ( +/obj/structure/table/woodentable, +/obj/item/toy/plushie/siamese_cat, +/obj/item/toy/plushie/therapy/green, +/turf/simulated/floor/wood, +/area/medical/psych/psych_1) +"wbV" = ( +/obj/machinery/camera/network/medbay{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/machinery/air_alarm{ + dir = 8; + pixel_x = 25 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/structure/bed/chair, +/turf/simulated/floor/tiled/white, +/area/medical/reception) +"wcQ" = ( +/obj/structure/table/standard, +/obj/machinery/fire_alarm/alarms_hidden/west_mount, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"wdh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"wdB" = ( +/obj/structure/morgue/crematorium{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/medical/morgue) +"wdD" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/medical/medbay_emt_bay) +"wdQ" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/structure/closet/secure_closet/personal/patient, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/white, +/area/medical/surgeryprep) +"wdT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/radiocarbon_spectrometer, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/anomaly_lab) +"weg" = ( +/obj/structure/sink{ + pixel_y = 19 + }, +/turf/simulated/floor/tiled/white, +/area/medical/recoveryrestroom) +"weC" = ( +/obj/machinery/atm{ + pixel_x = -33 + }, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"wfo" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/mauve/border, +/turf/simulated/floor/tiled, +/area/rnd/reception_desk) +"wfD" = ( +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "xenobio1"; + name = "Containment Blast Doors"; + opacity = 0 + }, +/obj/spawner/window/low_wall/reinforced/full, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"wfG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/table/bench/padded, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"wgg" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden, +/turf/simulated/floor/plating, +/area/medical/patient_wing) +"wgC" = ( +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -23 + }, +/turf/simulated/floor/tiled, +/area/medical/resleeving) +"wgF" = ( +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -23 + }, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"wgT" = ( +/turf/simulated/floor/wood, +/area/crew_quarters/medbreak) +"whs" = ( +/obj/machinery/door/firedoor/glass, +/obj/map_helper/airlock/door/int_door, +/obj/machinery/door/airlock/voidcraft/vertical{ + frequency = 1380 + }, +/obj/map_helper/access_helper/airlock/station/medical/department, +/turf/simulated/floor/tiled/white, +/area/shuttle/emt/general) +"whu" = ( +/turf/simulated/wall/prepainted/science, +/area/rnd/reception_desk) +"whM" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/simulated/floor/tiled/white, +/area/medical/patient_c) +"wia" = ( +/obj/structure/table/bench/padded, +/obj/landmark/spawnpoint/job/paramedic, +/turf/simulated/floor/tiled, +/area/medical/medbay_emt_bay) +"wir" = ( +/turf/simulated/wall/prepainted/science, +/area/rnd/misc_lab) +"wiC" = ( +/obj/effect/floor_decal/industrial/warning/dust, +/obj/structure/closet/crate/biohazard, +/turf/simulated/floor/tiled/dark, +/area/assembly/robotics/surgery) +"wiW" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor/glass, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay4) +"wji" = ( +/obj/machinery/door/firedoor/glass, +/obj/map_helper/airlock/door/ext_door, +/obj/machinery/door/airlock/voidcraft/vertical{ + frequency = 1380 + }, +/obj/map_helper/access_helper/airlock/station/medical/department, +/turf/simulated/floor/tiled/white, +/area/shuttle/emt/general) +"wkf" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/medical/sleeper) +"wkG" = ( +/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{ + scrub_id = "rnd_can_store" + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/test_area) +"wkM" = ( +/obj/machinery/portable_atmospherics/canister/empty, +/obj/effect/floor_decal/industrial/warning/full, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/test_area) +"wlm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"wlz" = ( +/turf/simulated/wall/r_wall/prepainted/medical, +/area/medical/virology) +"wlC" = ( +/obj/structure/closet/secure_closet/medical2, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"wlW" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/surgeryprep) +"wng" = ( +/turf/simulated/floor/tiled, +/area/medical/medbay3) +"wnN" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay3) +"woC" = ( +/obj/machinery/power/apc/east_mount, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/white, +/area/medical/surgery) +"woF" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/carpet/blue, +/area/crew_quarters/medbreak) +"wpb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/patient_wing) +"wpd" = ( +/turf/simulated/floor/tiled/techfloor, +/area/medical/morgue) +"wpj" = ( +/turf/simulated/floor/tiled, +/area/rnd/research_foyer_auxiliary) +"wpm" = ( +/obj/structure/table/steel_reinforced, +/obj/item/storage/box/syringes, +/obj/item/clothing/accessory/stethoscope, +/obj/effect/floor_decal/corner/blue/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/exam_room/exam_1) +"wqB" = ( +/obj/machinery/camera/network/research, +/obj/machinery/lathe/autolathe, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/assembly/robotics) +"wrp" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/patient_wing) +"wtH" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/ward) +"wtL" = ( +/obj/structure/table/steel_reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"wub" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/machinery/power/apc/north_mount, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virologyisolation) +"wuz" = ( +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/spawner/window/low_wall/reinforced/full, +/turf/simulated/floor/plating, +/area/rnd/breakroom) +"wuC" = ( +/obj/machinery/door/airlock{ + name = "Unit 2" + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/medical_restroom) +"wwu" = ( +/obj/machinery/power/apc/south_mount, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/medbay/fore) +"wxE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/camera/network/medbay{ + dir = 8; + network = list("Psychiatric") + }, +/obj/structure/closet/hydrant{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled, +/area/medical/psych_ward) +"wzb" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/closet/secure_closet/personal/patient, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"wzf" = ( +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -23 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/red, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/medical/virology) +"wzv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/fire_alarm/south_mount{ + pixel_y = -24 + }, +/turf/simulated/floor/tiled, +/area/medical/virologyaccess) +"wAD" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/window/northright, +/obj/machinery/door/window/southright, +/obj/structure/closet/l3closet/virology, +/turf/simulated/floor/tiled, +/area/medical/virologyaccess) +"wAJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/medical/reception) +"wBq" = ( +/obj/effect/floor_decal/industrial/warning/dust, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/storage) +"wCh" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/blue/border, +/obj/machinery/computer/ship/sensors{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/emt/cockpit) +"wCL" = ( +/obj/structure/closet/hydrant{ + pixel_y = 32 + }, +/obj/structure/table/reinforced, +/obj/machinery/cell_charger, +/turf/simulated/floor/tiled/dark, +/area/rnd/research/testingrange) +"wDc" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/sign/greencross{ + name = "Authorized Medical Personnel Only"; + pixel_x = 32 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay3) +"wDV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/bookcase, +/obj/item/book/manual/barman_recipes, +/obj/item/book/manual/engineering_construction, +/obj/item/book/manual/standard_operating_procedure, +/obj/item/book/manual/the_humanized_mice, +/obj/item/book/manual/security_space_law, +/obj/item/book/manual/materials_chemistry_analysis, +/obj/item/book/manual/engineering_guide, +/obj/effect/floor_decal/corner/beige{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"wEl" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "medbayquar"; + name = "Medbay Emergency Lockdown Shutters"; + opacity = 0 + }, +/obj/machinery/door/firedoor/glass, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/surgeryprep) +"wEo" = ( +/obj/structure/shuttle/engine/heater{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden, +/turf/simulated/shuttle/wall/voidcraft/hard_corner, +/area/shuttle/emt/general) +"wGo" = ( +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "xenobio7"; + name = "Containment Blast Doors"; + opacity = 0 + }, +/obj/spawner/window/low_wall/reinforced/full, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"wGY" = ( +/turf/simulated/floor/tiled, +/area/medical/virology) +"wHi" = ( +/obj/structure/table/glass, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 6 + }, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/light_switch{ + pixel_x = 25 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora/lab_atmos) +"wIO" = ( +/obj/machinery/atmospherics/component/unary/heat_exchanger{ + dir = 4 + }, +/obj/structure/window/phoronreinforced{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/test_area) +"wJw" = ( +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/spawner/window/low_wall/reinforced/full, +/turf/simulated/floor/plating, +/area/medical/medbay_primary_storage) +"wJN" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"wJW" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/starboard) +"wKj" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"wKq" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/fire_alarm/east_mount, +/turf/simulated/floor/tiled/white, +/area/medical/patient_d) +"wLE" = ( +/obj/machinery/door/airlock/glass_external{ + req_one_access = null + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/map_helper/airlock/door/int_door, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/map_helper/access_helper/airlock/station/external_airlock, +/turf/simulated/floor/plating, +/area/medical/patient_wing) +"wLV" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/blue/bordercorner, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled, +/area/medical/sleeper) +"wMp" = ( +/turf/simulated/wall/prepainted, +/area/holodeck_control) +"wMQ" = ( +/obj/machinery/atmospherics/component/binary/pump{ + dir = 4; + name = "Isolation to Waste" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora/lab_atmos) +"wNb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/glass, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"wNh" = ( +/obj/structure/table/steel_reinforced, +/obj/item/storage/firstaid/adv, +/obj/item/storage/firstaid/adv, +/obj/item/storage/firstaid/fire{ + pixel_y = 9 + }, +/obj/item/storage/firstaid/fire{ + pixel_y = 9 + }, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/medical/medbay_primary_storage) +"wNs" = ( +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora/lab_atmos) +"wNE" = ( +/obj/machinery/light, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/mauve/border, +/obj/structure/extinguisher_cabinet{ + pixel_y = -31 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"wOk" = ( +/turf/simulated/wall/prepainted/medical, +/area/medical/patient_wing) +"wOP" = ( +/turf/simulated/wall/r_wall/prepainted/medical, +/area/medical/recoveryrestroom) +"wPi" = ( +/obj/machinery/scale, +/obj/effect/floor_decal/corner/blue/diagonal, +/turf/simulated/floor/tiled/white, +/area/medical/exam_room/exam_2) +"wPt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/component/binary/pump{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab) +"wQh" = ( +/obj/structure/sign/department/chem{ + name = "Pharmacy" + }, +/turf/simulated/wall/prepainted/medical, +/area/crew_quarters/medbreak) +"wQj" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/rnd/misc_lab) +"wQo" = ( +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/medbreak) +"wQp" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black, +/turf/simulated/floor/tiled, +/area/medical/virologyaccess) +"wQr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/table/bench/padded, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"wQy" = ( +/obj/machinery/power/apc/south_mount, +/obj/structure/cable/green, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"wQN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/machinery/door/airlock/glass/medical{ + name = "Patient Psychiatric Ward B"; + req_one_access = null + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "psyche-a-outer"; + name = "Ward A"; + opacity = 0 + }, +/obj/map_helper/access_helper/airlock/station/medical/department, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"wRr" = ( +/obj/machinery/optable, +/obj/machinery/light/small, +/turf/simulated/floor/tiled, +/area/medical/morgue) +"wRU" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/blue/border, +/turf/simulated/floor/tiled/white, +/area/shuttle/emt/cockpit) +"wSM" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/medical/morgue) +"wTy" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold/visible/purple{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"wTM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/purple{ + dir = 10 + }, +/turf/simulated/wall/r_wall/prepainted/science, +/area/rnd/xenobiology) +"wUs" = ( +/obj/machinery/door/window/brigdoor/westright{ + dir = 4; + name = "Firing Range Door"; + req_access = list(47) + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/dark, +/area/rnd/research/testingrange) +"wUw" = ( +/obj/machinery/door/window/brigdoor/southright{ + name = "Containment Pen"; + req_access = list(55) + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"wUV" = ( +/obj/machinery/chemical_dispenser/full, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/obj/structure/table/glass, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"wVf" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance/engi{ + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/substation/medical) +"wWa" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/floor_decal/corner/blue{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/medical/reception) +"wWO" = ( +/obj/structure/closet/secure_closet/RD, +/obj/item/aicard, +/obj/item/clothing/glasses/omnihud/rnd, +/obj/machinery/camera/network/research{ + dir = 4 + }, +/obj/item/storage/box/firingpins, +/turf/simulated/floor/tiled, +/area/rnd/rdoffice) +"wYX" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/machinery/door/firedoor/glass, +/obj/spawner/window/low_wall/reinforced/full, +/turf/simulated/floor/plating, +/area/rnd/anomaly_lab/containment_two) +"wZf" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12 + }, +/obj/structure/mirror{ + pixel_x = -26 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/medical_restroom) +"wZk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/item/radio/intercom{ + pixel_y = -24 + }, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"wZF" = ( +/obj/effect/floor_decal/techfloor/corner, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"xav" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"xaP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor, +/area/assembly/chargebay) +"xbs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/dark, +/area/rnd/research/testingrange) +"xbz" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virologyaccess) +"xcx" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"xcB" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/cmo) +"xdd" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/obj/item/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 26 + }, +/obj/machinery/lathe/autolathe, +/turf/simulated/floor/tiled, +/area/rnd/reception_desk) +"xdh" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"xec" = ( +/obj/machinery/mech_recharger, +/turf/simulated/floor/bluegrid, +/area/assembly/chargebay) +"xeP" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/structure/closet/hydrant{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled, +/area/rnd/test_area) +"xeW" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/beige/border, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"xfV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/workshop) +"xgi" = ( +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "medbayquar"; + name = "Medbay Emergency Lockdown Shutters"; + opacity = 0 + }, +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/medical/medbay3) +"xhf" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"xht" = ( +/obj/machinery/shield_diffuser, +/turf/simulated/floor/airless, +/area/rnd/test_area) +"xhw" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/table/reinforced, +/turf/simulated/floor/tiled/white, +/area/medical/patient_c) +"xhP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/research/testingrange) +"xiN" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/item/multitool, +/obj/item/storage/toolbox/mechanical, +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/tiled, +/area/medical/medbay_emt_bay) +"xiO" = ( +/obj/machinery/cell_charger, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/mauve/border, +/obj/structure/table/carbon/reinforced, +/turf/simulated/floor/tiled/dark, +/area/assembly/robotics) +"xiT" = ( +/obj/machinery/door/window/brigdoor/northright{ + name = "Containment Pen"; + req_access = list(55) + }, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "xenobio7"; + name = "Containment Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"xjy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"xjV" = ( +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/obj/effect/floor_decal/corner/blue/diagonal, +/turf/simulated/floor/tiled/white, +/area/medical/exam_room/exam_2) +"xkd" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/assembly/robotics/surgery) +"xki" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/wood, +/area/victory/station/stairs_three) +"xkX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/medical/morgue) +"xlI" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/workshop) +"xmK" = ( +/obj/machinery/camera/network/medbay{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/button/remote/airlock{ + desc = "A remote control switch for the medbay recovery room door."; + dir = 8; + id = "er2"; + name = "Exam Room 2 Lock"; + pixel_x = 26; + pixel_y = 10; + specialfunctions = 4 + }, +/obj/machinery/button/windowtint{ + dir = 6; + id = "exam_2"; + pixel_x = 24 + }, +/obj/effect/floor_decal/corner/blue/diagonal, +/turf/simulated/floor/tiled/white, +/area/medical/exam_room/exam_2) +"xmL" = ( +/obj/machinery/atmospherics/component/unary/freezer{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"xnz" = ( +/obj/machinery/camera/network/civilian, +/obj/effect/floor_decal/techfloor{ + dir = 9 + }, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"xnR" = ( +/obj/structure/catwalk, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/medbay/fore) +"xoj" = ( +/obj/structure/closet/firecloset, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/rnd/research_foyer_auxiliary) +"xoV" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1; + name = "Engine Fuel Port" + }, +/obj/machinery/light/small, +/obj/effect/floor_decal/industrial/outline/red, +/turf/simulated/floor, +/area/shuttle/emt/general) +"xrB" = ( +/obj/machinery/fire_alarm/east_mount, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"xrW" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 9 + }, +/obj/structure/flora/pottedplant/bamboo, +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/grass, +/area/medical/psych_ward) +"xsd" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/medical_science) +"xtD" = ( +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/spawner/window/low_wall/reinforced/full, +/turf/simulated/floor/plating, +/area/medical/patient_wing) +"xuu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/lightorange/border, +/turf/simulated/floor/tiled/white, +/area/medical/chemistry) +"xvH" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/medical/sleeper) +"xvK" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/machinery/light/small, +/obj/machinery/air_alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled, +/area/rnd/storage) +"xvN" = ( +/obj/machinery/computer/timeclock/premade/south, +/obj/effect/floor_decal/techfloor, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/aft) +"xvV" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock{ + name = "Restroom" + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"xwp" = ( +/obj/structure/cable/green, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/power/apc/east_mount, +/obj/machinery/button/windowtint{ + dir = 8; + id = "ward_c"; + pixel_x = 24; + pixel_y = 24 + }, +/turf/simulated/floor/tiled/white, +/area/medical/patient_c) +"xyl" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/research, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/map_helper/access_helper/airlock/station/science/department, +/turf/simulated/floor/tiled, +/area/rnd/misc_lab) +"xyo" = ( +/obj/item/radio/intercom{ + dir = 8; + pixel_x = -28; + req_access = list() + }, +/turf/simulated/floor/tiled/techfloor, +/area/medical/morgue) +"xyH" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/medical/medbay_emt_bay) +"xAI" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/obj/machinery/light, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/mauve/border, +/turf/simulated/floor/tiled, +/area/rnd/reception_desk) +"xAO" = ( +/obj/machinery/computer/transhuman/resleeving{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/mauve/bordercorner2, +/turf/simulated/floor/tiled/dark, +/area/assembly/robotics) +"xBU" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/machinery/light/small/emergency{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/fpmaint2) +"xCo" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"xCH" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/patient_wing) +"xDH" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/medical/morgue) +"xEA" = ( +/obj/structure/table/standard, +/obj/item/reagent_containers/spray/cleaner, +/obj/item/hand_labeler, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"xER" = ( +/obj/structure/disposaloutlet{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"xFt" = ( +/obj/structure/closet/hydrant{ + pixel_y = 32 + }, +/turf/simulated/floor/plating, +/area/maintenance/medbay/aft) +"xFH" = ( +/turf/simulated/wall/r_wall/prepainted/medical, +/area/medical/medbay_primary_storage) +"xFX" = ( +/obj/effect/floor_decal/corner/blue/bordercorner{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/reception) +"xGc" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 10 + }, +/obj/landmark/spawnpoint/job/paramedic, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"xGm" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/victory/station/stairs_three) +"xGB" = ( +/obj/machinery/door/blast/regular{ + dir = 8; + id = "burn_chamber_v"; + name = "Burn Chamber Vent" + }, +/turf/simulated/floor/reinforced/airless, +/area/rnd/test_area) +"xHh" = ( +/obj/machinery/camera/network/civilian{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor, +/obj/structure/extinguisher_cabinet{ + pixel_y = -31 + }, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"xHi" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 10 + }, +/obj/structure/flora/pottedplant/flower, +/turf/simulated/floor/tiled/white, +/area/medical/surgeryprep) +"xHy" = ( +/obj/machinery/computer/crew{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 6 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"xHB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"xHD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/glass, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/aft) +"xIf" = ( +/turf/simulated/wall/prepainted/science, +/area/maintenance/research) +"xIg" = ( +/obj/machinery/computer/guestpass{ + dir = 4; + pixel_x = -28 + }, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"xIl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"xIp" = ( +/turf/simulated/wall/r_wall/prepainted/science, +/area/rnd/anomaly_lab/containment_one) +"xID" = ( +/obj/machinery/papershredder, +/obj/machinery/air_alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled, +/area/rnd/rdoffice) +"xIL" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/obj/landmark/spawnpoint/job/medical_doctor, +/turf/simulated/floor/tiled/white, +/area/medical/resleeving) +"xJb" = ( +/obj/machinery/camera/network/civilian{ + dir = 8 + }, +/obj/structure/table/bench/padded, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"xJh" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/research) +"xJB" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay4) +"xJN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora/lab_atmos) +"xKC" = ( +/turf/simulated/floor/tiled/white, +/area/medical/surgeryprep) +"xLu" = ( +/obj/machinery/air_alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lightorange/border{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/medical/medbay3) +"xLy" = ( +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/turf/simulated/floor/wood, +/area/rnd/breakroom) +"xLH" = ( +/obj/machinery/disease2/incubator, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/medical/virology) +"xMz" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/machinery/light, +/turf/simulated/floor/wood, +/area/medical/medbay4) +"xNy" = ( +/obj/effect/floor_decal/industrial/warning/dust, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/storage) +"xOt" = ( +/obj/machinery/camera/network/medbay{ + dir = 1; + network = list("Psychiatric") + }, +/obj/machinery/computer/arcade/orion_trail, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/corner/beige{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"xOU" = ( +/obj/machinery/fire_alarm/east_mount, +/turf/simulated/floor/wood, +/area/rnd/breakroom) +"xOV" = ( +/obj/structure/window/reinforced, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora/lab_atmos) +"xQx" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/medical{ + id_tag = "er2"; + name = "Exam Room 2"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/medical/department, +/turf/simulated/floor/tiled/white, +/area/medical/exam_room/exam_2) +"xQF" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/carpet/tealcarpet, +/area/medical/patient_c) +"xQV" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/landmark/spawnpoint/job/scientist, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/workshop) +"xRM" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/ward) +"xRP" = ( +/obj/structure/table/reinforced, +/obj/machinery/reagentgrinder, +/obj/item/stack/material/phoron{ + amount = 25 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightorange/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/chemistry) +"xSe" = ( +/obj/machinery/cryopod/robot/door/gateway, +/turf/simulated/floor/tiled/techfloor, +/area/teleporter/departing) +"xSg" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/rnd/rdoffice) +"xSh" = ( +/obj/machinery/door/window/brigdoor/westright{ + name = "Containment Pen"; + req_access = list(55) + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "xenobio1"; + name = "Containment Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"xTi" = ( +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_three) +"xTU" = ( +/obj/machinery/power/breakerbox/activated{ + RCon_tag = "MEDICAL" + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/medical) +"xUb" = ( +/obj/machinery/air_alarm{ + dir = 8; + pixel_x = 25 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virologyaccess) +"xUq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 9 + }, +/obj/machinery/atmospherics/component/unary/vent_pump/on, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/xenobiology/xenoflora_storage) +"xUB" = ( +/obj/machinery/fire_alarm/south_mount{ + pixel_y = -24 + }, +/obj/machinery/portable_atmospherics/powered/pump, +/turf/simulated/floor/tiled, +/area/rnd/test_area) +"xUZ" = ( +/obj/structure/sign/warning/caution, +/turf/simulated/wall/r_wall/prepainted/science, +/area/rnd/test_area) +"xVz" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/medical/sleeper) +"xXp" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/rnd/test_area) +"xYe" = ( +/obj/structure/bed/chair/wheelchair, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/medical/medbay_primary_storage) +"xYq" = ( +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + frequency = 1380; + id_tag = "emt_shuttle_dock"; + pixel_y = 26 + }, +/obj/map_helper/airlock/atmos/chamber_pump, +/obj/machinery/atmospherics/component/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1380 + }, +/turf/simulated/floor/plating, +/area/medical/patient_wing) +"xYr" = ( +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/machinery/door/airlock/glass{ + name = "Long-Range Teleporter Access" + }, +/turf/simulated/floor/tiled, +/area/teleporter/departing) +"xYz" = ( +/obj/machinery/air_alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/medbreak) +"xZy" = ( +/obj/structure/cable/green, +/obj/machinery/power/apc/east_mount, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/rnd/reception_desk) +"yah" = ( +/turf/simulated/floor/plating, +/area/rnd/misc_lab) +"ybU" = ( +/obj/machinery/door/firedoor/glass{ + dir = 4 + }, +/obj/spawner/window/low_wall/reinforced/full, +/turf/simulated/floor/plating, +/area/assembly/robotics) +"yde" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 4 + }, +/obj/item/radio/intercom{ + dir = 8; + pixel_x = -28; + req_access = list() + }, +/turf/simulated/floor/wood, +/area/medical/medbay4) +"ydY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/medical/medbay_emt_bay) +"yez" = ( +/obj/item/radio/intercom{ + pixel_y = -24 + }, +/obj/machinery/vending/cigarette, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"yfP" = ( +/obj/machinery/door/firedoor/glass, +/obj/spawner/window/low_wall/reinforced/full, +/turf/simulated/floor/plating, +/area/medical/sleeper) +"ygh" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/fire_alarm/south_mount{ + pixel_y = -24 + }, +/obj/machinery/light, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/obj/item/defib_kit/loaded, +/turf/simulated/floor/tiled, +/area/medical/surgery2) +"ygC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/reception_desk) +"yhw" = ( +/obj/machinery/holopad, +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay4) +"yhE" = ( +/obj/effect/floor_decal/industrial/warning/dust, +/turf/simulated/floor/tiled/dark, +/area/assembly/robotics/surgery) +"yic" = ( +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/machinery/vending/coffee, +/turf/simulated/floor/tiled/monotile, +/area/rnd/breakroom) +"yiz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/computer/rdservercontrol{ + dir = 8 + }, +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/research) +"yjy" = ( +/obj/machinery/air_alarm{ + frequency = 1441; + pixel_y = 22 + }, +/obj/structure/filingcabinet/medical{ + desc = "A large cabinet with hard copy medical records."; + name = "Medical Records" + }, +/turf/simulated/floor/wood, +/area/medical/psych/psych_1) +"ykh" = ( +/turf/simulated/floor/carpet/sblucarpet, +/area/medical/psych/psych_1) +"yku" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/fire_alarm/east_mount, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"ykA" = ( +/turf/simulated/wall/r_wall/prepainted/medical, +/area/medical/patient_d) +"ykR" = ( +/turf/simulated/wall/r_wall, +/area/space) +"ykZ" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay4) +"ymb" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/component/unary/outlet_injector{ + frequency = 1445; + id = "burn_in"; + volume_rate = 700 + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) + +(1,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(2,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(3,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(4,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(5,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(6,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(7,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(8,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(9,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +aDe +aDe +aDe +aDe +lIp +lIp +qyX +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(10,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +lIp +lIp +aDe +aDe +aDe +aDe +aDe +aDe +aDe +lIp +lIp +mDp +mDp +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +lIp +mDp +pRW +pRW +mDp +mDp +mDp +mDp +ekU +ekU +ekU +ekU +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(11,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +lIp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +lIp +mDp +mDp +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +mDp +mDp +qyX +lIp +mDp +pRW +pRW +mDp +mDp +ekU +ekU +ekU +ekU +ekU +ekU +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(12,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +lIp +mDp +mDp +mDp +mDp +qyX +mDp +mDp +mDp +mDp +aDe +aDe +aDe +poq +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +aDe +aDe +ykR +lIp +vyp +lIp +pRW +pRW +pRW +pRW +pRW +ekU +ekU +ekU +ekU +ekU +ekU +lrJ +dOr +ekU +ekU +ekU +ekU +ekU +ekU +ekU +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(13,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +lIp +mDp +mDp +mDp +pRW +eMZ +eMZ +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +eMZ +qRu +qRu +qRu +mDp +mDp +lIp +mDp +mDp +pRW +mDp +lIp +lIp +aDe +aDe +aDe +aDe +aDe +lIp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +lIp +lIp +lIp +lIp +mDp +mDp +mDp +lIp +mDp +pRW +pRW +pRW +pRW +pRW +ekU +hsN +iJp +mzY +qXe +suM +hlB +hlB +hzh +wDV +csA +pLp +ekU +ekU +lmG +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(14,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +lIp +mDp +mDp +mDp +pRW +eMZ +eMZ +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +eMZ +qRu +qRu +qRu +qRu +qRu +lIp +mDp +mDp +pRW +qyX +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +aDe +mDp +mDp +aDe +mDp +mDp +mDp +lIp +mDp +pRW +pRW +pRW +pRW +pRW +ekU +ktr +fLa +vUy +ekU +cFy +dSa +dSa +dSa +dSa +tSj +cps +ekU +ekU +mDp +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(15,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +lIp +mDp +mDp +mAv +pRW +eMZ +eMZ +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +lmG +eMZ +sun +thc +piY +thc +thc +thc +piY +thc +thc +thc +piY +thc +fGD +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +aDe +mDp +mDp +aDe +mDp +mDp +mDp +tyV +pRW +pRW +pRW +pRW +pRW +pRW +ekU +snu +ekU +ekU +ekU +rLU +dSa +dSa +dSa +rOL +mzd +hqc +ekU +ekU +mDp +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(16,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +lIp +mDp +mDp +mDp +pRW +eMZ +eMZ +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +eMZ +qRu +rOo +dwM +caz +iVG +mbb +iVG +caz +uHK +lCd +iVG +caz +uHK +rOo +aPs +lIp +lIp +lIp +mDp +pRW +pRW +pRW +pRW +lIp +mDp +mDp +kxT +kxT +kxT +kxT +iym +iym +iym +kxT +kxT +kxT +kxT +lIp +lIp +lIp +aDe +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +rLU +afc +bYa +aeW +gMS +rLU +cac +fBT +fAD +sue +tSj +uSM +ekU +mDp +mDp +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(17,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +lIp +mDp +mDp +mDp +pRW +eMZ +eMZ +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +eMZ +rOo +kkS +hbm +hbm +mbb +hbm +hbm +kkS +lCd +hbm +hbm +kkS +rOo +pRW +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +aDe +aDe +aDe +kxT +qPj +mWG +djF +mWG +mWG +mWG +eXE +jMj +bBu +kxT +lIp +mDp +mDp +aDe +lIp +lIp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +rLU +rPC +pAX +dSa +aIK +rLU +xrW +dpx +tTu +qAa +wQr +vIE +rLU +mDp +mDp +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(18,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +lIp +lIp +lIp +lIp +pRW +eMZ +eMZ +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +lIp +eMZ +rOo +kkS +hbm +hbm +mbb +hbm +hbm +kkS +lCd +hbm +hbm +kkS +rOo +pRW +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +kxT +pps +vmM +mWG +mWG +mWG +mWG +eXE +jMj +eVl +kxT +kxT +mDp +mDp +aDe +mDp +mDp +mDp +tKG +pRW +pRW +pRW +pRW +pRW +pRW +ekU +llq +dSa +nhq +ece +rLU +gmW +hrZ +acf +suA +wQr +gmh +rLU +mDp +mDp +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(19,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +lIp +pRW +eMZ +eMZ +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +rOo +hlr +xSh +wfD +qRu +avB +vLj +aDi +qRu +hdd +kOA +tGK +rOo +pRW +mDp +mDp +mDp +pRW +pRW +tAg +tAg +dIJ +vbJ +vbJ +vbJ +dIJ +tAg +tAg +fcw +mWG +mWG +mWG +eXE +jMj +jMj +gDB +kxT +kxT +kxT +aDe +qyX +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +ekU +drR +dSa +ejt +iFB +rLU +mFL +ocS +dNk +qAa +wQr +gmh +rLU +mDp +mDp +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(20,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +lIp +pRW +eMZ +eMZ +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +rOo +iWZ +cLl +hvb +qRu +oDu +cLl +hlM +qRu +bEz +cLl +hlM +rOo +pRW +pRW +mDp +mDp +pRW +pRW +tAg +aKv +fus +glw +glw +glw +jzz +cew +tAg +xFt +mWG +vmM +mWG +mGW +jMj +jMj +ljL +trY +pUp +kxT +kxT +kxT +aDe +aDe +aDe +pRW +pRW +pRW +pRW +pRW +pRW +ekU +sJr +ces +ejt +iFB +rLU +tSo +ocS +pPO +spA +wfG +xOt +ekU +fCa +mDp +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(21,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +aDe +pRW +eMZ +eMZ +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +rOo +kDe +vAo +vAo +mtC +vAo +vAo +vAo +tAo +vAo +vAo +vAo +rOo +pRW +pRW +pRW +pRW +pRW +pRW +tAg +vsZ +xSe +qvd +xSe +qvd +xSe +htp +tAg +trY +trY +trY +trY +trY +piP +trY +trY +trY +mWG +djF +kpp +kxT +mDp +lIp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +ekU +wdh +czv +wtL +kMg +rLU +gbZ +qSK +rYU +qAa +dSa +sXA +ekU +mDp +mDp +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(22,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +aDe +pRW +eMZ +eMZ +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +rOo +ljT +taE +mmM +dSY +eWW +vjC +eWW +eWW +kmH +rXQ +eWW +rOo +pRW +pRW +pRW +pRW +pRW +pRW +tAg +pMC +soK +dNU +qig +dNv +soK +aEO +tAg +kpp +jMj +jMj +jMj +jMj +jMj +jMj +uCv +qXW +qXW +sWE +uon +kxT +mDp +lIp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +ekU +cEY +dSa +dSa +aIK +rLU +ujK +oZD +oZD +uji +dSa +ayI +ekU +mDp +mDp +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(23,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +aDe +pRW +eMZ +eMZ +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +rOo +qRu +qRu +qRu +qRu +qRu +bpn +eWW +eWW +qRu +qRu +qRu +qRu +wTM +rOo +pRW +pRW +pRW +pRW +tAg +mRv +lwt +qLC +nSZ +pZN +pZN +tOP +tAg +iat +jMj +vmM +hEJ +uxu +oBT +aHb +qTB +kpp +iDi +qTB +mWG +kxT +mDp +lIp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +ekU +hRa +rBc +hgb +xHy +rLU +qzH +rbL +rbL +bBJ +rbL +aSW +ekU +mDp +mDp +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(24,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +aDe +pRW +eMZ +eMZ +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +ikZ +rOo +ezO +hbm +hbm +wGo +nhg +moH +eWW +eWW +nhg +raK +hbm +hbm +vMn +rOo +pRW +pRW +pRW +pRW +tAg +tAg +tAg +xYr +jsz +xYr +tAg +tAg +tAg +osS +nel +trY +trY +trY +trY +trY +uuw +trY +trY +qTB +rUX +kxT +lIp +uYg +lIp +pRW +pRW +pRW +pRW +pRW +pRW +ekU +mIe +kxG +toD +toD +toD +toD +dlN +toD +toD +toD +vtg +ekU +mDp +mDp +pRW +mDp +mDp +gtM +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(25,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +gtM +mDp +mDp +mDp +mDp +mDp +mDp +aDe +pRW +eMZ +eMZ +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +eWN +cEs +hnr +hbm +xiT +wUw +moH +eWW +eWW +kVv +hNe +hbm +mFC +ymb +uwU +pRW +pRW +pRW +pRW +goh +ktt +qak +meR +fRk +fWJ +bfS +ijd +uzv +pmG +fWJ +fWJ +fWJ +mmI +pmG +fWJ +kBG +oaU +ejI +qTB +mWG +kxT +kxT +kxT +kxT +pRW +pRW +pRW +pRW +pRW +pRW +ekU +pjz +kxG +toD +mzy +aBk +toD +fWZ +jNo +toD +jlX +fWZ +qIy +mDp +mDp +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(26,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +aDe +pRW +eMZ +eMZ +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +rOo +lRN +aUR +aUR +mow +xCo +fSg +dQf +kvb +udr +fzt +aUR +aUR +oGQ +rOo +pRW +pRW +pRW +pRW +wNb +mza +cGx +mza +neD +mza +mza +mza +wNb +cGx +mza +mza +mza +mza +mbc +meR +oXk +pBG +ejI +lja +jMj +jMj +jMj +jMj +fdp +pRW +pRW +pRW +pRW +pRW +pRW +toD +lDf +xeW +toD +fbl +gcM +toD +neI +gYw +toD +gQh +gcM +ekU +lIp +lIp +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(27,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +aDe +pRW +eMZ +eMZ +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +rOo +qys +qys +qys +qRu +qRu +lpx +xjy +ade +qRu +qRu +oRR +oRR +oRR +rOo +pRW +pRW +pRW +pRW +dSA +jfJ +lKI +meR +rpN +meR +itb +iWB +qMX +nVE +apg +apg +apg +oik +yku +apg +apg +hnd +ejI +aHb +jMj +gBj +kpp +jMj +kTr +pRW +pRW +pRW +pRW +pRW +pRW +toD +oXO +pUe +toD +kDf +tPg +toD +qKR +uCH +toD +ioT +lRu +ekU +fCa +mDp +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(28,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +aDe +pRW +eMZ +eMZ +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +rOo +ezO +hbm +hbm +kIf +nhg +pMc +eWW +eWW +nhg +iNo +hbm +hbm +vMn +rOo +pRW +pRW +pRW +pRW +pRW +pRW +pRW +joq +lZR +tqA +ejI +ejI +pRW +pRW +pRW +pRW +pRW +pRW +bDT +bDT +ttB +ttB +bDT +pcp +bDT +lJc +rNh +pEX +tZm +utr +nel +utr +mWG +jMj +mWG +toD +xcx +kxG +toD +rfk +toD +toD +toD +pnv +toD +wQN +toD +ekU +mDp +mDp +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +gtM +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(29,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +aDe +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +eWN +cEs +hnr +hbm +dbb +wUw +pMc +eWW +eWW +kVv +qiH +hbm +hbm +ymb +phe +pRW +pRW +pRW +pRW +pRW +pRW +pRW +oVI +mVT +pqI +kdg +kdg +pRW +pRW +pRW +pRW +pRW +pRW +bDT +nHz +ovA +wbO +poV +vTK +oks +qLY +ppq +lSc +dbh +yde +dAV +utr +mWG +jMj +mWG +uYk +mIe +kxG +sxt +fHi +dzN +dzN +dzN +vFN +dzN +aZG +dzN +rLU +mDp +mDp +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(30,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +aDe +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +rOo +lRN +aUR +aUR +cEL +xCo +pgO +eWW +eWW +udr +dlt +aUR +aUR +xER +rOo +pRW +pRW +pRW +pRW +pRW +pRW +pRW +gQH +rpN +rkN +vqf +cMM +pRW +pRW +pRW +pRW +pRW +pRW +bDT +yjy +ykh +ykh +aSs +nAr +bDT +giU +ppq +oCa +bXb +bXb +jgb +utr +mWG +jMj +mWG +toD +mIe +kxG +toD +tdj +ido +wxE +qtE +fAo +sCk +hjm +dzN +rLU +mDp +mDp +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(31,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +aDe +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +lIp +lIp +rOo +aHi +aHi +aHi +qRu +qRu +fDP +eWW +lcH +qRu +qRu +fXo +fXo +fXo +crw +kMD +xIf +pRW +pRW +pRW +pRW +pRW +gQH +rpN +rkN +ieR +jWy +pRW +pRW +pRW +pRW +pRW +pRW +bDT +gBH +ykh +cNP +lwb +kUS +pBU +jdn +ppq +jrk +aHe +aHe +xMz +utr +utr +rxP +utr +toD +icD +hDs +toD +toD +toD +toD +toD +log +kYx +lyv +tCI +ekU +mDp +mDp +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(32,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +aDe +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +rOo +vqV +mFx +jtb +act +nhg +pOm +dQf +hNl +nhg +olF +hbm +hbm +vMn +loK +hRL +dJW +pRW +pRW +pRW +pRW +pRW +rfd +rpN +rkN +meR +bYR +pRW +pRW +pRW +pRW +pRW +pRW +bDT +qza +lev +qNj +kZU +arH +bDT +atV +yhw +tOS +udc +tHW +tHW +vqe +tHW +udc +mob +tHW +syi +jAz +tHW +rbh +qwk +awP +toD +toD +jaa +wbK +toD +ekU +mDp +mDp +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(33,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +aDe +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +wTM +qYN +mFx +mFx +fSf +fjC +bNl +xjy +ezb +kVv +dbE +hbm +mFC +ymb +vFj +qCZ +cHx +pRW +pRW +pRW +pRW +pRW +gQH +rpN +rkN +kdg +jbd +pRW +pRW +pRW +pRW +pRW +pRW +bDT +ovA +aUo +oKz +hCJ +eZZ +oks +tpX +qCG +lsM +qIa +opc +qCG +wiW +dbq +oMf +ykZ +aFC +hKe +lnH +gmM +lnH +thH +ltB +toD +iEL +rOL +mzd +wzb +ekU +mDp +mDp +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(34,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +aDe +pRW +pRW +pRW +pRW +vWZ +vWZ +vWZ +vWZ +vWZ +vWZ +mDp +mDp +mDp +qRu +aqP +rbx +nqb +ekI +xCo +pMc +eWW +eWW +udr +oZt +aUR +aUR +oGQ +qRu +qCZ +eWW +pRW +pRW +pRW +pRW +pRW +gQH +rpN +rkN +vqf +lgN +pRW +pRW +pRW +pRW +pRW +pRW +lHz +nnb +lHz +pNX +pNX +pNX +pNX +dgC +pNX +pNX +tZm +rDO +tZm +tZm +tZm +tZm +tZm +hFl +jPF +jPF +jPF +jPF +pTw +ppq +srS +dSa +dSa +kck +fWQ +ekU +lIp +lIp +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(35,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +aDe +pRW +pRW +pRW +pRW +vWZ +cam +ggD +nNX +ttn +vWZ +mDp +mDp +mDp +qRu +qRu +qRu +qRu +qRu +qRu +hYh +huY +huY +qRu +qRu +qRu +qRu +qRu +qRu +wTy +xmL +pRW +pRW +pRW +pRW +pRW +faD +rpN +rkN +ieR +ofg +pRW +pRW +pRW +pRW +pRW +pRW +duZ +iPU +fVB +rsU +kfN +afR +kfN +dGj +iUO +pNX +pRW +pRW +pRW +pRW +pRW +pRW +pRW +uVq +uIS +kjt +amZ +jPF +frq +dZd +bkU +jCw +iKn +hmb +nsd +rLU +mDp +lIp +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(36,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +aDe +pRW +pRW +pRW +pRW +vWZ +kiy +dni +vWZ +vWZ +vWZ +mDp +mDp +mDp +qRu +xEA +slc +wcQ +bsW +rMY +pnF +dQf +aVO +qRu +jGS +ety +xoj +mth +spv +soU +tPb +pRW +pRW +pRW +pRW +pRW +gQH +fRk +cBY +fWJ +fWJ +pRW +pRW +pRW +pRW +pRW +pRW +fKw +xnR +thZ +pNX +vLs +jfA +hpi +eUy +kBS +pNX +pRW +pRW +pRW +pRW +pRW +pRW +pRW +tIG +jPF +vsS +dLG +jPF +xJB +gEp +toD +bXJ +wlC +fQj +wlC +rLU +mDp +aDe +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(37,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +aDe +pRW +pRW +pRW +pRW +qBd +eEW +opn +qwq +ikD +vWZ +mDp +lIp +lIp +qRu +oUc +eWW +eWW +eWW +eAv +pKi +wKj +wQy +qRu +iyI +wpj +cIp +mth +dzg +soU +eWW +pRW +pRW +pRW +pRW +pRW +eNH +rpN +rkN +meR +yez +pRW +pRW +pRW +pRW +pRW +pRW +duZ +fVB +vcY +pNX +bQP +qtU +idX +uML +vue +pNX +pRW +pRW +pRW +pRW +pRW +pRW +pRW +hzN +rbM +jPF +uEE +cYH +sAb +eme +toD +toD +toD +toD +toD +ekU +mDp +aDe +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(38,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +aDe +pRW +pRW +pRW +pRW +vWZ +dSf +qTq +vWZ +vWZ +vWZ +mDp +mDp +mDp +sQe +krA +eWW +cjM +sJj +eWW +bjg +xjy +ezb +sQe +iyI +wpj +cIp +mth +ehf +pdP +eWW +pRW +pRW +pRW +pRW +pRW +rUk +jkE +tYf +meR +fmZ +pRW +pRW +pRW +pRW +pRW +pRW +duZ +fVB +wwu +pNX +sUJ +tfP +sxo +pNX +pNX +pNX +pRW +pRW +pRW +pRW +pRW +pRW +pRW +vLB +vQX +mXs +tAS +tAS +pIC +ppq +toD +pWt +dSa +xvV +dAl +ekU +fCa +aDe +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(39,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +aDe +pRW +pRW +pRW +pRW +vWZ +dSf +ggD +vWZ +vWZ +vWZ +mDp +mDp +mDp +sQe +pBY +eWW +hgr +hgr +pyL +dip +eWW +eWW +sQe +iyI +wpj +cIp +qpQ +ioE +rWa +mMo +pRW +pRW +pRW +pRW +pRW +rfd +pUq +rkN +meR +oDD +pRW +pRW +pRW +pRW +pRW +pRW +duZ +fVB +mKr +pNX +pNX +pNX +pNX +pNX +rmr +nih +oHk +cNW +pRW +pRW +pRW +pRW +pRW +bCG +rug +ddG +toD +hln +amL +toD +toD +ekU +mDp +aDe +mDp +mDp +mDp +mDp +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(40,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +aDe +pRW +pRW +pRW +pRW +vWZ +uzF +ggD +jOk +vLb +vWZ +mDp +mDp +ikZ +qRu +dEc +eWW +tPY +ody +eWW +efz +eWW +miA +cmc +bDG +cIZ +eUQ +vHH +qhW +jam +sZy +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +kUA +wtH +eSg +icA +ikE +sFK +xvV +tMG +ekU +mDp +aDe +mDp +mDp +mDp +mDp +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(41,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +lIp +pRW +pRW +pRW +pRW +vWZ +dzs +jFD +vWZ +bxz +vWZ +mDp +lIp +mDp +sQe +lVD +aFW +uDK +ndm +hui +oqZ +eew +wlm +phf +hpE +dug +cIp +qpQ +cmc +cmc +cmc +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +qBq +ozi +pXO +toD +toD +toD +toD +toD +ekU +mDp +aDe +mDp +mDp +mDp +mDp +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(42,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +vWZ +vWZ +vWZ +vWZ +vWZ +vWZ +mDp +lIp +mDp +lTx +sQe +acD +uCN +vhU +nzW +nOY +bmd +kra +ntf +iyI +lui +cIp +qpQ +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +qBq +ozi +pXO +iOv +dTP +cNK +glD +seE +agS +mDp +aDe +mDp +mDp +mDp +mDp +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(43,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +lIp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +tvV +rpN +uuE +meR +toX +duZ +kzb +pRW +pRW +pRW +pRW +pRW +duZ +uHQ +nXk +tWY +nyz +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +owP +bFz +tDo +eBV +omP +utE +qqz +jin +agS +mDp +aDe +mDp +mDp +mDp +mDp +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(44,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +lIp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +xnz +adc +mjW +rIr +qIz +qIz +qIz +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +duZ +duZ +duZ +lar +duZ +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +rVB +ozi +guA +tgD +tgD +tgD +jHx +tgD +hCj +mDp +aDe +mDp +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(45,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +xIp +xIp +xIp +xIp +xIp +koS +koS +koS +koS +bkF +tPK +koS +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +iCr +hBs +aOX +iST +flY +gLF +nAQ +hBs +cny +xGm +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +geo +nXk +crH +fVB +fVB +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +bMV +hxK +oAr +tgD +vKw +ifA +rnp +tmA +hCj +lmG +mAv +mDp +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(46,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +xIp +ivK +rMu +dYN +kKY +smf +mQm +ghn +nXe +tjU +eSQ +koS +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +iCr +hBs +nrC +tmB +teC +iVw +iEr +hBs +cny +xGm +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +nXk +gwo +duZ +mKr +fVB +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +aBb +ozi +pXO +tgD +tgD +tgD +tgD +tgD +hCj +mDp +aDe +mDp +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(47,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +xIp +hRI +dGL +izp +gPQ +abL +fxR +ipB +hwO +keM +lzH +koS +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +svR +wuz +wuz +wuz +svR +wuz +cqR +svR +pRW +pRW +pRW +pRW +qIz +qIz +qIz +jOO +tNZ +gYW +sBd +qIz +qIz +qIz +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +nXk +eUu +duZ +nXk +fVB +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +kNK +ozi +pXO +qiK +kHF +grl +loQ +nGf +jsT +mDp +aDe +mDp +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(48,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +xIp +kmB +uXW +lwJ +oIU +cTd +rGd +qoP +qoP +cEy +jWf +koS +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +svR +voG +pad +fOE +pad +ako +goH +xLy +pRW +pRW +pRW +pRW +snO +teE +ieJ +vrN +gep +vrN +ieJ +eBe +qIz +pRW +pRW +pRW +mKr +pRW +pRW +pRW +pRW +pRW +duZ +duZ +duZ +mKr +fVB +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +dEU +dwU +tDo +fBi +bRc +cLW +dNE +bOw +jsT +mDp +aDe +mDp +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(49,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +xIp +xIp +xIp +xIp +xIp +liR +eXW +shA +hwO +ebY +gFG +koS +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +iRy +ako +iFZ +hZx +mOM +ako +goH +qVn +pRW +pRW +pRW +pRW +lHG +pbD +aIx +cnh +hjr +bPE +eaq +aHX +qIz +pRW +pRW +pRW +mKr +fVB +rRb +fVB +fVB +fVB +fVB +fVB +fVB +rRb +fVB +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +ffK +ozi +pXO +eVG +eVG +eVG +lPK +eVG +oey +mDp +aDe +mDp +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(50,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +kxi +cRH +fwL +ezI +rcN +mQJ +sDS +unq +vtM +eCY +bVe +koS +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +svR +egt +mOM +mOM +uRp +ako +oZR +ryg +pRW +pRW +pRW +pRW +lGn +hBs +dKK +hBs +nnL +hBs +dKK +xHh +qlw +pRW +pRW +pRW +dIj +qnn +dIj +dIj +dIj +dIj +aPI +oIt +aPI +aPI +aPI +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pWZ +ozi +apK +eVG +eyb +aIF +nlx +iCF +oey +mDp +aDe +mDp +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +nWQ +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(51,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +kxi +nbQ +pal +bUY +wYX +ahH +pvZ +unq +tAT +hwO +rJB +koS +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +iRy +ako +omH +kZh +tcG +ako +sDO +qVn +pRW +pRW +pRW +pRW +kzf +hBs +hBs +hBs +iVj +hBs +hBs +rjB +uRJ +pRW +pRW +pRW +qQX +gZZ +gvn +oQz +huo +dIj +rQF +qEp +awE +gkl +luQ +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pho +ozi +pXO +eVG +eVG +eVG +eVG +eVG +oey +fCa +lIp +mDp +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(52,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +kxi +bVy +tut +jvp +oJw +szg +fPM +hxQ +eow +gii +oFh +koS +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +svR +gJS +kTz +pDh +fqJ +fqJ +utf +fIE +pRW +pRW +pRW +pRW +hhW +mMN +mMN +ukW +qWG +wZF +tKb +dSQ +qlw +pRW +pRW +pRW +aRl +gZZ +bvp +gZZ +okq +dIj +rfH +qEp +uGR +qEp +gBN +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +bTw +ozi +pXO +cfI +xhw +grd +xQF +jPU +eWi +mDp +lIp +mDp +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +gtM +mDp +mDp +mDp +mDp +mDp +mDp +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(53,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +kxi +kxi +kxi +kxi +kxi +jHd +wPt +dsT +koS +koS +koS +koS +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +iRy +iTl +goH +rtG +vBL +goH +goH +yic +pRW +pRW +pRW +pRW +qIz +veP +jzA +nJV +bxO +vgG +dQC +nzx +qlw +pRW +pRW +pRW +tPG +fmi +nwz +dLx +rZm +dIj +pYD +qEp +bnr +okU +ygh +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +bTw +dwU +tDo +slB +xwp +cFz +qZA +dKT +eWi +mDp +lIp +mDp +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(54,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +pRW +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +koS +ppE +kHG +wdT +egY +tuz +prx +hxQ +koS +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +svR +cOG +goH +rtG +goH +gMn +xOU +pFL +pRW +pRW +pRW +pRW +qIz +nzx +jzA +mbs +nNk +kfV +dQC +nzx +qlw +pRW +pRW +pRW +bnP +woC +rAZ +jEh +qJz +dIj +hZk +vYZ +dyX +bFw +iuo +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +aZZ +feG +loL +jff +jff +jff +vMN +jff +pNT +lIp +lIp +mDp +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(55,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +pRW +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +koS +jnq +aqT +aqT +eCY +hwO +fdv +spw +koS +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +iRy +iTl +goH +rtG +lGk +svR +svR +svR +pRW +pRW +pRW +pRW +pRW +fRZ +fRZ +ioP +xHD +oNP +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +dHs +iEe +egu +dHs +dHs +dHs +egu +ktI +dHs +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +tmk +hxK +rNf +jff +sNN +whM +bkt +cWS +pNT +mDp +mDp +mDp +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(56,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +pRW +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +koS +qqe +hwO +hwO +hwO +aRa +aRa +aRa +aRa +aRa +aRa +aRa +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +svR +iTl +goH +rtG +cgN +svR +pRW +pRW +pRW +pRW +pRW +pRW +pRW +uxB +iXx +cOu +mWg +iiB +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +jrX +dkQ +nqv +oLT +dHs +qMp +byw +eMi +xHi +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +aBb +ozi +pXO +jff +jff +jff +jff +jff +pNT +mDp +mDp +mDp +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(57,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +pRW +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +koS +iei +hwO +hwO +vJt +aRa +wCL +gIr +uqK +xbs +hBA +aRa +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pXQ +ryg +ryg +uQX +hQy +svR +pRW +pRW +pRW +pRW +pRW +pRW +pRW +tiv +slM +fsS +hhH +xvN +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +iRq +ehv +lPw +ouz +dHH +nyw +aUb +alr +qaw +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +jDs +fIn +tDo +enA +pee +rZR +iyz +hRV +mkA +mDp +mDp +mDp +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(58,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +pRW +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pqK +qKx +hwO +hwO +ijz +gZv +mxO +mxO +mxO +mxO +hwg +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +svR +iTl +goH +dVV +snE +svR +pRW +pRW +pRW +pRW +pRW +pRW +pRW +fRZ +fRZ +iAs +kXa +jZb +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +gkq +xKC +vIj +ffh +guG +fOo +hVK +oIJ +mtG +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +tQp +rug +iRK +fcX +pKn +wKq +sjN +oOE +mkA +mDp +mDp +mDp +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(59,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +pRW +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pqK +sNF +hwO +hwO +hwO +aRa +urC +wUs +aQo +wUs +qQB +aRa +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +svR +iTl +oIp +goH +uxG +svR +pRW +pRW +pRW +pRW +pRW +pRW +pRW +iNI +iHO +iNI +iHO +iNI +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +vIV +ixd +oOu +lqx +dHs +dYI +wlW +vCs +bwA +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +gXk +xRM +pXO +fcX +fcX +fcX +kJq +fcX +ykA +fCa +mDp +mDp +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(60,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +pRW +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pqK +nfD +hwO +hwO +hwO +aRa +nWM +nWM +nWM +nWM +qyg +aRa +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +bMe +iPf +bMe +iPf +bMe +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +dHs +ieT +skW +dHs +dHs +wdQ +xKC +bgr +ioV +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +bGx +ozi +pXO +fcX +iph +vHw +urJ +ehA +ykA +mDp +mDp +mDp +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(61,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +pRW +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +koS +hwO +tgM +qLf +efr +aRa +qYG +iQA +nWM +iQA +xhP +aRa +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +puN +gwr +gwr +gwr +puN +gwr +puN +gwr +puN +gwr +puN +gwr +gwr +bWt +vha +mPa +bWt +bCS +ukC +lRg +lYc +cfa +eEv +lRg +cau +bgr +lYc +hlv +eMm +iIb +fMY +pRW +pRW +pRW +pRW +nMp +ozi +qrK +fcX +fcX +fcX +fcX +fcX +ykA +mDp +mDp +mDp +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(62,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +pRW +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +koS +koS +koS +koS +koS +aRa +nWM +uNv +drp +pVZ +rIN +aRa +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +puN +gwr +puN +gwr +puN +gwr +puN +gwr +puN +gwr +puN +puN +gwr +vXG +eHm +tEs +vXG +wEl +vZb +vZb +vZb +bwC +vOD +qYV +oMl +rGq +vxY +fkK +fkK +mYX +sHy +pRW +pRW +pRW +pRW +bAd +ozi +ePH +vvQ +pXy +liz +sDz +sDz +iVb +mDp +mDp +mDp +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(63,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +aRa +nWM +iQA +nWM +iQA +qyg +aRa +pRW +pRW +pRW +ijZ +ijZ +hwR +hwR +vya +ijZ +whu +owo +owo +gsB +owo +owo +whu +whu +uwL +csz +qbE +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +uwL +csz +qbE +vRK +dHs +egu +egu +qRd +dHs +dHs +dHs +bgr +xKC +bOx +ojL +eSw +uAn +pRW +pRW +pRW +pRW +dqY +tHr +mtS +swE +hGf +tQp +uTa +sDz +iVb +mDp +mDp +mDp +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(64,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +aRa +nWM +oGF +tLd +xbs +ilA +aRa +pRW +pRW +pRW +nUG +rwO +kEK +bKV +qib +uQR +whu +jHB +uVS +gpS +nOJ +rbQ +sdA +whu +uwL +csz +fLw +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +uwL +csz +fLw +qAg +mUK +pHO +wWa +pHO +qTx +tIc +juF +lnu +mMS +sHS +fwu +fwu +fwu +fwu +fwu +pRW +pRW +qjz +eam +rqj +tVI +rUx +tQp +iUD +nwm +bCG +lIp +aDe +lIp +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(65,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +aRa +nWM +jbE +sVF +jbE +huG +aRa +pRW +pRW +pRW +ijZ +mlj +xQV +jdh +fOX +nMq +whu +xdd +dlB +gub +irM +irM +xAI +lGI +oGt +csz +qbE +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +oGt +csz +qbE +juF +eLe +fqm +rRJ +tdK +bAJ +lKq +qAg +hNI +mqc +kVo +kKM +iBd +iry +bdJ +qSo +cyt +fwu +dAa +tCz +sCe +vGe +vGe +vGe +vGe +qAp +vGe +vGe +fnt +fnt +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(66,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +aRa +aRa +aRa +aRa +aRa +aRa +aRa +pRW +pRW +pRW +ijZ +oZF +mmt +icZ +xfV +etO +whu +fTU +qfo +jlG +irM +irM +wfo +lGI +mDv +csz +qbE +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDv +csz +qbE +qAg +tmX +hFt +dEl +oRa +oYo +eaI +dxA +las +fZo +uJJ +kCM +kgh +xGc +szC +kgh +skH +fwu +sYQ +qKw +bJH +vGe +dTF +jym +nfS +eGv +wgC +dAn +fnt +csb +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(67,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +ijZ +mTN +xQV +gly +xlI +sQh +whu +hFZ +ygC +iaO +lKg +eEO +kMH +lGI +ivz +csz +hyb +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +ivz +csz +hyb +juF +lZl +amU +nSs +iGC +iGC +hQR +juF +dIx +vHi +ooU +kgh +cfl +rEu +lSq +szC +neQ +yfP +sYQ +nDp +pFA +vGe +mFn +dZN +xIL +fjh +acc +hUF +fnt +csb +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(68,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +ijZ +iKm +jvv +mEc +kHp +aZa +whu +oWH +jct +irM +irM +irM +fTE +lGI +uwL +oUK +kZg +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +uwL +oUK +kZg +jkz +cOC +cOC +qHA +cOC +cOC +cOC +juF +obY +etB +sHs +nDm +oJy +cfl +afb +kgh +neQ +fwu +ehC +nDp +itp +qOd +dwF +kNr +qIb +qGj +rcx +bYA +fnt +csb +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(69,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +pRW +mDp +whu +cqv +hFc +xZy +mgX +czU +vXA +whu +kzM +qxs +oby +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +kzM +qxs +oby +juF +lcu +kaB +tOe +nnE +nnE +nnE +juF +fMh +vHi +jmm +kgh +nKH +kgh +pgh +lHT +kgh +yfP +sYQ +pHA +mIa +gYU +nuY +nAR +jvd +eYX +acc +irg +bGt +pQv +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(70,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +pRW +mDp +whu +whu +iyL +whu +whu +whu +whu +fsC +wJW +cgQ +mdU +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +wJW +cgQ +mdU +rLu +bJZ +lHu +kdL +xFX +xFX +xFX +sME +xVz +lYK +pYY +wkf +wkf +wkf +wkf +xvH +wkf +pky +pUT +haG +mIa +gYU +gFX +ctW +ctW +eYX +acc +eYa +fnt +csb +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(71,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +sCm +sCm +sCm +sCm +sCm +sCm +sCm +hYp +hve +rQf +jGo +lCB +lCA +rQf +rWG +nqR +rNd +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +rWG +nqR +rNd +pqY +wbG +wAJ +cVq +lfj +lfj +lfj +uIx +tXS +sgF +wLV +kfr +kfr +kfr +kfr +bSL +kfr +cjf +sjc +nDp +mIa +vGe +bKW +kZF +oWr +gQO +fmI +sUx +bGt +csb +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(72,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +sag +sag +sag +sag +sag +sag +sag +vwx +oZp +eTX +kuT +hNU +tLU +mqr +iGJ +csz +fLw +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +iGJ +csz +fLw +qAg +jUt +bMn +lNs +dci +dci +ira +juF +fIS +axp +jmm +kgh +bYC +kgh +rKV +jwV +kgh +yfP +lTF +tfh +kas +iRX +iRX +iRX +iRX +cAA +iRX +iRX +vAJ +csb +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(73,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mVR +xrB +foh +mIF +mIF +rmq +mVR +jor +rzi +rQf +cTS +uWQ +mAp +oBJ +uwL +csz +hyb +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +uwL +csz +hyb +qAg +jUt +bMn +eCw +fNb +fNb +fNb +juF +bAI +vHi +ggO +nDm +cZK +cfl +eHS +kgh +kgh +fwu +eCA +uHH +mIa +iRX +tFQ +uPA +cGc +wSM +etN +etN +vAJ +csb +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(74,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +pRW +mDp +aDx +ybU +mTQ +ybU +ybU +bIW +aDx +aDx +tMu +csz +qbE +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +tMu +csz +qbE +fSO +gIR +oTe +wbV +flF +flF +flF +juF +hAY +asv +juw +kCM +cfl +tAf +lSq +szC +kgh +yfP +sYQ +cHb +mIa +iRX +tFQ +foz +twY +lYt +wpd +jLg +cfG +csb +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(75,1,1) = {" +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +pRW +mDp +aDx +mFr +vZg +arY +anx +aIH +eOr +aDx +uwL +csz +qbE +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +uwL +csz +qbE +eYM +eYM +eYM +eYM +eYM +eYM +pRW +pRW +vkz +vHi +ggO +kgh +kgh +cfl +szC +kgh +uFV +fwu +rIl +wpb +hUa +iRX +tFQ +pRk +wpd +etN +etN +etN +vAJ +csb +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(76,1,1) = {" +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +uEl +uEl +uEl +uEl +aDx +lPA +vZg +vZg +vZg +rmN +dwr +gpg +uwL +csz +qbE +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +uwL +csz +qbE +tFB +aeS +hkx +hKL +kHZ +eYM +pRW +pRW +bXX +vHi +ggO +jAX +gdj +iJo +eff +uyJ +pZS +fwu +qXw +wpb +mIa +iRX +tFQ +pRk +wpd +buE +eLj +dQR +cfG +csb +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(77,1,1) = {" +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +eMZ +eMZ +uow +uow +uow +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +tFQ +xyo +dCq +eAh +aDx +pgV +vZg +qtF +pqF +vZg +dSG +gpg +luA +csz +qbE +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +luA +csz +qbE +aEX +tOc +uIi +xcB +trK +eYM +pRW +pRW +oSl +fKp +vNt +ceo +ceo +ceo +ceo +ceo +ceo +ceo +pVw +wpb +nUC +iRX +tFQ +pRk +wpd +wpd +xkX +wpd +vAJ +csb +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(78,1,1) = {" +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +eMZ +eMZ +txB +ucO +uow +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +tFQ +ajj +wpd +fJj +aDx +nTO +vZg +ttS +oOO +vZg +pHp +nBn +tJE +csz +gvw +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +tJE +csz +gvw +cbh +aEU +keI +fxU +eRt +pRH +pRW +pRW +jZP +lYl +cqX +ceo +vZv +uZs +gPr +sOy +qwt +hxs +pVw +wpb +mIa +lPc +wpd +pRk +wpd +aET +kDA +aET +vAJ +pQv +mDp +mDp +mDp +mDp +mDp +mDp +mDp +gtM +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(79,1,1) = {" +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +eMZ +fcH +oXI +kMe +uow +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +tFQ +ije +ilx +ovX +aDx +ejy +vZg +bTa +vZg +vZg +xiO +gpg +wJW +cgQ +kXE +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +wJW +cgQ +kXE +efa +oRe +lLL +uri +ePT +jbC +pRW +pRW +vXJ +mVc +jRs +ceo +hjT +wpm +aLW +gPr +gPr +dEC +sYQ +wpb +ukZ +iRX +vgT +pRk +iyW +fjt +vfA +bqe +vAJ +lIp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(80,1,1) = {" +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +eMZ +vHc +xNy +kMe +uow +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +jPQ +cbF +dQR +wpd +aDx +wqB +vZg +lAJ +vZg +vZg +cPx +aDx +ryR +vhu +qbE +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +ryR +vhu +qbE +eYM +lLW +jCH +nXl +lIJ +gjp +pRW +pRW +vXJ +rLn +ukt +ceo +hmJ +qpC +cuL +gPr +bQS +ceo +sYQ +uvO +itp +iRX +rkk +vqh +qls +fIt +dKQ +wRr +vAJ +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(81,1,1) = {" +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +eMZ +fcH +xNy +mkj +uow +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +uEl +pGO +xkX +wpd +wpd +hDT +vZg +vZg +bTa +mWk +vZg +qvv +aDx +dyM +vEl +hyM +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +dyM +vEl +hyM +eYM +eYM +eYM +eYM +eYM +eYM +pRW +pRW +lLU +iWN +izS +nbO +edC +oSs +lzL +cNf +eYh +hxs +bix +wpb +mIa +iRX +wdB +wpd +kUn +xDH +duc +upQ +vAJ +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(82,1,1) = {" +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +eMZ +fcH +xNy +kMe +uow +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +uEl +tFQ +hnl +vBb +pHm +aDx +ejb +vZg +lAJ +vZg +qYS +jsc +aDx +tWJ +gSJ +tWJ +pRW +pRW +pRW +eEE +bYT +uFa +oYq +oSi +eEE +pRW +pRW +tWJ +gSJ +tWJ +eqt +iVW +uLA +gMI +cSS +chv +pRW +pRW +aJe +njG +mXR +ceo +ceo +ceo +ceo +ceo +ceo +ceo +bix +wpb +mIa +bNp +bNp +bNp +bNp +bNp +umy +bNp +xFH +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(83,1,1) = {" +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +eMZ +txB +xNy +kMe +uow +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +uEl +uEl +tbn +uEl +uEl +aDx +nMh +vZg +bTa +sWT +hfZ +gBW +gVf +oGt +csz +qbE +pRW +pRW +pRW +eEE +xsd +mHV +rxV +kyR +eEE +pRW +pRW +oGt +csz +qbE +gwT +pGL +qYk +mYS +xuu +gwT +pRW +pRW +aJe +njG +gGu +klY +hwG +uht +sfy +mrL +wPi +uMG +jRF +wpb +mIa +rRZ +hzj +qKo +bds +bds +eWX +vcE +xFH +lIp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(84,1,1) = {" +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +eMZ +mrk +xNy +bzV +uow +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +uEl +mzm +vaL +fsw +iIy +aDx +rdw +vZg +lAJ +qtF +sCN +pCH +klq +mDv +csz +qbE +pRW +pRW +pRW +fPm +bbY +scE +qPc +djp +sAZ +pRW +pRW +mDv +csz +qbE +gwT +xRP +rut +oLc +qDS +itJ +pRW +pRW +okJ +fby +pQM +klY +xjV +qPH +ibB +ibB +lsR +klY +jNG +vbA +tZz +pWg +jDf +puo +vct +vct +avn +wNh +cFb +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(85,1,1) = {" +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +eMZ +mrk +xNy +rfs +uow +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +uEl +cRF +vBU +okH +uSx +cXQ +fNB +ice +oXR +fhj +oOO +pCH +jkG +ivz +csz +hyb +pRW +pRW +pRW +eEE +kFN +oSi +eEE +eEE +eEE +pRW +pRW +ivz +csz +hyb +gwT +qsP +qYk +hbZ +ifg +gOV +pRW +pRW +aJe +rJd +gGu +klY +kjr +hqb +gry +ibB +ibB +iKZ +sYQ +wpb +mIa +rRZ +uPS +fUH +hKM +hdr +hnB +vrg +xFH +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(86,1,1) = {" +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +eMZ +gHo +xNy +rfs +uow +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +uEl +pMA +fiD +vdw +qKA +aDx +tRv +gqW +jbQ +bPH +hNv +xAO +aDx +uwL +oUK +kZg +pRW +pRW +pRW +eEE +tzi +frz +eEE +eEE +pRW +pRW +pRW +uwL +oUK +kZg +chv +nYo +egX +gqb +gXK +chv +pRW +pRW +aJe +rJd +qQJ +klY +loA +ipe +sYi +ibB +ibB +klY +qXw +wpb +mIa +bNp +lfu +lfu +lAl +lfu +hnB +ufe +cFb +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(87,1,1) = {" +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +eMZ +mrk +wBq +rfs +uow +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +uEl +ogl +geD +ogu +dZX +aDx +aDx +sXx +kDN +aDx +aDx +aDx +bIW +kzM +qxs +oby +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +kzM +qxs +oby +sUg +rST +pVI +rST +chv +chv +pRW +pRW +noT +rJd +tqI +xQx +xmK +iZN +ego +fuU +rre +uMG +sYQ +wrp +qFa +rRZ +xYe +xYe +jGQ +sqm +lYE +ujt +xFH +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(88,1,1) = {" +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +eMZ +gFT +otK +eRP +uow +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +uEl +aZo +fiD +vdw +gSb +dbo +ode +haj +rbi +qog +qog +qog +dbo +pRW +wJW +cgQ +mdU +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +wJW +cgQ +mdU +fUn +hRR +hRR +xLu +dqh +hrJ +pRW +pRW +tVU +rJd +eTk +klY +klY +klY +klY +klY +klY +klY +cmO +iln +mIa +xFH +xFH +wJw +xFH +xFH +wJw +xFH +xFH +muB +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(89,1,1) = {" +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +nbH +eQr +ouW +xvK +uow +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +uJh +rsn +fiD +vdw +wiC +dbo +fmp +qog +xec +qog +qog +qog +dbo +pRW +rWG +nqR +rNd +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +rWG +nqR +rNd +tEP +wng +owE +nho +aXF +tVU +pRW +pRW +hMB +lYU +sPx +nLn +nLn +bDo +nPK +jsq +nLn +pCc +lKf +uvO +bJp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(90,1,1) = {" +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +dvL +epc +pFe +dIa +uow +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +uJh +hSv +fiD +idK +yhE +ikR +ddT +qog +ogL +qog +qog +qog +dbo +pRW +iGJ +csz +fLw +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +iGJ +csz +fLw +xgi +bYH +vTa +cHj +rME +dgF +pRW +pRW +luC +dgF +wnN +aOx +bHA +fxj +clg +wDc +kle +cSU +hXy +kCJ +nxO +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(91,1,1) = {" +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +uEG +cdE +ldd +cdE +uow +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +uJh +eJc +xkd +kQP +gSR +fsM +xaP +qog +drq +qog +qog +qog +dbo +pRW +uwL +csz +hyb +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +uwL +csz +hyb +wQh +jZY +jZY +jZY +jZY +jQZ +pRW +pRW +rsI +ppj +eKJ +ppj +nic +ppj +ppj +ppj +ppj +ppj +sYQ +oXG +lwk +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(92,1,1) = {" +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +uow +pyQ +vBs +tWU +uow +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +uJh +izN +dUW +cvP +bTc +cWM +eID +avE +vbI +qog +qog +qog +dbo +pRW +tMu +csz +qbE +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +tMu +csz +qbE +dQN +rHV +hiV +jRH +mLf +uiz +pRW +pRW +sLb +ppj +taD +uKo +vFg +dec +jSC +nok +ewY +ppj +tFT +vpB +lwk +mDp +fWa +mDp +mDp +fWa +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(93,1,1) = {" +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +uJh +tUr +gmB +vQu +lBn +dbo +eZX +avE +vbI +qog +qog +qog +dbo +pRW +uwL +csz +qbE +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +uwL +csz +qbE +bWA +kuF +kuF +wQo +cBb +dLn +pRW +pRW +xYz +ppj +oIS +reb +ydY +fNZ +fNZ +fNZ +xyH +sCJ +pCA +jie +lwk +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(94,1,1) = {" +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +uJh +uJh +uJh +uJh +uJh +dbo +dbo +hHa +dbo +dbo +dbo +dbo +dbo +pRW +uwL +csz +qbE +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +uwL +csz +qbE +dQN +fIJ +fIJ +waz +wgT +wgT +pRW +pRW +pwN +ppj +cKJ +fNZ +wdD +jLs +xiN +fNZ +iXI +ppj +sYQ +bzj +lwk +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(95,1,1) = {" +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +luA +csz +qbE +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +luA +csz +qbE +dQN +tQg +gkx +woF +bks +wgT +pRW +pRW +bHz +ppj +fNZ +izh +wia +fNZ +jyA +fNZ +bAO +wOk +xCH +kVZ +lwk +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(96,1,1) = {" +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +tJE +csz +gvw +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +tJE +csz +gvw +dQN +eWn +eWn +waz +wgT +qhO +pRW +pRW +drj +ppj +pid +kDI +dum +fNZ +fNZ +fNZ +edn +wOk +sYQ +fMp +lwk +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(97,1,1) = {" +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +wJW +cgQ +kXE +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +wJW +kXE +wJW +cgQ +kXE +dyS +dyS +dyS +coV +dyS +dyS +pRW +pRW +dyS +rdA +vUs +nic +vUs +psO +rzv +fNZ +qgp +wOk +sYQ +jYD +lwk +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(98,1,1) = {" +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +ffI +eYr +guj +jsK +ffI +ffI +ffI +ffI +ffI +ffI +sjz +vez +vez +vez +vez +vez +pRW +vez +vez +vez +pRW +ryR +vhu +qbE +pRW +pRW +pRW +pRW +pRW +pRW +pRW +ryR +vhu +qbE +wJW +cgQ +kXE +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +lmG +mDp +vUs +nic +vUs +nic +vUs +pRW +pRW +lwk +aFj +wLE +lwk +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(99,1,1) = {" +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +ffI +aEn +cGO +vWo +wap +kXu +wWO +eKi +aBt +ffI +sjz +qSj +eat +sje +mqD +nSz +pRW +wUV +sVt +vez +pRW +dyM +vEl +hyM +pRW +pRW +pRW +pRW +pRW +pRW +pRW +dyM +vEl +hyM +cgQ +kXE +pRW +pRW +odm +nkb +ojq +jwS +ojq +vtj +ojq +mAv +mDp +sTG +mDp +mDp +mDp +mDp +pRW +pRW +lwk +apy +wgg +fHl +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(100,1,1) = {" +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +uuo +arT +qpq +qFl +ivq +eSf +oSw +oSw +nCS +ffI +sjz +mxu +ecE +cAb +vrz +wJN +pRW +osH +wNE +vez +pRW +tWJ +gSJ +tWJ +pRW +pRW +pRW +pRW +pRW +pRW +pRW +tWJ +gSJ +tWJ +pRW +pRW +pRW +pRW +weg +cBT +ojq +mkk +ojq +mkk +ojq +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +lwk +xYq +rVa +rIa +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(101,1,1) = {" +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +lbH +vtH +vlH +lSK +rsx +iKc +hjJ +bqS +dHc +ffI +sjz +dPT +hqx +uuj +hGa +dsi +pRW +cmy +blH +tij +pRW +uwL +csz +fLw +pRW +pRW +pRW +pRW +pRW +pRW +pRW +uwL +csz +fLw +pRW +pRW +pRW +pRW +syC +jxy +alX +leM +rfZ +aDY +ojq +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +lwk +xtD +xtD +lwk +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(102,1,1) = {" +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +ffI +aKR +ulP +xSg +bYw +oBg +xID +jzJ +bhD +ffI +sjz +rfV +ecE +hdc +hia +eQu +pRW +oku +mxS +fxa +pRW +oGt +csz +qbE +pRW +pRW +pRW +pRW +pRW +pRW +pRW +oGt +csz +qbE +pRW +pRW +pRW +pRW +ojq +ojq +wOP +wOP +wOP +wOP +wOP +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(103,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +ffI +eYr +iro +ffI +ffI +ffI +ffI +ffI +hDD +ffI +sjz +oLd +ecE +hdc +hia +eQu +pRW +xav +thh +tij +pRW +mDv +csz +qbE +pRW +pRW +chD +chD +uIP +uIP +uIP +mDv +csz +qbE +afh +afh +afh +qRe +afh +afh +gHG +hmG +nKL +swx +wlz +wlz +wlz +wlz +wlz +pRW +pRW +pRW +pRW +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +gtM +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(104,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mNR +ccN +hqs +iFF +fIp +mNR +sjz +rLI +ecE +hdc +hia +eQu +pRW +rFW +jBH +vez +pRW +ivz +csz +hyb +pRW +pRW +chD +idf +sTi +tQL +uIP +ivz +csz +hyb +afh +ryO +vrn +tuF +wZf +nQd +twF +kkr +jVW +dGi +wzf +azK +ejF +hCO +wlz +pRW +pRW +pRW +pRW +pRW +pRW +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(105,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +lIp +lIp +lIp +lIp +mNR +qPF +oND +lDm +aOb +mNR +sjz +nvB +ecE +hdc +hia +eQu +pRW +xdh +cYX +tij +pRW +uwL +oUK +kZg +pRW +pRW +chD +mia +hBp +ioN +uIP +uwL +oUK +kZg +afh +ryO +cDC +bLe +dRt +owZ +wlz +xLH +oaQ +bDe +lRT +hVQ +hBV +qPZ +wlz +pRW +pRW +pRW +pRW +pRW +pRW +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(106,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +lIp +mDp +ikZ +mNR +gDW +obW +xJh +cxI +mNR +sjz +okM +ecE +hdc +hia +eQu +pRW +cQu +rvs +tij +pRW +kzM +qxs +oby +pRW +pRW +chD +xTU +fIK +ioN +uIP +kzM +qxs +oby +afh +afh +afh +bbD +afh +afh +wlz +aFA +hLb +rHQ +wGY +cgs +doR +ucf +wlz +pRW +pRW +pRW +pRW +pRW +pRW +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(107,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +lIp +mDp +mDp +mNR +hJP +guJ +yiz +nbe +mNR +tij +kow +ecE +sLp +izJ +pPZ +pRW +orZ +ufm +sjz +pRW +wJW +cgQ +mdU +pRW +pRW +wVf +pyK +qnh +gyu +uIP +wJW +cgQ +mdU +afh +hff +wuC +vYN +cMb +lma +wlz +iWo +ufn +qSB +dNs +eZV +lad +fRq +wlz +pRW +pRW +pRW +pRW +pRW +pRW +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(108,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +lIp +mDp +mDp +mNR +mNR +mNR +mNR +mNR +mNR +sjz +tfa +aCZ +oke +jhz +aCZ +pRW +tBo +sjz +sjz +pRW +rWG +nqR +rNd +pRW +pRW +chD +chD +pIb +chD +uIP +rWG +nqR +rNd +afh +afh +afh +nMd +afh +afh +uvd +uvd +uvd +uvd +rNS +ibj +aFN +rNS +uvd +pRW +pRW +pRW +pRW +pRW +pRW +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(109,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +uLo +dmF +dmF +dmF +cvD +dmF +pRW +mYG +uLo +mDp +pRW +iGJ +csz +fLw +pRW +pRW +pRW +pRW +pRW +pRW +pRW +iGJ +csz +fLw +afh +fUM +wuC +tuF +lfY +oOS +uvd +dic +tGx +tRy +rnt +oyK +dCW +sHa +uvd +pRW +pRW +pRW +pRW +pRW +pRW +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(110,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +svd +vpS +pZu +xOV +aPX +nKo +pRW +vCa +uLo +mDp +pRW +uwL +csz +hyb +pRW +pRW +pRW +pRW +pRW +pRW +pRW +uwL +csz +hyb +afh +afh +afh +qrO +afh +afh +uvd +dFm +pBq +rjP +ddn +pvs +oOF +jFt +uvd +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(111,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pEE +pEE +pEE +pEE +ejD +hjX +pEE +vws +wir +wir +wir +wir +pRW +svd +hDL +mXg +rkd +rlT +tpt +pRW +upp +uLo +mDp +pRW +tMu +csz +qbE +pRW +pRW +pRW +pRW +pRW +pRW +pRW +tMu +csz +qbE +pRW +pRW +pRW +pRW +pRW +pRW +uvd +uvd +uvd +uvd +wub +lzQ +guQ +gTY +uvd +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(112,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pEE +kGH +xeP +oMP +bji +qjW +xUB +vws +feP +oSH +nXm +wir +pRW +uLo +sig +uzA +iqg +xJN +bEc +pRW +cvM +uLo +mDp +pRW +uwL +csz +qbE +pRW +pRW +pRW +pRW +pRW +pRW +pRW +uwL +csz +qbE +pRW +pRW +pRW +pRW +pRW +pRW +uvd +dic +tGx +pRS +bAN +rig +mBc +qgo +uvd +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(113,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pEE +jNv +aOH +oXH +fts +xXp +sps +vws +kwz +knT +kwz +wir +pRW +uLo +eEX +wNs +nCp +mWV +oTA +pRW +nbZ +uLo +mDp +pRW +uwL +csz +qbE +pRW +pRW +pRW +pRW +pRW +pRW +pRW +uwL +csz +qbE +pRW +pRW +pRW +pRW +pRW +pRW +uvd +jYw +pBq +rjP +vUf +biy +mQp +gNf +uvd +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(114,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pEE +ecT +sLT +qtW +sLT +fzO +ceM +vws +ohg +wQj +qcN +xyl +pRW +uLo +iMe +rOJ +hNW +pUl +oTA +pRW +nOm +uLo +mDp +pRW +luA +csz +qbE +pRW +pRW +pRW +pRW +pRW +pRW +pRW +luA +csz +qbE +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +uhe +uhe +otT +sqk +uhe +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(115,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pEE +muS +sLT +sLT +svB +clp +cTl +vws +aTQ +mEE +yah +wir +pRW +svd +tFy +rOJ +hNW +pUl +oTA +pRW +ijc +uLo +mDp +pRW +tJE +csz +gvw +pRW +pRW +pRW +pRW +pRW +pRW +pRW +tJE +csz +gvw +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +uhe +gzw +wQp +mts +uhe +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(116,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pEE +aJg +olh +kJt +pkR +jxU +sLT +vws +efb +jrd +iBU +wir +pRW +svd +iMe +rOJ +hNW +iui +wMQ +pRW +cpB +uLo +mDp +pRW +wJW +cgQ +kXE +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +wJW +cgQ +kXE +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +uhe +geE +iOj +wzv +uhe +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(117,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pEE +wkM +bLL +vhp +qww +dYS +tLz +vws +wir +wir +wir +wir +pRW +uLo +iAr +rKz +ktj +qLs +cHC +pRW +wHi +uLo +mDp +pRW +ryR +vhu +qbE +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +ryR +vhu +qbE +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +uhe +pTU +nOX +njl +uhe +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(118,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +xht +rci +pEE +nuK +nuK +bLL +sLT +sLT +sLT +nTu +uPt +vdg +qnO +pRW +pRW +pRW +uLo +mYG +mYG +mYG +mYG +hQw +pRW +uLo +uow +mDp +pRW +dyM +vEl +hyM +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +dyM +vEl +hyM +pRW +pRW +pRW +pRW +pRW +pRW +pRW +uhe +pnD +wAD +khV +uhe +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(119,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +bPO +eQq +nBs +rAH +sFi +bFy +mRh +mRh +svV +eVZ +uPt +vVP +pLr +pRW +pRW +pRW +pXL +rrz +eLb +fWy +gIy +qks +pRW +kQU +pRW +mDp +pRW +pRW +tWJ +gSJ +tWJ +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +tWJ +gSJ +tWJ +pRW +pRW +pRW +pRW +pRW +pRW +pRW +uhe +uor +dAF +vrY +uhe +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(120,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pEE +pEE +pEE +pEE +pEE +mRj +kxn +gCw +gCw +sLT +gCw +uPt +lgg +vul +pRW +pRW +pRW +kQU +lza +jmW +rKI +ivj +brk +pRW +kQU +pRW +mDp +pRW +pRW +pRW +oGt +csz +qbE +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +oGt +csz +qbE +pRW +pRW +pRW +pRW +pRW +pRW +pRW +uhe +vYi +dSN +gCj +uhe +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(121,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +xUZ +pOQ +lIL +gfA +uLx +rPq +sLT +djx +djx +aXR +pDw +uPt +lbw +lbw +pRW +pRW +pRW +kQU +sTI +eYk +xUq +sBg +bsC +pRW +kQU +pRW +mDp +pRW +pRW +pRW +mDv +csz +qbE +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDv +csz +qbE +pRW +pRW +pRW +pRW +pRW +pRW +pRW +uhe +uhe +pHH +uhe +uhe +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(122,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +xGB +hdw +gzO +btU +tNu +kRv +kDZ +cyw +djx +dyF +gWK +pEE +csb +csb +pRW +pRW +pRW +kQU +kQU +kQU +fmm +fmm +coH +pRW +kQU +pRW +mDp +pRW +pRW +pRW +ivz +csz +hyb +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +ivz +csz +hyb +pRW +pRW +pRW +pRW +pRW +pRW +pRW +huO +dJs +aSk +rnw +huO +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(123,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +xGB +pOQ +gzO +fIs +hBf +sLT +sLT +sLT +djx +uSa +uck +pEE +csb +csb +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +uwL +oUK +kZg +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +uwL +oUK +kZg +pRW +pRW +pRW +pRW +pRW +pRW +pRW +qSn +aLf +iYh +eri +auq +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(124,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +xGB +hdw +iLk +fwJ +tNu +pch +rPq +sLT +djx +jye +wIO +pEE +csb +csb +pRW +pRW +pRW +pRW +wMp +mai +wMp +mai +wMp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +kzM +qxs +oby +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +kzM +qxs +oby +pRW +pRW +pRW +pRW +pRW +pRW +pRW +nNn +xbz +xUb +qzS +qDJ +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(125,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +xGB +pOQ +gzO +fIs +hBf +dyF +ayB +peR +mOp +jEU +cyw +pEE +csb +csb +pRW +pRW +pRW +pRW +wMp +rvw +iEo +snQ +iIR +pRW +pRW +pRW +pRW +pRW +pRW +pRW +wJW +cgQ +mdU +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +wJW +cgQ +mdU +pRW +pRW +pRW +pRW +pRW +pRW +pRW +huO +huO +huO +huO +huO +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(126,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +xUZ +hdw +sPV +gfA +meh +pyt +pEE +pEE +pEE +pEE +wkG +pEE +csb +csb +pRW +pRW +pRW +pRW +pgN +jvA +jvz +mOz +unZ +pRW +pRW +pRW +pRW +pRW +pRW +pRW +rWG +nqR +rNd +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +rWG +nqR +rNd +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(127,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pEE +pEE +pEE +pEE +pEE +pEE +pEE +lmG +pEE +pEE +pEE +pEE +csb +csb +pRW +pRW +pRW +pRW +pgN +nnJ +dlw +nPr +oeP +pRW +pRW +pRW +pRW +pRW +pRW +pRW +iGJ +csz +fLw +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +iGJ +csz +fLw +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(128,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pgN +nnJ +nnJ +nPr +pLW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +uwL +csz +hyb +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +uwL +csz +hyb +pRW +pRW +pRW +pDl +efL +efL +pDl +efL +efL +efL +pDl +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(129,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +jGa +ocd +vRE +khL +qqi +pRW +pRW +pRW +pRW +pRW +pRW +pRW +tMu +csz +qbE +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +tMu +csz +qbE +pRW +pRW +pRW +pDl +onN +sDs +mKe +nGk +sDs +sDs +cXC +efL +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(130,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +wMp +npO +tBb +rWV +dkr +pRW +pRW +pRW +pRW +pRW +pRW +pRW +uwL +csz +qbE +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +uwL +csz +qbE +pRW +pRW +pRW +pDl +fwy +vgs +lKZ +mZj +nys +xoV +sQJ +wEo +efL +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(131,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +wMp +ryc +frJ +nnJ +nnJ +pRW +pRW +pRW +pRW +pRW +pRW +pRW +uwL +csz +qbE +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +uwL +csz +qbE +pRW +pRW +pRW +pDl +eyv +hce +pDl +bcX +aPL +uje +pDl +sQJ +wEo +efL +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(132,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +wMp +mai +mai +lTq +lTq +lOB +pbm +oQx +nnJ +oZA +nnJ +tYH +luA +csz +qbE +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +luA +csz +qbE +pRW +pRW +pRW +pDl +liB +gGo +pDl +pDl +rYp +dUn +pDl +pDl +sQJ +ogK +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(133,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +wMp +jRK +jRK +jRK +jRK +jRK +jRK +jRK +jRK +jRK +jRK +wMp +tJE +csz +gvw +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +tJE +csz +gvw +pRW +pRW +pRW +pDl +pDl +lYO +pDl +gUD +uyr +jVj +pDl +qZM +hWK +pDl +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(134,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pgN +jRK +jRK +jRK +jRK +jRK +jRK +jRK +jRK +jRK +mzX +wMp +wJW +cgQ +kXE +pYs +pYs +pYs +gjw +rpj +pRW +pRW +pRW +wJW +cgQ +kXE +pRW +pRW +pRW +csx +biX +cbw +pta +igd +fCr +sPn +ezA +rRE +wCh +pDl +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(135,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +wMp +jRK +jRK +jRK +jRK +jRK +jRK +jRK +jRK +jRK +jRK +wMp +ryR +vhu +qbE +pYs +lLS +pUI +jPu +rpj +pRW +pRW +pRW +ryR +vhu +qbE +pRW +pRW +pRW +wji +dTO +vUK +whs +vrE +mFI +oFZ +pDl +pDz +wRU +pDl +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(136,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +bHu +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pgN +jRK +jRK +jRK +jRK +jRK +jRK +jRK +jRK +jRK +jRK +pgN +dyM +vEl +hyM +pYs +tEk +twM +jPu +rpj +pRW +pRW +pRW +dyM +vEl +hyM +pRW +pRW +pRW +pDl +pDl +pDl +pDl +rJC +mFI +sIr +pDl +vFG +aww +pDl +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(137,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +wMp +jRK +jRK +jRK +jRK +jRK +jRK +jRK +jRK +jRK +jRK +wMp +tWJ +gSJ +tWJ +pYs +hMz +cTK +rOO +lnk +pRW +pRW +pRW +tWJ +gSJ +tWJ +pRW +pRW +pRW +mDp +pDl +pDl +pDl +tKR +mFI +ckU +pDl +mSV +mSV +pDl +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(138,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pgN +jRK +jRK +jRK +jRK +jRK +jRK +jRK +jRK +jRK +jRK +pgN +uwL +csz +qbE +pYs +pZh +jvO +waa +rpj +pRW +pRW +pRW +uwL +csz +qbE +pRW +pRW +pRW +mDp +mDp +bFH +pDl +nhX +mFI +apN +pDl +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(139,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +wMp +jRK +jRK +jRK +jRK +jRK +jRK +jRK +jRK +jRK +jRK +wMp +uwL +csz +fLw +pYs +nTN +pYs +pYs +pYs +pRW +pRW +pRW +uwL +csz +fLw +pRW +pRW +pRW +mDp +mDp +mDp +rxi +fry +mFI +gZg +rxi +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(140,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pgN +jRK +jRK +jRK +jRK +jRK +jRK +jRK +jRK +jRK +jRK +pgN +oGt +csz +qbE +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +oGt +csz +qbE +pRW +pRW +pRW +mDp +mDp +mDp +rxi +vOA +hDQ +mge +rxi +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(141,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +wMp +jRK +jRK +jRK +jRK +jRK +jRK +jRK +jRK +jRK +jRK +wMp +mDv +csz +qbE +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDv +csz +qbE +pRW +pRW +pRW +mDp +mDp +mDp +mOF +mOF +lta +mOF +mOF +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(142,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +tqN +jRK +jRK +jRK +jRK +jRK +jRK +jRK +jRK +jRK +jRK +pgN +ivz +csz +hyb +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +ivz +csz +hyb +pRW +pRW +pRW +mDp +mDp +mDp +mOF +mOF +mSV +mOF +mOF +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(143,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +wMp +pMH +mai +wMp +mai +wMp +mai +wMp +mai +pMH +wMp +wMp +uwL +oUK +kZg +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +uwL +oUK +kZg +pRW +pRW +pRW +mDp +mDp +mDp +pDl +mOF +mSV +mOF +pDl +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(144,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +kzM +qxs +oby +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +kzM +qxs +oby +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(145,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +wJW +cgQ +mdU +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +wJW +cgQ +mdU +pRW +tUb +uXt +vzk +mwl +oAm +kzm +iuJ +mNh +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(146,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +rWG +nqR +rNd +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +rWG +nqR +rNd +pRW +pRW +pkD +pkD +rbc +itd +iKx +ryl +mNh +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(147,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +iGJ +csz +fLw +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +iGJ +csz +fLw +pRW +pRW +cDA +rMs +iyp +fzF +fzF +mZv +mNh +mDp +lIp +lIp +lIp +lIp +lIp +lIp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(148,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +uwL +csz +hyb +pRW +pRW +bge +mna +mna +bge +pRW +pRW +uwL +csz +hyb +pRW +pRW +pRW +tUb +qUP +tUb +xBU +vfE +tpj +mNh +fCa +aDe +mDp +mDp +lIp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(149,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +tMu +csz +qbE +pRW +pRW +pRW +mna +nPa +nPa +mna +pRW +tMu +csz +qbE +pRW +pRW +pRW +pRW +rEw +wZk +xGm +xGm +xGm +xGm +xGm +mDp +aDe +mDp +mDp +lIp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(150,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +aDe +mDp +mDp +mDp +mDp +lmG +mDp +mDp +xGm +uwL +csz +qbE +pRW +pRW +pRW +mna +nPa +nPa +nPa +aZT +uwL +csz +qbE +pRW +pRW +pRW +pRW +hBs +aXm +xGm +tem +dNT +vtx +xGm +lIp +aDe +mDp +mDp +ykR +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(151,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +gtM +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +aDe +mDp +mDp +mDp +mDp +mAv +mDp +mDp +rup +uwL +csz +qbE +pRW +pRW +pRW +mna +nPa +nPa +nPa +rrD +uwL +csz +qbE +pRW +pRW +pRW +pRW +oph +hQY +pfe +hih +hih +aXN +hQc +mDp +lIp +mDp +mDp +lIp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(152,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +aDe +mDp +mDp +mDp +mDp +mDp +mDp +mDp +xGm +luA +csz +qbE +pRW +pRW +pRW +mna +nPa +nPa +mna +pRW +luA +csz +qbE +pRW +pRW +pRW +pRW +ptn +fBJ +efT +dtz +dtz +dtz +hQc +uhJ +lIp +mDp +mDp +lIp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(153,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +aDe +lIp +lIp +lIp +lIp +lIp +lIp +lIp +xGm +tJE +csz +gvw +pRW +pRW +pRW +bge +mna +mna +bge +pRW +tJE +csz +gvw +pRW +pRW +pRW +pRW +lcw +wbh +xGm +xGm +xGm +xGm +xGm +lIp +aDe +mDp +mDp +ykR +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(154,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +aDe +mDp +mDp +mDp +mDp +lIp +mDp +mDp +xGm +wJW +cgQ +kXE +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +wJW +cgQ +kXE +pRW +pRW +pRW +pRW +gKZ +edP +xGm +mDp +mDp +lIp +mDp +mDp +aDe +mDp +mDp +lIp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(155,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +aDe +mDp +lIp +mDp +mDp +lIp +mDp +mDp +xGm +ryR +vhu +qbE +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +ryR +vhu +qbE +pRW +gck +hBs +rup +mDp +mDp +aDe +lIp +lIp +aDe +lIp +lIp +lIp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(156,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +lIp +mDp +lIp +lIp +lIp +lIp +mDp +mDp +rup +dyM +vEl +hyM +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +dyM +vEl +hyM +pRW +gck +kfs +xGm +muB +lIp +aDe +mDp +mDp +aDe +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(157,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +lIp +mDp +lIp +mDp +mDp +lIp +mDp +mDp +xGm +tWJ +gSJ +tWJ +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +tWJ +gSJ +tWJ +pRW +vSe +rVo +xGm +mDp +mDp +aDe +gtM +mDp +aDe +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(158,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +ykR +mDp +lIp +mDp +mDp +lIp +mDp +ikZ +xGm +nvH +arr +xHB +mRk +xHB +xHB +xHB +sCy +chQ +dui +tqY +xHB +xHB +mRk +aWr +xhf +dFg +xGm +mDp +mDp +aDe +mDp +mDp +aDe +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(159,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +lIp +mDp +aDe +mDp +mDp +lIp +mDp +mDp +xGm +nJM +vvh +hBs +qIz +jUa +sIX +qlS +llr +hBs +hBs +mGe +fZv +xJb +qIz +hBs +jPR +jJY +xGm +mDp +mDp +aDe +mDp +mDp +aDe +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(160,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +ykR +mDp +aDe +mDp +mDp +lIp +mDp +mDp +xGm +cWK +oHb +iZs +qIz +qIz +qIz +qIz +qIz +jYT +qIz +qIz +qIz +qIz +qIz +kxm +nCE +bIw +xGm +mDp +mDp +aDe +mDp +mDp +lIp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(161,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +gtM +mDp +mDp +mDp +mDp +gtM +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +lIp +mDp +aDe +mDp +mDp +lIp +mDp +mDp +xGm +kxm +reX +hBs +xTi +hBs +cny +xGm +nMP +nCE +cZR +xGm +iCr +hBs +xTi +hBs +gck +hBs +xGm +lIp +lIp +aDe +lIp +lIp +lIp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(162,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +lIp +mDp +aDe +mDp +mDp +lIp +mDp +mDp +rup +hBs +vCt +hBs +xTi +hBs +cny +xGm +hBs +jPR +hBs +xGm +iCr +hBs +xTi +hBs +gck +puV +xGm +mDp +mDp +aDe +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(163,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +lIp +mDp +aDe +mDp +mDp +lIp +lIp +lIp +xGm +urd +aHG +kWR +qIz +sBd +qIz +qIz +hBs +jPR +hBs +qIz +qIz +sBd +qIz +fti +sxx +urd +xGm +mDp +mDp +aDe +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +pRW +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(164,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +ykR +mDp +aDe +mDp +mDp +lIp +mDp +mDp +rup +hBs +vCt +hBs +xTi +nzx +nzx +qIz +nrD +jPR +hBs +qIz +nzx +nzx +xTi +hBs +gck +qNL +xGm +mDp +mDp +aDe +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(165,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +lIp +lIp +lIp +lIp +lIp +lIp +mDp +mDp +rup +igt +vCt +hBs +xTi +nzx +nzx +qIz +mSK +nCE +szf +qIz +nzx +nzx +xTi +hBs +gck +rEw +xGm +mDp +mDp +aDe +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(166,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +lIp +mDp +ikZ +xGm +mSd +vCt +qvQ +qIz +qIz +qIz +qIz +urd +iiq +lqJ +qIz +qIz +qIz +qIz +cGH +pMz +nOG +xGm +muB +lIp +aDe +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(167,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +lIp +mDp +mDp +xGm +vPe +fbI +hBs +hBs +xIg +mwF +weC +hBs +jPR +hBs +hBs +wgF +njb +hBs +hBs +scT +hBs +xGm +mDp +mDp +aDe +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(168,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +lIp +mDp +mDp +xGm +lFV +xIl +sIj +fBJ +hBs +njb +hBs +hBs +jPR +hBs +hBs +hBs +nNS +hBs +jMN +fpV +amr +xGm +mDp +mDp +lIp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(169,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +lIp +mDp +mDp +xGm +fDK +fDK +hBs +hAv +cOM +laO +hBs +jMN +eUx +bIw +hBs +hBs +xTi +hBs +hBs +fDK +fDK +xGm +lIp +lIp +lIp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(170,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +lIp +mDp +xGm +xGm +tbM +tbM +tbM +xGm +xGm +xGm +iev +ngD +xki +aZV +dsY +xGm +xGm +xGm +iRZ +iRZ +iRZ +xGm +xGm +mDp +lIp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(171,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +lIp +mDp +lmG +xGm +csb +aaK +csb +aaK +csb +xGm +cZD +ngD +bYn +aZV +eXe +xGm +csb +csb +csb +csb +csb +xGm +lmG +mDp +lIp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(172,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +lIp +lIp +mAv +aDe +aaK +aaK +csb +aaK +csb +xGm +pXJ +ngD +eBL +aZV +dsY +xGm +pQv +csb +csb +csb +csb +mDp +mAv +mDp +lIp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(173,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +lIp +mDp +lIp +mDp +mDp +lIp +csb +aaK +csb +xGm +iRZ +iRZ +iRZ +iRZ +iRZ +xGm +aaK +aaK +aaK +aDe +aDe +aDe +aDe +aDe +lIp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(174,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +ykR +mDp +mDp +lIp +mDp +lIp +csb +pPD +csb +csb +csb +csb +csb +csb +csb +lIp +mDp +mDp +ykR +mDp +mDp +mDp +lIp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(175,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +lIp +mDp +mDp +lIp +mDp +lIp +mDp +csb +csb +csb +csb +csb +csb +csb +pRW +lIp +mDp +mDp +lIp +mDp +mDp +mDp +lIp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(176,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +aDe +lIp +aDe +lIp +lIp +aPs +pRW +pRW +csb +csb +csb +csb +csb +pRW +aPs +lIp +lIp +lIp +lIp +mDp +mDp +mDp +lIp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(177,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +ykR +mDp +mDp +mDp +mDp +lIp +lIp +mDp +mDp +mDp +mDp +mDp +lIp +lIp +lIp +lIp +mDp +mDp +ykR +lIp +lIp +lIp +ykR +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(178,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +gtM +mDp +mDp +mDp +mDp +lIp +mDp +mDp +mDp +mDp +mDp +lIp +mDp +mDp +mDp +mDp +mDp +lIp +mDp +mDp +lIp +mDp +mDp +aDe +mDp +mDp +mDp +lIp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(179,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +lIp +mDp +mDp +mDp +mDp +mDp +lIp +mDp +mDp +mDp +mDp +mDp +lIp +mDp +mDp +lIp +mDp +mDp +aDe +mDp +mDp +mDp +lIp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(180,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +ykR +lIp +lIp +bBA +bBA +bBA +bBA +bBA +bBA +lIp +bBA +bBA +bBA +bBA +bBA +bBA +bBA +lIp +ykR +lIp +lIp +lIp +ykR +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(181,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +aDe +mDp +mDp +mDp +mDp +mDp +lIp +mDp +mDp +mDp +mDp +mDp +lIp +mDp +mDp +lIp +mDp +mDp +lIp +gtM +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(182,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +lIp +mDp +mDp +mDp +mDp +mDp +lIp +mDp +mDp +mDp +mDp +mDp +lIp +mDp +mDp +lIp +mDp +mDp +lIp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(183,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +ykR +lIp +lIp +ykR +aDe +aDe +ykR +lIp +lIp +ykR +aDe +aDe +ykR +lIp +aDe +ykR +lIp +lIp +ykR +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(184,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(185,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +gtM +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(186,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(187,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(188,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(189,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(190,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(191,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} +(192,1,1) = {" +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +mDp +"} diff --git a/maps/victory/levels/deck4.dmm b/maps/victory/levels/deck4.dmm new file mode 100644 index 000000000000..942f38bb7001 --- /dev/null +++ b/maps/victory/levels/deck4.dmm @@ -0,0 +1,58614 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aau" = ( +/turf/simulated/floor/tiled, +/area/hallway/primary/aft) +"abL" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/central) +"acr" = ( +/obj/machinery/disperser/middle{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/space) +"adp" = ( +/obj/effect/floor_decal/grass_edge, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/sink/puddle{ + pixel_y = 6 + }, +/obj/machinery/camera/network/civilian{ + dir = 1 + }, +/turf/simulated/floor/grass, +/area/hydroponics/garden) +"adT" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/techfloor{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/hallway/secondary/civilian_hallway_mid) +"adZ" = ( +/obj/effect/floor_decal/techfloor, +/obj/effect/floor_decal/techfloor/hole, +/obj/machinery/ai_status_display{ + pixel_y = -32 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/aft) +"aek" = ( +/obj/machinery/power/apc/east_mount, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/turf/simulated/floor/wood, +/area/space) +"afl" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/bridge/meeting_room) +"afX" = ( +/obj/machinery/door/firedoor, +/obj/machinery/cryopod/robot/door/shuttle, +/turf/simulated/floor/tiled, +/area/hallway/primary/aft) +"afY" = ( +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exploration/explorer_prep) +"agD" = ( +/obj/landmark/spawnpoint/latejoin/station/arrivals_shuttle, +/turf/simulated/floor/tiled/techfloor/grid, +/area/hallway/primary/aft) +"agV" = ( +/obj/map_helper/airlock/atmos/chamber_pump, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/component/unary/vent_pump/high_volume{ + dir = 1; + frequency = 1380; + id_tag = "expshuttle_docker_pump"; + power_rating = 20000 + }, +/turf/simulated/floor/tiled, +/area/shuttle/excursion/general) +"ahi" = ( +/obj/machinery/door/airlock/voidcraft/vertical, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/shuttle/excursion/general) +"ahv" = ( +/obj/machinery/power/apc/south_mount, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/machinery/vending/fishing, +/turf/simulated/floor/wood, +/area/hydroponics/garden) +"ahL" = ( +/obj/machinery/station_map{ + dir = 4; + pixel_x = -32 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/lounge) +"ahT" = ( +/obj/structure/ladder, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/maintenance/chapel) +"aiV" = ( +/turf/simulated/floor/tiled, +/area/chapel/main) +"aju" = ( +/obj/machinery/holopad, +/turf/simulated/floor/lino, +/area/chapel/office) +"aka" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/wood/broken, +/area/maintenance/security/starboard) +"ala" = ( +/obj/structure/closet/crate/freezer/rations, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/space) +"alo" = ( +/obj/machinery/gateway{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/exploration/courser_dock) +"alU" = ( +/obj/item/clothing/mask/gas/sexyclown, +/obj/item/toy/figure/clown, +/obj/item/clothing/under/sexyclown, +/obj/item/clothing/shoes/clown_shoes, +/obj/item/bedsheet/clown, +/obj/item/cartridge/clown, +/obj/item/stamp/clown, +/obj/item/storage/backpack/clown, +/obj/item/bananapeel, +/obj/item/reagent_containers/food/snacks/pie, +/obj/item/pen/crayon/marker/rainbow, +/obj/item/pen/crayon/rainbow, +/obj/structure/closet/secure_closet{ + desc = "Where the Clown keeps their hooliganisms."; + name = "funny locker"; + req_one_access = list(136) + }, +/turf/simulated/floor/carpet/gaycarpet, +/area/crew_quarters/clownoffice) +"amc" = ( +/obj/structure/flora/ausbushes/ppflowers, +/turf/simulated/floor/grass, +/area/hydroponics/garden) +"amf" = ( +/obj/structure/catwalk, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/space) +"amu" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/hallway/primary/aft) +"amw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/wood, +/area/library) +"amJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass{ + dir = 8 + }, +/obj/map_helper/access_helper/airlock/station/hangar, +/obj/machinery/door/airlock/glass_external{ + name = "Exploration Emergency Exit"; + req_one_access = null + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exploration/excursion_dock) +"ang" = ( +/obj/structure/table/woodentable, +/obj/machinery/photocopier/faxmachine{ + department = "Pathfinder's Office" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/space) +"anp" = ( +/turf/simulated/wall/prepainted/civilian, +/area/maintenance/security/starboard) +"aoJ" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/hallway/primary/aft) +"apf" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/landmark/spawnpoint/latejoin/station/arrivals_shuttle, +/turf/simulated/floor/tiled/techfloor/grid, +/area/hallway/primary/aft) +"apg" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/space) +"apK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/grass, +/area/hydroponics/garden) +"aqI" = ( +/obj/item/radio/intercom{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/CE_quarters) +"aqP" = ( +/obj/structure/table/reinforced, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/glass, +/turf/simulated/floor/tiled, +/area/maintenance/tool_storage) +"aqR" = ( +/obj/item/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 26 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/library) +"arr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/grass, +/area/hydroponics/garden) +"arI" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 10 + }, +/obj/machinery/vending/wallmed_airlock{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"arJ" = ( +/obj/machinery/door/blast/regular, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"arP" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/carpet/tealcarpet, +/area/crew_quarters/sleep/CMO_quarters) +"arW" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/grass, +/area/hydroponics/garden) +"asR" = ( +/obj/structure/table/bench, +/turf/simulated/floor/plating, +/area/vacant/vacant_bar) +"atV" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/item/clothing/under/swimsuit/stripper/cowbikini, +/obj/item/reagent_containers/food/drinks/cans/waterbottle, +/obj/item/radio/intercom{ + pixel_y = -24 + }, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/sauna) +"avM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/railing, +/obj/structure/lightpost, +/obj/effect/floor_decal/grass_edge{ + dir = 1 + }, +/turf/simulated/floor/grass, +/area/hydroponics/garden) +"avV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 5 + }, +/obj/structure/catwalk, +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/space) +"awW" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/table/woodentable, +/obj/machinery/recharger, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/CMO_quarters) +"axd" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/power/sensor{ + name = "Powernet Sensor - Deck 4 Subgrid"; + name_tag = "Deck 4 Subgrid" + }, +/obj/structure/cable/green, +/turf/simulated/floor/plating, +/area/maintenance/substation/exploration) +"axv" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/maintenance/command{ + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/head_office/head_of_personnel, +/turf/simulated/floor/plating, +/area/maintenance/central) +"axR" = ( +/obj/effect/floor_decal/plaque{ + desc = "To all who have made their journies to our sector, and grew along with it. Thank you." + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/aft) +"axV" = ( +/obj/machinery/computer/station_alert{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"ayS" = ( +/obj/structure/table/standard, +/obj/machinery/door/window/northleft, +/obj/item/gun/energy/hardlight_bow, +/turf/simulated/floor/tiled, +/area/space) +"aAh" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/captain) +"aAt" = ( +/obj/structure/table/marble, +/obj/machinery/microwave, +/turf/simulated/floor/tiled, +/area/crew_quarters/lounge/kitchen_freezer) +"aAL" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/shuttle/excursion/general) +"aBi" = ( +/turf/simulated/floor/wood/broken, +/area/vacant/vacant_bar) +"aBr" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/machinery/air_alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/turf/simulated/floor/tiled, +/area/space) +"aCo" = ( +/obj/structure/table/bench/steel, +/turf/simulated/floor/tiled, +/area/hallway/primary/aft) +"aCq" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/exploration/courser_dock) +"aCt" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/bridge/hallway) +"aCx" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"aDc" = ( +/obj/machinery/power/smes/buildable{ + RCon_tag = "Substation - Security"; + output_attempt = 0 + }, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/security) +"aDH" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/bed/chair/comfy/brown{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/space) +"aDX" = ( +/obj/machinery/door/airlock/engineering{ + name = "Command Substation"; + req_one_access = list(10,19) + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/maintenance/substation/command) +"aEB" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled, +/area/space) +"aEU" = ( +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/machinery/door/firedoor/glass{ + dir = 8 + }, +/obj/machinery/door/blast/shutters{ + dir = 8; + id = "cap_office"; + layer = 3.1; + name = "Colony Directo's Shutters" + }, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "bridge_lockdown"; + name = "Bridge Lockdown"; + opacity = 0 + }, +/obj/spawner/window/low_wall/reinforced/full, +/obj/effect/paint_stripe/commandblue, +/turf/simulated/floor/plating, +/area/bridge) +"aFa" = ( +/turf/simulated/wall/prepainted/civilian, +/area/crew_quarters/coffee_shop) +"aFj" = ( +/obj/structure/table/marble, +/obj/item/storage/box/glasses/mug, +/turf/simulated/floor/wood, +/area/bridge/meeting_room) +"aFk" = ( +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/obj/item/radio/beacon/anchored, +/turf/simulated/floor/tiled, +/area/shuttle/excursion/general) +"aFo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor/grid, +/area/hallway/secondary/civilian_hallway_mid) +"aFB" = ( +/obj/structure/flora/pottedplant/minitree, +/turf/simulated/floor/wood, +/area/bridge/meeting_room) +"aGj" = ( +/obj/machinery/door/airlock/voidcraft/vertical{ + name = "cockpit hatch" + }, +/obj/map_helper/airlock/door/int_door, +/obj/machinery/access_button/airlock_interior{ + dir = 4; + frequency = 1380; + master_tag = "courser_docker"; + pixel_y = -22 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/space) +"aGA" = ( +/obj/structure/catwalk, +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/shuttle/excursion/cargo) +"aGI" = ( +/turf/simulated/wall/r_wall/prepainted/exploration, +/area/exploration/courser_dock) +"aGL" = ( +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/railing, +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/grass, +/area/hydroponics/garden) +"aHc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 4 + }, +/obj/structure/closet/hydrant{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled, +/area/bridge/hallway) +"aHh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/fire_alarm/north_mount, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exploration/excursion_dock) +"aHm" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/victory/surfacebase/tram) +"aIj" = ( +/turf/simulated/floor/tiled, +/area/exploration/medical) +"aIl" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/obj/effect/floor_decal/techfloor/orange{ + dir = 1 + }, +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled/dark, +/area/space) +"aID" = ( +/obj/machinery/power/apc/west_mount{ + cell_type = /obj/item/cell/super + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 10 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/space) +"aIX" = ( +/obj/machinery/recharge_station, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/space) +"aIY" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/space) +"aJQ" = ( +/obj/structure/cable/cyan{ + icon_state = "1-8" + }, +/obj/structure/bed/chair/shuttle{ + dir = 4 + }, +/turf/simulated/floor/tiled/old_tile/green, +/area/shuttle/civvie/cockpit) +"aKu" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/corner/orange/full{ + dir = 4 + }, +/obj/machinery/computer/ship/helm{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aKv" = ( +/obj/structure/table/steel, +/obj/item/material/ashtray{ + icon_state = "ashtray" + }, +/turf/simulated/floor/plating, +/area/maintenance/security/starboard) +"aKC" = ( +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -23 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/library/study) +"aKL" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/victory/surfacebase/tram) +"aKN" = ( +/obj/machinery/camera/network/exploration{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exploration/excursion_dock) +"aKZ" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled, +/area/space) +"aLV" = ( +/turf/simulated/wall/prepainted, +/area/maintenance/substation/command) +"aMc" = ( +/obj/structure/closet/firecloset, +/obj/machinery/light/small/emergency{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/security/starboard) +"aMl" = ( +/obj/machinery/door/airlock{ + name = "Internal Affairs" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/map_helper/access_helper/airlock/station/head_office/internal_affairs, +/turf/simulated/floor/tiled/dark, +/area/lawoffice) +"aMu" = ( +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "shuttle_lockdown"; + name = "Shuttle Lockdown"; + opacity = 0 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/spawner/window/low_wall/borosillicate/full, +/obj/effect/paint_stripe/violet, +/turf/simulated/shuttle/floor/voidcraft, +/area/shuttle/excursion/general) +"aMy" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/grass, +/area/hydroponics/garden) +"aMR" = ( +/obj/structure/table/marble, +/obj/structure/extinguisher_cabinet{ + pixel_y = -31 + }, +/turf/simulated/floor/wood, +/area/bridge/meeting_room) +"aNv" = ( +/obj/machinery/door/airlock/silver{ + name = "Mime's Office" + }, +/obj/structure/cable/green{ + dir = 1; + icon_state = "4-8" + }, +/obj/map_helper/access_helper/airlock/station/service/mime, +/turf/simulated/floor/plating, +/area/crew_quarters/mimeoffice) +"aNE" = ( +/obj/structure/extinguisher_cabinet{ + dir = 8; + pixel_x = 30 + }, +/turf/simulated/wall/r_wall/prepainted/command, +/area/teleporter) +"aNK" = ( +/turf/simulated/wall/prepainted, +/area/hallway/primary/aft) +"aNV" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled, +/area/crew_quarters/lounge) +"aPj" = ( +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/machinery/power/apc/west_mount, +/obj/structure/flora/pottedplant/flower, +/turf/simulated/floor/wood, +/area/bridge/office) +"aPx" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/lounge) +"aPQ" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"aQs" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/component/unary/vent_pump/on, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/captain) +"aQv" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/aft) +"aRm" = ( +/obj/structure/table/woodentable, +/obj/machinery/photocopier/faxmachine{ + department = "Captain's Office" + }, +/obj/machinery/power/apc/east_mount, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"aSd" = ( +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/turf/simulated/floor/tiled/old_tile/green, +/area/shuttle/civvie/general) +"aSm" = ( +/obj/machinery/floodlight, +/turf/simulated/floor/plating, +/area/maintenance/security/starboard) +"aUs" = ( +/obj/effect/floor_decal/spline/fancy{ + dir = 5 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/water/deep/indoors, +/area/hydroponics/garden) +"aUt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/turf/simulated/floor/tiled, +/area/space) +"aVd" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = -31 + }, +/obj/landmark/spawnpoint/latejoin/station/arrivals_shuttle, +/turf/simulated/floor/tiled, +/area/hallway/primary/aft) +"aVu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/bookcase{ + name = "bookcase (Reference)" + }, +/obj/item/book/manual/engineering_particle_accelerator, +/obj/item/book/custom_library/reference, +/turf/simulated/floor/wood, +/area/library) +"aVF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/space) +"aVK" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aWX" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/table/reinforced, +/turf/simulated/floor/carpet/tealcarpet, +/area/shuttle/civvie/general) +"aXa" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/victory/surfacebase/tram) +"aXb" = ( +/obj/structure/table/woodentable, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/library) +"aXD" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/shuttle/excursion/general) +"aXR" = ( +/obj/machinery/button/remote/airlock{ + id = "gateway"; + name = "Gateway Blast Doors"; + dir = 8; + pixel_x = 24; + req_one_access = list(19,44) + }, +/turf/simulated/floor/tiled/dark, +/area/exploration/courser_dock) +"aYh" = ( +/obj/machinery/shipsensors, +/turf/simulated/floor/plating, +/area/space) +"aYQ" = ( +/obj/random/maintenance/medical, +/turf/simulated/floor/plating, +/area/maintenance/security/starboard) +"baZ" = ( +/turf/simulated/wall/prepainted/command, +/area/bridge/meeting_room) +"bcg" = ( +/obj/machinery/vending/cigarette, +/turf/simulated/floor/tiled, +/area/exploration/excursion_dock) +"bcY" = ( +/obj/machinery/fire_alarm/north_mount, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 5 + }, +/obj/structure/filingcabinet/tall, +/turf/simulated/floor/tiled, +/area/space) +"bdl" = ( +/obj/machinery/photocopier, +/obj/machinery/light_switch{ + name = "light switch "; + pixel_y = 26 + }, +/turf/simulated/floor/lino, +/area/chapel/office) +"bdt" = ( +/obj/machinery/washing_machine, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/sauna) +"ber" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/item/radio/intercom{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/HOP_quarters) +"bew" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1380; + id_tag = "deck4_dockarm2_pump" + }, +/obj/machinery/airlock_sensor{ + dir = 8; + id_tag = "deck4_dockarm2"; + pixel_x = 23 + }, +/obj/map_helper/airlock/atmos/chamber_pump, +/obj/map_helper/airlock/sensor/chamber_sensor, +/turf/simulated/floor/tiled/dark, +/area/space) +"bfO" = ( +/obj/machinery/camera/network/exploration, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/space) +"bgc" = ( +/obj/structure/window/reinforced/polarized{ + dir = 10; + icon_state = "fwindow"; + id = "hop_bedroom" + }, +/obj/structure/grille, +/obj/structure/wall_frame/prepainted, +/obj/effect/paint_stripe/commandblue, +/turf/simulated/floor/airless/ceiling, +/area/crew_quarters/sleep/HOP_quarters) +"bgE" = ( +/obj/structure/table/woodentable, +/obj/item/duct_tape_piece, +/obj/item/camera, +/obj/item/retail_scanner/civilian{ + dir = 1 + }, +/obj/item/tape_recorder, +/turf/simulated/floor/carpet/bcarpet, +/area/library/study) +"bii" = ( +/obj/machinery/power/apc/east_mount, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/exploration/courser_dock) +"biu" = ( +/obj/structure/bed/chair/sofa/right{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/maintenance/security/starboard) +"biT" = ( +/obj/machinery/computer/guestpass{ + dir = 4; + pixel_x = -28 + }, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/sauna) +"bjg" = ( +/turf/simulated/wall/prepainted, +/area/maintenance/substation/exploration) +"bjw" = ( +/obj/structure/table/bench/wooden, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/sauna) +"bkP" = ( +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood, +/area/lawoffice) +"bkR" = ( +/turf/simulated/wall/prepainted/exploration, +/area/exploration/explorer_prep) +"blv" = ( +/obj/item/flame/candle/candelabra/everburn, +/obj/structure/table/woodentable, +/turf/simulated/floor/carpet, +/area/maintenance/security/starboard) +"blR" = ( +/turf/simulated/wall/prepainted/command, +/area/bridge/hallway) +"bmD" = ( +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/machinery/suit_storage_unit/search_and_rescue, +/turf/simulated/floor/tiled/white, +/area/exploration/explorer_prep) +"bmL" = ( +/obj/item/binoculars, +/obj/structure/table/woodentable, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/turf/simulated/floor/tiled, +/area/space) +"bnc" = ( +/obj/machinery/light, +/obj/machinery/air_alarm/alarms_hidden{ + dir = 1; + pixel_y = -23 + }, +/obj/structure/table/rack/shelf, +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "cockpit_lockdown"; + name = "Cockpit Lockdown"; + pixel_x = -30; + pixel_y = 5 + }, +/turf/simulated/floor/tiled, +/area/shuttle/excursion/cockpit) +"bnw" = ( +/obj/machinery/camera/network/civilian{ + dir = 1 + }, +/obj/structure/bed/chair/comfy/brown{ + dir = 1 + }, +/obj/machinery/computer/ship/navigation/telescreen{ + pixel_y = -37 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/library) +"bnJ" = ( +/obj/structure/bed/chair/office/dark, +/turf/simulated/floor/tiled, +/area/space) +"bog" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled/monofloor{ + dir = 8 + }, +/area/space) +"boL" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/cargo) +"bph" = ( +/obj/spawner/window/low_wall/reinforced/full, +/obj/machinery/door/firedoor/glass, +/obj/structure/curtain/black{ + anchored = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/security/starboard) +"bpS" = ( +/obj/structure/toilet{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/machinery/light/small, +/obj/machinery/air_alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/sauna) +"bqQ" = ( +/obj/structure/table/standard, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 5 + }, +/obj/item/robotanalyzer, +/obj/machinery/light, +/obj/item/duct_tape_roll, +/obj/item/duct_tape_roll, +/turf/simulated/floor/tiled, +/area/space) +"brF" = ( +/turf/simulated/floor/tiled/dark, +/area/victory/station/stairs_four) +"brQ" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/secondary/civilian_hallway_mid) +"bsl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/grass, +/area/hydroponics/garden) +"bsZ" = ( +/obj/structure/bookcase{ + name = "bookcase (Fiction)" + }, +/obj/item/book/custom_library/fiction, +/obj/item/book/manual/the_humanized_mice, +/turf/simulated/floor/wood, +/area/library) +"bul" = ( +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/turf/simulated/floor/wood, +/area/space) +"bvo" = ( +/turf/simulated/wall/prepainted/exploration, +/area/hallway/primary/aft) +"bwl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/holopad, +/turf/simulated/floor/tiled, +/area/space) +"bwJ" = ( +/obj/effect/floor_decal/spline/fancy{ + dir = 1 + }, +/obj/structure/sign/warning/falling{ + pixel_y = 34 + }, +/turf/simulated/floor/water/deep/indoors, +/area/hydroponics/garden) +"bxc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"bxv" = ( +/obj/structure/closet/coffin/comfy, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/chapel/main) +"bxI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/flora/ausbushes/ywflowers, +/turf/simulated/floor/grass, +/area/hydroponics/garden) +"byt" = ( +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/central) +"byX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/space) +"byY" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor/hole{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/aft) +"bzE" = ( +/obj/structure/lattice, +/obj/structure/grille, +/turf/space, +/area/space) +"bzP" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/space) +"bAc" = ( +/obj/machinery/camera/network/civilian{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/secondary/docking_hallway) +"bAB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/techfloor/orange, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/dark, +/area/space) +"bCL" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = -31 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/CMO_quarters) +"bEg" = ( +/obj/effect/floor_decal/spline/plain, +/obj/item/radio/intercom{ + pixel_y = -24 + }, +/turf/simulated/floor/carpet/blucarpet, +/area/lawoffice) +"bEs" = ( +/obj/structure/table/reinforced, +/obj/item/flashlight/lamp, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"bFn" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/hydroponics/garden) +"bFR" = ( +/turf/space/basic, +/area/exploration/pilot_prep) +"bGl" = ( +/obj/structure/bed/double/padded, +/obj/item/bedsheet/captaindouble, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/captain) +"bGJ" = ( +/obj/structure/table/reinforced, +/obj/machinery/photocopier/faxmachine{ + department = "Bridge" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"bHe" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/CMO_quarters) +"bHg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/item/flame/candle/candelabra/everburn, +/turf/simulated/floor/carpet/bcarpet, +/area/chapel/main) +"bHQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/grass_edge{ + dir = 1 + }, +/turf/simulated/floor/grass, +/area/hydroponics/garden) +"bIp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/grass_edge, +/obj/structure/closet/crate/hydroponics, +/obj/item/material/minihoe, +/obj/item/material/minihoe, +/obj/item/shovel/spade, +/obj/item/shovel/spade, +/obj/item/plant_analyzer, +/obj/item/plant_analyzer, +/obj/item/tool/wirecutters/clippers/trimmers, +/turf/simulated/floor/grass, +/area/hydroponics/garden) +"bIw" = ( +/obj/machinery/camera/network/civilian{ + dir = 9 + }, +/obj/structure/bookcase{ + name = "bookcase (Religious)" + }, +/obj/item/book/custom_library/religious, +/turf/simulated/floor/wood, +/area/library) +"bIF" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/maintenance/tool_storage) +"bKU" = ( +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/exploration/courser_dock) +"bKZ" = ( +/turf/simulated/wall/r_wall/prepainted/exploration, +/area/shuttle/excursion/general) +"bLC" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/shuttle/courser/general) +"bLT" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/command) +"bMm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"bMt" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 5 + }, +/obj/effect/mist, +/turf/simulated/floor/water/pool, +/area/victory/surfacebase/sauna) +"bMJ" = ( +/obj/machinery/door/airlock/maintenance/common, +/turf/simulated/floor/plating, +/area/maintenance/chapel) +"bNm" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/space) +"bNR" = ( +/obj/structure/catwalk, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/central) +"bOq" = ( +/obj/machinery/camera/network/exploration, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exploration/explorer_prep) +"bOF" = ( +/obj/machinery/fire_alarm/north_mount, +/turf/simulated/floor/wood, +/area/space) +"bPU" = ( +/turf/simulated/wall/prepainted, +/area/maintenance/cargo) +"bQx" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/wood, +/area/vacant/vacant_bar) +"bQH" = ( +/obj/machinery/door/firedoor/glass{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 4; + name = "Exploration Prep"; + req_access = list() + }, +/obj/map_helper/access_helper/airlock/station/exploration/department, +/turf/simulated/floor/tiled, +/area/space) +"bRa" = ( +/obj/structure/closet/firecloset, +/obj/item/duct_tape_roll, +/turf/simulated/floor/tiled/dark, +/area/hallway/secondary/docking_hallway) +"bRC" = ( +/obj/effect/mist, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/water/deep/pool, +/area/victory/surfacebase/sauna) +"bRS" = ( +/turf/simulated/floor/tiled, +/area/victory/surfacebase/sauna) +"bRX" = ( +/obj/structure/table/reinforced, +/obj/item/folder{ + pixel_x = -4 + }, +/obj/item/folder/blue{ + pixel_x = 5 + }, +/obj/item/folder/red{ + pixel_y = 3 + }, +/obj/item/folder/yellow, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 9 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/lawoffice) +"bSd" = ( +/obj/effect/floor_decal/techfloor, +/obj/machinery/air_alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/aft) +"bSR" = ( +/obj/structure/flora/pottedplant/minitree, +/obj/machinery/fire_alarm/north_mount, +/obj/item/radio/intercom{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/wood, +/area/bridge/meeting_room) +"bTg" = ( +/obj/overmap/entity/visitable/ship/victory, +/obj/structure/bed/chair/bay/comfy/black{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"bTI" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/machinery/computer/guestpass{ + pixel_y = 27 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/secondary/civilian_hallway_mid) +"bUG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/table/standard, +/obj/machinery/recharger, +/turf/simulated/floor/tiled, +/area/hallway/primary/aft) +"bVS" = ( +/obj/item/melee/baton/cattleprod, +/turf/simulated/floor/plating, +/area/maintenance/security/starboard) +"bWr" = ( +/obj/effect/shuttle_landmark/automatic/station_dockpoint2, +/turf/space, +/area/space) +"bWH" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/flora/pottedplant/orientaltree, +/turf/simulated/floor/wood, +/area/crew_quarters/coffee_shop) +"bXx" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exploration/excursion_dock) +"bYt" = ( +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/obj/machinery/door/airlock/voidcraft{ + name = "Life Support" + }, +/turf/simulated/floor, +/area/shuttle/civvie/general) +"bYy" = ( +/obj/structure/table/reinforced, +/obj/machinery/light, +/obj/machinery/computer/ship/navigation/telescreen{ + pixel_y = -37 + }, +/turf/simulated/floor/carpet/tealcarpet, +/area/shuttle/civvie/general) +"bZe" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/carpet/purcarpet, +/area/space) +"bZl" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/hallway/primary/aft) +"car" = ( +/turf/simulated/floor/tiled/monofloor{ + dir = 8 + }, +/area/space) +"caS" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Security Substation"; + req_one_access = null; + secured_wires = 1 + }, +/obj/map_helper/access_helper/airlock/station/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/substation/security) +"cbd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/closet/hydrant{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exploration/excursion_dock) +"cbh" = ( +/obj/structure/cable/green, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/machinery/door/firedoor/glass{ + dir = 8 + }, +/obj/machinery/door/blast/shutters{ + dir = 8; + id = "cap_office"; + layer = 3.1; + name = "Colony Directo's Shutters" + }, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "bridge_lockdown"; + name = "Bridge Lockdown"; + opacity = 0 + }, +/obj/spawner/window/low_wall/reinforced/full, +/obj/effect/paint_stripe/commandblue, +/turf/simulated/floor/plating, +/area/bridge) +"cbS" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/item/clothing/under/swimsuit/stripper/cowbikini, +/obj/item/reagent_containers/food/drinks/cans/waterbottle, +/obj/machinery/air_alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/sauna) +"cci" = ( +/obj/effect/floor_decal/spline/fancy, +/obj/machinery/door/firedoor{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/space) +"cdt" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + id = "hangar_ammo_storage"; + name = "Ammunition Storage" + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"cdx" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 10 + }, +/turf/simulated/floor/carpet/blucarpet, +/area/lawoffice) +"ceG" = ( +/turf/simulated/floor/plating, +/area/vacant/vacant_bar) +"ceM" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/library) +"ceP" = ( +/obj/machinery/atmospherics/component/unary/engine{ + dir = 8 + }, +/turf/simulated/shuttle/plating/airless/carry, +/area/shuttle/excursion/cargo) +"cfh" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/space) +"cfv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/machinery/door/airlock/freezer{ + name = "Cafe Backroom"; + req_one_access = list() + }, +/obj/map_helper/access_helper/airlock/station/service/bar, +/turf/simulated/floor/tiled, +/area/crew_quarters/lounge/kitchen_freezer) +"cgo" = ( +/obj/machinery/shield_diffuser, +/turf/simulated/floor/airless/ceiling, +/area/bridge) +"cgw" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/space) +"cgB" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 9 + }, +/obj/structure/closet/lawcloset, +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/obj/machinery/power/apc/west_mount, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/turf/simulated/floor/wood, +/area/lawoffice) +"chb" = ( +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/aft) +"che" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/space) +"cib" = ( +/obj/overmap/entity/visitable/ship/landable/excursion/victory, +/obj/effect/shuttle_landmark/victory/deck4/excursion, +/obj/structure/handrail{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/shuttle/excursion/general) +"ciK" = ( +/obj/item/radio/intercom{ + pixel_y = -24 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/chapel/main) +"ciW" = ( +/obj/structure/bed/chair/sofa/right{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/maintenance/security/starboard) +"ckl" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/table/bench/wooden, +/obj/item/reagent_containers/food/drinks/cans/waterbottle, +/turf/simulated/floor/wood, +/area/hydroponics/garden) +"ckq" = ( +/obj/item/radio/intercom{ + dir = 4; + pixel_x = 24 + }, +/obj/effect/floor_decal/grass_edge{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/grass, +/area/hydroponics/garden) +"ckU" = ( +/obj/structure/railing, +/turf/simulated/open, +/area/medical/patient_wing) +"clz" = ( +/obj/effect/floor_decal/techfloor, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/aft) +"clB" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 4 + }, +/obj/structure/closet/hydrant{ + pixel_x = 32 + }, +/obj/machinery/vending/fitness, +/turf/simulated/floor/tiled, +/area/space) +"clE" = ( +/obj/effect/shuttle_landmark/victory/deck4/civvie, +/obj/overmap/entity/visitable/ship/landable/civvie/victory, +/obj/machinery/atmospherics/component/unary/vent_pump/high_volume{ + dir = 4; + frequency = 1380; + id_tag = "civvie_docker_pump" + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/map_helper/airlock/atmos/chamber_pump, +/turf/simulated/floor/tiled/old_tile/green, +/area/shuttle/civvie/general) +"clX" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled, +/area/space) +"cmM" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/table/bench/wooden, +/obj/item/instrument/harmonica, +/turf/simulated/floor/wood, +/area/hydroponics/garden) +"coo" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/vacant/vacant_bar) +"coH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/flora/tree/jungle, +/turf/simulated/floor/grass, +/area/hydroponics/garden) +"coK" = ( +/obj/structure/bookcase, +/obj/item/book/manual/the_humanized_mice, +/turf/simulated/floor/wood, +/area/maintenance/security/starboard) +"cpb" = ( +/obj/machinery/door/firedoor/glass{ + dir = 8 + }, +/obj/spawner/window/low_wall/reinforced/full, +/obj/effect/paint_stripe/violet, +/turf/simulated/floor/plating, +/area/space) +"cqc" = ( +/turf/space/basic, +/area/hallway/secondary/docking_hallway) +"cqF" = ( +/obj/machinery/vending/cola, +/turf/simulated/floor/tiled/steel_grid, +/area/victory/surfacebase/tram) +"cri" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/grass, +/area/hydroponics/garden) +"crL" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/machinery/vending/weeb{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/space) +"csk" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/bridge/meeting_room) +"csq" = ( +/obj/effect/floor_decal/chapel{ + dir = 8 + }, +/obj/structure/table/bench/wooden, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"ctl" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/item/flame/candle/candelabra/everburn, +/turf/simulated/floor/carpet/bcarpet, +/area/chapel/main) +"ctB" = ( +/obj/spawner/window/low_wall/reinforced/full, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/effect/paint_stripe/commandblue, +/turf/simulated/floor/plating, +/area/crew_quarters/heads/blueshield) +"ctD" = ( +/obj/machinery/vending/assist, +/turf/simulated/floor/tiled, +/area/maintenance/tool_storage) +"ctS" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/command) +"ctY" = ( +/obj/structure/table/woodentable, +/obj/item/storage/box/glasses/meta, +/obj/item/clothing/gloves/black, +/turf/simulated/floor/wood, +/area/maintenance/security/starboard) +"cuA" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/lounge) +"cvc" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"cvx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood, +/area/crew_quarters/coffee_shop) +"cvL" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/maintenance/central) +"cxg" = ( +/obj/machinery/camera/network/civilian{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/obj/machinery/station_map{ + dir = 4; + pixel_x = -32 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/aft) +"cyk" = ( +/obj/structure/table/woodentable, +/obj/item/storage/fancy/crayons, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/item/storage/fancy/candle_box, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/lino, +/area/chapel/office) +"cys" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/aft) +"cyD" = ( +/turf/simulated/floor/plating, +/area/maintenance/security/starboard) +"czv" = ( +/obj/structure/loot_pile/surface/medicine_cabinet/fresh{ + pixel_y = 28 + }, +/obj/random/unidentified_medicine/fresh_medicine, +/obj/random/unidentified_medicine/fresh_medicine, +/obj/random/unidentified_medicine/fresh_medicine, +/obj/random/unidentified_medicine/fresh_medicine, +/obj/random/unidentified_medicine/fresh_medicine, +/obj/random/unidentified_medicine/combat_medicine, +/obj/random/unidentified_medicine/combat_medicine, +/obj/random/unidentified_medicine/combat_medicine, +/obj/random/unidentified_medicine/combat_medicine, +/obj/random/unidentified_medicine/combat_medicine, +/obj/structure/table/woodentable, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/CMO_quarters) +"czH" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"cAt" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/floor_decal/grass_edge, +/obj/structure/lightpost, +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/grass, +/area/hydroponics/garden) +"cAF" = ( +/obj/structure/toilet{ + pixel_y = 10 + }, +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/sleep/CE_quarters) +"cBI" = ( +/obj/structure/table/reinforced, +/obj/machinery/light{ + dir = 8 + }, +/obj/item/book/manual/legal/sop_vol2, +/obj/item/book/manual/legal/sop_vol1, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"cCy" = ( +/obj/machinery/light, +/turf/simulated/floor/plating, +/area/maintenance/chapel) +"cEb" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood, +/area/hydroponics/garden) +"cEN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/machinery/power/apc/north_mount, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/coffee_shop) +"cEY" = ( +/obj/effect/floor_decal/chapel, +/obj/structure/table/bench/wooden, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"cGC" = ( +/obj/item/radio/beacon/anchored, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/aft) +"cGG" = ( +/turf/simulated/floor/tiled, +/area/shuttle/excursion/general) +"cGN" = ( +/obj/structure/table/woodentable, +/obj/item/flame/candle/candelabra/everburn, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/CMO_quarters) +"cHj" = ( +/obj/structure/flora/pottedplant/minitree, +/turf/simulated/floor/wood, +/area/bridge/office) +"cHu" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/aft) +"cHX" = ( +/obj/structure/table/woodentable, +/obj/item/flashlight/lamp/green, +/turf/simulated/floor/carpet/bcarpet, +/area/library) +"cIw" = ( +/obj/structure/table/wooden_reinforced, +/obj/item/folder/blue{ + pixel_x = 8; + pixel_y = 2 + }, +/obj/item/flashlight/lamp/green{ + pixel_x = -4; + pixel_y = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/carpet/blue, +/area/crew_quarters/heads/blueshield) +"cIC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/maintenance/chapel) +"cJh" = ( +/turf/simulated/floor/wood/broken, +/area/maintenance/security/starboard) +"cJy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/freezer, +/area/victory/surfacebase/sauna) +"cJE" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = -31 + }, +/turf/simulated/floor/carpet/oracarpet, +/area/crew_quarters/sleep/CE_quarters) +"cKP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/table/bench/steel, +/turf/simulated/floor/tiled, +/area/space) +"cKW" = ( +/obj/structure/railing, +/obj/effect/floor_decal/spline/fancy, +/turf/simulated/floor/water/deep/indoors, +/area/hydroponics/garden) +"cLM" = ( +/turf/simulated/wall, +/area/crew_quarters/sleep/CE_quarters) +"cMJ" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/victory/surfacebase/tram) +"cOc" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/simulated/floor/carpet, +/area/bridge/meeting_room) +"cPh" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/carpet/tealcarpet, +/area/crew_quarters/sleep/CMO_quarters) +"cPp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/item/stool/padded, +/turf/simulated/floor/wood, +/area/crew_quarters/coffee_shop) +"cPD" = ( +/obj/machinery/gateway, +/turf/simulated/floor/tiled/dark, +/area/exploration/courser_dock) +"cQp" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/victory/surfacebase/tram) +"cRT" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/space) +"cSS" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/carpet/oracarpet, +/area/crew_quarters/sleep/CE_quarters) +"cTe" = ( +/obj/effect/floor_decal/chapel{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"cTE" = ( +/obj/structure/undies_wardrobe, +/turf/simulated/floor/carpet/gaycarpet, +/area/crew_quarters/clownoffice) +"cTH" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/tree/sif, +/turf/simulated/floor/grass, +/area/hydroponics/garden) +"cTV" = ( +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/sleep/HOP_quarters) +"cUa" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"cUt" = ( +/obj/structure/table/reinforced, +/obj/machinery/microwave, +/turf/simulated/floor/tiled, +/area/space) +"cUV" = ( +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/machinery/power/apc/south_mount, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"cVf" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/holopad, +/turf/simulated/floor/tiled, +/area/hallway/primary/aft) +"cVE" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/table/bench/wooden, +/obj/effect/mist, +/turf/simulated/floor/wood, +/area/victory/surfacebase/sauna) +"cVS" = ( +/obj/structure/handrail{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/shuttle/excursion/general) +"cWc" = ( +/obj/effect/floor_decal/chapel{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"cXG" = ( +/obj/effect/floor_decal/spline/fancy, +/obj/structure/railing, +/obj/structure/flora/ausbushes/stalkybush, +/turf/simulated/floor/water/deep/indoors, +/area/hydroponics/garden) +"cXT" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/aft) +"cXY" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/structure/cable/cyan{ + icon_state = "1-4" + }, +/obj/structure/cable/cyan{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/shuttle/excursion/general) +"cYi" = ( +/turf/simulated/wall/r_wall/prepainted/command, +/area/crew_quarters/captain) +"cYl" = ( +/obj/effect/floor_decal/techfloor, +/obj/effect/floor_decal/techfloor/hole, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/secondary/civilian_hallway_mid) +"cYO" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exploration/excursion_dock) +"cZl" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor/grid, +/area/victory/surfacebase/tram) +"cZC" = ( +/obj/structure/table/reinforced, +/turf/simulated/floor/carpet/purcarpet, +/area/bridge) +"cZJ" = ( +/obj/structure/table/woodentable, +/obj/item/reagent_containers/food/drinks/flask/shiny, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/sleep/HOP_quarters) +"dam" = ( +/obj/machinery/door/firedoor/glass{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/command{ + name = "Bridge Meeting Room"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/command/bridge, +/turf/simulated/floor/tiled, +/area/bridge/meeting_room) +"ddh" = ( +/obj/effect/floor_decal/spline/fancy{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/aft) +"ddG" = ( +/obj/structure/table/rack, +/obj/item/tool/wrench, +/turf/simulated/floor/plating, +/area/space) +"dec" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/bed/chair/comfy/brown{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/space) +"dfk" = ( +/obj/machinery/suit_cycler/exploration, +/turf/simulated/floor/tiled, +/area/space) +"dfS" = ( +/turf/simulated/wall/r_wall/prepainted/command, +/area/maintenance/security/starboard) +"dfU" = ( +/obj/effect/shuttle_landmark/victory/deck4/specops, +/turf/space, +/area/space) +"dgm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/effect/floor_decal/grass_edge, +/obj/structure/closet/crate/hydroponics, +/obj/structure/flora/ausbushes/brflowers, +/obj/item/material/minihoe, +/obj/item/material/minihoe, +/obj/item/shovel/spade, +/obj/item/shovel/spade, +/obj/item/plant_analyzer, +/obj/item/plant_analyzer, +/obj/item/tool/wirecutters/clippers/trimmers, +/turf/simulated/floor/grass, +/area/hydroponics/garden) +"dgq" = ( +/turf/simulated/wall/r_wall, +/area/space) +"dgt" = ( +/obj/machinery/shower{ + pixel_y = 8 + }, +/obj/item/soap/deluxe, +/obj/structure/curtain/open/shower, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/sleep/CE_quarters) +"dgF" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/lounge) +"dhw" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/machinery/fire_alarm/north_mount, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/aft) +"dhZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/chapel) +"dip" = ( +/obj/structure/table/rack, +/obj/item/tank/jetpack/oxygen, +/obj/item/clothing/mask/gas, +/obj/item/clothing/suit/armor/captain, +/obj/item/clothing/head/helmet/space/capspace, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/card/id/gold/captain/spare, +/obj/machinery/door/window/brigdoor/westright{ + name = "Facility Director's Storage"; + req_access = list(20) + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"djr" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"djF" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = -31 + }, +/obj/effect/floor_decal/techfloor{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/secondary/civilian_hallway_mid) +"dkf" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/security/starboard) +"dkh" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/item/tvcamera, +/obj/item/tvcamera, +/obj/structure/table/woodentable, +/obj/machinery/newscaster{ + pixel_y = 30 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/library/study) +"dkB" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/beige/border, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/bridge/hallway) +"dkX" = ( +/turf/simulated/wall/r_wall/prepainted/exploration, +/area/space) +"dmO" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"dnj" = ( +/turf/simulated/floor/tiled/dark, +/area/space) +"dnu" = ( +/obj/item/radio/intercom{ + pixel_y = -24 + }, +/obj/structure/table/bench/wooden, +/obj/effect/mist, +/turf/simulated/floor/wood, +/area/victory/surfacebase/sauna) +"dos" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/ship_munition/disperser_charge/fire, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"doC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/lightpost, +/turf/simulated/floor/grass, +/area/hydroponics/garden) +"doM" = ( +/obj/machinery/door/blast/regular{ + id = "chapelgun"; + name = "Chapel Launcher Door" + }, +/turf/simulated/floor/plating, +/area/hallway/secondary/docking_hallway) +"dpb" = ( +/obj/structure/table/alien/blue{ + desc = "Is this imported?"; + name = "obscure table" + }, +/obj/random/action_figure, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/mimeoffice) +"dpf" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/space) +"dpg" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/exploration/courser_dock) +"dpE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/carpet/oracarpet, +/area/crew_quarters/sleep/CE_quarters) +"dpS" = ( +/obj/structure/bed/chair/bay/shuttle{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/space) +"dqb" = ( +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/grass, +/area/hydroponics/garden) +"dqd" = ( +/obj/structure/table/marble, +/turf/simulated/floor/wood, +/area/bridge/meeting_room) +"dqg" = ( +/turf/simulated/floor/airless, +/area/maintenance/security/starboard) +"dqo" = ( +/turf/simulated/floor/carpet/tealcarpet, +/area/crew_quarters/sleep/CMO_quarters) +"dqY" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/maintenance/tool_storage) +"dry" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/high_volume{ + dir = 4; + frequency = 1380; + id_tag = "victory_specops_dock_pump" + }, +/obj/machinery/airlock_sensor{ + dir = 1; + frequency = 1380; + id_tag = "victory_specops_dock"; + pixel_y = -22 + }, +/obj/map_helper/airlock/sensor/chamber_sensor, +/obj/map_helper/airlock/atmos/chamber_pump, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + frequency = 1380; + id_tag = "victory_specops_dock"; + pixel_y = 32 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"dsD" = ( +/turf/simulated/wall/prepainted/civilian, +/area/library) +"dtb" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 6 + }, +/obj/machinery/camera/network/civilian{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"dth" = ( +/turf/simulated/wall/prepainted/civilian, +/area/crew_quarters/clownoffice) +"dtm" = ( +/obj/machinery/lapvend, +/turf/simulated/floor/tiled, +/area/maintenance/tool_storage) +"dtE" = ( +/obj/structure/toilet{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/turf/simulated/floor/tiled, +/area/space) +"dtG" = ( +/obj/structure/sign/department/chapel, +/turf/simulated/wall/prepainted/civilian, +/area/chapel/main) +"dub" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/morgue{ + name = "Private Study"; + req_access = list(37) + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/carpet/bcarpet, +/area/library/study) +"duF" = ( +/obj/machinery/camera/network/command, +/obj/machinery/atmospherics/component/unary/vent_pump/on, +/obj/machinery/fire_alarm/north_mount, +/obj/structure/table/reinforced, +/obj/item/flashlight/lamp, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"dvb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/grass_edge, +/obj/machinery/camera/network/civilian{ + dir = 1 + }, +/turf/simulated/floor/grass, +/area/hydroponics/garden) +"dvF" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing, +/turf/simulated/open, +/area/maintenance/chapel) +"dyH" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/biogenerator, +/turf/simulated/floor/wood, +/area/hydroponics/garden) +"dyP" = ( +/obj/machinery/light, +/obj/machinery/air_alarm/alarms_hidden{ + dir = 1; + pixel_y = -23 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/shuttle/excursion/cargo) +"dzf" = ( +/obj/item/handcuffs/cable, +/turf/simulated/floor/plating, +/area/maintenance/security/starboard) +"dzM" = ( +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -23 + }, +/obj/structure/flora/ausbushes/ppflowers, +/obj/effect/floor_decal/grass_edge{ + dir = 8 + }, +/turf/simulated/floor/grass, +/area/hydroponics/garden) +"dzN" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/space) +"dAK" = ( +/obj/effect/floor_decal/techfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/aft) +"dBa" = ( +/obj/structure/sign/poster{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled/dark, +/area/medical/patient_wing) +"dBq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/exploration/courser_dock) +"dBL" = ( +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/machinery/power/apc/west_mount{ + cell_type = /obj/item/cell/super + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/sauna) +"dCl" = ( +/obj/structure/bed/chair/comfy/red{ + dir = 1 + }, +/obj/machinery/light/small, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/CMO_quarters) +"dCO" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/maintenance/cargo) +"dCX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/hydroponics/garden) +"dDd" = ( +/obj/structure/sign/department/ass, +/turf/simulated/wall/prepainted, +/area/maintenance/tool_storage) +"dDm" = ( +/obj/machinery/camera/network/security{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/wood, +/area/lawoffice) +"dDt" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/obj/machinery/power/apc/west_mount{ + cell_type = /obj/item/cell/super + }, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/turf/simulated/floor/tiled, +/area/space) +"dDx" = ( +/obj/structure/filingcabinet/medical, +/turf/simulated/floor/carpet/tealcarpet, +/area/crew_quarters/sleep/CMO_quarters) +"dDB" = ( +/obj/structure/closet/emcloset, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/bridge/hallway) +"dEr" = ( +/turf/simulated/floor/carpet, +/area/crew_quarters/heads/hop) +"dEt" = ( +/obj/item/radio/intercom{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/dark, +/area/exploration/courser_dock) +"dFa" = ( +/turf/simulated/wall/prepainted/command, +/area/bridge/office) +"dFj" = ( +/obj/structure/cable/cyan{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/old_tile/green, +/area/shuttle/civvie/general) +"dGc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/carpet/bcarpet, +/area/chapel/main) +"dGi" = ( +/obj/machinery/light, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/space) +"dGT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/crew_quarters/coffee_shop) +"dGX" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/secondary/civilian_hallway_mid) +"dHq" = ( +/obj/structure/closet/secure_closet/personal{ + name = "Official Personal Storage" + }, +/turf/simulated/floor/wood, +/area/bridge/office) +"dIc" = ( +/obj/machinery/button/remote/airlock{ + id = "maint_dorm"; + name = "Door Lock"; + pixel_x = 24; + pixel_y = -4; + specialfunctions = 4 + }, +/turf/simulated/floor/wood, +/area/maintenance/central) +"dIm" = ( +/obj/structure/loot_pile/maint/trash, +/turf/simulated/floor/plating, +/area/maintenance/chapel) +"dIv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/HOP_quarters) +"dIE" = ( +/obj/structure/railing, +/obj/effect/floor_decal/spline/fancy{ + dir = 10 + }, +/turf/simulated/floor/water/deep/indoors, +/area/hydroponics/garden) +"dIR" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/bridge/hallway) +"dJe" = ( +/obj/machinery/light/small/emergency{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/security/starboard) +"dJR" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled, +/area/bridge/hallway) +"dJV" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"dKl" = ( +/obj/effect/floor_decal/techfloor{ + dir = 5 + }, +/obj/structure/closet/hydrant{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/hallway/secondary/civilian_hallway_mid) +"dKn" = ( +/obj/structure/undies_wardrobe, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/CE_quarters) +"dMa" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/sleep/CMO_quarters) +"dMx" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/turf/simulated/floor/tiled, +/area/space) +"dNq" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/hallway/secondary/docking_hallway) +"dNv" = ( +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/security/starboard) +"dOz" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/maintenance/tool_storage) +"dOA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/lino, +/area/chapel/office) +"dOB" = ( +/obj/structure/table/woodentable, +/obj/item/reagent_containers/food/drinks/cup{ + pixel_x = 8; + pixel_y = 12 + }, +/obj/item/reagent_containers/food/drinks/cup{ + pixel_x = -4; + pixel_y = 12 + }, +/obj/item/reagent_containers/food/condiment/small/saltshaker{ + pixel_x = -3 + }, +/obj/item/reagent_containers/food/condiment/small/peppermill{ + pixel_x = 3 + }, +/obj/item/reagent_containers/food/condiment/small/peppermill{ + pixel_x = 9 + }, +/obj/item/reagent_containers/food/condiment/small/saltshaker{ + pixel_x = -9 + }, +/obj/machinery/camera/network/civilian{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/coffee_shop) +"dOG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/bridge/office) +"dOW" = ( +/obj/structure/cable/green, +/obj/machinery/power/terminal{ + dir = 8 + }, +/turf/simulated/floor, +/area/shuttle/civvie/general) +"dPQ" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"dQJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood, +/area/crew_quarters/coffee_shop) +"dRp" = ( +/obj/structure/bed/chair/shuttle{ + dir = 4 + }, +/obj/structure/cable/cyan{ + icon_state = "0-2" + }, +/obj/machinery/power/apc/west_mount, +/obj/machinery/light{ + dir = 8; + light_range = 12 + }, +/turf/simulated/floor/tiled/old_tile/green, +/area/shuttle/civvie/cockpit) +"dRt" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/library) +"dRO" = ( +/obj/structure/catwalk, +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/plating, +/area/maintenance/security/starboard) +"dSe" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/bridge/hallway) +"dSB" = ( +/obj/structure/bed/chair/comfy/red{ + dir = 1 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/space) +"dSQ" = ( +/obj/structure/closet/hydrant{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/space) +"dTn" = ( +/obj/machinery/door/blast/regular, +/turf/simulated/floor/plating, +/area/space) +"dTX" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 8 + }, +/obj/machinery/camera/network/exploration{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/space) +"dUe" = ( +/turf/simulated/floor/tiled, +/area/crew_quarters/sleep/CE_quarters) +"dUh" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"dUl" = ( +/obj/structure/table/woodentable, +/obj/item/flashlight/lamp/green, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/sleep/HOP_quarters) +"dVW" = ( +/turf/simulated/wall/r_wall/prepainted/exploration, +/area/shuttle/courser/general) +"dXG" = ( +/obj/machinery/computer/security{ + dir = 4 + }, +/obj/machinery/holoposter{ + pixel_y = 32 + }, +/turf/simulated/floor/carpet/blue, +/area/crew_quarters/heads/blueshield) +"dXL" = ( +/turf/simulated/wall/prepainted/exploration, +/area/exploration/medical) +"dYq" = ( +/obj/machinery/atmospherics/pipe/tank/air{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/shuttle/excursion/cargo) +"dYN" = ( +/obj/machinery/floodlight, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/maintenance/chapel) +"dYP" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/coffee_shop) +"dZr" = ( +/obj/effect/floor_decal/techfloor, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/aft) +"dZv" = ( +/obj/structure/table/reinforced, +/obj/machinery/computer/skills{ + dir = 8 + }, +/obj/effect/floor_decal/corner/purple{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"dZF" = ( +/obj/structure/table/woodentable, +/obj/item/storage/photo_album{ + pixel_y = -10 + }, +/obj/item/reagent_containers/food/drinks/flask{ + pixel_x = 8 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/captain) +"eav" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exploration/explorer_prep) +"eaB" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/lawoffice) +"eaK" = ( +/turf/simulated/floor/wood, +/area/crew_quarters/coffee_shop) +"eaR" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing, +/turf/simulated/open, +/area/medical/patient_wing) +"ebA" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/aft) +"ebH" = ( +/obj/machinery/door/airlock/voidcraft/vertical, +/obj/map_helper/airlock/door/ext_door, +/turf/simulated/floor/plating, +/area/space) +"ebJ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/bridge/hallway) +"ect" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/bookcase{ + name = "bookcase (Religious)" + }, +/obj/item/book/manual/robotics_cyborgs, +/turf/simulated/floor/wood, +/area/library) +"ecK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/cargo) +"edF" = ( +/obj/machinery/atmospherics/component/binary/passive_gate/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/secondary/docking_hallway) +"edR" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/item/radio/intercom{ + dir = 8; + pixel_x = -24 + }, +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/secondary/civilian_hallway_mid) +"edY" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/shuttle_landmark{ + base_area = /area/victory/surfacebase/tram; + base_turf = /turf/simulated/floor/tiled/techfloor/grid; + landmark_tag = "escape_victory"; + name = "Escape Shuttle Victory" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/victory/surfacebase/tram) +"eez" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/secondary/civilian_hallway_mid) +"eeY" = ( +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -23 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/libraryscanner, +/turf/simulated/floor/wood, +/area/library) +"ehT" = ( +/obj/structure/loot_pile/maint/technical, +/turf/simulated/floor/plating, +/area/maintenance/central) +"eiM" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/bridge/hallway) +"ejb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/table/bench/wooden, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"ejQ" = ( +/obj/machinery/camera/network/command{ + dir = 4 + }, +/obj/machinery/keycard_auth{ + pixel_x = -28; + pixel_y = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"ekF" = ( +/obj/machinery/light, +/obj/structure/table/standard, +/obj/machinery/recharger, +/turf/simulated/floor/tiled, +/area/space) +"ekR" = ( +/obj/machinery/recharge_station, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/turf/simulated/floor, +/area/shuttle/civvie/general) +"elR" = ( +/obj/spawner/window/low_wall/borosillicate/reinforced/full, +/obj/effect/paint_stripe/commandblue, +/turf/simulated/shuttle/floor/voidcraft, +/area/bridge/meeting_room) +"emu" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor/orange, +/turf/simulated/floor/tiled/dark, +/area/space) +"emL" = ( +/obj/machinery/button/windowtint{ + id = "pathfinder_office"; + pixel_x = 26; + pixel_y = -26 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_y = -24 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/turf/simulated/floor/tiled, +/area/space) +"emV" = ( +/obj/machinery/computer/card{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/hop) +"enn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/carpet/oracarpet, +/area/crew_quarters/sleep/CE_quarters) +"eoP" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/structure/closet, +/obj/item/tape_recorder{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/item/camera{ + pixel_x = 3; + pixel_y = -4 + }, +/obj/item/tape_recorder{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/item/camera{ + pixel_x = 3; + pixel_y = -4 + }, +/obj/item/flash, +/obj/item/flash, +/obj/item/storage/secure/briefcase, +/obj/item/storage/secure/briefcase, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/lawoffice) +"eoX" = ( +/obj/random/trash_pile, +/turf/simulated/floor/plating, +/area/maintenance/security/port) +"eoY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/item/radio/beacon, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"ert" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/secondary/docking_hallway) +"erV" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden, +/obj/machinery/meter{ + frequency = 1443; + id = "dist_aux_meter"; + name = "Distribution Loop" + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/secondary/docking_hallway) +"esm" = ( +/obj/structure/table/glass, +/turf/simulated/floor/carpet, +/area/medical/patient_wing) +"esp" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance/common, +/turf/simulated/floor/plating, +/area/hydroponics/garden) +"esr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/vending/hydronutrients, +/turf/simulated/floor/wood, +/area/hydroponics/garden) +"esI" = ( +/obj/structure/flora/ausbushes/stalkybush, +/turf/simulated/floor/water/deep/indoors, +/area/hydroponics/garden) +"esN" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/heads/hop) +"esO" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8 + }, +/obj/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/turf/simulated/floor/carpet, +/area/bridge/office) +"esY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"eus" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/captain) +"euS" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/flora/ausbushes/ppflowers, +/turf/simulated/floor/grass, +/area/hydroponics/garden) +"evm" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/ship_munition/disperser_charge/fire, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"evM" = ( +/turf/simulated/floor/tiled/dark, +/area/bridge) +"evV" = ( +/obj/machinery/holopad/ship, +/turf/simulated/floor/tiled, +/area/space) +"exi" = ( +/turf/simulated/floor/wood, +/area/crew_quarters/heads/blueshield) +"exp" = ( +/obj/machinery/shower{ + pixel_y = 8 + }, +/obj/structure/curtain/open/shower, +/obj/item/soap/deluxe, +/turf/simulated/floor/tiled, +/area/maintenance/central) +"exE" = ( +/obj/effect/floor_decal/industrial/warning/full, +/obj/machinery/porta_turret/stationary{ + gl_uid = "exploration"; + installation = /obj/item/gun/energy/phasegun; + name = "exploration turret"; + uid = "exploration" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/excursion/general) +"eyc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/teleporter) +"eyi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/camera/network/exploration{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"eyn" = ( +/obj/structure/table/woodentable, +/obj/item/flashlight/lamp/green, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/lounge) +"eyp" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 1; + name = "Exploration Public Lobby" + }, +/turf/space/basic, +/area/space) +"eza" = ( +/obj/structure/catwalk, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/security/starboard) +"ezT" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/carpet/bcarpet, +/area/library/study) +"eAX" = ( +/obj/structure/bed/chair/shuttle{ + dir = 8 + }, +/obj/structure/panic_button{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/shuttle/excursion/general) +"eDy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + id_tag = "cmodoor"; + name = "CMO's Living Quarters"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/head_office/chief_medical_officer, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/CMO_quarters) +"eDF" = ( +/obj/item/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 26 + }, +/obj/machinery/camera/network/civilian{ + dir = 9 + }, +/obj/structure/bookcase/legal/combo, +/obj/item/book/manual/standard_operating_procedure, +/obj/item/book/manual/security_space_law, +/obj/item/book/manual/command_guide, +/turf/simulated/floor/wood, +/area/library) +"eDV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/maintenance/tool_storage) +"eEJ" = ( +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/obj/machinery/fire_alarm/east_mount, +/turf/simulated/floor/tiled/dark, +/area/hallway/secondary/civilian_hallway_mid) +"eFE" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 5 + }, +/obj/machinery/vending/coffee, +/turf/simulated/floor/tiled, +/area/bridge/hallway) +"eFG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/railing, +/turf/simulated/wall, +/area/hydroponics/garden) +"eGI" = ( +/obj/machinery/atmospherics/pipe/tank/air, +/turf/simulated/floor/tiled/dark, +/area/hallway/secondary/docking_hallway) +"eGS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/structure/table/reinforced, +/obj/machinery/door/window/brigdoor/eastright{ + req_access = null; + req_one_access = list(1,38) + }, +/turf/simulated/floor/tiled, +/area/space) +"eGV" = ( +/obj/machinery/door/airlock/maintenance/common{ + id_tag = "maint_dorm" + }, +/obj/machinery/door/firedoor, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/central) +"eHF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/freezer, +/area/victory/surfacebase/sauna) +"eIl" = ( +/obj/effect/mist, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/simulated/floor/wood, +/area/victory/surfacebase/sauna) +"eIv" = ( +/obj/machinery/gateway{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/courser/general) +"eJe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/table/bench/wooden, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"eJs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/grass_edge{ + dir = 1 + }, +/obj/structure/flora/ausbushes/ppflowers, +/obj/machinery/fire_alarm/north_mount, +/turf/simulated/floor/grass, +/area/hydroponics/garden) +"eKd" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"eLu" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/grass, +/area/hydroponics/garden) +"eLC" = ( +/obj/effect/floor_decal/techfloor, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/secondary/civilian_hallway_mid) +"eMF" = ( +/obj/machinery/vending/coffee, +/obj/structure/window/reinforced, +/turf/simulated/floor/carpet, +/area/medical/patient_wing) +"eMS" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/space) +"eNi" = ( +/obj/structure/closet/firecloset, +/turf/simulated/floor/tiled, +/area/maintenance/chapel) +"eNt" = ( +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/vending/coffee, +/turf/simulated/floor/wood, +/area/space) +"eNv" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/table/standard, +/obj/item/flashlight/lantern, +/turf/simulated/floor/tiled, +/area/hallway/primary/aft) +"eNz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/CMO_quarters) +"eNI" = ( +/obj/machinery/newscaster{ + pixel_x = -27 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow/full, +/obj/machinery/computer/atmos_alert{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"eNY" = ( +/obj/structure/closet/coffin/comfy, +/turf/simulated/floor/tiled, +/area/chapel/main) +"eNZ" = ( +/obj/machinery/camera/network/civilian, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/machinery/computer/ship/navigation/telescreen{ + pixel_y = 27 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/secondary/civilian_hallway_mid) +"eOe" = ( +/obj/machinery/camera/network/civilian{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/bookbinder, +/turf/simulated/floor/wood, +/area/library) +"eOl" = ( +/turf/simulated/floor/wood, +/area/library) +"eOH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/space) +"ePo" = ( +/obj/structure/grille, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/wall_frame/prepainted, +/obj/structure/wall_frame/prepainted, +/obj/structure/window/reinforced/polarized/full{ + id = "hop_office"; + name = "HoP Office window" + }, +/obj/effect/paint_stripe/commandblue, +/turf/simulated/floor/plating, +/area/crew_quarters/heads/hop) +"ePs" = ( +/turf/simulated/floor/tiled/techfloor/grid, +/area/exploration/explorer_prep) +"ePR" = ( +/obj/structure/flora/tree/jungle_small, +/obj/structure/railing, +/turf/simulated/floor/grass, +/area/hydroponics/garden) +"eQl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"eQL" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/aft) +"eRi" = ( +/obj/structure/bed/chair, +/obj/landmark/spawnpoint/job/chaplain, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/lino, +/area/chapel/office) +"eRR" = ( +/obj/effect/floor_decal/techfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/red/border, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/aft) +"eSO" = ( +/obj/machinery/computer/secure_data{ + dir = 4 + }, +/obj/item/radio/intercom/department/security{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/carpet/blue, +/area/crew_quarters/heads/blueshield) +"eTc" = ( +/obj/effect/floor_decal/techfloor/orange, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/dark, +/area/space) +"eTg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"eTt" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/old_tile/green, +/area/shuttle/civvie/general) +"eTR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exploration/excursion_dock) +"eUo" = ( +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/sleep/CMO_quarters) +"eUD" = ( +/turf/simulated/floor/tiled/dark, +/area/medical/patient_wing) +"eUJ" = ( +/obj/structure/table/woodentable, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/space) +"eUU" = ( +/obj/effect/floor_decal/techfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/secondary/civilian_hallway_mid) +"eUW" = ( +/obj/item/radio/intercom{ + pixel_y = -24 + }, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/manifold/hidden, +/turf/simulated/floor/plating, +/area/shuttle/excursion/cargo) +"eWd" = ( +/obj/structure/table/bench/padded, +/turf/simulated/floor/plating, +/area/vacant/vacant_bar) +"eWE" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/fuel_port{ + dir = 4; + pixel_x = 29 + }, +/turf/simulated/floor/plating, +/area/shuttle/excursion/cargo) +"eWO" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/bridge/meeting_room) +"eXk" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/high_volume{ + dir = 4; + frequency = 1380; + id_tag = "courser_dock_pump" + }, +/obj/map_helper/airlock/atmos/chamber_pump, +/turf/simulated/floor/tiled, +/area/space) +"eXv" = ( +/obj/structure/fireplace{ + pixel_y = 23 + }, +/turf/simulated/floor/plating, +/area/maintenance/security/starboard) +"eYk" = ( +/turf/simulated/floor/water/deep/pool, +/area/victory/surfacebase/sauna) +"eYD" = ( +/obj/structure/table/reinforced, +/obj/item/storage/secure/briefcase, +/obj/item/book/manual/command_guide, +/obj/item/book/manual/standard_operating_procedure, +/obj/item/defib_kit/loaded, +/obj/item/storage/firstaid/regular, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"eYI" = ( +/obj/item/flashlight/lamp/green, +/obj/machinery/atmospherics/component/unary/vent_pump/on, +/obj/structure/table/woodentable, +/obj/item/clothing/glasses/omnihud/all, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"faa" = ( +/obj/structure/table/woodentable, +/obj/item/flashlight/lamp/green, +/turf/simulated/floor/carpet/purcarpet, +/area/space) +"fbe" = ( +/obj/structure/catwalk, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/shuttle/excursion/cargo) +"fbr" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/secondary/docking_hallway) +"fbC" = ( +/obj/effect/floor_decal/corner/orange{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"fcc" = ( +/obj/item/radio/intercom{ + pixel_y = -24 + }, +/turf/simulated/floor/wood, +/area/space) +"fcl" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Hanger Lounge" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/lounge) +"fcu" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/exploration/courser_dock) +"fdP" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/wood, +/area/space) +"fef" = ( +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/machinery/power/apc/east_mount, +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/turf/simulated/floor/tiled, +/area/maintenance/tool_storage) +"feB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/bed/chair/comfy/brown{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/library) +"feD" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/heads/hop) +"fge" = ( +/obj/machinery/holopad, +/turf/simulated/floor/carpet, +/area/bridge/office) +"fgr" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on, +/obj/structure/bed/chair/bay/comfy/black{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"fgz" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/ship_munition/disperser_charge/mining, +/turf/simulated/floor/tiled/dark, +/area/space) +"fhC" = ( +/obj/machinery/chemical_dispenser/catering/bar_alc, +/obj/structure/table/woodentable, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/vacant/vacant_bar) +"fhK" = ( +/turf/simulated/wall/prepainted/civilian, +/area/hallway/secondary/docking_hallway) +"fiu" = ( +/obj/machinery/door/firedoor, +/obj/map_helper/airlock/door/int_door, +/obj/map_helper/access_helper/airlock/station/exploration/department, +/obj/machinery/door/airlock/glass_external{ + req_one_access = null + }, +/turf/simulated/floor/tiled, +/area/space) +"fix" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/lounge) +"fjs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"fjA" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"fjB" = ( +/obj/structure/bed/chair/shuttle{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/shuttle/excursion/general) +"fkf" = ( +/obj/structure/cable/green, +/obj/machinery/power/apc/east_mount, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/CE_quarters) +"fkm" = ( +/obj/effect/floor_decal/techfloor, +/obj/structure/sign/directions/science{ + pixel_y = -23 + }, +/obj/structure/sign/directions/security{ + dir = 8; + pixel_y = -29 + }, +/obj/structure/sign/directions/command{ + dir = 4; + pixel_y = -36 + }, +/obj/structure/sign/directions/medical{ + pixel_y = -42 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/aft) +"fkS" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/HOP_quarters) +"flK" = ( +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/coffee_shop) +"fmb" = ( +/obj/structure/cable/cyan{ + icon_state = "0-2" + }, +/obj/machinery/power/smes/buildable{ + charge = 15000; + cur_coils = 3 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/shuttle/excursion/general) +"fmh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/camera/network/exploration{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"fmm" = ( +/obj/structure/bed/chair/sofa/black/right{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/medical/patient_wing) +"fmn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/shuttle/excursion/cargo) +"fmw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/shuttle/wall/voidcraft/hard_corner, +/area/shuttle/civvie/general) +"fmJ" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/table/bench/wooden, +/obj/item/toy/plushie/deer, +/turf/simulated/floor/wood, +/area/hydroponics/garden) +"fmO" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/chapel/main) +"fnF" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/maintenance/security/starboard) +"fnK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"fnO" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = -31 + }, +/turf/simulated/floor/tiled/dark, +/area/victory/station/stairs_four) +"fnT" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/window/brigdoor/northright{ + name = "Quarantine Cell"; + req_access = list(1,38) + }, +/turf/simulated/floor/tiled, +/area/space) +"foc" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/grass, +/area/hydroponics/garden) +"fop" = ( +/obj/machinery/light/small/emergency{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/central) +"fpV" = ( +/obj/machinery/atmospherics/portables_connector{ + name = "Engine Fuel Port" + }, +/obj/effect/floor_decal/industrial/outline/red, +/obj/structure/sign/warning/nosmoking_1{ + pixel_y = 32 + }, +/turf/simulated/floor/plating, +/area/space) +"fqB" = ( +/obj/structure/sign/directions/evac{ + pixel_y = -32 + }, +/obj/effect/floor_decal/spline/fancy{ + dir = 4 + }, +/obj/landmark/spawnpoint/overflow/station, +/turf/simulated/floor/tiled, +/area/hallway/primary/aft) +"fqC" = ( +/obj/structure/cable/cyan{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/shuttle/excursion/cockpit) +"frn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/catwalk, +/obj/structure/cable/cyan{ + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/shuttle/excursion/cargo) +"fsb" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/obj/item/radio/intercom{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/CMO_quarters) +"fsr" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/fire_alarm/east_mount, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"fsG" = ( +/obj/machinery/keycard_auth{ + pixel_x = 28; + pixel_y = -28 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/heads/hop) +"fsN" = ( +/obj/machinery/vending/coffee, +/turf/simulated/floor/carpet/bcarpet, +/area/library) +"fsR" = ( +/turf/simulated/wall/r_wall, +/area/exploration/courser_dock) +"fsZ" = ( +/obj/item/radio/intercom{ + dir = 8; + pixel_x = -24 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/spline/fancy, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled, +/area/space) +"ftb" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/tiled/freezer, +/area/victory/surfacebase/sauna) +"fth" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/space) +"ftn" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/freezer, +/area/victory/surfacebase/sauna) +"ftL" = ( +/obj/effect/floor_decal/chapel, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"ftM" = ( +/obj/effect/floor_decal/techfloor{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/hallway/primary/aft) +"ftU" = ( +/obj/structure/catwalk, +/obj/effect/floor_decal/rust/mono_rusted3, +/turf/simulated/floor/plating, +/area/maintenance/chapel) +"fuR" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ + dir = 1 + }, +/obj/structure/handrail, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/space) +"fvk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/space) +"fvL" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atm{ + pixel_x = -33 + }, +/turf/simulated/floor/tiled, +/area/space) +"fvW" = ( +/obj/effect/wingrille_spawn/reinforced_phoron, +/obj/machinery/door/firedoor, +/turf/simulated/shuttle/floor/voidcraft, +/area/shuttle/civvie/cockpit) +"fxj" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/bridge/hallway) +"fxw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/camera/network/command, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/captain) +"fyz" = ( +/obj/effect/floor_decal/chapel{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"fzZ" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/sleep/HOP_quarters) +"fAa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/HOP_quarters) +"fAz" = ( +/turf/simulated/wall/prepainted/exploration, +/area/crew_quarters/lounge) +"fAR" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/turf/simulated/floor/carpet/oracarpet, +/area/crew_quarters/sleep/CE_quarters) +"fBm" = ( +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/obj/machinery/camera/network/civilian{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/aft) +"fBz" = ( +/obj/machinery/button/remote/driver{ + id = "chapelgun"; + name = "Chapel Mass Driver"; + pixel_x = -25 + }, +/turf/simulated/floor/wood, +/area/hallway/secondary/docking_hallway) +"fBI" = ( +/obj/structure/table/woodentable, +/obj/item/instrument/guitar, +/turf/simulated/floor/wood, +/area/space) +"fCr" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"fDi" = ( +/obj/effect/floor_decal/techfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/secondary/civilian_hallway_mid) +"fDv" = ( +/obj/machinery/mineral/equipment_vendor/survey, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/shuttle/excursion/general) +"fDI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/library) +"fDJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood, +/area/library) +"fDQ" = ( +/obj/structure/table/rack/shelf/steel, +/obj/item/stack/flag/blue, +/turf/simulated/floor/plating, +/area/maintenance/security/starboard) +"fEx" = ( +/obj/effect/wingrille_spawn/reinforced_phoron, +/obj/machinery/door/firedoor/glass{ + dir = 8 + }, +/turf/simulated/shuttle/floor/voidcraft, +/area/shuttle/civvie/cockpit) +"fEX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/yellow{ + dir = 10 + }, +/obj/structure/bed/chair/bay/comfy/black{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"fFn" = ( +/obj/machinery/camera/network/security{ + dir = 1 + }, +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled, +/area/maintenance/tool_storage) +"fFJ" = ( +/obj/machinery/gateway/centerstation, +/obj/landmark{ + name = "blobstart" + }, +/turf/simulated/floor/tiled/dark, +/area/exploration/courser_dock) +"fFM" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/hydroponics/garden) +"fGf" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"fHh" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/space) +"fIt" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/bridge/hallway) +"fIz" = ( +/obj/structure/closet/wardrobe/captain, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/captain) +"fIO" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/maintenance/engi{ + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/substation/exploration) +"fJm" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/library) +"fJz" = ( +/obj/item/radio/intercom{ + pixel_y = -24 + }, +/turf/simulated/floor/wood, +/area/bridge/office) +"fJS" = ( +/obj/machinery/seed_extractor, +/turf/simulated/floor/wood, +/area/hydroponics/garden) +"fLD" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/carpet/blucarpet, +/area/lawoffice) +"fLR" = ( +/obj/machinery/power/smes/buildable{ + RCon_tag = "Deck 4 Grid"; + cur_coils = 3 + }, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/structure/cable, +/turf/simulated/floor/plating, +/area/maintenance/substation/exploration) +"fLT" = ( +/obj/machinery/door/firedoor, +/obj/machinery/access_button{ + command = "cycle_int"; + frequency = 1380; + master_tag = "civvie_docker"; + pixel_x = 5; + pixel_y = 25 + }, +/obj/map_helper/airlock/door/int_door, +/obj/machinery/door/airlock/voidcraft/vertical, +/turf/simulated/floor/tiled/old_tile/green, +/area/shuttle/civvie/general) +"fMf" = ( +/turf/simulated/floor/plating, +/area/maintenance/substation/security) +"fMh" = ( +/obj/structure/bookcase{ + name = "bookcase (Fiction)" + }, +/turf/simulated/floor/wood, +/area/library) +"fMr" = ( +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/sleep/HOP_quarters) +"fNh" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/machinery/computer/guestpass{ + dir = 4; + pixel_x = -28 + }, +/turf/simulated/floor/wood, +/area/lawoffice) +"fNJ" = ( +/obj/item/gun/energy/lasertag/red, +/obj/structure/table/rack/shelf/steel, +/turf/simulated/floor/tiled/old_tile/red, +/area/maintenance/security/starboard) +"fOe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/wood, +/area/library) +"fOT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/table/bench/steel, +/turf/simulated/floor/tiled, +/area/hallway/primary/aft) +"fOY" = ( +/obj/structure/closet/firecloset, +/turf/simulated/floor/plating, +/area/maintenance/security/starboard) +"fPa" = ( +/obj/machinery/chemical_dispenser/catering/bar_soft{ + dir = 8 + }, +/obj/structure/table/woodentable, +/turf/simulated/floor/wood, +/area/maintenance/security/starboard) +"fPp" = ( +/obj/structure/undies_wardrobe, +/turf/simulated/floor/wood, +/area/crew_quarters/mimeoffice) +"fPE" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/mech_recharger, +/obj/effect/floor_decal/industrial/warning/full, +/turf/simulated/floor/tiled, +/area/shuttle/excursion/general) +"fRf" = ( +/obj/machinery/vending/nifsoft_shop{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/space) +"fRp" = ( +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/emergency, +/obj/item/storage/toolbox/mechanical, +/obj/random/tech_supply, +/obj/random/tech_supply, +/turf/simulated/floor/tiled, +/area/maintenance/tool_storage) +"fRJ" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 1 + }, +/obj/machinery/door/firedoor/glass{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"fRL" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing, +/obj/structure/flora/ausbushes/grassybush, +/turf/simulated/floor/grass, +/area/hydroponics/garden) +"fSC" = ( +/obj/machinery/camera/network/exploration, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/space) +"fSE" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/exploration/pilot_prep) +"fSO" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/lounge) +"fSZ" = ( +/obj/structure/table/reinforced, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/recharger, +/obj/random/tech_supply, +/obj/random/tech_supply, +/turf/simulated/floor/tiled, +/area/maintenance/tool_storage) +"fUg" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass{ + dir = 8 + }, +/obj/machinery/door/airlock/command{ + name = "Nanotrasen Official On-Site Office"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/command/bridge, +/turf/simulated/floor/tiled, +/area/bridge/office) +"fUE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/turf/simulated/floor/wood, +/area/lawoffice) +"fUM" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/ship_munition/disperser_charge/explosive, +/obj/effect/floor_decal/industrial/outline/red, +/turf/simulated/floor/tiled/dark, +/area/space) +"fVe" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"fVM" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 8 + }, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/captain) +"fVU" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/obj/item/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 21 + }, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/secondary/civilian_hallway_mid) +"fVV" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/wall/prepainted, +/area/maintenance/substation/exploration) +"fWk" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled, +/area/space) +"fXq" = ( +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/table/woodentable, +/turf/simulated/floor/wood, +/area/space) +"fXA" = ( +/turf/simulated/shuttle/wall/voidcraft/green, +/area/shuttle/civvie/general) +"fYz" = ( +/obj/effect/floor_decal/techfloor/orange, +/turf/simulated/floor/tiled/dark, +/area/space) +"fYF" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/secondary/docking_hallway) +"fZp" = ( +/obj/structure/flora/tree/jungle, +/turf/simulated/floor/grass, +/area/hydroponics/garden) +"fZu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/bridge/hallway) +"fZy" = ( +/turf/simulated/wall/prepainted/civilian, +/area/crew_quarters/lounge/kitchen_freezer) +"fZY" = ( +/obj/structure/table/steel, +/obj/random/tech_supply, +/turf/simulated/floor/plating, +/area/maintenance/security/starboard) +"gaj" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/medical{ + name = "Checkpoint Airlock"; + req_one_access = null + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/map_helper/access_helper/airlock/station/hangar, +/turf/simulated/floor/tiled, +/area/space) +"gas" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/hydroponics/garden) +"gbt" = ( +/obj/machinery/door/firedoor/glass{ + dir = 8 + }, +/obj/machinery/door/airlock/glass, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/aft) +"gcb" = ( +/obj/machinery/recharger/wallcharger{ + pixel_x = -22 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"gcd" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/space) +"geI" = ( +/obj/machinery/computer/shuttle_control/explore/excursion{ + dir = 4; + req_one_access = null + }, +/turf/simulated/floor/tiled, +/area/shuttle/excursion/cockpit) +"geL" = ( +/obj/structure/sign/goldenplaque{ + desc = "This plaque is thankfully empty, but is dedicated to those that were killed in the line of duty protecting the NSV Victory, and Nanotrasen as a whole."; + name = "Memorial Plaque"; + pixel_y = 32 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"geW" = ( +/obj/structure/closet/hydrant{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/shuttle/excursion/cargo) +"ggL" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"ghn" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/terminal, +/turf/simulated/floor/plating, +/area/maintenance/substation/command) +"ghr" = ( +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/structure/table/marble, +/obj/machinery/cash_register/civilian{ + dir = 4; + req_access = list(25) + }, +/obj/machinery/door/blast/shutters{ + dir = 2; + id = "cafe"; + layer = 3.1; + name = "Cafe Shutters" + }, +/turf/simulated/floor/lino, +/area/crew_quarters/coffee_shop) +"giv" = ( +/obj/effect/floor_decal/industrial/outline/red, +/obj/structure/closet/secure_closet/guncabinet/excursion, +/turf/simulated/floor/tiled, +/area/shuttle/excursion/general) +"giF" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/techfloor, +/turf/simulated/floor/tiled/dark, +/area/hallway/secondary/civilian_hallway_mid) +"gja" = ( +/obj/structure/table/reinforced, +/obj/item/stamp/denied, +/obj/item/stamp{ + pixel_x = 4 + }, +/obj/item/pen, +/turf/simulated/floor/tiled, +/area/space) +"gjr" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "security_lockdown"; + name = "Security Blast Doors"; + opacity = 0 + }, +/obj/spawner/window/low_wall/reinforced/full, +/obj/effect/paint_stripe/palebottlegreen, +/turf/simulated/floor, +/area/hallway/secondary/docking_hallway) +"gjv" = ( +/obj/structure/table/bench/wooden, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/sauna) +"gjL" = ( +/obj/machinery/door/airlock/voidcraft/vertical{ + name = "cockpit hatch" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/space) +"gjY" = ( +/obj/item/radio/intercom{ + dir = 8; + pixel_x = -24 + }, +/obj/structure/flora/ausbushes/ppflowers, +/obj/effect/floor_decal/grass_edge{ + dir = 8 + }, +/turf/simulated/floor/grass, +/area/hydroponics/garden) +"gkp" = ( +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/CMO_quarters) +"gkR" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/maintenance/chapel) +"gkZ" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/space) +"glq" = ( +/obj/structure/closet/crate, +/obj/random/contraband, +/obj/random/contraband, +/obj/random/contraband, +/obj/random/drinkbottle, +/obj/random/cigarettes, +/obj/item/flame/lighter/zippo/bullet, +/obj/random/contraband, +/obj/random/contraband, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, +/turf/simulated/floor/wood/broken, +/area/maintenance/security/starboard) +"glF" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/bridge/hallway) +"glY" = ( +/obj/machinery/vending/medical{ + req_access = null; + req_one_access = list(5,44) + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/turf/simulated/floor/tiled/white, +/area/exploration/explorer_prep) +"gmp" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/table/bench/wooden, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"gmJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/item/stool/padded, +/turf/simulated/floor/wood, +/area/crew_quarters/coffee_shop) +"gmV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/holopad, +/turf/simulated/floor/tiled, +/area/space) +"gnb" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/CE_quarters) +"gnm" = ( +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/secondary/civilian_hallway_mid) +"gnr" = ( +/obj/machinery/shower{ + pixel_y = 8 + }, +/obj/structure/curtain/open/shower{ + anchored = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/victory/surfacebase/sauna) +"gnD" = ( +/obj/structure/table/bench, +/turf/simulated/floor/wood, +/area/vacant/vacant_bar) +"goT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/structure/flora/pottedplant/minitree, +/turf/simulated/floor/carpet/purcarpet, +/area/crew_quarters/coffee_shop) +"gpv" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 4 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/crew_quarters/coffee_shop) +"gqq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/camera/network/civilian, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/coffee_shop) +"gqG" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor/glass, +/obj/structure/disposalpipe/segment, +/obj/structure/window/reinforced/polarized/full{ + id = "pathfinder_office" + }, +/obj/structure/wall_frame/prepainted, +/obj/effect/paint_stripe/palebottlegreen, +/turf/simulated/floor/plating, +/area/chapel/office) +"gqQ" = ( +/obj/effect/floor_decal/corner/blue/full{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/table/reinforced, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"gqZ" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor/glass, +/obj/structure/window/reinforced/polarized/full{ + id = "pathfinder_office" + }, +/obj/structure/wall_frame/prepainted, +/obj/effect/paint_stripe/palebottlegreen, +/turf/simulated/floor/plating, +/area/chapel/office) +"gsj" = ( +/obj/machinery/holopad, +/turf/simulated/floor/tiled, +/area/space) +"gud" = ( +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/machinery/suit_storage_unit/exploration, +/turf/simulated/floor/tiled, +/area/space) +"gug" = ( +/obj/structure/table/reinforced, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/item/duct_tape_roll, +/turf/simulated/floor/tiled, +/area/maintenance/tool_storage) +"gva" = ( +/obj/machinery/gateway{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/exploration/courser_dock) +"gvc" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/obj/structure/table/reinforced, +/obj/item/flashlight/lamp, +/obj/effect/floor_decal/spline/plain{ + dir = 5 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/lawoffice) +"gvL" = ( +/obj/machinery/light/small, +/obj/machinery/status_display{ + pixel_x = -32 + }, +/obj/structure/table/woodentable, +/obj/effect/mist, +/obj/item/reagent_containers/food/drinks/bottle/patron, +/turf/simulated/floor/wood, +/area/victory/surfacebase/sauna) +"gwu" = ( +/obj/machinery/air_alarm{ + frequency = 1441; + pixel_y = 22 + }, +/obj/machinery/camera/network/exploration, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exploration/excursion_dock) +"gwz" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/crew_quarters/lounge/kitchen_freezer) +"gxB" = ( +/turf/simulated/wall/r_wall/prepainted/exploration, +/area/exploration) +"gxC" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/space) +"gyv" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled, +/area/hallway/primary/aft) +"gyS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exploration/excursion_dock) +"gzm" = ( +/obj/structure/catwalk, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/chapel) +"gAa" = ( +/obj/machinery/light, +/turf/simulated/floor/wood, +/area/space) +"gAb" = ( +/obj/effect/floor_decal/grass_edge{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/grass, +/area/hydroponics/garden) +"gAi" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/water/pool, +/area/victory/surfacebase/sauna) +"gBt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/hallway/secondary/civilian_hallway_mid) +"gBG" = ( +/obj/spawner/window/low_wall/full/nogrille/firelocks, +/obj/effect/paint/violet, +/turf/simulated/floor/plating, +/area/exploration/explorer_prep) +"gCd" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/holopad, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/crew_quarters/coffee_shop) +"gDh" = ( +/obj/machinery/door/airlock/voidcraft/vertical{ + name = "battery hatch" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/space) +"gDL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/wood, +/area/hallway/secondary/docking_hallway) +"gEb" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/portables_connector{ + name = "Engine Fuel Port" + }, +/obj/effect/floor_decal/industrial/outline/red, +/turf/simulated/floor, +/area/shuttle/civvie/general) +"gED" = ( +/obj/structure/cable/green, +/obj/machinery/power/apc/east_mount, +/obj/structure/bed/chair/comfy/black{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/CMO_quarters) +"gEG" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"gEQ" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/obj/machinery/camera/network/command, +/turf/simulated/floor/tiled/dark, +/area/victory/station/stairs_four) +"gER" = ( +/obj/structure/table/bench/padded, +/turf/simulated/floor/wood, +/area/vacant/vacant_bar) +"gGb" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/space) +"gGl" = ( +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing, +/turf/simulated/floor/plating, +/area/space) +"gGO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/space) +"gIY" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/vacant/vacant_bar) +"gJj" = ( +/obj/item/flame/candle/candelabra/everburn, +/turf/simulated/floor/carpet/bcarpet, +/area/chapel/main) +"gJD" = ( +/obj/structure/sign/directions/cryo{ + pixel_x = 31; + pixel_y = 6 + }, +/obj/structure/sign/directions/cargo{ + pixel_x = 31 + }, +/turf/simulated/floor/plating, +/area/maintenance/security/starboard) +"gJJ" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/space) +"gKk" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/victory/station/stairs_four) +"gKK" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 1 + }, +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled/dark, +/area/space) +"gLm" = ( +/obj/machinery/camera/network/civilian{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/space) +"gLA" = ( +/obj/structure/table/marble, +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/chemical_dispenser/catering/bar_soft, +/turf/simulated/floor/lino, +/area/crew_quarters/coffee_shop) +"gMk" = ( +/obj/machinery/shieldwallgen, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/teleporter) +"gMn" = ( +/obj/structure/sign/department/bridge{ + pixel_x = 32 + }, +/turf/simulated/floor/plating, +/area/maintenance/central) +"gMJ" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/chapel) +"gNY" = ( +/obj/machinery/sleeper{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exploration/explorer_prep) +"gPm" = ( +/obj/landmark/spawnpoint/job/clown, +/obj/structure/cable/green, +/obj/machinery/power/apc/south_mount, +/turf/simulated/floor/wood, +/area/crew_quarters/clownoffice) +"gPM" = ( +/obj/structure/bed/chair/comfy/red, +/turf/simulated/floor/carpet/purcarpet, +/area/space) +"gPV" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/security) +"gRB" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/map_helper/airlock/atmos/chamber_pump, +/obj/machinery/atmospherics/component/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1380; + id_tag = "civvie_docker_pump" + }, +/turf/simulated/floor/tiled/old_tile/green, +/area/shuttle/civvie/general) +"gRE" = ( +/obj/machinery/air_alarm{ + dir = 8; + pixel_x = 25 + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/brown/bordercorner2, +/turf/simulated/floor/tiled, +/area/exploration/courser_dock) +"gSE" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/bridge/hallway) +"gSS" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/space) +"gTH" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/cable/cyan{ + icon_state = "2-4" + }, +/obj/structure/handrail{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/shuttle/excursion/general) +"gUh" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/hop) +"gUN" = ( +/obj/machinery/door/window/westleft{ + name = "Funeral Hall" + }, +/obj/machinery/door/firedoor/glass{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/secondary/docking_hallway) +"gVv" = ( +/obj/machinery/door/airlock/voidcraft{ + name = "Fuel Supply" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/manifold/hidden, +/turf/simulated/floor, +/area/shuttle/civvie/general) +"gVE" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/flora/ausbushes/ywflowers, +/turf/simulated/floor/grass, +/area/hydroponics/garden) +"gWq" = ( +/obj/structure/closet/firecloset, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/space) +"gXh" = ( +/turf/simulated/open, +/area/hallway/primary/aft) +"gXo" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 8 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/bridge/hallway) +"gZf" = ( +/obj/structure/table/woodentable, +/obj/effect/mist, +/turf/simulated/floor/wood, +/area/victory/surfacebase/sauna) +"gZU" = ( +/turf/simulated/floor/tiled, +/area/shuttle/excursion/cockpit) +"hai" = ( +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"har" = ( +/obj/map_helper/airlock/door/ext_door, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "shuttle_lockdown"; + name = "Shuttle Lockdown"; + opacity = 0 + }, +/obj/machinery/access_button/airlock_exterior{ + frequency = 1380; + master_tag = "expshuttle_docker"; + pixel_x = 24 + }, +/obj/machinery/door/airlock/voidcraft/vertical, +/turf/simulated/shuttle/plating, +/area/shuttle/excursion/general) +"haQ" = ( +/obj/structure/table/woodentable, +/obj/machinery/librarycomp, +/turf/simulated/floor/wood, +/area/library) +"hbA" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Chapel" + }, +/obj/structure/curtain/black{ + anchored = 1 + }, +/turf/simulated/floor/carpet/sblucarpet, +/area/chapel/main) +"hbF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/turf/simulated/shuttle/wall/voidcraft/hard_corner, +/area/shuttle/civvie/general) +"hbS" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor, +/obj/structure/extinguisher_cabinet{ + pixel_y = -31 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/aft) +"hcC" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/central) +"hcK" = ( +/obj/machinery/camera/network/command{ + dir = 4 + }, +/obj/machinery/newscaster{ + pixel_x = -27 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/bridge/hallway) +"hdp" = ( +/obj/machinery/computer/ship/helm{ + dir = 8 + }, +/obj/item/gps/internal/base{ + desc = "A tracking beacon embedded in the shuttle systems, to help explorers find where they landed."; + gps_tag = "SHUTTLE"; + name = "shuttle beacon" + }, +/turf/simulated/floor/plating, +/area/space) +"hdt" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/aft) +"heq" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/exploration) +"hey" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/bookcase/legal/corpreg, +/turf/simulated/floor/wood, +/area/lawoffice) +"heD" = ( +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Bridge"; + departmentType = 5; + name = "Bridge RC"; + pixel_x = -32 + }, +/obj/structure/closet/emcloset, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"hfp" = ( +/obj/machinery/holopad, +/turf/simulated/floor/wood, +/area/hydroponics/garden) +"hfG" = ( +/obj/structure/shuttle/engine/heater{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/wall/r_wall/prepainted/exploration, +/area/shuttle/excursion/cargo) +"hfQ" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/exploration) +"hfY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/grass, +/area/hydroponics/garden) +"hgl" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central6, +/obj/structure/table/woodentable, +/turf/simulated/floor/tiled, +/area/space) +"hgn" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 6 + }, +/obj/effect/mist, +/turf/simulated/floor/water/pool, +/area/victory/surfacebase/sauna) +"hgo" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/flora/ausbushes/ppflowers, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/grass, +/area/hydroponics/garden) +"hgT" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/secondary/civilian_hallway_mid) +"hhy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/hallway/secondary/civilian_hallway_mid) +"hhF" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled, +/area/hallway/primary/aft) +"hik" = ( +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/camera/network/civilian{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"hja" = ( +/obj/structure/table/bench/steel, +/obj/landmark/spawnpoint/job/explorer, +/turf/simulated/floor/tiled, +/area/space) +"hjz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/space) +"hkg" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/item/radio/intercom{ + pixel_y = -24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/space) +"hkm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/effect/floor_decal/grass_edge, +/obj/item/radio/intercom{ + pixel_y = -24 + }, +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/grass, +/area/hydroponics/garden) +"hkO" = ( +/turf/simulated/floor/wood, +/area/vacant/vacant_bar) +"hlO" = ( +/turf/simulated/floor/plating, +/area/maintenance/central) +"hlP" = ( +/obj/machinery/portable_atmospherics/powered/pump/filled, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/structure/cable/cyan{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/shuttle/excursion/general) +"hnG" = ( +/obj/structure/panic_button{ + pixel_x = -32 + }, +/obj/structure/cable/cyan{ + icon_state = "1-2" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/space) +"hoa" = ( +/obj/machinery/power/apc/west_mount{ + cell_type = /obj/item/cell/super + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/light/small/emergency{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/maintenance/chapel) +"hoc" = ( +/obj/machinery/shield_diffuser, +/obj/map_helper/airlock/door/ext_door, +/obj/machinery/door/airlock/glass_external{ + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/external_airlock, +/turf/simulated/floor/tiled/dark, +/area/space) +"hpO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/item/flame/candle/candelabra/everburn, +/turf/simulated/floor/carpet/bcarpet, +/area/chapel/main) +"hqK" = ( +/obj/machinery/door/firedoor, +/obj/structure/catwalk, +/obj/machinery/door/airlock/multi_tile/metal/mait{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/chapel) +"hqO" = ( +/obj/structure/table/borosilicate, +/turf/simulated/floor/plating, +/area/vacant/vacant_bar) +"hrd" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/closet/walllocker/emerglocker{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/shuttle/excursion/general) +"hro" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/simulated/floor/lino, +/area/chapel/office) +"hrs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/hallway/secondary/civilian_hallway_mid) +"hrv" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/grass, +/area/hydroponics/garden) +"hrH" = ( +/obj/effect/floor_decal/chapel, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"hsu" = ( +/obj/machinery/fire_alarm/north_mount, +/obj/structure/table/bench/wooden, +/turf/simulated/floor/tiled/freezer, +/area/victory/surfacebase/sauna) +"htr" = ( +/obj/machinery/shield_diffuser, +/obj/map_helper/airlock/door/ext_door, +/obj/machinery/access_button/airlock_exterior{ + dir = 8; + frequency = 1380; + master_tag = "victory_specops_dock"; + pixel_y = 24 + }, +/obj/machinery/door/airlock/glass_external{ + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/external_airlock, +/turf/simulated/floor/tiled/dark, +/area/space) +"hue" = ( +/obj/machinery/door/blast/regular{ + id = "gateway"; + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"hus" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/bridge) +"huP" = ( +/obj/structure/catwalk, +/obj/machinery/door/firedoor/glass{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/security/starboard) +"hvo" = ( +/obj/structure/table/woodentable, +/obj/item/paper_bin, +/obj/item/pen, +/obj/item/pen, +/obj/item/pen, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/lounge) +"hvp" = ( +/turf/simulated/wall/prepainted/command, +/area/crew_quarters/sleep/CMO_quarters) +"hvu" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/space) +"hvO" = ( +/obj/machinery/door/firedoor/glass{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/library) +"hws" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/grass, +/area/hydroponics/garden) +"hwW" = ( +/obj/machinery/camera/network/exploration{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/closet/hydrant{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exploration/excursion_dock) +"hxi" = ( +/obj/machinery/gateway{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exploration/courser_dock) +"hyL" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + dir = 8; + pixel_x = 30 + }, +/turf/simulated/floor/wood, +/area/lawoffice) +"hzU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/map_helper/airlock/door/int_door, +/obj/machinery/access_button/airlock_interior{ + dir = 4; + frequency = 1380; + master_tag = "victory_specops_dock"; + pixel_y = 24 + }, +/obj/machinery/door/firedoor/glass{ + dir = 8 + }, +/obj/machinery/door/airlock/glass_external{ + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/external_airlock, +/turf/simulated/floor/tiled/dark, +/area/space) +"hAR" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/space) +"hBp" = ( +/obj/machinery/door/airlock/research{ + name = "Shell Recharging" + }, +/turf/simulated/floor/tiled, +/area/space) +"hDt" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/wood, +/area/lawoffice) +"hDD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"hEs" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/CMO_quarters) +"hFw" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/bridge/meeting_room) +"hFM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"hFN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/space) +"hGB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/railing, +/obj/effect/floor_decal/grass_edge{ + dir = 9 + }, +/turf/simulated/floor/grass, +/area/hydroponics/garden) +"hGU" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/flora/ausbushes/ppflowers, +/turf/simulated/floor/grass, +/area/hydroponics/garden) +"hHd" = ( +/obj/machinery/computer/shuttle_control/explore/civvie{ + dir = 8 + }, +/turf/simulated/floor/tiled/old_tile/green, +/area/shuttle/civvie/cockpit) +"hJi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/grass_edge{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/grass, +/area/hydroponics/garden) +"hJp" = ( +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/wood, +/area/lawoffice) +"hJE" = ( +/obj/structure/table/woodentable, +/obj/effect/mist, +/obj/item/reagent_containers/food/drinks/bottle/limejuice, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/button/windowtint{ + dir = 4; + id = "sauna_tint"; + pixel_x = -25 + }, +/turf/simulated/floor/wood, +/area/victory/surfacebase/sauna) +"hJO" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on, +/turf/simulated/floor/wood, +/area/hydroponics/garden) +"hJV" = ( +/obj/machinery/power/apc/east_mount, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/cable/cyan{ + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/shuttle/excursion/cargo) +"hJW" = ( +/obj/item/stool/padded, +/turf/simulated/floor/wood, +/area/crew_quarters/coffee_shop) +"hJZ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/bed/chair/comfy/brown{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/space) +"hLV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/hydroponics/garden) +"hMj" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/bridge/hallway) +"hMD" = ( +/obj/machinery/door/firedoor/glass, +/obj/spawner/window/low_wall/reinforced/full, +/obj/effect/paint_stripe/violet, +/turf/simulated/floor/plating, +/area/space) +"hMQ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/cable/cyan{ + icon_state = "1-2" + }, +/obj/structure/cable/cyan{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/shuttle/excursion/general) +"hOd" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/space) +"hOF" = ( +/obj/structure/bookcase{ + name = "bookcase (Reference)" + }, +/obj/item/book/manual/atmospipes, +/obj/item/book/manual/rust_engine, +/obj/item/book/manual/supermatter_engine, +/obj/item/book/manual/tesla_engine, +/obj/item/book/manual/engineering_particle_accelerator, +/obj/item/book/manual/engineering_singularity_safety, +/obj/item/book/manual/fission_engine, +/turf/simulated/floor/wood, +/area/library) +"hOH" = ( +/obj/machinery/computer/borgupload, +/obj/effect/floor_decal/corner/purple{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"hOJ" = ( +/obj/effect/floor_decal/spline/fancy{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/excursion/general) +"hOL" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/lounge) +"hOW" = ( +/obj/machinery/door/firedoor/glass{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/space) +"hPn" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/wood, +/area/library) +"hRj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exploration/excursion_dock) +"hRF" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 1 + }, +/obj/machinery/vending/nifsoft_shop, +/turf/simulated/floor/tiled/dark, +/area/space) +"hSi" = ( +/obj/effect/floor_decal/spline/fancy, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/excursion/general) +"hSU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/space) +"hTg" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"hTM" = ( +/obj/structure/table/woodentable, +/obj/item/storage/box/glasses/meta, +/obj/item/storage/box/glasses/meta, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/CE_quarters) +"hTQ" = ( +/obj/structure/table/bench/steel, +/turf/simulated/floor/tiled, +/area/space) +"hVk" = ( +/obj/structure/dogbed{ + name = "pet bed" + }, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/simulated/floor/carpet/tealcarpet, +/area/crew_quarters/sleep/CMO_quarters) +"hVY" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/vacant/vacant_bar) +"hWM" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/hallway/secondary/civilian_hallway_mid) +"hXy" = ( +/obj/effect/floor_decal/corner/purple{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"hXY" = ( +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -23 + }, +/turf/simulated/floor/tiled, +/area/exploration/courser_dock) +"hYh" = ( +/obj/structure/catwalk, +/obj/item/bananapeel, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/security/starboard) +"hYM" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass{ + dir = 8 + }, +/obj/machinery/door/airlock/command{ + name = "Teleport Access"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/command/teleporter, +/turf/simulated/floor/tiled, +/area/teleporter) +"hYO" = ( +/obj/structure/table/woodentable, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"hZk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/table/bench/wooden, +/turf/simulated/floor/wood, +/area/hydroponics/garden) +"iaB" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/aft) +"ibx" = ( +/obj/structure/table/bench/wooden, +/turf/simulated/floor/tiled/freezer, +/area/victory/surfacebase/sauna) +"ibU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/flora/tree/jungle, +/obj/structure/railing, +/turf/simulated/floor/grass, +/area/hydroponics/garden) +"icA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/button/remote/blast_door{ + desc = "A remote control-switch for shutters."; + id = "cafe"; + name = "Cafe Shutters"; + pixel_x = -10; + pixel_y = 26; + req_access = list(); + req_one_access = list(25) + }, +/obj/machinery/light_switch{ + name = "light switch "; + pixel_x = 10; + pixel_y = 26 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/button/holosign{ + id = "cafesign1"; + pixel_y = 28 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/coffee_shop) +"icC" = ( +/obj/machinery/power/apc/south_mount, +/obj/structure/cable/cyan, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/cable/cyan{ + icon_state = "1-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/space) +"icW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exploration/excursion_dock) +"ieh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/bridge/hallway) +"ife" = ( +/obj/machinery/camera/network/civilian{ + dir = 8 + }, +/obj/structure/closet/coffin/comfy, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/chapel/main) +"ifq" = ( +/obj/machinery/fire_alarm/north_mount, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/secondary/civilian_hallway_mid) +"ifQ" = ( +/obj/effect/floor_decal/techfloor, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/newscaster{ + pixel_y = -31 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/aft) +"ifX" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + dir = 2; + id = "cafe"; + layer = 3.1; + name = "Cafe Shutters" + }, +/obj/structure/table/marble, +/turf/simulated/floor/lino, +/area/crew_quarters/coffee_shop) +"ihi" = ( +/obj/structure/closet/secure_closet/personal, +/obj/machinery/light, +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/item/clothing/under/swimsuit/stripper/cowbikini, +/obj/item/reagent_containers/food/drinks/cans/waterbottle, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/sauna) +"ihy" = ( +/turf/simulated/floor/tiled/monofloor, +/area/hallway/primary/aft) +"ihG" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/space) +"ihK" = ( +/obj/machinery/computer/communications, +/turf/simulated/floor/wood, +/area/bridge/office) +"iif" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/secondary/docking_hallway) +"iiq" = ( +/obj/structure/sign/directions/evac{ + dir = 8; + pixel_y = -8 + }, +/turf/simulated/wall/prepainted/civilian, +/area/crew_quarters/coffee_shop) +"iiI" = ( +/obj/structure/cable/cyan{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/turf/simulated/floor/carpet/tealcarpet, +/area/shuttle/civvie/general) +"iju" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"ikk" = ( +/obj/item/radio/intercom{ + dir = 1; + pixel_y = 24; + req_access = list() + }, +/obj/structure/table/bench/wooden, +/turf/simulated/floor/tiled/freezer, +/area/victory/surfacebase/sauna) +"ikV" = ( +/turf/simulated/floor/tiled, +/area/maintenance/cargo) +"ilb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/command{ + name = "Private Restroom"; + req_access = list(); + req_one_access = list() + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/captain) +"ili" = ( +/turf/space/basic, +/area/exploration/explorer_prep) +"ilO" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/air_alarm{ + frequency = 1441; + pixel_y = 22 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"ilP" = ( +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/emergency, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/turf/simulated/floor/tiled, +/area/maintenance/tool_storage) +"imI" = ( +/obj/structure/dispenser/oxygen, +/obj/machinery/light, +/turf/simulated/floor/tiled/dark, +/area/hallway/secondary/docking_hallway) +"inw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/door/airlock/maintenance, +/obj/map_helper/access_helper/airlock/station/exploration/department, +/turf/simulated/floor/plating, +/area/space) +"ioL" = ( +/obj/structure/bed/chair/bay/comfy/black{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"ipd" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 9 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/space) +"ipC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/aft) +"ipW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/hallway/secondary/civilian_hallway_mid) +"iqj" = ( +/obj/machinery/fire_alarm/west_mount{ + pixel_x = -24 + }, +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/wood, +/area/crew_quarters/lounge) +"iqo" = ( +/turf/simulated/wall/prepainted/command, +/area/crew_quarters/sleep/CE_quarters) +"iqI" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"irE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/hallway/secondary/civilian_hallway_mid) +"irX" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/space) +"isf" = ( +/turf/simulated/shuttle/wall/voidcraft/hard_corner, +/area/shuttle/civvie/cockpit) +"iso" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/mimeoffice) +"isK" = ( +/obj/effect/floor_decal/corner/paleblue/full{ + dir = 4 + }, +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"ito" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/tram) +"iui" = ( +/obj/structure/sign/deck/fourth, +/turf/simulated/wall/prepainted/civilian, +/area/crew_quarters/clownoffice) +"ium" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exploration/explorer_prep) +"iuu" = ( +/obj/structure/cable/green{ + dir = 1; + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/mimeoffice) +"ivS" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/bookcase/legal/sop, +/turf/simulated/floor/wood, +/area/lawoffice) +"iwC" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/security/starboard) +"iwD" = ( +/obj/effect/shuttle_landmark/automatic/station_dockpoint1, +/turf/space, +/area/space) +"iwF" = ( +/obj/structure/table/woodentable, +/obj/machinery/camera/network/exploration{ + dir = 4 + }, +/obj/item/paper_bin, +/turf/simulated/floor/wood, +/area/space) +"iwR" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/structure/window/reinforced, +/obj/structure/closet/secure_closet/sar{ + req_access = list(5); + req_one_access = list(5) + }, +/obj/item/storage/box/pillbottles, +/obj/item/storage/box/syringes, +/obj/item/tank/jetpack/oxygen, +/obj/item/storage/backpack/parachute, +/obj/item/clothing/accessory/permit/gun/planetside, +/turf/simulated/floor/tiled/monotile, +/area/exploration/medical) +"ixz" = ( +/obj/structure/table/woodentable, +/obj/machinery/chemical_dispenser/catering/bar_soft, +/turf/simulated/floor/carpet/tealcarpet, +/area/crew_quarters/sleep/CMO_quarters) +"ixK" = ( +/obj/item/gps/internal/base{ + desc = "A tracking beacon embedded in the shuttle systems, to help explorers find where they landed."; + gps_tag = "SHUTTLE"; + name = "shuttle beacon" + }, +/obj/machinery/computer/ship/helm{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/shuttle/excursion/cockpit) +"iyv" = ( +/obj/machinery/camera/network/outside{ + dir = 1 + }, +/turf/space, +/area/exploration/courser_dock) +"iyz" = ( +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/maintenance/substation/security) +"izk" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exploration/excursion_dock) +"izy" = ( +/obj/effect/mist, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood, +/area/victory/surfacebase/sauna) +"izz" = ( +/obj/machinery/air_alarm{ + dir = 1; + pixel_y = -22; + target_temperature = 312.15 + }, +/obj/structure/table/bench/wooden, +/obj/effect/mist, +/turf/simulated/floor/wood, +/area/victory/surfacebase/sauna) +"izO" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/effect/floor_decal/industrial/loading, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"izQ" = ( +/obj/machinery/camera/network/exploration, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exploration/excursion_dock) +"izR" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor/glass{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/central) +"iAm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/aft) +"iAK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/shuttle/wall/voidcraft/hard_corner, +/area/shuttle/civvie/general) +"iBx" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"iBH" = ( +/turf/simulated/wall/prepainted/command, +/area/victory/station/stairs_four) +"iBS" = ( +/obj/machinery/atmospherics/component/unary/engine{ + dir = 4 + }, +/turf/simulated/shuttle/plating/airless/carry, +/area/space) +"iBV" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/victory/station/stairs_four) +"iBZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/grass_edge{ + dir = 1 + }, +/obj/structure/flora/ausbushes/sunnybush, +/turf/simulated/floor/grass, +/area/hydroponics/garden) +"iCg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/glass_external/public{ + name = "Public EVA"; + req_one_access = null + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/secondary/docking_hallway) +"iCl" = ( +/obj/machinery/computer/ship/engines{ + dir = 8 + }, +/turf/simulated/floor/tiled/old_tile/green, +/area/shuttle/civvie/cockpit) +"iCK" = ( +/obj/landmark/spawnpoint/job/explorer, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/space) +"iDg" = ( +/turf/simulated/open, +/area/victory/station/stairs_four) +"iDW" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/table/woodentable, +/turf/simulated/floor/tiled/freezer, +/area/victory/surfacebase/sauna) +"iEw" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/obj/structure/table/reinforced, +/obj/item/flashlight/lamp, +/obj/effect/floor_decal/spline/plain{ + dir = 9 + }, +/turf/simulated/floor/carpet/blucarpet, +/area/lawoffice) +"iEX" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance, +/turf/simulated/floor/plating, +/area/library) +"iGx" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/space) +"iHc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/CE_quarters) +"iIf" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/high_volume{ + dir = 4; + frequency = 1380; + id_tag = "courser_docker_pump"; + power_rating = 20000 + }, +/obj/map_helper/airlock/atmos/chamber_pump, +/obj/machinery/airlock_sensor{ + frequency = 1380; + id_tag = "courser_docker"; + pixel_x = -24 + }, +/obj/map_helper/airlock/sensor/chamber_sensor, +/obj/structure/handrail{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/space) +"iIr" = ( +/obj/machinery/computer/ship/sensors{ + dir = 1 + }, +/obj/structure/railing, +/turf/simulated/floor/plating, +/area/space) +"iIx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/CMO_quarters) +"iIB" = ( +/obj/effect/floor_decal/corner/purple/full{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"iJu" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"iKm" = ( +/obj/machinery/power/apc/north_mount, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/secondary/civilian_hallway_mid) +"iLb" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor/glass, +/obj/structure/window/reinforced/polarized{ + dir = 10; + icon_state = "fwindow"; + id = "chapel" + }, +/obj/effect/paint_stripe/violet, +/obj/structure/wall_frame/prepainted, +/turf/simulated/floor/plating, +/area/space) +"iLv" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on, +/obj/machinery/air_alarm{ + frequency = 1441; + pixel_y = 22 + }, +/turf/simulated/floor/tiled, +/area/space) +"iLD" = ( +/turf/simulated/floor/plating, +/area/maintenance/substation/exploration) +"iLZ" = ( +/turf/simulated/floor/tiled/old_tile/green, +/area/shuttle/civvie/general) +"iMc" = ( +/turf/simulated/floor/wood, +/area/bridge/office) +"iMM" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/maintenance/central) +"iMY" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/aft) +"iNf" = ( +/obj/machinery/computer/ship/navigation/telescreen{ + pixel_y = -37 + }, +/turf/simulated/floor/wood, +/area/space) +"iPx" = ( +/turf/space/basic, +/area/gateway) +"iPD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/monofloor{ + dir = 4 + }, +/area/space) +"iPF" = ( +/obj/structure/table/woodentable, +/obj/machinery/computer/skills, +/obj/item/perfect_tele{ + desc = "Seems absurd, doesn't it? Yet, here we are. This handheld device is capable of producing bluespace teleportation beacons, and can be activated to translocate the user or a target of their choice to any linked beacon. This one is the Facility Director's."; + name = "director's translocator" + }, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"iPS" = ( +/turf/simulated/wall, +/area/crew_quarters/sleep/CMO_quarters) +"iPW" = ( +/turf/simulated/wall/prepainted/exploration, +/area/library) +"iQk" = ( +/obj/machinery/door/airlock{ + name = "Public Cold Pool" + }, +/obj/structure/curtain/open/shower{ + anchored = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/fans/tiny, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/sauna) +"iQL" = ( +/obj/structure/table/bench/wooden, +/turf/simulated/floor/wood, +/area/hydroponics/garden) +"iQS" = ( +/obj/effect/floor_decal/spline/fancy{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/water/deep/indoors, +/area/hydroponics/garden) +"iRf" = ( +/obj/machinery/air_alarm{ + dir = 8; + pixel_x = 25 + }, +/turf/simulated/floor/tiled/dark, +/area/exploration/courser_dock) +"iRz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/old_tile/green, +/area/shuttle/civvie/general) +"iRB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/hallway/primary/aft) +"iSe" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/hallway/secondary/civilian_hallway_mid) +"iSC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/space) +"iTu" = ( +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/captain) +"iTz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/aft) +"iVk" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/lounge) +"iVV" = ( +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = 30 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/hop) +"iWc" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/maintenance/chapel) +"iWy" = ( +/obj/structure/table/reinforced, +/obj/machinery/computer/skills, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"iWC" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/hop) +"iWI" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/obj/effect/floor_decal/techfloor/orange{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"iYo" = ( +/obj/machinery/atmospherics/component/binary/pump{ + dir = 8; + name = "main fuel pump" + }, +/turf/simulated/floor/plating, +/area/shuttle/excursion/cargo) +"iZc" = ( +/obj/machinery/cryopod/robot/door/shuttle, +/obj/machinery/door/firedoor, +/turf/simulated/wall/r_wall/prepainted, +/area/victory/surfacebase/tram) +"iZf" = ( +/obj/structure/table/reinforced, +/obj/item/clipboard, +/obj/item/stamp/hop, +/obj/machinery/recharger{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/megaphone, +/obj/machinery/camera/network/command, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/heads/hop) +"iZR" = ( +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/obj/item/radio/intercom{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/techfloor/hole{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/aft) +"iZX" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/hydroponics/soil, +/turf/simulated/floor/grass, +/area/hydroponics/garden) +"jag" = ( +/obj/structure/table/rack/shelf, +/obj/item/tank/oxygen, +/obj/item/suit_cooling_unit, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exploration/medical) +"jbd" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/bridge/meeting_room) +"jbr" = ( +/obj/effect/floor_decal/corner/red{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"jbz" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/ship_munition/disperser_charge/emp, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/dark, +/area/space) +"jbB" = ( +/obj/structure/closet/crate/freezer/rations, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/space) +"jch" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance/engi{ + req_one_access = null + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/lounge) +"jcv" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/bed/chair/shuttle{ + dir = 4 + }, +/turf/simulated/floor/carpet/tealcarpet, +/area/shuttle/civvie/general) +"jdj" = ( +/turf/simulated/wall/prepainted, +/area/maintenance/security/starboard) +"jdR" = ( +/obj/machinery/door/firedoor, +/obj/spawner/window/low_wall/borosillicate/reinforced/full, +/obj/effect/paint_stripe/commandblue, +/turf/simulated/shuttle/floor/voidcraft, +/area/bridge) +"jec" = ( +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Bridge"; + departmentType = 5; + name = "Bridge RC"; + pixel_y = -32 + }, +/obj/machinery/computer/robotics{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"jeQ" = ( +/obj/effect/floor_decal/chapel{ + dir = 8 + }, +/obj/structure/table/bench/padded, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"jfm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/railing, +/obj/effect/floor_decal/grass_edge{ + dir = 1 + }, +/turf/simulated/floor/grass, +/area/hydroponics/garden) +"jfr" = ( +/obj/structure/disposalpipe/down{ + dir = 8 + }, +/obj/structure/lattice, +/obj/machinery/door/firedoor, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/camera/network/civilian{ + dir = 8 + }, +/turf/simulated/open, +/area/maintenance/chapel) +"jhq" = ( +/turf/simulated/wall/prepainted/command, +/area/maintenance/security/starboard) +"jhs" = ( +/obj/structure/bed/chair/sofa/black/left, +/turf/simulated/floor/wood, +/area/maintenance/security/starboard) +"jhJ" = ( +/obj/machinery/door/airlock/silver{ + name = "Clown's Office" + }, +/obj/structure/cable/green{ + dir = 1; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/map_helper/access_helper/airlock/station/service/clown, +/turf/simulated/floor/plating, +/area/crew_quarters/clownoffice) +"jjf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/obj/structure/catwalk, +/obj/structure/cable/cyan{ + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/space) +"jkq" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/maintenance/tool_storage) +"jkE" = ( +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/sleep/HOP_quarters) +"jkQ" = ( +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/obj/structure/cable/cyan{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/shuttle/excursion/general) +"jkS" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/turf/simulated/floor/tiled/dark, +/area/hallway/secondary/docking_hallway) +"jlr" = ( +/obj/structure/closet/secure_closet/captains, +/obj/item/clothing/accessory/poncho/roles/cloak/captain, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/captain) +"jlu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/bridge/hallway) +"jmz" = ( +/obj/effect/floor_decal/industrial/loading{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"jmU" = ( +/obj/structure/bed/chair/shuttle{ + dir = 4 + }, +/turf/simulated/floor/carpet/tealcarpet, +/area/shuttle/civvie/general) +"jnl" = ( +/obj/machinery/computer/skills, +/obj/structure/table/reinforced, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/hop) +"jnB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/wood, +/area/bridge/meeting_room) +"jnZ" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/carpet/bcarpet, +/area/library) +"job" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"jor" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/secondary/docking_hallway) +"joA" = ( +/turf/simulated/floor/tiled/techfloor/grid, +/area/exploration/excursion_dock) +"joB" = ( +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/machinery/power/apc/north_mount, +/turf/simulated/floor/wood, +/area/crew_quarters/lounge) +"joN" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_external{ + req_one_access = null + }, +/obj/map_helper/airlock/door/ext_door, +/obj/map_helper/access_helper/airlock/station/exploration/department, +/turf/simulated/floor/tiled, +/area/space) +"joU" = ( +/obj/structure/table/reinforced, +/obj/item/stamp/denied, +/obj/item/stamp{ + pixel_x = 5 + }, +/obj/item/pen, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/space) +"jpf" = ( +/obj/effect/floor_decal/grass_edge{ + dir = 8 + }, +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/grass, +/area/hydroponics/garden) +"jpl" = ( +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced/polarized{ + dir = 1; + id = "pool_tint" + }, +/obj/structure/window/reinforced/polarized{ + id = "sauna_tint" + }, +/obj/structure/window/basic/full, +/turf/simulated/floor/plating, +/area/victory/surfacebase/sauna) +"jpO" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/techfloor, +/turf/simulated/floor/tiled/dark, +/area/hallway/secondary/civilian_hallway_mid) +"jqP" = ( +/obj/machinery/conveyor{ + id = "courser_magazine_1" + }, +/obj/machinery/door/blast/regular{ + dir = 4; + id = "courser_magazine_1"; + name = "Cannon Magazine One" + }, +/turf/simulated/floor/plating, +/area/space) +"jrm" = ( +/obj/structure/bed/chair/wood{ + dir = 1 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/mimeoffice) +"jsb" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/folder/blue, +/obj/item/folder/red, +/obj/item/pen/multi, +/obj/item/clothing/glasses/omnihud, +/obj/item/book/manual/standard_operating_procedure, +/obj/item/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 26 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/heads/hop) +"jsj" = ( +/obj/machinery/door/firedoor{ + dir = 8 + }, +/turf/simulated/floor/tiled/old_tile/green, +/area/shuttle/civvie/general) +"jsH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/railing, +/obj/effect/floor_decal/grass_edge{ + dir = 5 + }, +/obj/structure/flora/ausbushes/ppflowers, +/obj/machinery/fire_alarm/north_mount, +/turf/simulated/floor/grass, +/area/hydroponics/garden) +"jtj" = ( +/obj/machinery/air_alarm{ + dir = 8; + pixel_x = 25 + }, +/obj/item/flashlight/lantern, +/obj/structure/table/standard, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 4 + }, +/obj/machinery/recharger, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/space) +"jud" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "courser_magazine_2" + }, +/turf/simulated/floor/plating, +/area/space) +"juq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/aft) +"jux" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor/hole{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/aft) +"juQ" = ( +/obj/structure/table/woodentable, +/obj/item/stack/material/wood{ + amount = 50 + }, +/turf/simulated/floor/wood, +/area/vacant/vacant_bar) +"jvK" = ( +/obj/machinery/door/airlock{ + name = "Chapel Morgue" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor/glass, +/obj/map_helper/access_helper/airlock/station/service/chapel/cremator, +/turf/simulated/floor/tiled, +/area/chapel/main) +"jvT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 8 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/shuttle/excursion/cargo) +"jwc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/flora/pottedplant/orientaltree, +/turf/simulated/floor/wood, +/area/hydroponics/garden) +"jwy" = ( +/obj/machinery/suit_cycler/medical, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exploration/explorer_prep) +"jwM" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"jxe" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/sauna) +"jxt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood, +/area/lawoffice) +"jym" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/sauna) +"jys" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/aft) +"jyC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/aft) +"jzc" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/machinery/vending/cigarette, +/turf/simulated/floor/tiled, +/area/space) +"jzd" = ( +/obj/map_helper/airlock/door/int_door, +/obj/machinery/access_button/airlock_interior{ + frequency = 1380; + master_tag = "expshuttle_docker"; + pixel_x = -24 + }, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "shuttle_lockdown"; + name = "Shuttle Lockdown"; + opacity = 0 + }, +/obj/machinery/door/airlock/voidcraft/vertical, +/turf/simulated/floor/tiled, +/area/shuttle/excursion/general) +"jzT" = ( +/turf/simulated/floor/water/deep/indoors, +/area/hydroponics/garden) +"jAa" = ( +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 6 + }, +/obj/machinery/suit_storage_unit/pathfinder, +/turf/simulated/floor/tiled/monotile, +/area/space) +"jAg" = ( +/obj/structure/displaycase, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"jAG" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/space) +"jBm" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/obj/machinery/camera/network/command, +/obj/machinery/computer/ship/navigation/telescreen{ + pixel_y = 27 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"jBQ" = ( +/obj/machinery/fire_alarm/north_mount, +/obj/structure/table/woodentable, +/obj/item/paper_bin, +/obj/item/pen, +/obj/item/pen, +/obj/item/pen, +/obj/item/pen, +/obj/item/pen, +/obj/item/pen, +/obj/item/pen, +/obj/item/storage/pill_bottle/dice_nerd, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/CMO_quarters) +"jCV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/carpet/bcarpet, +/area/library) +"jDn" = ( +/obj/structure/table/reinforced, +/obj/machinery/computer/skills{ + dir = 8 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/machinery/fire_alarm/east_mount, +/turf/simulated/floor/carpet/blucarpet, +/area/lawoffice) +"jEr" = ( +/obj/structure/table/woodentable, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/vacant/vacant_bar) +"jFO" = ( +/obj/effect/floor_decal/techfloor, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/aft) +"jGf" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/secondary/civilian_hallway_mid) +"jGs" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/wood, +/area/maintenance/central) +"jHU" = ( +/obj/structure/table/woodentable, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/machinery/air_alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/item/folder/blue_captain, +/obj/item/stamp/captain, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"jIp" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled, +/area/space) +"jJv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 6 + }, +/turf/simulated/wall/r_wall/prepainted/exploration, +/area/shuttle/excursion/general) +"jJL" = ( +/obj/machinery/power/apc/west_mount{ + cell_type = /obj/item/cell/super + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/bridge/hallway) +"jJV" = ( +/obj/machinery/fire_alarm/north_mount, +/obj/structure/table/reinforced, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/machinery/recharger, +/turf/simulated/floor/tiled, +/area/maintenance/tool_storage) +"jKs" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/computer/ship/navigation/telescreen{ + pixel_y = 27 + }, +/obj/structure/sign/warning/evac{ + pixel_x = -32 + }, +/obj/machinery/camera/network/civilian{ + dir = 4 + }, +/obj/landmark/spawnpoint/latejoin/station/arrivals_shuttle, +/turf/simulated/floor/tiled, +/area/hallway/primary/aft) +"jKE" = ( +/obj/structure/table/marble, +/turf/simulated/floor/carpet, +/area/bridge/office) +"jLe" = ( +/turf/space/basic, +/area/hallway/primary/aft) +"jMn" = ( +/obj/machinery/vending/giftvendor, +/turf/simulated/floor/tiled, +/area/space) +"jMp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/hallway/secondary/docking_hallway) +"jMw" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/space) +"jMJ" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exploration/excursion_dock) +"jMS" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/obj/structure/table/standard, +/obj/item/ano_scanner, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/space) +"jMU" = ( +/obj/machinery/porta_turret/stationary, +/turf/simulated/floor/tiled/dark, +/area/space) +"jNb" = ( +/obj/machinery/camera/network/command{ + dir = 9 + }, +/obj/structure/dispenser{ + phorontanks = 0 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/teleporter) +"jNg" = ( +/turf/space, +/area/space) +"jNp" = ( +/obj/machinery/fire_alarm/south_mount{ + pixel_y = -24 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/library) +"jNC" = ( +/obj/machinery/door/airlock/maintenance/engi, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/victory/surfacebase/tram) +"jNH" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 8 + }, +/obj/machinery/light_switch{ + pixel_x = -25; + pixel_y = -25 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/lounge/kitchen_freezer) +"jOl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/shuttle/excursion/cargo) +"jOq" = ( +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + dir = 8; + pixel_x = 30 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/secondary/civilian_hallway_mid) +"jOr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/victory/surfacebase/sauna) +"jOI" = ( +/obj/effect/floor_decal/techfloor/orange, +/obj/machinery/camera/network/civilian{ + dir = 1 + }, +/obj/machinery/door/firedoor/glass{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"jPj" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled, +/area/space) +"jPH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass{ + dir = 8 + }, +/obj/machinery/door/airlock/glass{ + name = "Hanger Lounge" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/lounge) +"jPL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/exploration/courser_dock) +"jQd" = ( +/obj/machinery/power/smes/buildable{ + charge = 15000; + cur_coils = 3 + }, +/obj/structure/cable/cyan, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor, +/area/shuttle/civvie/general) +"jQF" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled, +/area/exploration/courser_dock) +"jRj" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/dark, +/area/victory/station/stairs_four) +"jRq" = ( +/obj/structure/catwalk, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/security/starboard) +"jRW" = ( +/obj/structure/table/rack, +/obj/item/suit_cooling_unit, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/suit_cooling_unit, +/obj/item/suit_cooling_unit, +/obj/item/suit_cooling_unit, +/obj/item/suit_cooling_unit, +/turf/simulated/floor/tiled/dark, +/area/hallway/secondary/docking_hallway) +"jTi" = ( +/obj/machinery/atm{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled, +/area/space) +"jTs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/carpet/bcarpet, +/area/library) +"jTK" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/flora/ausbushes/brflowers, +/obj/effect/floor_decal/grass_edge, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/grass, +/area/hydroponics/garden) +"jTN" = ( +/obj/structure/table/standard, +/obj/item/duct_tape_roll, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/exploration/explorer_prep) +"jTS" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/polarized/full{ + id = "library_study" + }, +/obj/structure/wall_frame/prepainted, +/obj/effect/paint_stripe/palebottlegreen, +/turf/simulated/floor/plating, +/area/library/study) +"jUy" = ( +/obj/machinery/computer/rcon{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/full{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"jVj" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/turf/simulated/floor/plating, +/area/maintenance/central) +"jVp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"jVG" = ( +/obj/effect/floor_decal/techfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/structure/sign/warning/evac{ + pixel_x = -32 + }, +/obj/landmark/spawnpoint/latejoin/station/arrivals_shuttle, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"jWo" = ( +/obj/structure/table/wooden_reinforced, +/obj/machinery/recharger{ + pixel_x = -5; + pixel_y = 2 + }, +/obj/item/paper_bin{ + pixel_x = 7; + pixel_y = 6 + }, +/obj/item/pen{ + pixel_x = 8; + pixel_y = 2 + }, +/obj/item/radio/intercom{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/carpet/blue, +/area/crew_quarters/heads/blueshield) +"jWs" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/space) +"jWV" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exploration/excursion_dock) +"jXa" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/hydroponics/garden) +"jXo" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/space) +"jXV" = ( +/obj/effect/floor_decal/industrial/warning/full, +/obj/machinery/recharge_station, +/turf/simulated/floor/plating, +/area/shuttle/excursion/cargo) +"jYo" = ( +/obj/machinery/camera/network/civilian{ + dir = 8 + }, +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/secondary/civilian_hallway_mid) +"jYq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/victory/surfacebase/tram) +"jYs" = ( +/turf/simulated/wall/prepainted/command, +/area/crew_quarters/heads/blueshield) +"jZp" = ( +/obj/structure/table/reinforced, +/obj/machinery/cell_charger, +/obj/random/tech_supply, +/turf/simulated/floor/tiled, +/area/maintenance/tool_storage) +"jZL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/landmark/spawnpoint/job/chaplain, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"kab" = ( +/obj/structure/table/reinforced, +/obj/machinery/computer/skills{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/machinery/fire_alarm/west_mount{ + pixel_x = -24 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/lawoffice) +"kaL" = ( +/turf/simulated/wall/r_wall/prepainted/command, +/area/crew_quarters/sleep/HOP_quarters) +"kaO" = ( +/obj/effect/floor_decal/sign/dock/three, +/turf/simulated/wall/r_wall/prepainted, +/area/space) +"kaV" = ( +/obj/machinery/power/smes/buildable{ + charge = 15000; + cur_coils = 3 + }, +/obj/structure/cable/cyan{ + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/space) +"kbw" = ( +/obj/machinery/button/remote/airlock{ + id = "explo-hanger"; + name = "Hanger Blast Door Switch"; + dir = 1; + pixel_y = -24; + pixel_x = 1 + }, +/turf/simulated/floor/tiled, +/area/exploration/explorer_prep) +"kbP" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/wall_frame/prepainted, +/obj/structure/window/reinforced/polarized/full{ + id = "lawyer_blast"; + name = "Internal Aiffars window" + }, +/obj/effect/paint_stripe/commandblue, +/turf/simulated/floor, +/area/lawoffice) +"kcJ" = ( +/obj/machinery/light, +/obj/machinery/recharger/wallcharger{ + pixel_x = 32; + pixel_y = 2 + }, +/turf/simulated/floor/tiled, +/area/space) +"kdX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/heads/blueshield) +"kef" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/secondary/civilian_hallway_mid) +"keD" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/light/small/emergency{ + dir = 1 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/chapel) +"keP" = ( +/obj/structure/handrail{ + dir = 4 + }, +/obj/structure/cable/cyan{ + icon_state = "1-2" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/space) +"kfP" = ( +/obj/structure/closet/crate, +/obj/random/plushie, +/turf/simulated/floor/plating, +/area/maintenance/chapel) +"kgu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/victory/station/stairs_four) +"khl" = ( +/obj/structure/extinguisher_cabinet{ + dir = 8; + pixel_x = 30 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/bridge/hallway) +"khu" = ( +/obj/effect/floor_decal/chapel{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"khD" = ( +/obj/structure/table/bench/wooden, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"khQ" = ( +/obj/structure/table/woodentable, +/obj/item/storage/fancy/heartbox, +/turf/simulated/floor/carpet, +/area/maintenance/security/starboard) +"khS" = ( +/obj/machinery/door/firedoor/glass{ + dir = 8 + }, +/obj/spawner/window/low_wall/full/nogrille, +/turf/simulated/floor/plating, +/area/crew_quarters/heads/hop) +"khT" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/shower{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 10 + }, +/obj/structure/curtain/open/shower, +/turf/simulated/floor/tiled, +/area/space) +"kid" = ( +/obj/structure/sign/warning/lethal_turrets{ + pixel_y = -32 + }, +/obj/structure/table/standard, +/obj/item/storage/toolbox/mechanical, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/turf/simulated/floor/tiled, +/area/exploration/pilot_prep) +"kim" = ( +/obj/structure/flora/ausbushes/ppflowers, +/obj/effect/floor_decal/grass_edge{ + dir = 4 + }, +/turf/simulated/floor/grass, +/area/hydroponics/garden) +"kiD" = ( +/obj/spawner/window/low_wall/full/firelocks/nogrille, +/obj/structure/curtain/black, +/obj/effect/paint_stripe/palebottlegreen, +/turf/simulated/floor/plating, +/area/crew_quarters/coffee_shop) +"kiQ" = ( +/obj/machinery/power/apc/north_mount, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/light/small/emergency{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/exploration) +"kjn" = ( +/obj/machinery/suit_cycler{ + req_access = null + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/secondary/docking_hallway) +"kjF" = ( +/obj/structure/bed/chair/comfy/brown, +/turf/simulated/floor/carpet/bcarpet, +/area/library) +"kkT" = ( +/obj/machinery/vending/fitness, +/turf/simulated/floor/tiled, +/area/maintenance/tool_storage) +"klc" = ( +/obj/structure/grille, +/obj/structure/lattice, +/turf/space, +/area/space) +"klU" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled, +/area/space) +"kmI" = ( +/obj/machinery/door/airlock{ + name = "Restroom" + }, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/sauna) +"kot" = ( +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/lino, +/area/chapel/office) +"koO" = ( +/obj/effect/floor_decal/techfloor, +/obj/machinery/computer/timeclock/premade/south, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/aft) +"kpe" = ( +/obj/structure/table/woodentable, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/space) +"kpN" = ( +/obj/machinery/air_alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/structure/table/reinforced, +/obj/item/storage/box/donkpockets, +/obj/item/storage/box/donkpockets, +/turf/simulated/floor/tiled, +/area/space) +"kqq" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/holopad, +/turf/simulated/floor/tiled, +/area/bridge/hallway) +"kqD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/monofloor, +/area/space) +"kqJ" = ( +/obj/structure/table/woodentable, +/obj/machinery/light/small, +/obj/machinery/light_switch{ + pixel_y = -26 + }, +/obj/item/flashlight/lamp/green{ + pixel_x = 1; + pixel_y = 5 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/library/study) +"ksB" = ( +/obj/machinery/air_alarm{ + dir = 8; + pixel_x = 25 + }, +/turf/simulated/floor/plating, +/area/maintenance/security/starboard) +"kvI" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/space) +"kvM" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/item/reagent_containers/food/condiment/flour, +/obj/item/reagent_containers/food/condiment/flour, +/obj/item/reagent_containers/food/condiment/flour, +/obj/item/reagent_containers/food/condiment/flour, +/obj/item/reagent_containers/food/condiment/flour, +/obj/item/reagent_containers/food/condiment/flour, +/obj/item/reagent_containers/food/condiment/flour, +/turf/simulated/floor/tiled, +/area/crew_quarters/lounge/kitchen_freezer) +"kvR" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/floor_decal/grass_edge{ + dir = 8 + }, +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/grass, +/area/hydroponics/garden) +"kwF" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled/techfloor/grid, +/area/hallway/primary/aft) +"kxa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/chapel/main) +"kxe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood, +/area/hallway/secondary/docking_hallway) +"kxk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/grass_edge{ + dir = 1 + }, +/turf/simulated/floor/grass, +/area/hydroponics/garden) +"kxn" = ( +/obj/machinery/atmospherics/pipe/tank/air{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/space) +"kyr" = ( +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/machinery/power/apc/west_mount, +/turf/simulated/floor/wood, +/area/bridge/meeting_room) +"kyG" = ( +/obj/structure/table/reinforced, +/obj/machinery/computer/med_data/laptop{ + dir = 8 + }, +/obj/machinery/ai_status_display{ + pixel_y = -32 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/bridge) +"kyW" = ( +/obj/structure/closet/firecloset, +/turf/simulated/floor/tiled, +/area/hallway/primary/aft) +"kze" = ( +/obj/machinery/porta_turret/crescent{ + density = 1; + faction = "neutral" + }, +/turf/simulated/floor/airless/ceiling, +/area/space) +"kzB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass{ + dir = 8 + }, +/obj/machinery/door/airlock/glass, +/turf/simulated/floor/tiled/dark, +/area/hallway/secondary/civilian_hallway_mid) +"kAA" = ( +/obj/machinery/vending/snack, +/turf/simulated/floor/tiled, +/area/space) +"kAO" = ( +/obj/structure/closet/crate/freezer/rations, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/space) +"kAU" = ( +/obj/effect/floor_decal/industrial/outline/red, +/obj/machinery/atmospherics/portables_connector{ + dir = 4; + name = "Engine Fuel Port" + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/shuttle/excursion/cargo) +"kBl" = ( +/obj/structure/table/woodentable, +/obj/machinery/chemical_dispenser/catering/bar_soft, +/turf/simulated/floor/plating, +/area/vacant/vacant_bar) +"kBR" = ( +/obj/item/material/shard, +/turf/simulated/floor/plating, +/area/maintenance/security/starboard) +"kCA" = ( +/obj/machinery/shower{ + pixel_y = 8 + }, +/obj/item/soap/deluxe, +/obj/structure/curtain/open/shower, +/obj/item/bikehorn/rubberducky, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/captain) +"kCI" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/turf/simulated/floor/tiled, +/area/exploration/courser_dock) +"kDj" = ( +/obj/structure/closet/walllocker/emerglocker{ + dir = 1; + pixel_y = -32 + }, +/turf/simulated/floor/tiled, +/area/shuttle/excursion/general) +"kDz" = ( +/obj/machinery/computer/ship/engines{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/space) +"kEh" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/space) +"kEl" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -28; + pixel_y = -4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/heads/blueshield) +"kEs" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/item/radio/beacon, +/turf/simulated/floor/tiled, +/area/hallway/primary/aft) +"kEB" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/machinery/photocopier/faxmachine{ + department = "Internal Affairs" + }, +/turf/simulated/floor/wood, +/area/lawoffice) +"kFe" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/aft) +"kFr" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/chapel) +"kFF" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exploration/excursion_dock) +"kGi" = ( +/obj/machinery/fire_alarm/east_mount, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/CMO_quarters) +"kHn" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/space) +"kHv" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/exploration/explorer_prep) +"kHE" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 9 + }, +/obj/effect/mist, +/turf/simulated/floor/water/pool, +/area/victory/surfacebase/sauna) +"kHH" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"kHM" = ( +/obj/machinery/camera/network/exploration, +/obj/machinery/recharger/wallcharger{ + pixel_x = 32; + pixel_y = 2 + }, +/turf/simulated/floor/tiled, +/area/space) +"kHP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/bridge/hallway) +"kHU" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 6 + }, +/obj/machinery/shower{ + pixel_y = 16 + }, +/obj/structure/curtain/open/shower/security, +/obj/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/turf/simulated/floor/tiled, +/area/space) +"kIs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/space) +"kIy" = ( +/obj/structure/bed/chair/shuttle{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/shuttle/excursion/cockpit) +"kJi" = ( +/turf/space, +/area/shuttle/courser/general) +"kJp" = ( +/obj/structure/bed/chair/sofa/left{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/maintenance/security/starboard) +"kJv" = ( +/obj/structure/bookcase/legal/combo, +/obj/item/book/manual/command_guide, +/obj/item/book/manual/standard_operating_procedure, +/obj/item/book/manual/security_space_law, +/obj/item/book/manual/legal/cr_vol1, +/obj/item/book/manual/legal/cr_vol2, +/obj/item/book/manual/legal/cr_vol3, +/obj/item/book/manual/legal/cr_vol5, +/obj/item/book/manual/legal/sop_vol1, +/obj/item/book/manual/legal/sop_vol2, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"kKo" = ( +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/spawner/window/low_wall/borosillicate/reinforced/full, +/obj/effect/paint_stripe/commandblue, +/turf/simulated/shuttle/floor/voidcraft, +/area/bridge/office) +"kKt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/hallway/secondary/civilian_hallway_mid) +"kKH" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/obj/machinery/station_map{ + dir = 4; + pixel_x = -32 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/secondary/civilian_hallway_mid) +"kLc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/crew_quarters/coffee_shop) +"kMb" = ( +/obj/structure/closet/wardrobe/chaplain_black, +/turf/simulated/floor/lino, +/area/chapel/office) +"kMv" = ( +/obj/structure/closet/crate, +/obj/random/tool, +/obj/random/tool, +/turf/simulated/floor/tiled, +/area/maintenance/chapel) +"kMz" = ( +/obj/effect/floor_decal/corner/orange{ + dir = 6 + }, +/obj/machinery/computer/ship/engines{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"kMD" = ( +/obj/machinery/appliance/cooker/fryer, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/crew_quarters/lounge/kitchen_freezer) +"kME" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/heads/blueshield) +"kMQ" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/hallway/secondary/docking_hallway) +"kNs" = ( +/obj/machinery/door/airlock/multi_tile/metal/mait, +/obj/machinery/door/firedoor, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/security/starboard) +"kNx" = ( +/obj/structure/bed/chair/comfy/red{ + dir = 1 + }, +/turf/simulated/floor/wood/broken, +/area/maintenance/central) +"kNH" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/beige/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/bridge/hallway) +"kNK" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/library) +"kNR" = ( +/obj/machinery/door/firedoor/glass, +/obj/spawner/window/low_wall/reinforced/full, +/turf/simulated/floor, +/area/maintenance/security/starboard) +"kOi" = ( +/obj/structure/bed/chair/bay/shuttle{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/space) +"kOk" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/shuttle/wall/voidcraft/hard_corner, +/area/shuttle/civvie/general) +"kOQ" = ( +/turf/simulated/wall/r_wall/prepainted/command, +/area/bridge/meeting_room) +"kOV" = ( +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/machinery/power/apc/west_mount, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/HOP_quarters) +"kPs" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/cable/green{ + dir = 1; + icon_state = "1-2" + }, +/obj/machinery/power/sensor{ + name = "Powernet Sensor - Security Subgrid"; + name_tag = "Surfsec Subgrid" + }, +/obj/structure/cable/green, +/turf/simulated/floor/plating, +/area/maintenance/substation/security) +"kPv" = ( +/obj/effect/floor_decal/techfloor{ + dir = 6 + }, +/obj/machinery/newscaster{ + pixel_y = -31 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/hallway/primary/aft) +"kPw" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/hydroponics/garden) +"kQS" = ( +/obj/machinery/holopad, +/turf/simulated/floor/carpet/bcarpet, +/area/chapel/main) +"kRj" = ( +/obj/machinery/door/firedoor/glass, +/obj/spawner/window/low_wall/reinforced/full, +/turf/simulated/floor/plating, +/area/maintenance/security/starboard) +"kRq" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Primary Tool Storage" + }, +/turf/simulated/floor/tiled, +/area/maintenance/tool_storage) +"kRF" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled, +/area/space) +"kSZ" = ( +/obj/random/trash_pile, +/turf/simulated/floor/plating, +/area/maintenance/security/starboard) +"kWo" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 9 + }, +/turf/simulated/floor/water/pool, +/area/victory/surfacebase/sauna) +"kWJ" = ( +/turf/simulated/floor/holofloor/tiled/dark, +/area/hallway/primary/aft) +"kXe" = ( +/obj/effect/floor_decal/corner_techfloor_grid{ + dir = 5 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/victory/surfacebase/sauna) +"kXr" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/item/clothing/under/swimsuit/stripper/cowbikini, +/obj/item/reagent_containers/food/drinks/cans/waterbottle, +/obj/machinery/fire_alarm/south_mount{ + pixel_y = -25 + }, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/sauna) +"kXy" = ( +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/plating, +/area/maintenance/central) +"kXH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"kXM" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/wood, +/area/crew_quarters/lounge) +"kYx" = ( +/obj/structure/bed/chair/comfy/black, +/turf/simulated/floor/carpet/purcarpet, +/area/crew_quarters/coffee_shop) +"kYz" = ( +/obj/effect/floor_decal/chapel{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"kYE" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/camera/network/command{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/command) +"kZt" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/sauna) +"laK" = ( +/obj/machinery/door/window/brigdoor/eastleft{ + req_access = null; + req_one_access = list(44,67) + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/structure/ship_munition/disperser_charge/emp, +/turf/simulated/floor/tiled/dark, +/area/space) +"lbH" = ( +/obj/machinery/computer/ship/navigation{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"lcR" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/table/bench/wooden, +/obj/item/clothing/shoes/swimmingfins, +/turf/simulated/floor/wood, +/area/hydroponics/garden) +"lcW" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/cargo) +"ldn" = ( +/obj/structure/closet/secure_closet/blueshield, +/obj/machinery/power/apc/north_mount, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/turf/simulated/floor/carpet/blue, +/area/crew_quarters/heads/blueshield) +"les" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/mirror{ + pixel_x = -28 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/captain) +"leE" = ( +/obj/machinery/access_button/airlock_interior{ + frequency = 1380; + master_tag = "expshuttle_dock"; + pixel_y = 10 + }, +/turf/simulated/wall/r_wall, +/area/space) +"lft" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/maintenance/security/starboard) +"lfu" = ( +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/aft) +"lgr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/captain) +"lhL" = ( +/obj/structure/mirror{ + dir = 4; + pixel_y = -32 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/mimeoffice) +"lhZ" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/chapel) +"liM" = ( +/obj/structure/closet/lasertag/blue, +/turf/simulated/floor/tiled/old_tile/blue, +/area/maintenance/security/starboard) +"ljJ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/wood, +/area/lawoffice) +"llY" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/exploration/courser_dock) +"lmB" = ( +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/secondary/civilian_hallway_mid) +"lno" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "courser_magazine_2"; + name = "Magazine Two"; + pixel_x = 8; + pixel_y = 8 + }, +/obj/machinery/conveyor_switch/oneway{ + id = "courser_battery"; + name = "Magazine Feed" + }, +/obj/machinery/conveyor_switch/oneway{ + id = "courser_magazine_1"; + name = "Magazine One"; + pixel_x = -8; + pixel_y = 8 + }, +/turf/simulated/floor/plating, +/area/space) +"lns" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"lnF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/secondary/docking_hallway) +"lnR" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/obj/effect/floor_decal/techfloor/orange{ + dir = 1 + }, +/obj/machinery/air_alarm{ + frequency = 1441; + pixel_y = 22 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"loh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/item/stool/padded, +/turf/simulated/floor/wood, +/area/crew_quarters/coffee_shop) +"loX" = ( +/obj/landmark/spawnpoint/job/mime, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/mimeoffice) +"lpv" = ( +/obj/machinery/air_alarm{ + dir = 8; + pixel_x = 25 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 8; + light_range = 12 + }, +/turf/simulated/floor/tiled, +/area/space) +"lqh" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central6, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/landmark/spawnpoint/overflow/station, +/turf/simulated/floor/tiled, +/area/hallway/primary/aft) +"lqD" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/voidcraft/vertical, +/obj/map_helper/airlock/door/ext_door, +/obj/machinery/access_button/airlock_exterior{ + frequency = 1380; + master_tag = "courser_docker"; + pixel_x = 24 + }, +/turf/simulated/floor/plating, +/area/space) +"lqO" = ( +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/shuttle/excursion/general) +"lsx" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/turf/simulated/floor/tiled, +/area/space) +"lsW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"lsZ" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/maintenance/substation/exploration) +"lta" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exploration/explorer_prep) +"ltO" = ( +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/library) +"lus" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/crew_quarters/coffee_shop) +"luN" = ( +/obj/effect/floor_decal/spline/fancy{ + dir = 1 + }, +/obj/machinery/porta_turret/stationary{ + gl_uid = "exploration"; + installation = /obj/item/gun/energy/phasegun; + name = "exploration turret"; + req_one_access = list(19,43,62,67); + uid = "exploration" + }, +/obj/effect/floor_decal/industrial/warning/full, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/excursion/general) +"lwn" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central6, +/turf/simulated/floor/tiled, +/area/space) +"lwU" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/sauna) +"lyU" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/space) +"lzf" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/victory/surfacebase/tram) +"lzA" = ( +/obj/structure/table/rack, +/obj/random/maintenance/security, +/turf/simulated/floor/plating, +/area/maintenance/security/starboard) +"lAI" = ( +/obj/structure/girder, +/turf/simulated/floor/plating, +/area/maintenance/security/starboard) +"lAO" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/machinery/computer/ship/navigation/telescreen{ + pixel_y = 27 + }, +/turf/simulated/floor/carpet/tealcarpet, +/area/shuttle/civvie/general) +"lCd" = ( +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/machinery/power/apc/north_mount, +/turf/simulated/floor/plating, +/area/maintenance/substation/command) +"lCw" = ( +/obj/structure/sign/department/conference_room, +/turf/simulated/wall/prepainted/command, +/area/bridge/meeting_room) +"lCx" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/computer/ship/navigation/telescreen{ + pixel_x = 32 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/library) +"lDo" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/crew_quarters/coffee_shop) +"lDt" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/victory/surfacebase/tram) +"lEq" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/machinery/camera/network/civilian{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/aft) +"lEw" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 8 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/crew_quarters/coffee_shop) +"lEF" = ( +/obj/structure/table/woodentable, +/obj/item/flashlight/lamp/green, +/turf/simulated/floor/wood, +/area/library) +"lFl" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"lFq" = ( +/obj/effect/floor_decal/chapel, +/obj/structure/table/bench/wooden, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"lGt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exploration/excursion_dock) +"lHa" = ( +/obj/structure/barricade, +/obj/machinery/door/airlock/maintenance/common, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/vacant/vacant_bar) +"lHf" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 6 + }, +/obj/machinery/shower{ + pixel_y = 16 + }, +/obj/structure/curtain/open/shower/security, +/turf/simulated/floor/tiled, +/area/space) +"lIw" = ( +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/obj/structure/table/wooden_reinforced, +/obj/item/flashlight/lamp/green, +/turf/simulated/floor/carpet/gaycarpet, +/area/crew_quarters/clownoffice) +"lID" = ( +/obj/structure/bookcase, +/obj/item/book/manual/anomaly_testing, +/turf/simulated/floor/wood, +/area/maintenance/security/starboard) +"lIQ" = ( +/obj/machinery/door/airlock/research{ + name = "Toilet" + }, +/turf/simulated/floor/tiled, +/area/space) +"lKq" = ( +/obj/machinery/camera/network/command{ + dir = 9 + }, +/turf/simulated/floor/wood, +/area/bridge/meeting_room) +"lKM" = ( +/obj/machinery/computer/guestpass{ + dir = 4; + pixel_x = -28 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 8 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/bridge/hallway) +"lKS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/carpet/bcarpet, +/area/library/study) +"lLc" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/plating, +/area/vacant/vacant_bar) +"lNo" = ( +/obj/structure/railing, +/obj/effect/floor_decal/techfloor, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/secondary/civilian_hallway_mid) +"lNr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/bridge/hallway) +"lNH" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/CMO_quarters) +"lOq" = ( +/obj/machinery/power/apc/north_mount, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/effect/floor_decal/techfloor{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/hallway/secondary/civilian_hallway_mid) +"lOs" = ( +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/exploration/courser_dock) +"lOO" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/loot_pile/maint/trash, +/obj/machinery/light/small/emergency{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/chapel) +"lOV" = ( +/obj/machinery/portable_atmospherics/powered/scrubber, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/shuttle/excursion/cargo) +"lOX" = ( +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/wood, +/area/maintenance/security/starboard) +"lPo" = ( +/obj/effect/mist, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/victory/surfacebase/sauna) +"lPB" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/machinery/vending/wallmed1{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled, +/area/space) +"lQC" = ( +/obj/machinery/air_alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/chapel) +"lQM" = ( +/obj/structure/table/woodentable, +/obj/item/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/pen, +/turf/simulated/floor/tiled, +/area/space) +"lQO" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/maintenance/substation/exploration) +"lRe" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/table/steel, +/obj/random/drinkbottle, +/turf/simulated/floor/plating, +/area/maintenance/central) +"lSc" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/space) +"lSz" = ( +/obj/machinery/door/firedoor/glass{ + dir = 8 + }, +/obj/machinery/door/airlock/glass, +/turf/simulated/floor/tiled/dark, +/area/hallway/secondary/civilian_hallway_mid) +"lTA" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/hallway/secondary/civilian_hallway_mid) +"lUh" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/obj/effect/floor_decal/techfloor/hole{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/secondary/civilian_hallway_mid) +"lVq" = ( +/obj/effect/floor_decal/spline/fancy{ + dir = 6 + }, +/obj/structure/railing, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/water/deep/indoors, +/area/hydroponics/garden) +"lVu" = ( +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/old_tile/green, +/area/shuttle/civvie/general) +"lWb" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/bridge/hallway) +"lXt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/lounge/kitchen_freezer) +"lXS" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/shuttle/excursion/cargo) +"lYx" = ( +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/spawner/window/low_wall/reinforced/full, +/turf/simulated/floor/plating, +/area/space) +"lZv" = ( +/obj/structure/dispenser/oxygen, +/turf/simulated/floor/tiled/dark, +/area/hallway/secondary/docking_hallway) +"maa" = ( +/obj/effect/floor_decal/techfloor, +/obj/effect/floor_decal/techfloor/hole, +/obj/machinery/computer/timeclock/premade/south, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/aft) +"mak" = ( +/obj/structure/table/woodentable, +/obj/machinery/chemical_dispenser/catering/bar_coffee, +/turf/simulated/floor/wood, +/area/maintenance/security/starboard) +"maq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/glass, +/obj/machinery/door/firedoor/glass{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/secondary/civilian_hallway_mid) +"maw" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/lounge) +"maJ" = ( +/obj/machinery/fire_alarm/north_mount, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/washing_machine, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/sauna) +"maM" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/crew_quarters/coffee_shop) +"maZ" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/CE_quarters) +"mbY" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/crew_quarters/lounge) +"mcN" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "courser_magazine_2" + }, +/obj/machinery/door/blast/regular{ + dir = 4; + id = "courser_magazine_2"; + name = "Cannon Magazine Two" + }, +/turf/simulated/floor/plating, +/area/space) +"mcY" = ( +/obj/structure/table/reinforced, +/obj/machinery/air_alarm/alarms_hidden{ + dir = 8; + pixel_x = 27 + }, +/obj/machinery/computer/ship/navigation/telescreen{ + pixel_y = -37 + }, +/turf/simulated/floor/carpet/tealcarpet, +/area/shuttle/civvie/general) +"mdo" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -23 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/turf/simulated/floor/tiled/monofloor{ + dir = 4 + }, +/area/space) +"mew" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Chief Engineer's Living Quarters"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/head_office/chief_engineer, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/CE_quarters) +"meE" = ( +/turf/simulated/wall/prepainted/exploration, +/area/library/study) +"meH" = ( +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/smes/buildable{ + RCon_tag = "Substation - Command"; + output_attempt = 0 + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/command) +"meS" = ( +/obj/structure/window/reinforced/tinted/frosted{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/effect/floor_decal/corner/blue/full, +/obj/item/flashlight/lamp, +/obj/machinery/recharger, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"mfn" = ( +/turf/simulated/floor/lino, +/area/chapel/office) +"mfu" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/air_alarm{ + frequency = 1441; + pixel_y = 22 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/chapel) +"mgg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/library) +"mgA" = ( +/turf/simulated/wall/prepainted/exploration, +/area/exploration/excursion_dock) +"mgO" = ( +/turf/simulated/wall/r_wall/prepainted/command, +/area/bridge/office) +"mgS" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/glass{ + name = "Cafe" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/crew_quarters/coffee_shop) +"mha" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled/dark, +/area/medical/patient_wing) +"mhL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/secondary/civilian_hallway_mid) +"mhR" = ( +/obj/structure/bed/chair, +/turf/simulated/floor/plating, +/area/maintenance/security/starboard) +"mjY" = ( +/obj/structure/table/reinforced, +/obj/item/radio, +/obj/item/radio{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/effect/floor_decal/corner/purple/full{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"mkn" = ( +/obj/effect/floor_decal/corner/orange{ + dir = 6 + }, +/obj/machinery/computer/ship/navigation{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"mlA" = ( +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/hop) +"mma" = ( +/obj/machinery/door/airlock/command{ + name = "Private Restroom"; + req_access = list(); + req_one_access = list() + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/sleep/CE_quarters) +"mmg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/air_alarm{ + dir = 4; + frequency = 1441; + pixel_x = -23 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"mmO" = ( +/turf/simulated/wall/prepainted, +/area/crew_quarters/lounge) +"mnd" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/bridge/hallway) +"mne" = ( +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"moK" = ( +/obj/machinery/computer/security, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"mpL" = ( +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/floor_decal/grass_edge{ + dir = 4 + }, +/turf/simulated/floor/grass, +/area/hydroponics/garden) +"mqr" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/aft) +"mrA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/library/study) +"mrJ" = ( +/obj/machinery/power/apc/north_mount, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/mob/living/simple_mob/animal/passive/mimepet, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/mimeoffice) +"mrS" = ( +/obj/structure/bookcase{ + name = "bookcase (Non-Fiction)" + }, +/obj/item/book/manual/barman_recipes, +/turf/simulated/floor/wood, +/area/library) +"msB" = ( +/obj/machinery/door/airlock/command{ + name = "Head of Personnel"; + req_one_access = null + }, +/obj/machinery/door/firedoor, +/obj/map_helper/access_helper/airlock/station/head_office/head_of_personnel, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/hop) +"muT" = ( +/turf/simulated/floor/tiled, +/area/crew_quarters/lounge/kitchen_freezer) +"muZ" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/map_helper/airlock/door/int_door, +/obj/map_helper/access_helper/airlock/station/exploration/department, +/obj/machinery/door/airlock/glass_external{ + req_one_access = null + }, +/turf/simulated/floor/tiled, +/area/space) +"mvb" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"mwl" = ( +/turf/simulated/floor/plating, +/area/maintenance/cargo) +"mwp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/coffee_shop) +"mwK" = ( +/obj/structure/table/standard, +/obj/item/flashlight/lantern, +/turf/simulated/floor/tiled, +/area/hallway/primary/aft) +"mxK" = ( +/obj/machinery/suit_storage_unit/search_and_rescue, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exploration/explorer_prep) +"myn" = ( +/obj/machinery/body_scanconsole, +/turf/simulated/floor/tiled/white, +/area/exploration/explorer_prep) +"myo" = ( +/turf/simulated/wall/r_wall, +/area/bridge) +"myU" = ( +/obj/structure/closet/hydrant{ + pixel_x = 32 + }, +/turf/simulated/floor/plating, +/area/vacant/vacant_bar) +"mzp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/machinery/door/airlock/command{ + name = "Bridge"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/command/bridge, +/turf/simulated/floor/tiled/dark, +/area/victory/station/stairs_four) +"mAC" = ( +/obj/machinery/access_button/airlock_exterior{ + frequency = 1380; + master_tag = "expshuttle_dock" + }, +/turf/simulated/wall/prepainted/exploration, +/area/space) +"mBh" = ( +/obj/structure/closet/secure_closet/hop2, +/obj/item/clothing/accessory/poncho/roles/cloak/hop, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/hop) +"mBp" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/bridge/hallway) +"mBH" = ( +/obj/machinery/camera/network/exploration{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/aft) +"mDd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"mEg" = ( +/turf/simulated/floor/tiled/white, +/area/exploration/explorer_prep) +"mEj" = ( +/obj/machinery/sleeper{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/shuttle/excursion/general) +"mER" = ( +/turf/simulated/wall/r_wall/prepainted/command, +/area/crew_quarters/heads/hop) +"mGa" = ( +/obj/structure/table/woodentable, +/obj/item/reagent_containers/food/drinks/bottle/gin, +/obj/structure/extinguisher_cabinet{ + pixel_y = -31 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/HOP_quarters) +"mGw" = ( +/obj/structure/bed/chair/sofa/black, +/turf/simulated/floor/wood, +/area/maintenance/security/starboard) +"mHi" = ( +/obj/machinery/disperser/back{ + dir = 4 + }, +/obj/machinery/conveyor{ + dir = 4; + id = "courser_battery" + }, +/turf/simulated/floor/plating, +/area/space) +"mHj" = ( +/obj/structure/table/standard, +/obj/machinery/recharger, +/obj/item/radio/intercom{ + pixel_y = -24 + }, +/turf/simulated/floor/tiled, +/area/space) +"mIj" = ( +/obj/effect/floor_decal/techfloor, +/obj/machinery/newscaster{ + pixel_y = -31 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/aft) +"mID" = ( +/obj/structure/table/borosilicate, +/turf/simulated/floor/wood, +/area/vacant/vacant_bar) +"mJt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Chapel" + }, +/obj/structure/curtain/black{ + anchored = 1 + }, +/turf/simulated/floor/carpet/sblucarpet, +/area/chapel/main) +"mJy" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/coffee_shop) +"mJP" = ( +/turf/simulated/floor/carpet/bcarpet, +/area/library) +"mKg" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/space) +"mKq" = ( +/obj/structure/table/rack, +/obj/item/tank/jetpack/oxygen, +/obj/item/tank/jetpack/oxygen, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/firedoor/glass{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/secondary/docking_hallway) +"mLh" = ( +/obj/structure/table/standard, +/obj/random/firstaid{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/radio/intercom{ + pixel_y = -24 + }, +/obj/item/storage/firstaid/regular{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/exploration/courser_dock) +"mLJ" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/machinery/fire_alarm/west_mount{ + pixel_x = -24 + }, +/turf/simulated/floor/tiled, +/area/space) +"mMT" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/crew_quarters/coffee_shop) +"mNu" = ( +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/space) +"mNO" = ( +/obj/effect/floor_decal/chapel, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"mOO" = ( +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/obj/machinery/button/remote/blast_door{ + id = "shuttle_lockdown"; + name = "Shuttle Lockdown"; + pixel_x = -6; + pixel_y = 26 + }, +/turf/simulated/floor/tiled, +/area/shuttle/excursion/general) +"mOV" = ( +/turf/simulated/wall/r_wall/prepainted/security, +/area/maintenance/security/starboard) +"mRl" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/item/clothing/under/swimsuit/stripper/cowbikini, +/obj/item/reagent_containers/food/drinks/cans/waterbottle, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/structure/closet/athletic_mixed, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/sauna) +"mRF" = ( +/obj/machinery/atmospherics/pipe/tank/phoron{ + volume = 20000 + }, +/obj/effect/floor_decal/industrial/outline/red, +/obj/structure/railing, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/space) +"mRI" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/multi_tile/glass{ + name = "Gateway Prep" + }, +/obj/map_helper/access_helper/airlock/station/exploration/department, +/turf/simulated/floor/tiled, +/area/exploration/courser_dock) +"mRT" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/landmark/spawnpoint/latejoin/station/arrivals_shuttle, +/turf/simulated/floor/tiled, +/area/hallway/primary/aft) +"mRX" = ( +/obj/machinery/washing_machine, +/turf/simulated/floor/tiled, +/area/space) +"mTa" = ( +/obj/map_helper/airlock/door/int_door, +/obj/machinery/door/airlock/glass_external{ + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/external_airlock, +/turf/simulated/floor/tiled/dark, +/area/space) +"mTR" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/techfloor, +/obj/machinery/light, +/turf/simulated/floor/tiled/dark, +/area/hallway/secondary/civilian_hallway_mid) +"mTU" = ( +/obj/machinery/access_button{ + command = "cycle_ext"; + frequency = 1380; + master_tag = "civvie_docker"; + pixel_y = -21 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/map_helper/airlock/door/ext_door, +/obj/machinery/door/airlock/voidcraft/vertical, +/turf/simulated/floor/tiled/old_tile/green, +/area/shuttle/civvie/general) +"mUi" = ( +/obj/machinery/button/remote/blast_door{ + id = "cd-blast"; + name = "Facility Director Lockdown" + }, +/turf/simulated/wall/r_wall/prepainted/command, +/area/crew_quarters/captain) +"mUO" = ( +/obj/structure/bed/chair/sofa/black/right, +/turf/simulated/floor/wood, +/area/maintenance/security/starboard) +"mUT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/railing, +/obj/effect/floor_decal/grass_edge{ + dir = 1 + }, +/turf/simulated/floor/grass, +/area/hydroponics/garden) +"mVc" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold/hidden, +/obj/structure/fuel_port{ + dir = 4; + pixel_y = -29 + }, +/turf/simulated/floor, +/area/shuttle/civvie/general) +"mVP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/turf/simulated/shuttle/wall/voidcraft/green, +/area/shuttle/civvie/general) +"mWf" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 10 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/space) +"mWz" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/hallway/secondary/civilian_hallway_mid) +"mWK" = ( +/obj/machinery/camera/network/command{ + dir = 9 + }, +/obj/effect/floor_decal/corner/orange{ + dir = 6 + }, +/obj/structure/table/reinforced, +/obj/item/storage/box/donut, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"mWX" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"mXd" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/water/pool, +/area/victory/surfacebase/sauna) +"mXt" = ( +/obj/item/gun/ballistic/shotgun/flare, +/obj/item/storage/box/flashshells, +/obj/item/duct_tape_roll, +/obj/structure/closet/hydrant{ + pixel_x = -32 + }, +/obj/structure/cable/cyan{ + icon_state = "1-2" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/space) +"mXO" = ( +/turf/space/basic, +/area/shuttle/courser/cockpit) +"mXP" = ( +/obj/machinery/air_alarm{ + dir = 8; + pixel_x = 25 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + dir = 2; + id = "cafe"; + layer = 3.1; + name = "Cafe Shutters" + }, +/obj/structure/table/marble, +/obj/item/storage/box/donut, +/turf/simulated/floor/lino, +/area/crew_quarters/coffee_shop) +"mYb" = ( +/turf/simulated/wall/prepainted, +/area/hydroponics/garden) +"mYH" = ( +/obj/item/gun/energy/lasertag/blue, +/obj/structure/table/rack/shelf/steel, +/turf/simulated/floor/tiled/old_tile/blue, +/area/maintenance/security/starboard) +"mZA" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/floodlight, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/maintenance/chapel) +"naE" = ( +/obj/structure/table/rack/shelf, +/obj/item/tank/oxygen, +/obj/item/suit_cooling_unit, +/obj/item/storage/backpack/parachute, +/turf/simulated/floor/tiled, +/area/space) +"nbg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/railing, +/obj/structure/lightpost, +/turf/simulated/floor/grass, +/area/hydroponics/garden) +"nbm" = ( +/obj/structure/sign/deck/fourth, +/turf/simulated/wall/prepainted, +/area/crew_quarters/lounge) +"nct" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/secondary/docking_hallway) +"ndA" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/security/port) +"nfJ" = ( +/obj/machinery/air_alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/bed/chair/comfy/black{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/CMO_quarters) +"nfQ" = ( +/obj/structure/table/woodentable, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/item/megaphone, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"ngd" = ( +/obj/effect/floor_decal/techfloor, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/ai_status_display{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/secondary/civilian_hallway_mid) +"nif" = ( +/obj/machinery/camera/network/civilian, +/obj/machinery/computer/ship/navigation/telescreen{ + pixel_y = 27 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/lounge) +"nio" = ( +/obj/machinery/camera/network/exploration{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"niu" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/machinery/papershredder, +/turf/simulated/floor/wood, +/area/lawoffice) +"njW" = ( +/turf/simulated/floor/wood/broken, +/area/maintenance/central) +"nka" = ( +/obj/machinery/camera/network/command{ + dir = 9 + }, +/turf/simulated/floor/wood, +/area/bridge/office) +"nkk" = ( +/turf/simulated/shuttle/wall/voidcraft/hard_corner, +/area/shuttle/civvie/general) +"nkp" = ( +/turf/simulated/wall/r_wall/prepainted/exploration, +/area/exploration/explorer_prep) +"nkN" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/aft) +"nld" = ( +/obj/machinery/camera/network/civilian, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/aft) +"nlh" = ( +/obj/structure/closet/walllocker/emerglocker{ + dir = 1; + pixel_y = -32 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/shuttle/excursion/general) +"nmq" = ( +/obj/structure/table/marble, +/obj/item/hand_labeler, +/obj/machinery/fire_alarm/south_mount{ + pixel_y = -25 + }, +/obj/item/storage/box/donkpockets, +/obj/item/reagent_containers/food/drinks/shaker, +/obj/item/reagent_containers/food/condiment/enzyme, +/turf/simulated/floor/tiled, +/area/crew_quarters/lounge/kitchen_freezer) +"nnp" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 1 + }, +/obj/machinery/recharge_station, +/obj/machinery/fire_alarm/north_mount, +/turf/simulated/floor/tiled, +/area/bridge/hallway) +"nnq" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/turf/simulated/floor/tiled, +/area/teleporter) +"nnP" = ( +/turf/simulated/wall/prepainted/civilian, +/area/chapel/main) +"nnX" = ( +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/aft) +"noe" = ( +/obj/machinery/computer/crew{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/full{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"noo" = ( +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/coffee_shop) +"noM" = ( +/obj/structure/table/reinforced, +/obj/item/storage/firstaid/regular, +/obj/effect/floor_decal/corner/purple/full{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"noZ" = ( +/obj/landmark/spawnpoint/job/librarian, +/obj/structure/bed/chair/comfy/brown{ + dir = 1 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/library/study) +"npu" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock{ + name = "Chapel Morgue" + }, +/obj/map_helper/access_helper/airlock/station/service/chapel/cremator, +/turf/simulated/floor/tiled, +/area/chapel/main) +"npO" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/map_helper/airlock/atmos/chamber_pump, +/obj/machinery/atmospherics/component/unary/vent_pump/high_volume{ + dir = 4; + frequency = 1380; + id_tag = "civvie_docker_pump" + }, +/turf/simulated/floor/tiled/old_tile/green, +/area/shuttle/civvie/general) +"nqz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/hallway/secondary/civilian_hallway_mid) +"nqR" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/vacant/vacant_bar) +"nrb" = ( +/obj/machinery/door/airlock/voidcraft/vertical{ + icon_state = "door_locked"; + id_tag = "expshuttle_door_L"; + locked = 1 + }, +/obj/machinery/button/remote/airlock{ + desiredstate = 1; + dir = 1; + id = "expshuttle_door_L"; + name = "hatch bolt control"; + pixel_y = -28; + req_one_access = list(19,43,67); + specialfunctions = 4 + }, +/obj/structure/fans/tiny, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "shuttle_lockdown"; + name = "Shuttle Lockdown"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/shuttle/excursion/cargo) +"ntG" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/sauna) +"ntW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"nui" = ( +/obj/structure/table/reinforced, +/obj/item/roller, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/obj/item/storage/firstaid/regular, +/turf/simulated/floor/tiled, +/area/space) +"nuL" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 6 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/lawoffice) +"nuU" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/space) +"nvI" = ( +/turf/simulated/wall/prepainted/security, +/area/maintenance/security/port) +"nwm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/maintenance, +/turf/simulated/floor/plating, +/area/space) +"nwz" = ( +/obj/effect/floor_decal/spline/fancy{ + dir = 9 + }, +/turf/simulated/floor/water/deep/indoors, +/area/hydroponics/garden) +"nwQ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 10 + }, +/obj/item/radio/intercom{ + pixel_y = -24 + }, +/turf/simulated/floor/tiled, +/area/space) +"nxI" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor, +/obj/map_helper/airlock/door/ext_door, +/obj/machinery/access_button/airlock_exterior{ + frequency = 1380; + master_tag = "courser_dock"; + pixel_x = 26; + pixel_y = 8 + }, +/obj/machinery/door/airlock/glass_external{ + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/exploration/department, +/turf/simulated/floor/tiled, +/area/space) +"nyK" = ( +/obj/effect/floor_decal/corner/orange{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"nzw" = ( +/obj/machinery/fire_alarm/north_mount, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/CE_quarters) +"nzy" = ( +/turf/simulated/shuttle/wall/voidcraft/green, +/area/shuttle/civvie/cockpit) +"nzK" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/item/clothing/under/swimsuit/stripper/cowbikini, +/obj/item/reagent_containers/food/drinks/cans/waterbottle, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/structure/closet/athletic_mixed, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/sauna) +"nAF" = ( +/obj/machinery/atmospherics/component/binary/passive_gate/on{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/space) +"nAT" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/crate, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/turf/simulated/floor/tiled, +/area/maintenance/cargo) +"nBa" = ( +/obj/machinery/air_alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/exploration) +"nBS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/space) +"nCd" = ( +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/machinery/suit_storage_unit/exploration, +/turf/simulated/floor/tiled, +/area/space) +"nCE" = ( +/obj/structure/railing, +/obj/structure/flora/ausbushes/ywflowers, +/turf/simulated/floor/grass, +/area/hydroponics/garden) +"nCK" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/obj/structure/cable/cyan{ + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/shuttle/excursion/cargo) +"nEa" = ( +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/chapel/main) +"nEf" = ( +/obj/landmark/spawnpoint/job/lawyer, +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/lawoffice) +"nFc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/holopad, +/obj/machinery/camera/network/command{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/status_display{ + pixel_y = -32 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/heads/blueshield) +"nFg" = ( +/obj/machinery/turretid{ + check_access = 0; + control_area = /area/shuttle/excursion/general; + gl_uid = "exploration"; + pixel_x = -30; + pixel_y = 30; + req_access = null; + req_one_access = list(19,43,62,67); + uid = "exploration" + }, +/turf/simulated/floor/tiled, +/area/shuttle/excursion/cockpit) +"nFT" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 5 + }, +/turf/simulated/floor/water/pool, +/area/victory/surfacebase/sauna) +"nHt" = ( +/obj/structure/cable/cyan{ + icon_state = "2-4" + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/tank/air{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor, +/area/shuttle/civvie/general) +"nHB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/space) +"nHP" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/holopad, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/hop) +"nHX" = ( +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -23 + }, +/turf/simulated/floor/wood, +/area/bridge/meeting_room) +"nIi" = ( +/obj/machinery/power/apc/south_mount, +/obj/machinery/light, +/obj/structure/cable/cyan{ + icon_state = "0-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/space) +"nIu" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 5 + }, +/obj/machinery/photocopier, +/turf/simulated/floor/wood, +/area/lawoffice) +"nJA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/library) +"nKb" = ( +/obj/structure/table/reinforced, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/turf/simulated/floor/tiled, +/area/maintenance/tool_storage) +"nKg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/chapel/main) +"nKO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/grass_edge{ + dir = 1 + }, +/turf/simulated/floor/grass, +/area/hydroponics/garden) +"nKZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/holopad, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"nLd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/sauna) +"nLZ" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/structure/sign/directions/command{ + dir = 4; + pixel_y = 36 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/aft) +"nMh" = ( +/obj/structure/table/reinforced, +/turf/simulated/floor/tiled, +/area/space) +"nMp" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/ship_munition/disperser_charge/emp, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/dark, +/area/space) +"nMY" = ( +/obj/structure/cable/green{ + dir = 1; + icon_state = "4-8" + }, +/turf/simulated/floor/carpet/gaycarpet, +/area/crew_quarters/clownoffice) +"nNn" = ( +/obj/structure/closet/crate, +/obj/item/tool/crowbar, +/turf/simulated/floor/tiled, +/area/teleporter) +"nNo" = ( +/obj/machinery/atmospherics/pipe/tank/phoron{ + volume = 15000 + }, +/obj/effect/floor_decal/industrial/outline/red, +/turf/simulated/floor, +/area/shuttle/civvie/general) +"nNp" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/techfloor, +/turf/simulated/floor/tiled/dark, +/area/hallway/secondary/civilian_hallway_mid) +"nNs" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/map_helper/airlock/sensor/chamber_sensor, +/obj/machinery/airlock_sensor{ + id_tag = "expshuttle_docker"; + pixel_x = 24 + }, +/obj/machinery/atmospherics/component/unary/vent_pump/high_volume{ + frequency = 1380; + id_tag = "expshuttle_docker_pump"; + power_rating = 20000 + }, +/obj/map_helper/airlock/atmos/chamber_pump, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/shuttle/excursion/general) +"nNH" = ( +/obj/structure/railing, +/obj/structure/flora/ausbushes/ppflowers, +/turf/simulated/floor/grass, +/area/hydroponics/garden) +"nNR" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/machinery/computer/ship/navigation/telescreen{ + pixel_y = 27 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/aft) +"nNT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/hallway/secondary/civilian_hallway_mid) +"nPI" = ( +/obj/structure/table/woodentable, +/obj/item/instrument/harmonica, +/obj/machinery/recharger, +/turf/simulated/floor/wood, +/area/crew_quarters/coffee_shop) +"nQj" = ( +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/clownoffice) +"nQR" = ( +/turf/simulated/wall/prepainted, +/area/vacant/vacant_bar) +"nRR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/flora/tree/jungle, +/turf/simulated/floor/grass, +/area/hydroponics/garden) +"nRX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/hallway/primary/aft) +"nSH" = ( +/turf/simulated/floor/carpet/purcarpet, +/area/crew_quarters/coffee_shop) +"nSW" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/exploration/courser_dock) +"nTf" = ( +/obj/structure/table/woodentable, +/obj/item/flame/candle/candelabra, +/turf/simulated/floor/wood, +/area/hallway/secondary/docking_hallway) +"nTo" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/ship_munition/disperser_charge/mining, +/obj/machinery/door/window/brigdoor/westleft{ + req_access = null; + req_one_access = list(44,67) + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"nTu" = ( +/turf/space/basic, +/area/exploration/medical) +"nTC" = ( +/obj/structure/sign/double/barsign, +/turf/simulated/wall/prepainted/civilian, +/area/crew_quarters/coffee_shop) +"nUC" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/carpet/tealcarpet, +/area/crew_quarters/sleep/CMO_quarters) +"nVc" = ( +/obj/structure/bed/double/padded, +/obj/item/bedsheet/mimedouble, +/turf/simulated/floor/wood, +/area/crew_quarters/mimeoffice) +"nVs" = ( +/obj/machinery/mass_driver{ + dir = 1; + id = "chapelgun" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/door/window{ + dir = 4; + name = "Mass Driver"; + req_access = list(22) + }, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/hallway/secondary/docking_hallway) +"nWQ" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 1 + }, +/obj/machinery/camera/network/civilian, +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled/dark, +/area/space) +"nYt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/lounge/kitchen_freezer) +"nZb" = ( +/turf/simulated/wall/r_wall/prepainted/exploration, +/area/victory/surfacebase/tram) +"nZl" = ( +/obj/machinery/door/airlock/command{ + name = "Private Restroom"; + req_access = list(); + req_one_access = list() + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/sleep/CMO_quarters) +"nZq" = ( +/obj/landmark{ + name = "blobstart" + }, +/turf/simulated/floor/tiled, +/area/chapel/main) +"nZD" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/wood/broken, +/area/vacant/vacant_bar) +"nZR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/hallway/secondary/docking_hallway) +"obb" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/open, +/area/maintenance/chapel) +"obp" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/lattice, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/zpipe/down/supply{ + dir = 8 + }, +/obj/structure/railing, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "32-8" + }, +/turf/simulated/open, +/area/maintenance/chapel) +"ocK" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/bed/chair/comfy/brown{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/space) +"odj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/aft) +"odX" = ( +/obj/structure/lightpost, +/obj/effect/floor_decal/grass_edge{ + dir = 6 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/grass, +/area/hydroponics/garden) +"odY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/maintenance/chapel) +"oeE" = ( +/obj/structure/catwalk, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/security/starboard) +"oeU" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/space) +"oeW" = ( +/turf/simulated/wall/prepainted/civilian, +/area/crew_quarters/mimeoffice) +"ofd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/grass_edge, +/obj/item/reagent_containers/glass/bucket/wood, +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/grass, +/area/hydroponics/garden) +"ofn" = ( +/obj/machinery/light, +/obj/structure/table/rack, +/obj/item/tank/jetpack/oxygen, +/obj/item/tank/jetpack/oxygen, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/secondary/docking_hallway) +"ofG" = ( +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/mimeoffice) +"ogq" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"ogK" = ( +/turf/space/basic, +/area/exploration/meeting) +"ohW" = ( +/turf/simulated/open, +/area/hallway/secondary/civilian_hallway_mid) +"oiA" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden, +/obj/machinery/meter, +/obj/structure/catwalk, +/obj/structure/fuel_port{ + dir = 4; + pixel_y = -32 + }, +/turf/simulated/floor/plating, +/area/space) +"ojm" = ( +/turf/simulated/floor/carpet/bcarpet, +/area/chapel/main) +"okH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/aft) +"okP" = ( +/obj/effect/mist, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/victory/surfacebase/sauna) +"olt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/hallway/primary/aft) +"olB" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/aft) +"omA" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/monofloor{ + dir = 4 + }, +/area/space) +"omT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"onr" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/carpet/bcarpet, +/area/chapel/main) +"onw" = ( +/obj/machinery/mech_recharger, +/obj/machinery/camera/network/exploration, +/obj/machinery/light_switch{ + pixel_x = -9; + pixel_y = 30 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/shuttle/courser/general) +"ooD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass{ + dir = 8 + }, +/obj/machinery/door/airlock/command{ + name = "Head of Personnel's Living Quarters"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/head_office/head_of_personnel, +/turf/simulated/floor/tiled, +/area/crew_quarters/sleep/HOP_quarters) +"opm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/sauna) +"opn" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 1; + name = "Exploration Public Lobby" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled, +/area/hallway/primary/aft) +"opC" = ( +/obj/machinery/vending/boozeomat, +/turf/simulated/floor/plating, +/area/vacant/vacant_bar) +"oqH" = ( +/obj/machinery/camera/network/civilian{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/lounge) +"oqJ" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/hydroponics/garden) +"oqO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/bridge/hallway) +"osa" = ( +/obj/machinery/camera/network/civilian, +/turf/simulated/floor/tiled/techfloor/grid, +/area/victory/surfacebase/tram) +"otM" = ( +/obj/structure/flora/ausbushes/ppflowers, +/obj/effect/floor_decal/grass_edge{ + dir = 4 + }, +/obj/structure/closet/hydrant{ + pixel_x = 32 + }, +/turf/simulated/floor/grass, +/area/hydroponics/garden) +"ouH" = ( +/obj/structure/closet/crate/trashcart, +/obj/random/maintenance/cargo, +/obj/random/maintenance/cargo, +/turf/simulated/floor/plating, +/area/maintenance/cargo) +"ovp" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 + }, +/obj/machinery/meter{ + frequency = 1443; + id = "dist_aux_meter"; + name = "Distribution Loop" + }, +/turf/simulated/floor/plating, +/area/space) +"ovt" = ( +/obj/effect/floor_decal/chapel{ + dir = 1 + }, +/obj/structure/table/bench/wooden, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"own" = ( +/turf/simulated/wall/prepainted, +/area/maintenance/substation/security) +"owq" = ( +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/obj/structure/table/reinforced, +/obj/item/flashlight/lamp, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"owz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/effect/floor_decal/grass_edge{ + dir = 1 + }, +/turf/simulated/floor/grass, +/area/hydroponics/garden) +"oxc" = ( +/turf/simulated/wall/prepainted, +/area/maintenance/chapel) +"oxf" = ( +/obj/structure/table/woodentable, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/item/melee/chainofcommand, +/obj/item/coin/phoron{ + desc = "The face of the coin shows a portrait of the explorer who discovered the Virgo-Erigone system. The back depicts a Zodiac symbol that represents Virgo."; + name = "limited edition phoron coin" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"oxx" = ( +/obj/structure/bed/chair/sofa/black/left, +/turf/simulated/floor/carpet, +/area/medical/patient_wing) +"oyd" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"ozZ" = ( +/turf/simulated/wall/r_wall, +/area/hallway/secondary/docking_hallway) +"oAa" = ( +/obj/structure/mirror{ + dir = 4; + pixel_y = -32 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/clownoffice) +"oAh" = ( +/obj/structure/table/bench/wooden, +/obj/effect/mist, +/turf/simulated/floor/wood, +/area/victory/surfacebase/sauna) +"oAD" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/obj/machinery/fire_alarm/west_mount{ + pixel_x = -24 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/secondary/civilian_hallway_mid) +"oAT" = ( +/obj/structure/cable/green{ + dir = 1; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/security/starboard) +"oAZ" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/structure/catwalk, +/obj/item/radio/beacon/anchored, +/turf/simulated/floor/plating, +/area/space) +"oCc" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/secondary/civilian_hallway_mid) +"oCN" = ( +/turf/space/basic, +/area/shuttle/courser/general) +"oCT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/exploration/courser_dock) +"oCY" = ( +/turf/simulated/floor/tiled, +/area/teleporter) +"oDs" = ( +/obj/machinery/door/firedoor/glass{ + dir = 8 + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "bridge_lockdown"; + name = "Bridge Lockdown"; + opacity = 0 + }, +/obj/spawner/window/low_wall/borosillicate/reinforced/full, +/obj/effect/paint_stripe/commandblue, +/turf/simulated/floor/airless/ceiling, +/area/bridge) +"oDJ" = ( +/obj/structure/closet/secure_closet/explorer, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/item/tank/jetpack/oxygen, +/obj/machinery/camera/network/exploration, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/obj/item/reagent_containers/hypospray/autoinjector/biginjector/pain, +/obj/item/reagent_containers/hypospray/autoinjector/biginjector/healing_nanites, +/obj/item/binoculars, +/turf/simulated/floor/tiled/monotile, +/area/space) +"oDQ" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/security/starboard) +"oEf" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/lightpost, +/turf/simulated/floor/grass, +/area/hydroponics/garden) +"oEA" = ( +/obj/structure/undies_wardrobe, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/HOP_quarters) +"oFx" = ( +/turf/simulated/floor/wood, +/area/hallway/secondary/docking_hallway) +"oFO" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/sauna) +"oGx" = ( +/obj/structure/table/woodentable, +/obj/item/flashlight/lamp/green, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/library) +"oGE" = ( +/obj/structure/closet/crate, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/glass, +/turf/simulated/floor/plating, +/area/maintenance/security/starboard) +"oHN" = ( +/obj/effect/floor_decal/techfloor{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/hallway/primary/aft) +"oHX" = ( +/obj/machinery/shower{ + pixel_y = 8 + }, +/obj/structure/curtain/open/shower{ + anchored = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/victory/surfacebase/sauna) +"oIm" = ( +/obj/structure/closet, +/obj/item/clothing/under/suit_jacket/red, +/obj/item/barcodescanner, +/obj/item/pen/invisible, +/obj/item/pen/invisible, +/obj/item/pen/invisible, +/obj/machinery/power/apc/north_mount, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/turf/simulated/floor/carpet/bcarpet, +/area/library/study) +"oIG" = ( +/obj/machinery/power/breakerbox/activated{ + RCon_tag = "SECURITY" + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/security) +"oIZ" = ( +/obj/structure/table/woodentable, +/obj/item/storage/box/matches, +/turf/simulated/floor/wood, +/area/maintenance/security/starboard) +"oKe" = ( +/obj/machinery/fire_alarm/south_mount{ + pixel_y = -25 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/cargo) +"oKo" = ( +/obj/machinery/fire_alarm/north_mount, +/turf/simulated/floor/tiled/dark, +/area/hallway/secondary/docking_hallway) +"oLF" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/maintenance/tool_storage) +"oNi" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/floor_decal/grass_edge{ + dir = 8 + }, +/turf/simulated/floor/grass, +/area/hydroponics/garden) +"oNQ" = ( +/obj/structure/table/bench/steel, +/obj/landmark/spawnpoint/job/pilot, +/turf/simulated/floor/tiled, +/area/space) +"oOx" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"oOB" = ( +/obj/machinery/door/firedoor/glass{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/spawner/window/low_wall/reinforced/full, +/obj/effect/paint_stripe/commandblue, +/turf/simulated/floor/tiled, +/area/victory/station/stairs_four) +"oOL" = ( +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/voidcraft/vertical{ + name = "Cockpit" + }, +/turf/simulated/floor/tiled/old_tile/green, +/area/shuttle/civvie/cockpit) +"oOQ" = ( +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/machinery/power/apc/north_mount, +/turf/simulated/floor/tiled/dark, +/area/victory/station/stairs_four) +"oPo" = ( +/turf/space/basic, +/area/bridge) +"oPW" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/glass, +/obj/machinery/door/firedoor/glass{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/secondary/civilian_hallway_mid) +"oQY" = ( +/obj/structure/barricade, +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/maintenance/security/starboard) +"oRw" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"oRQ" = ( +/obj/structure/table/rack/shelf, +/obj/item/tank/oxygen, +/obj/item/suit_cooling_unit, +/obj/item/storage/backpack/parachute, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/space) +"oSx" = ( +/obj/item/radio/intercom{ + pixel_y = -24 + }, +/obj/structure/table/rack/shelf, +/obj/item/tank/oxygen, +/obj/item/suit_cooling_unit, +/obj/item/storage/backpack/parachute, +/turf/simulated/floor/tiled, +/area/space) +"oSJ" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/structure/flora/pottedplant/stoutbush, +/turf/simulated/floor/tiled, +/area/space) +"oTA" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/aft) +"oUz" = ( +/obj/machinery/power/apc/north_mount, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/turf/simulated/floor/lino, +/area/chapel/office) +"oUM" = ( +/obj/structure/filingcabinet/tall, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"oVe" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/exploration) +"oVm" = ( +/obj/machinery/air_alarm{ + frequency = 1441; + pixel_y = 22 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/lounge) +"oVo" = ( +/obj/machinery/light/small, +/mob/living/simple_mob/animal/passive/mouse/rat, +/turf/simulated/floor/plating, +/area/maintenance/security/starboard) +"oWB" = ( +/obj/effect/floor_decal/techfloor, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/hallway/primary/aft) +"oWX" = ( +/obj/structure/bed/chair/comfy/red, +/obj/item/toy/plushie/coffee_fox, +/turf/simulated/floor/wood/broken, +/area/maintenance/central) +"oXK" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/victory/station/stairs_four) +"oYa" = ( +/obj/effect/floor_decal/techfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/landmark/spawnpoint/overflow/station, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"oYe" = ( +/obj/item/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 21 + }, +/obj/effect/floor_decal/techfloor{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/hallway/primary/aft) +"oYj" = ( +/turf/simulated/floor/plating, +/area/maintenance/security/port) +"oYx" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/table/bench/wooden, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"oYJ" = ( +/obj/machinery/air_alarm{ + frequency = 1441; + pixel_y = 22; + target_temperature = 275.15 + }, +/obj/structure/table/bench/wooden, +/turf/simulated/floor/tiled/freezer, +/area/victory/surfacebase/sauna) +"oYV" = ( +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/obj/structure/closet/hydrant{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/secondary/civilian_hallway_mid) +"oZw" = ( +/obj/structure/bed/double/padded, +/obj/item/bedsheet/bluedouble, +/turf/simulated/floor/carpet/tealcarpet, +/area/crew_quarters/sleep/CMO_quarters) +"oZB" = ( +/obj/machinery/power/breakerbox/activated{ + RCon_tag = "BRIDGE" + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/command) +"pbo" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Security Maintenance Access" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/security/starboard) +"pbT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/chapel/main) +"pbY" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/brigdoor/eastright{ + dir = 1; + req_access = null; + req_one_access = list(1,38) + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"pcK" = ( +/turf/simulated/wall/prepainted, +/area/maintenance/tool_storage) +"pcR" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + dir = 2; + id = "cafe"; + layer = 3.1; + name = "Cafe Shutters" + }, +/obj/structure/table/marble, +/obj/item/storage/box/donut, +/turf/simulated/floor/lino, +/area/crew_quarters/coffee_shop) +"pdu" = ( +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/chapel) +"pdw" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/space) +"pdK" = ( +/obj/structure/closet/crate, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/glass, +/turf/simulated/floor/plating, +/area/vacant/vacant_bar) +"peJ" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/heads/hop) +"pfk" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/secondary/docking_hallway) +"pfA" = ( +/obj/effect/floor_decal/chapel{ + dir = 4 + }, +/obj/structure/table/bench/wooden, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"pfG" = ( +/obj/structure/sign/directions/medical{ + dir = 1; + pixel_y = 42 + }, +/obj/structure/sign/directions/command{ + dir = 4; + pixel_y = 36 + }, +/obj/structure/sign/directions/science{ + dir = 1; + pixel_y = 30 + }, +/obj/structure/sign/directions/security{ + pixel_y = 24 + }, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/hallway/primary/aft) +"pfO" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/maintenance/cargo) +"pgc" = ( +/turf/simulated/floor/carpet, +/area/bridge/meeting_room) +"pgF" = ( +/obj/effect/floor_decal/spline/plain, +/obj/effect/mist, +/turf/simulated/floor/water/pool, +/area/victory/surfacebase/sauna) +"pgL" = ( +/turf/simulated/floor/tiled/techfloor/grid, +/area/hallway/primary/aft) +"pgT" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"phb" = ( +/obj/machinery/camera/network/command{ + dir = 1 + }, +/obj/structure/closet/fireaxecabinet{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/dogbed{ + desc = "A bed made just for the Facility Director's fox."; + name = "Renault's Bed" + }, +/mob/living/simple_mob/animal/passive/fox/renault, +/turf/simulated/floor/carpet/purcarpet, +/area/bridge) +"phc" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/CMO_quarters) +"phr" = ( +/obj/random/maintenance/security, +/obj/structure/closet/crate, +/turf/simulated/floor/plating, +/area/maintenance/security/starboard) +"phG" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/space) +"piy" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 6 + }, +/obj/structure/table/reinforced, +/obj/item/clipboard, +/obj/machinery/newscaster{ + pixel_x = 27 + }, +/obj/item/storage/briefcase{ + pixel_x = 3 + }, +/turf/simulated/floor/carpet/blucarpet, +/area/lawoffice) +"piB" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/carpet/purcarpet, +/area/crew_quarters/coffee_shop) +"pjH" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/structure/filingcabinet/chestdrawer, +/turf/simulated/floor/wood, +/area/lawoffice) +"pjL" = ( +/obj/machinery/door/firedoor, +/obj/machinery/cryopod/robot/door/shuttle, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/tram) +"pkq" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/turf/simulated/floor/water/pool, +/area/victory/surfacebase/sauna) +"plb" = ( +/obj/structure/closet/firecloset, +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -23 + }, +/turf/simulated/floor/plating, +/area/maintenance/chapel) +"plx" = ( +/obj/structure/bookcase/legal/combo, +/obj/item/book/manual/standard_operating_procedure, +/obj/item/book/manual/security_space_law, +/obj/item/book/manual/command_guide, +/turf/simulated/floor/wood, +/area/library) +"plz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood, +/area/hydroponics/garden) +"pmD" = ( +/obj/item/flashlight/lantern, +/obj/structure/table/standard, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 4 + }, +/obj/machinery/newscaster{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled, +/area/space) +"pmV" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Security Maintenance Access" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/hallway/primary/aft) +"pnz" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/sleep/HOP_quarters) +"pob" = ( +/turf/simulated/floor/tiled, +/area/space) +"pop" = ( +/obj/structure/closet, +/obj/random/maintenance/security, +/obj/random/maintenance/medical, +/turf/simulated/floor/plating, +/area/maintenance/security/starboard) +"poA" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/monofloor{ + dir = 8 + }, +/area/space) +"poP" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass{ + dir = 8 + }, +/obj/machinery/door/airlock/research{ + name = "Pathfinder's Office" + }, +/obj/map_helper/access_helper/airlock/station/head_office/pathfinder, +/turf/simulated/floor/tiled, +/area/space) +"poQ" = ( +/obj/structure/closet/hydrant{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/victory/surfacebase/tram) +"pqe" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/bridge/office) +"pqr" = ( +/obj/machinery/power/apc/west_mount{ + cell_type = /obj/item/cell/super + }, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"pqO" = ( +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/aft) +"prQ" = ( +/obj/machinery/computer/teleporter, +/turf/simulated/floor/tiled, +/area/teleporter) +"prS" = ( +/obj/machinery/newscaster{ + pixel_x = -27 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"psb" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/computer/mecha, +/obj/effect/floor_decal/corner/purple{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"psc" = ( +/obj/structure/lattice, +/turf/space, +/area/space) +"pst" = ( +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/maintenance/cargo) +"pul" = ( +/turf/simulated/wall/prepainted/civilian, +/area/library/study) +"puC" = ( +/turf/simulated/floor/wood, +/area/lawoffice) +"puF" = ( +/obj/structure/bookcase, +/obj/item/book/manual/command_guide, +/turf/simulated/floor/wood, +/area/maintenance/security/starboard) +"puK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"pvb" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/shuttle/courser/general) +"pvg" = ( +/obj/effect/floor_decal/corner/blue/full{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"pvA" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/techfloor{ + dir = 6 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/hallway/secondary/civilian_hallway_mid) +"pvF" = ( +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/tree/sif, +/turf/simulated/floor/grass, +/area/hydroponics/garden) +"pwQ" = ( +/obj/machinery/photocopier, +/obj/machinery/fire_alarm/south_mount{ + pixel_y = -24 + }, +/obj/effect/floor_decal/corner/purple/full, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"pxb" = ( +/obj/effect/floor_decal/chapel{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"pxg" = ( +/obj/machinery/sleep_console, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/shuttle/excursion/general) +"pxF" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/aft) +"pxG" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/bridge/hallway) +"pyh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/hydroponics/garden) +"pzo" = ( +/turf/simulated/wall/r_wall/prepainted/exploration, +/area/crew_quarters/lounge) +"pzu" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/obj/item/stool/padded, +/turf/simulated/floor/lino, +/area/crew_quarters/coffee_shop) +"pAb" = ( +/obj/machinery/fire_alarm/south_mount{ + pixel_y = -24 + }, +/turf/simulated/floor/wood, +/area/hallway/secondary/docking_hallway) +"pAv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/obj/structure/shuttle/engine/heater{ + dir = 8 + }, +/turf/simulated/wall/r_wall/prepainted/exploration, +/area/space) +"pAD" = ( +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"pAM" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/grass, +/area/hydroponics/garden) +"pAX" = ( +/obj/machinery/sleep_console, +/turf/simulated/floor/tiled/white, +/area/exploration/explorer_prep) +"pBa" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/security/port) +"pBX" = ( +/obj/machinery/camera/network/exploration{ + dir = 1 + }, +/obj/structure/sign/warning/nosmoking_1{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"pDd" = ( +/obj/item/frame, +/turf/simulated/floor/plating, +/area/maintenance/security/starboard) +"pDq" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/sleep/HOP_quarters) +"pEy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/holopad, +/turf/simulated/floor/tiled, +/area/bridge/hallway) +"pEF" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/recharger/wallcharger{ + pixel_x = -24 + }, +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable/green, +/turf/simulated/floor/tiled, +/area/shuttle/excursion/general) +"pFN" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/central) +"pGg" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/vending/cola, +/turf/simulated/floor/wood, +/area/space) +"pGC" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 32 + }, +/obj/structure/dogbed, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/mob/living/simple_mob/animal/passive/dog/corgi/Lisa{ + desc = "It's Lisa, the exploration teams trusty Corgi." + }, +/turf/simulated/floor/tiled, +/area/space) +"pGO" = ( +/obj/machinery/vending/tool, +/turf/simulated/floor/tiled, +/area/maintenance/tool_storage) +"pGP" = ( +/obj/machinery/conveyor{ + id = "courser_magazine_1" + }, +/obj/machinery/door/window/northleft, +/obj/machinery/door/blast/regular{ + id = "courser_loading_1"; + name = "Magazine One Input" + }, +/turf/simulated/floor/plating, +/area/space) +"pIB" = ( +/obj/structure/closet, +/obj/item/clothing/under/suit_jacket/red, +/obj/item/barcodescanner, +/obj/item/pen/invisible, +/obj/item/pen/invisible, +/obj/item/pen/invisible, +/turf/simulated/floor/carpet/bcarpet, +/area/library/study) +"pMo" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/space) +"pMy" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/bridge/meeting_room) +"pMT" = ( +/obj/machinery/light/small/emergency{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/chapel) +"pNt" = ( +/obj/spawner/window/low_wall/borosillicate/reinforced/full, +/obj/effect/paint_stripe/commandblue, +/turf/simulated/floor/airless/ceiling, +/area/bridge) +"pOh" = ( +/obj/structure/table/wooden_reinforced, +/turf/simulated/floor/carpet/gaycarpet, +/area/crew_quarters/clownoffice) +"pOB" = ( +/obj/machinery/door/firedoor/glass{ + dir = 8 + }, +/obj/map_helper/access_helper/airlock/station/hangar, +/obj/machinery/door/airlock/glass_external{ + name = "Exploration Emergency Exit"; + req_one_access = null + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exploration/excursion_dock) +"pOC" = ( +/turf/simulated/floor/grass, +/area/hydroponics/garden) +"pPU" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/space) +"pPX" = ( +/obj/machinery/light/flamp, +/turf/simulated/floor/wood, +/area/maintenance/security/starboard) +"pQg" = ( +/obj/structure/bed/chair/sofa/black/right{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/maintenance/security/starboard) +"pQo" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/storage/fancy/egg_box, +/obj/item/storage/fancy/egg_box, +/obj/item/storage/fancy/egg_box, +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/item/reagent_containers/food/condiment/sugar, +/obj/item/reagent_containers/food/condiment/sugar, +/obj/item/reagent_containers/food/condiment/sugar, +/turf/simulated/floor/tiled, +/area/crew_quarters/lounge/kitchen_freezer) +"pQu" = ( +/turf/simulated/floor/carpet, +/area/bridge/office) +"pQR" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 8; + name = "Exploration Prep"; + req_access = list() + }, +/obj/machinery/door/firedoor, +/obj/map_helper/access_helper/airlock/station/exploration/department, +/turf/simulated/floor/tiled, +/area/exploration/courser_dock) +"pRd" = ( +/obj/structure/catwalk, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/shuttle/excursion/cargo) +"pRD" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/victory/surfacebase/tram) +"pRV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/table/bench/wooden, +/turf/simulated/floor/wood, +/area/hydroponics/garden) +"pSS" = ( +/obj/structure/cable/cyan{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/shuttle/excursion/general) +"pTh" = ( +/obj/structure/closet/firecloset, +/turf/simulated/floor/plating, +/area/maintenance/cargo) +"pVE" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/exploration/explorer_prep) +"pWq" = ( +/obj/structure/sink/kitchen{ + dir = 4; + pixel_x = -12 + }, +/turf/simulated/floor/wood/broken, +/area/vacant/vacant_bar) +"pWM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exploration/excursion_dock) +"pXa" = ( +/obj/structure/bed/chair/bay/comfy/black, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"pYI" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/sleep/CMO_quarters) +"qbH" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/chapel) +"qbM" = ( +/obj/structure/stairs/spawner/east, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/coffee_shop) +"qdu" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/techfloor, +/obj/machinery/computer/timeclock/premade/south, +/turf/simulated/floor/tiled/dark, +/area/hallway/secondary/civilian_hallway_mid) +"qdx" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/ship_munition/disperser_charge/mining, +/turf/simulated/floor/tiled/dark, +/area/space) +"qdE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/flora/ausbushes/brflowers, +/obj/effect/floor_decal/grass_edge{ + dir = 1 + }, +/obj/structure/railing, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/camera/network/civilian, +/turf/simulated/floor/grass, +/area/hydroponics/garden) +"qdM" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/holopad, +/turf/simulated/floor/tiled/dark, +/area/victory/station/stairs_four) +"qey" = ( +/obj/landmark/spawnpoint/job/pathfinder, +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/space) +"qeJ" = ( +/obj/structure/table/marble, +/obj/item/material/knife/butch, +/obj/item/material/kitchen/rollingpin, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/crew_quarters/lounge/kitchen_freezer) +"qeP" = ( +/obj/structure/table/marble, +/obj/machinery/photocopier/faxmachine{ + department = "Command Meeting Room" + }, +/turf/simulated/floor/wood, +/area/bridge/meeting_room) +"qeV" = ( +/obj/effect/floor_decal/spline/fancy{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/excursion/general) +"qeZ" = ( +/turf/simulated/wall/r_wall/prepainted/exploration, +/area/shuttle/excursion/cockpit) +"qfo" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/power/terminal{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/security) +"qfY" = ( +/obj/machinery/air_alarm{ + frequency = 1441; + pixel_y = 22 + }, +/turf/simulated/floor/tiled, +/area/space) +"qhn" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/command{ + id_tag = "captaindoor"; + name = "Facility Director's Office"; + req_one_access = null + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "bridge_lockdown"; + name = "Bridge Lockdown"; + opacity = 0 + }, +/obj/map_helper/access_helper/airlock/station/head_office/captain, +/turf/simulated/floor/tiled/steel_grid, +/area/bridge) +"qhA" = ( +/obj/machinery/camera/network/exploration{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/closet/secure_closet/sar{ + req_access = list(5); + req_one_access = list(5) + }, +/obj/item/storage/box/pillbottles, +/obj/item/storage/box/syringes, +/obj/item/tank/jetpack/oxygen, +/obj/item/storage/backpack/parachute, +/obj/item/clothing/accessory/permit/gun/planetside, +/turf/simulated/floor/tiled/monotile, +/area/exploration/medical) +"qhK" = ( +/obj/structure/catwalk, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/chapel) +"qik" = ( +/obj/machinery/door/firedoor, +/obj/map_helper/airlock/door/ext_door, +/obj/machinery/door/airlock/glass_external{ + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/exploration/department, +/turf/simulated/floor/tiled, +/area/space) +"qjK" = ( +/obj/structure/window/reinforced/tinted/frosted{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/full{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/item/flashlight/lamp, +/obj/machinery/recharger, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"qjN" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"qko" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"qkB" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"qkE" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/command{ + id_tag = "captaindoor"; + name = "Facility Director's Office"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/head_office/captain, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/captain) +"qlh" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/victory/surfacebase/tram) +"qln" = ( +/obj/machinery/door/airlock/command{ + name = "Bridge Meeting Room"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/command/bridge, +/turf/simulated/floor/wood, +/area/bridge/meeting_room) +"qlw" = ( +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "cockpit_lockdown"; + name = "Cockpit Lockdown"; + opacity = 0 + }, +/obj/spawner/window/low_wall/borosillicate/full, +/obj/effect/paint_stripe/violet, +/turf/simulated/shuttle/floor/voidcraft, +/area/shuttle/excursion/cockpit) +"qmC" = ( +/obj/structure/table/woodentable, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"qnv" = ( +/turf/simulated/floor/wood, +/area/bridge/meeting_room) +"qnG" = ( +/obj/machinery/airlock_sensor{ + id_tag = "expshuttle_dock"; + pixel_y = -24 + }, +/obj/map_helper/airlock/atmos/chamber_pump, +/obj/map_helper/airlock/sensor/chamber_sensor, +/obj/machinery/atmospherics/component/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1380; + id_tag = "expshuttle_dock_pump" + }, +/turf/simulated/floor/tiled, +/area/space) +"qoL" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/carpet/tealcarpet, +/area/shuttle/civvie/general) +"qoS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/teleporter) +"qoX" = ( +/turf/simulated/floor/wood, +/area/crew_quarters/mimeoffice) +"qqq" = ( +/turf/simulated/open, +/area/crew_quarters/lounge) +"qrE" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/sleep/HOP_quarters) +"qrY" = ( +/obj/machinery/air_alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"qsh" = ( +/obj/structure/dogbed{ + name = "pet bed" + }, +/obj/machinery/button/windowtint{ + id = "hop_bedroom"; + pixel_y = 25 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/sleep/HOP_quarters) +"qtB" = ( +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/turf/simulated/floor/wood, +/area/hydroponics/garden) +"qum" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/lounge/kitchen_freezer) +"quA" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/machinery/camera/network/exploration{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exploration/medical) +"quB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/space) +"quF" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 1 + }, +/obj/landmark{ + name = "blobstart" + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"qva" = ( +/obj/effect/floor_decal/techfloor/orange, +/obj/machinery/fire_alarm/south_mount{ + pixel_y = -24 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"qvn" = ( +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/obj/machinery/camera/network/civilian{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/tram) +"qvM" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/turf/simulated/floor/tiled, +/area/space) +"qwZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/secondary/docking_hallway) +"qxi" = ( +/obj/machinery/computer/communications{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"qxW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/closet/hydrant{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exploration/excursion_dock) +"qyg" = ( +/obj/machinery/light, +/obj/effect/floor_decal/industrial/warning/full, +/obj/structure/stasis_cage, +/turf/simulated/floor/plating, +/area/shuttle/excursion/cargo) +"qyL" = ( +/turf/simulated/shuttle/wall/voidcraft/blue, +/area/hallway/primary/aft) +"qzd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/space) +"qzh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/bridge/office) +"qzE" = ( +/obj/structure/flora/pottedplant/stoutbush, +/turf/simulated/floor/wood, +/area/lawoffice) +"qzG" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/techfloor, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/secondary/civilian_hallway_mid) +"qzP" = ( +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -23 + }, +/turf/simulated/floor/plating, +/area/maintenance/chapel) +"qAx" = ( +/obj/machinery/light/small/emergency{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/chapel) +"qBc" = ( +/obj/machinery/shield_diffuser, +/turf/simulated/floor/airless/ceiling, +/area/hallway/secondary/docking_hallway) +"qBg" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/floor_decal/grass_edge, +/obj/structure/lightpost, +/turf/simulated/floor/grass, +/area/hydroponics/garden) +"qBy" = ( +/obj/machinery/computer/med_data{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"qCb" = ( +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/lounge/kitchen_freezer) +"qCw" = ( +/obj/machinery/door/airlock/voidcraft/vertical, +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "cockpit_lockdown"; + name = "Cockpit Lockdown"; + opacity = 0 + }, +/turf/simulated/floor/tiled, +/area/shuttle/excursion/cockpit) +"qDT" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/captain) +"qDU" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/landmark/spawnpoint/job/captain, +/obj/item/storage/secure/safe{ + pixel_x = -28 + }, +/obj/machinery/button/remote/airlock{ + dir = 4; + id = "captaindoor"; + name = "Office Doors"; + pixel_x = -28; + pixel_y = 23; + req_access = list(20) + }, +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "cap_office"; + name = "Security Shutters"; + pixel_x = -28; + pixel_y = 12 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"qEL" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/aft) +"qFo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/obj/structure/shuttle/engine/heater{ + dir = 4 + }, +/turf/simulated/wall/r_wall/prepainted/exploration, +/area/shuttle/excursion/cargo) +"qFN" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/light/small/emergency{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/exploration) +"qHn" = ( +/obj/machinery/door/morgue{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/clownoffice) +"qHM" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"qHS" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/heads/hop) +"qJG" = ( +/turf/simulated/wall/prepainted/command, +/area/maintenance/central) +"qJO" = ( +/obj/machinery/door/window/brigdoor/southleft{ + req_access = null + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/carpet/tealcarpet, +/area/shuttle/civvie/general) +"qJU" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/bridge/hallway) +"qKj" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/bridge/hallway) +"qKF" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "courser_magazine_1" + }, +/turf/simulated/floor/plating, +/area/space) +"qLk" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/hop) +"qLG" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/hydroponics/garden) +"qLQ" = ( +/obj/structure/bed/chair/wood{ + dir = 1 + }, +/turf/simulated/floor/carpet/gaycarpet, +/area/crew_quarters/clownoffice) +"qME" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/CE_quarters) +"qNu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/holopad, +/turf/simulated/floor/carpet, +/area/bridge/meeting_room) +"qOk" = ( +/obj/effect/floor_decal/corner_techfloor_grid{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/victory/surfacebase/sauna) +"qOl" = ( +/obj/structure/table/rack/shelf/steel, +/obj/item/stack/flag/red, +/turf/simulated/floor/plating, +/area/maintenance/security/starboard) +"qOz" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/machinery/fire_alarm/north_mount, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/aft) +"qPr" = ( +/obj/structure/table/marble, +/obj/machinery/chemical_dispenser/catering/bar_soft, +/turf/simulated/floor/wood, +/area/bridge/meeting_room) +"qPy" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"qQe" = ( +/obj/machinery/vending/mre, +/turf/simulated/floor/tiled, +/area/exploration/excursion_dock) +"qQg" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor/glass{ + dir = 8 + }, +/obj/structure/window/reinforced/polarized/full{ + id = "pathfinder_office" + }, +/obj/effect/paint_stripe/violet, +/obj/structure/wall_frame/prepainted, +/turf/simulated/floor/plating, +/area/space) +"qQJ" = ( +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + frequency = 1380; + id_tag = "expshuttle_dock"; + pixel_y = 32; + req_one_access = list(19,43,67) + }, +/obj/machinery/atmospherics/component/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1380; + id_tag = "expshuttle_dock_pump" + }, +/obj/map_helper/airlock/atmos/chamber_pump, +/turf/simulated/floor/tiled, +/area/space) +"qQK" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/obj/machinery/power/apc/north_mount, +/obj/structure/cable/cyan{ + icon_state = "0-8" + }, +/turf/simulated/floor, +/area/shuttle/civvie/general) +"qRx" = ( +/obj/effect/floor_decal/techfloor/corner, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/aft) +"qRD" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/teleporter) +"qSq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/bookcase{ + name = "bookcase (Non-Fiction)" + }, +/obj/item/book/manual/tesla_engine, +/obj/item/book/custom_library/nonfiction, +/turf/simulated/floor/wood, +/area/library) +"qTb" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Bridge"; + req_one_access = null + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "bridge_lockdown"; + name = "Bridge Lockdown"; + opacity = 0 + }, +/obj/map_helper/access_helper/airlock/station/command/bridge, +/turf/simulated/floor/tiled, +/area/bridge) +"qTj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/captain) +"qTI" = ( +/turf/simulated/wall/r_wall/prepainted/exploration, +/area/exploration/excursion_dock) +"qTM" = ( +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/CE_quarters) +"qTR" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/security) +"qUM" = ( +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/tram) +"qVT" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/map_helper/airlock/door/ext_door, +/obj/map_helper/access_helper/airlock/station/exploration/department, +/obj/machinery/door/airlock/glass_external{ + req_one_access = null + }, +/turf/simulated/floor/tiled, +/area/space) +"qWg" = ( +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "shuttle_lockdown"; + name = "Shuttle Lockdown"; + opacity = 0 + }, +/obj/spawner/window/low_wall/borosillicate/full, +/obj/effect/paint_stripe/violet, +/turf/simulated/shuttle/floor/voidcraft, +/area/shuttle/excursion/general) +"qWo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/bed/chair/bay/comfy/black{ + dir = 4 + }, +/obj/machinery/button/remote/blast_door{ + dir = 8; + id = "sensor-shroud"; + name = "Sensor Shroud"; + pixel_x = 32; + req_access = list(19) + }, +/turf/simulated/floor/carpet/purcarpet, +/area/bridge) +"qWJ" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/machinery/button/windowtint{ + id = "chapel"; + pixel_x = -24; + pixel_y = 26 + }, +/turf/simulated/floor/lino, +/area/chapel/office) +"qWS" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/shuttle/excursion/general) +"qXp" = ( +/obj/structure/catwalk, +/obj/machinery/door/airlock/maintenance/medical{ + req_one_access = null + }, +/obj/machinery/door/firedoor/glass{ + dir = 8 + }, +/obj/map_helper/access_helper/airlock/station/medical/department, +/turf/simulated/floor/plating, +/area/maintenance/security/starboard) +"qXE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/full, +/obj/structure/anomaly_container, +/turf/simulated/floor/plating, +/area/shuttle/excursion/cargo) +"qXL" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/command) +"qYE" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/flora/ausbushes/genericbush, +/turf/simulated/floor/grass, +/area/hydroponics/garden) +"qYI" = ( +/obj/structure/shuttle/engine/heater{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/turf/simulated/shuttle/wall/voidcraft/green, +/area/shuttle/civvie/general) +"qZu" = ( +/obj/machinery/light/small, +/obj/machinery/fire_alarm/east_mount, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/CE_quarters) +"qZD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/carpet/bcarpet, +/area/chapel/main) +"qZR" = ( +/obj/structure/bookcase{ + name = "bookcase (Reference)" + }, +/obj/item/book/manual/evaguide, +/obj/item/book/custom_library/reference, +/turf/simulated/floor/wood, +/area/library) +"qZT" = ( +/obj/machinery/door/firedoor/glass{ + dir = 8 + }, +/obj/machinery/door/airlock/glass, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/aft) +"raA" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/heads/hop) +"raV" = ( +/obj/structure/bed/chair, +/turf/simulated/floor/wood, +/area/lawoffice) +"rba" = ( +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/bridge/hallway) +"rbl" = ( +/obj/structure/closet/wardrobe, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/HOP_quarters) +"rbp" = ( +/obj/machinery/door/blast/regular, +/turf/simulated/floor/plating, +/area/victory/surfacebase/tram) +"rbv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood, +/area/crew_quarters/coffee_shop) +"rbW" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/sauna) +"rcm" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"rcq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/hallway/secondary/docking_hallway) +"rdf" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/lawoffice) +"rdn" = ( +/obj/machinery/air_alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/carpet/blue, +/area/crew_quarters/heads/blueshield) +"rdz" = ( +/turf/simulated/floor/tiled, +/area/exploration/explorer_prep) +"rdJ" = ( +/turf/simulated/wall/prepainted/exploration, +/area/space) +"reN" = ( +/obj/landmark/spawnpoint/overflow/station, +/turf/simulated/floor/tiled/techfloor/grid, +/area/hallway/primary/aft) +"rfr" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/machinery/camera/network/civilian{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/space) +"rgW" = ( +/turf/simulated/floor/carpet, +/area/maintenance/security/starboard) +"rhG" = ( +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + dir = 4; + frequency = 1380; + id_tag = "deck4_dockarm2"; + pixel_x = -26 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/obj/machinery/meter{ + frequency = 1443; + id = "dist_aux_meter"; + name = "Distribution Loop" + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"rhR" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/effect/floor_decal/grass_edge{ + dir = 4 + }, +/turf/simulated/floor/grass, +/area/hydroponics/garden) +"rip" = ( +/obj/item/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 21 + }, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/aft) +"ris" = ( +/turf/space/basic, +/area/exploration/showers) +"riK" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/space) +"rkb" = ( +/obj/structure/table/reinforced, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/item/radio{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/radio{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/radio{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/radio{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/machinery/light, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/turf/simulated/floor/tiled, +/area/maintenance/tool_storage) +"rku" = ( +/obj/structure/bed/chair/sofa/black{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/maintenance/security/starboard) +"rln" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/sauna) +"rlA" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood, +/area/crew_quarters/coffee_shop) +"rlK" = ( +/obj/machinery/fire_alarm/north_mount, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/aft) +"rnI" = ( +/obj/machinery/porta_turret/crescent{ + density = 1; + faction = "neutral" + }, +/turf/simulated/floor/plating{ + initial_gas_mix = "TEMP=2.7" + }, +/area/bridge) +"rou" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/table/woodentable, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen/invisible, +/obj/machinery/button/windowtint{ + id = "library_study"; + pixel_x = 26; + pixel_y = -26 + }, +/obj/item/radio/intercom{ + pixel_y = -28 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/library/study) +"roT" = ( +/obj/machinery/power/apc/west_mount{ + cell_type = /obj/item/cell/super + }, +/obj/structure/cable/green, +/turf/simulated/floor/tiled, +/area/teleporter) +"rpb" = ( +/obj/landmark/spawnpoint/job/lawyer, +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/simulated/floor/carpet/blucarpet, +/area/lawoffice) +"rpR" = ( +/obj/machinery/power/apc/east_mount, +/obj/structure/cable/cyan{ + icon_state = "0-8" + }, +/turf/simulated/floor/tiled, +/area/shuttle/excursion/general) +"rqs" = ( +/obj/machinery/camera/network/civilian, +/turf/simulated/floor/wood, +/area/library) +"rqv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/structure/sign/department/bridge, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "bridge_lockdown"; + name = "Bridge Lockdown"; + opacity = 0 + }, +/obj/spawner/window/low_wall/reinforced/full, +/turf/simulated/floor/plating, +/area/bridge) +"rqD" = ( +/obj/machinery/power/breakerbox/activated{ + RCon_tag = "DECK 4" + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/exploration) +"rqI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/victory/surfacebase/tram) +"rui" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/bridge/hallway) +"rvv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"rwD" = ( +/obj/effect/floor_decal/sign/dock/two, +/turf/simulated/wall/r_wall/prepainted, +/area/space) +"rxu" = ( +/obj/structure/table/bench/wooden, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"rxS" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/ship_munition/disperser_charge/fire, +/obj/machinery/door/window/brigdoor/westright{ + req_access = null; + req_one_access = list(44,67) + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"ryd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exploration/excursion_dock) +"rzs" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/space) +"rzL" = ( +/obj/machinery/holopad, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/hydroponics/garden) +"rzS" = ( +/obj/machinery/fire_alarm/south_mount{ + pixel_y = -24 + }, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/crew_quarters/coffee_shop) +"rBw" = ( +/obj/structure/bed/chair/sofa/left{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/maintenance/security/starboard) +"rBP" = ( +/mob/living/simple_mob/animal/passive/honkpet, +/turf/simulated/floor/carpet/gaycarpet, +/area/crew_quarters/clownoffice) +"rBZ" = ( +/obj/machinery/media/jukebox{ + icon_state = "superjuke-nopower"; + state_base = "superjuke" + }, +/obj/machinery/light, +/turf/simulated/floor/wood, +/area/crew_quarters/coffee_shop) +"rCH" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/item/folder{ + pixel_x = -4 + }, +/obj/item/folder/blue{ + pixel_x = 5 + }, +/obj/item/folder/red{ + pixel_y = 3 + }, +/obj/item/folder/yellow, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 5 + }, +/turf/simulated/floor/carpet/blucarpet, +/area/lawoffice) +"rCI" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass{ + dir = 8 + }, +/obj/machinery/door/airlock/glass, +/turf/simulated/floor/tiled/dark, +/area/hallway/secondary/civilian_hallway_mid) +"rCU" = ( +/obj/effect/floor_decal/spline/plain, +/obj/machinery/button/windowtint{ + id = "lawyer_blast"; + pixel_y = -36 + }, +/obj/machinery/light_switch{ + pixel_y = -26 + }, +/turf/simulated/floor/wood, +/area/lawoffice) +"rEd" = ( +/obj/structure/bed/double/padded, +/obj/item/bananapeel, +/obj/item/bedsheet/clowndouble, +/turf/simulated/floor/wood, +/area/crew_quarters/clownoffice) +"rEv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/computer/ship/navigation/telescreen{ + pixel_y = 27 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/captain) +"rEF" = ( +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 9 + }, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/space) +"rEK" = ( +/obj/machinery/door/blast/regular{ + dir = 8; + id = "courser_cannon_shroud"; + name = "Cannon Barrel Shutter" + }, +/turf/simulated/floor/plating, +/area/space) +"rFF" = ( +/obj/structure/sign/directions/evac{ + dir = 8 + }, +/turf/simulated/wall/prepainted/command, +/area/lawoffice) +"rFT" = ( +/obj/structure/table/woodentable, +/obj/item/flashlight/lamp{ + pixel_y = 10 + }, +/obj/machinery/camera/network/civilian{ + dir = 4 + }, +/turf/simulated/floor/lino, +/area/chapel/office) +"rGc" = ( +/obj/machinery/disperser/front{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/space) +"rGD" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/maintenance/engi{ + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/substation/exploration) +"rIW" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "courser_magazine_2" + }, +/obj/machinery/door/window/southleft, +/obj/machinery/door/blast/regular{ + id = "courser_loading_2"; + name = "Magazine Two Input" + }, +/turf/simulated/floor/plating, +/area/space) +"rJw" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/victory/surfacebase/tram) +"rJD" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/wood, +/area/library) +"rKu" = ( +/obj/machinery/door/window/brigdoor/eastright{ + req_access = null; + req_one_access = list(44,67) + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/red, +/obj/structure/ship_munition/disperser_charge/explosive, +/turf/simulated/floor/tiled/dark, +/area/space) +"rKA" = ( +/turf/simulated/floor/wood, +/area/space) +"rKO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exploration/excursion_dock) +"rLV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/table/woodentable, +/obj/item/flashlight/lamp/green, +/turf/simulated/floor/wood, +/area/library) +"rNe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/wall/r_wall/prepainted/exploration, +/area/shuttle/excursion/cargo) +"rOm" = ( +/obj/effect/floor_decal/chapel{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"rOW" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/security/starboard) +"rPt" = ( +/obj/machinery/light{ + dir = 8; + light_range = 12 + }, +/turf/simulated/floor/tiled/dark, +/area/exploration/courser_dock) +"rQb" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"rQc" = ( +/obj/item/radio/intercom{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/library/study) +"rQl" = ( +/turf/simulated/wall/r_wall/prepainted/command, +/area/space) +"rRi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/lino, +/area/chapel/office) +"rRJ" = ( +/obj/structure/table/woodentable, +/obj/item/book/codex/lore/news, +/turf/simulated/floor/wood, +/area/library) +"rSk" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 10 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = -31 + }, +/turf/simulated/floor/tiled, +/area/bridge/hallway) +"rSO" = ( +/obj/machinery/light, +/obj/machinery/fire_alarm/south_mount{ + pixel_y = -24 + }, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/space) +"rTr" = ( +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "bridge_lockdown"; + name = "Bridge Lockdown"; + opacity = 0 + }, +/obj/spawner/window/low_wall/borosillicate/reinforced/full, +/obj/effect/paint_stripe/commandblue, +/turf/simulated/shuttle/floor/voidcraft, +/area/bridge) +"rTs" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/coffee_shop) +"rTu" = ( +/turf/space/basic, +/area/exploration/courser_dock) +"rTZ" = ( +/turf/simulated/floor/tiled, +/area/victory/surfacebase/tram) +"rUz" = ( +/obj/machinery/computer/ship/navigation/telescreen{ + pixel_y = -37 + }, +/obj/structure/table/bench/steel, +/obj/landmark/spawnpoint/job/field_medic, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/space) +"rUF" = ( +/obj/spawner/window/low_wall/reinforced/full, +/obj/machinery/door/firedoor/glass, +/obj/structure/curtain/black{ + anchored = 1 + }, +/turf/simulated/floor/airless, +/area/maintenance/security/starboard) +"rUP" = ( +/obj/machinery/light/small/emergency{ + dir = 8 + }, +/obj/structure/railing, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/security/starboard) +"rVB" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/bridge/hallway) +"rVI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/hydroponics/soil, +/turf/simulated/floor/grass, +/area/hydroponics/garden) +"rVV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/table/marble, +/turf/simulated/floor/carpet, +/area/bridge/meeting_room) +"rVX" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/library) +"rWf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/shuttle/wall/voidcraft/green, +/area/shuttle/civvie/general) +"rWo" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/aft) +"rXg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/library) +"rXv" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/sign/warning/bomb_range{ + name = "\improper LIVE ORDINANCE"; + pixel_y = -32 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"rXx" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 1 + }, +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled, +/area/bridge/hallway) +"rXC" = ( +/turf/simulated/floor/tiled, +/area/maintenance/tool_storage) +"rXE" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled/techfloor/grid, +/area/hallway/secondary/civilian_hallway_mid) +"rYj" = ( +/obj/machinery/camera/network/exploration, +/turf/simulated/floor/tiled/monofloor{ + dir = 4 + }, +/area/space) +"rZl" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/turf/simulated/floor/wood, +/area/hydroponics/garden) +"saq" = ( +/obj/machinery/iv_drip, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/exploration/medical) +"saB" = ( +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/obj/machinery/holopad/ship, +/turf/simulated/floor/tiled, +/area/shuttle/excursion/general) +"saT" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/table/woodentable, +/turf/simulated/floor/tiled, +/area/space) +"saW" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/crate, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/rods, +/obj/fiftyspawner/glass, +/turf/simulated/floor/tiled, +/area/maintenance/cargo) +"sbD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/grass, +/area/hydroponics/garden) +"sbG" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/beige/bordercorner, +/turf/simulated/floor/tiled, +/area/bridge/hallway) +"scr" = ( +/obj/machinery/fire_alarm/north_mount, +/obj/structure/closet/crate/secure/weapon, +/turf/simulated/floor/tiled, +/area/space) +"scH" = ( +/obj/machinery/computer/transhuman/resleeving{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"scN" = ( +/obj/structure/bookcase{ + name = "bookcase (Non-Fiction)" + }, +/turf/simulated/floor/wood, +/area/library) +"scX" = ( +/obj/machinery/lathe/autolathe, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/shuttle/excursion/cargo) +"sdd" = ( +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/aft) +"sdx" = ( +/obj/structure/flora/pottedplant/stoutbush, +/obj/structure/table/woodentable, +/turf/simulated/floor/lino, +/area/chapel/office) +"seH" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/closet/hydrant{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/victory/surfacebase/tram) +"sfh" = ( +/obj/structure/table/reinforced, +/obj/machinery/air_alarm/alarms_hidden{ + dir = 8; + pixel_x = 27 + }, +/obj/machinery/computer/ship/navigation/telescreen{ + pixel_y = 27 + }, +/turf/simulated/floor/carpet/tealcarpet, +/area/shuttle/civvie/general) +"sfB" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/CMO_quarters) +"sfX" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/wood, +/area/library) +"sgq" = ( +/obj/machinery/power/apc/south_mount, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/security/port) +"sgr" = ( +/obj/machinery/door/blast/regular{ + id = "gateway"; + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exploration/courser_dock) +"sho" = ( +/obj/effect/floor_decal/techfloor/orange, +/obj/machinery/light, +/turf/simulated/floor/tiled/dark, +/area/space) +"shJ" = ( +/obj/machinery/fire_alarm/south_mount{ + pixel_y = -24 + }, +/obj/machinery/light/small, +/obj/machinery/photocopier, +/turf/simulated/floor/wood, +/area/library) +"sja" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"sjw" = ( +/obj/machinery/air_alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/tram) +"sjP" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/space) +"skd" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/aft) +"skf" = ( +/obj/map_helper/airlock/door/ext_door, +/obj/machinery/door/airlock/voidcraft/vertical, +/turf/simulated/floor/tiled/old_tile/green, +/area/shuttle/civvie/general) +"skq" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/effect/floor_decal/grass_edge{ + dir = 9 + }, +/turf/simulated/floor/grass, +/area/hydroponics/garden) +"sks" = ( +/obj/machinery/door/window/brigdoor/northleft{ + req_access = null + }, +/obj/structure/bed/chair/shuttle{ + dir = 4 + }, +/turf/simulated/floor/carpet/tealcarpet, +/area/shuttle/civvie/general) +"skI" = ( +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/spawner/window/low_wall/borosillicate/reinforced/full, +/obj/effect/paint_stripe/commandblue, +/turf/simulated/shuttle/floor/voidcraft, +/area/bridge/meeting_room) +"sle" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/table/bench/padded, +/turf/simulated/floor/plating, +/area/vacant/vacant_bar) +"sly" = ( +/obj/item/pen/crayon/mime, +/obj/item/pen/crayon/marker/mime, +/obj/item/cartridge/mime, +/obj/item/bedsheet/mime, +/obj/item/toy/figure/mime, +/obj/item/clothing/under/sexymime, +/obj/item/clothing/shoes/mime, +/obj/item/clothing/mask/gas/sexymime, +/obj/item/clothing/head/soft/mime, +/obj/structure/closet/secure_closet{ + desc = "..."; + name = "silent storage"; + req_one_access = list(138) + }, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/mimeoffice) +"smi" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = -31 + }, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/light, +/turf/simulated/floor/carpet/purcarpet, +/area/bridge) +"sne" = ( +/obj/machinery/shower{ + pixel_y = 8 + }, +/obj/structure/curtain/open/shower{ + anchored = 1 + }, +/turf/simulated/floor/tiled/white, +/area/victory/surfacebase/sauna) +"snQ" = ( +/obj/machinery/door/firedoor/glass, +/obj/spawner/window/low_wall/full/nogrille, +/turf/simulated/floor, +/area/maintenance/tool_storage) +"spc" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/flora/ausbushes/grassybush, +/turf/simulated/floor/grass, +/area/hydroponics/garden) +"sqa" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/tram) +"sqd" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor/grid, +/area/victory/surfacebase/tram) +"srQ" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/carpet/bcarpet, +/area/chapel/main) +"ssc" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/bridge/hallway) +"ssu" = ( +/obj/structure/closet/secure_closet/explorer, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/item/tank/jetpack/oxygen, +/obj/item/reagent_containers/hypospray/autoinjector/biginjector/pain, +/obj/item/reagent_containers/hypospray/autoinjector/biginjector/healing_nanites, +/obj/item/binoculars, +/turf/simulated/floor/tiled/monotile, +/area/space) +"ssZ" = ( +/obj/machinery/light/small/emergency{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/security/starboard) +"sti" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/hallway/primary/aft) +"stV" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Security Substation"; + req_one_access = null; + secured_wires = 1 + }, +/obj/map_helper/access_helper/airlock/station/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/substation/security) +"suA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exploration/excursion_dock) +"suU" = ( +/obj/machinery/bodyscanner{ + dir = 8 + }, +/obj/effect/floor_decal/corner_steel_grid{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/space) +"sve" = ( +/obj/structure/table/bench/wooden, +/obj/machinery/fire_alarm/south_mount{ + pixel_y = -25 + }, +/obj/effect/mist, +/turf/simulated/floor/wood, +/area/victory/surfacebase/sauna) +"svn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/railing, +/obj/structure/flora/ausbushes/ppflowers, +/turf/simulated/floor/grass, +/area/hydroponics/garden) +"svq" = ( +/turf/simulated/wall/r_wall/prepainted/command, +/area/teleporter) +"svY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"svZ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/cable/cyan{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/shuttle/excursion/general) +"swq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"syr" = ( +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/obj/machinery/fire_alarm/east_mount, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/aft) +"syO" = ( +/obj/structure/table/rack, +/obj/item/tank/air, +/obj/item/tank/air, +/turf/simulated/floor/plating, +/area/space) +"szl" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/multi_tile/metal{ + dir = 8; + icon_state = "door_locked"; + id_tag = "exp_gateway"; + locked = 1 + }, +/turf/simulated/floor/tiled, +/area/exploration/courser_dock) +"sAo" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/power/sensor{ + name = "Powernet Sensor - Command Subgrid"; + name_tag = "Command Subgrid" + }, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/command) +"sAS" = ( +/obj/machinery/camera/network/outside, +/turf/space, +/area/space) +"sBr" = ( +/obj/machinery/mech_recharger, +/obj/machinery/turretid/lethal{ + control_area = "\improper Gateway"; + pixel_y = 26; + req_access = null; + req_one_access = list(19,44) + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/shuttle/courser/general) +"sBt" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exploration/excursion_dock) +"sBI" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/closet/hydrant{ + pixel_x = 32 + }, +/obj/structure/table/woodentable, +/turf/simulated/floor/wood, +/area/space) +"sBP" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/disposal, +/turf/simulated/floor/tiled, +/area/crew_quarters/lounge/kitchen_freezer) +"sCh" = ( +/obj/structure/table/alien/blue{ + desc = "Is this imported?"; + name = "obscure table" + }, +/obj/item/reagent_containers/food/drinks/bottle/bottleofnothing, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/mimeoffice) +"sCW" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/maintenance/tool_storage) +"sDe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/holopad, +/turf/simulated/floor/carpet/bcarpet, +/area/library/study) +"sDi" = ( +/obj/machinery/vending/snack, +/turf/simulated/floor/wood, +/area/hydroponics/garden) +"sEx" = ( +/obj/effect/floor_decal/spline/fancy{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/shuttle/excursion/general) +"sEz" = ( +/turf/simulated/floor/lino, +/area/crew_quarters/coffee_shop) +"sEA" = ( +/turf/simulated/floor/wood, +/area/maintenance/security/starboard) +"sFn" = ( +/obj/machinery/light_switch{ + pixel_y = -26 + }, +/obj/machinery/photocopier/faxmachine{ + department = "Head of Personnel's Office" + }, +/obj/structure/table/reinforced, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/hop) +"sFr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/command{ + name = "Facility Director's Quarters"; + req_one_access = null + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "cd-blast"; + name = "Facility Director Lockdown"; + opacity = 0 + }, +/obj/map_helper/access_helper/airlock/station/head_office/captain, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"sFu" = ( +/obj/structure/bed/double/padded, +/obj/item/bedsheet/cedouble, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/simulated/floor/carpet/oracarpet, +/area/crew_quarters/sleep/CE_quarters) +"sFB" = ( +/obj/machinery/camera/network/exploration, +/obj/structure/table/standard, +/obj/item/binoculars, +/obj/item/binoculars, +/obj/machinery/atmospherics/component/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/space) +"sFX" = ( +/obj/machinery/door/airlock/maintenance/engi{ + req_one_access = null + }, +/obj/machinery/door/firedoor, +/obj/map_helper/access_helper/airlock/station/hangar, +/turf/simulated/floor/tiled/techfloor/grid, +/area/victory/surfacebase/tram) +"sGG" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/maintenance/tool_storage) +"sHH" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/space) +"sHS" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exploration/excursion_dock) +"sIg" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/carpet/oracarpet, +/area/crew_quarters/sleep/CE_quarters) +"sIF" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled/techfloor/grid, +/area/hallway/primary/aft) +"sIK" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/beige/border, +/turf/simulated/floor/tiled, +/area/bridge/hallway) +"sJi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood, +/area/hydroponics/garden) +"sKH" = ( +/obj/structure/plasticflaps/mining, +/obj/machinery/conveyor{ + dir = 4; + id = "courser_battery" + }, +/turf/simulated/floor/plating, +/area/space) +"sLs" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/exploration) +"sLI" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 1 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/library) +"sMV" = ( +/obj/structure/table/rack, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/rods, +/turf/simulated/floor/plating, +/area/maintenance/security/port) +"sNr" = ( +/obj/machinery/camera/network/civilian{ + dir = 4 + }, +/obj/structure/bed/chair/comfy/beige{ + dir = 4 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/crew_quarters/coffee_shop) +"sNR" = ( +/obj/machinery/camera/network/civilian{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/structure/flora/pottedplant/stoutbush, +/turf/simulated/floor/tiled, +/area/space) +"sPy" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/grass, +/area/hydroponics/garden) +"sPS" = ( +/turf/simulated/floor/tiled/monofloor{ + dir = 4 + }, +/area/space) +"sQf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/hydroponics/garden) +"sQi" = ( +/obj/effect/floor_decal/corner/orange/full{ + dir = 1 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/computer/ship/sensors{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"sQl" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/space) +"sQO" = ( +/obj/structure/sign/department/bridge{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled/dark, +/area/victory/station/stairs_four) +"sQR" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/ai_status_display{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/tram) +"sRK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/space) +"sRV" = ( +/obj/item/radio/intercom{ + dir = 8; + pixel_x = -24 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/bridge/hallway) +"sSr" = ( +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/obj/machinery/door/firedoor{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/secondary/civilian_hallway_mid) +"sSQ" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/table/woodentable, +/turf/simulated/floor/tiled, +/area/space) +"sTF" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/engineering{ + name = "Command Substation"; + req_one_access = list(10,19) + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/maintenance/substation/command) +"sVb" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/computer/shuttle_control/explore/courser, +/turf/simulated/floor/plating, +/area/space) +"sVm" = ( +/obj/machinery/camera/network/civilian{ + dir = 4 + }, +/obj/structure/musician/piano, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"sWc" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/carpet, +/area/crew_quarters/heads/hop) +"sWz" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/lino, +/area/chapel/office) +"sXa" = ( +/turf/simulated/wall/r_wall/prepainted/exploration, +/area/shuttle/excursion/cargo) +"sXg" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled, +/area/maintenance/chapel) +"sXj" = ( +/turf/simulated/floor/wood, +/area/maintenance/central) +"sXI" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/aft) +"sXO" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/aft) +"sYk" = ( +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced/polarized{ + id = "sauna_tint" + }, +/obj/structure/window/reinforced/polarized{ + dir = 1; + id = "pool_tint" + }, +/obj/structure/window/basic/full, +/turf/simulated/floor/plating, +/area/victory/surfacebase/sauna) +"sZk" = ( +/obj/structure/bed, +/turf/simulated/floor/plating, +/area/maintenance/security/starboard) +"sZv" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"sZF" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/cable/cyan{ + icon_state = "0-8" + }, +/obj/machinery/power/port_gen/pacman{ + anchored = 1 + }, +/turf/simulated/floor/tiled, +/area/shuttle/excursion/general) +"sZS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/chapel/main) +"tae" = ( +/obj/effect/floor_decal/spline/fancy{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/aft) +"tat" = ( +/obj/effect/floor_decal/corner/red/full{ + dir = 4 + }, +/obj/machinery/computer/prisoner{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"taX" = ( +/obj/structure/dogbed{ + name = "pet bed" + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/mob/living/simple_mob/animal/passive/dog/corgi/Ian, +/turf/simulated/floor/carpet, +/area/crew_quarters/heads/hop) +"tbI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/grass, +/area/hydroponics/garden) +"tbP" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/victory/surfacebase/tram) +"tbQ" = ( +/obj/machinery/computer/ship/navigation/telescreen{ + pixel_x = 32 + }, +/turf/simulated/floor/plating, +/area/vacant/vacant_bar) +"tbS" = ( +/obj/structure/curtain/black{ + anchored = 1 + }, +/turf/simulated/floor/wood, +/area/library) +"tci" = ( +/obj/structure/bed/chair/sofa/black/right, +/turf/simulated/floor/carpet, +/area/medical/patient_wing) +"tep" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/grass_edge{ + dir = 1 + }, +/turf/simulated/floor/grass, +/area/hydroponics/garden) +"teS" = ( +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/plating, +/area/maintenance/security/starboard) +"teT" = ( +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/railing, +/turf/simulated/floor/grass, +/area/hydroponics/garden) +"tfg" = ( +/turf/simulated/floor/tiled, +/area/exploration/pilot_prep) +"tfv" = ( +/obj/structure/table/reinforced, +/turf/simulated/floor/carpet, +/area/crew_quarters/heads/hop) +"tfx" = ( +/turf/space/basic, +/area/gateway/prep_room) +"tfY" = ( +/obj/effect/floor_decal/techfloor, +/obj/machinery/air_alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/hallway/primary/aft) +"tgG" = ( +/obj/structure/table/woodentable, +/obj/item/toy/plushie/penguin_baby, +/obj/machinery/recharger, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/sleep/HOP_quarters) +"tgY" = ( +/obj/machinery/body_scanconsole, +/obj/effect/floor_decal/corner_steel_grid{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/space) +"thc" = ( +/obj/structure/catwalk, +/obj/machinery/door/firedoor/glass{ + dir = 8 + }, +/obj/machinery/door/airlock/maintenance/medical{ + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/medical/department, +/turf/simulated/floor/plating, +/area/maintenance/security/starboard) +"thM" = ( +/obj/effect/floor_decal/techfloor{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/secondary/civilian_hallway_mid) +"thT" = ( +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor/hole/right{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/secondary/civilian_hallway_mid) +"thX" = ( +/obj/machinery/fire_alarm/north_mount, +/turf/simulated/floor/tiled, +/area/hallway/primary/aft) +"tix" = ( +/obj/machinery/computer/power_monitor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"tjm" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/secondary/civilian_hallway_mid) +"tjQ" = ( +/obj/structure/catwalk, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/security/starboard) +"tjU" = ( +/obj/structure/table/woodentable, +/obj/machinery/chemical_dispenser/catering/bar_soft, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/CE_quarters) +"tkc" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/ship_munition/disperser_charge/explosive, +/obj/effect/floor_decal/industrial/outline/red, +/turf/simulated/floor/tiled/dark, +/area/space) +"tkI" = ( +/obj/machinery/bookbinder, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/library) +"tmc" = ( +/obj/item/radio/intercom{ + dir = 4; + pixel_x = 24 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/floor_decal/grass_edge{ + dir = 4 + }, +/turf/simulated/floor/grass, +/area/hydroponics/garden) +"tme" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/vending/tool, +/turf/simulated/floor/tiled, +/area/maintenance/tool_storage) +"tmf" = ( +/obj/machinery/station_map{ + dir = 4; + pixel_x = -32 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/aft) +"tmI" = ( +/obj/machinery/camera/network/civilian{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"tmL" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/victory/surfacebase/tram) +"tnA" = ( +/obj/structure/closet/secure_closet/hop, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/hop) +"toF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/space) +"tps" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/cargo) +"tpH" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/carpet/gaycarpet, +/area/crew_quarters/clownoffice) +"tqr" = ( +/obj/structure/table/reinforced, +/obj/machinery/cell_charger, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/turf/simulated/floor/tiled, +/area/maintenance/tool_storage) +"trn" = ( +/obj/structure/shuttle/engine/heater{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden, +/turf/simulated/wall/r_wall/prepainted/exploration, +/area/shuttle/excursion/cargo) +"trI" = ( +/turf/simulated/floor/tiled, +/area/exploration/pathfinder_office) +"trR" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/maintenance/chapel) +"tsf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/secondary/docking_hallway) +"tsP" = ( +/obj/machinery/camera/network/civilian{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/machinery/computer/guestpass{ + dir = 4; + pixel_x = -28 + }, +/turf/simulated/floor/tiled, +/area/space) +"tsT" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = -31 + }, +/obj/structure/table/woodentable, +/obj/item/paper_bin, +/obj/item/paicard, +/turf/simulated/floor/wood, +/area/library) +"tsU" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/machinery/atm{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/secondary/civilian_hallway_mid) +"ttX" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/bridge/hallway) +"tuw" = ( +/obj/item/barrier_tape_roll/engineering, +/obj/structure/table/reinforced, +/obj/item/radio{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/radio{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/radio{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/radio{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/turf/simulated/floor/tiled, +/area/maintenance/tool_storage) +"tuO" = ( +/turf/simulated/shuttle/wall/voidcraft/hard_corner, +/area/hallway/primary/aft) +"tuY" = ( +/obj/machinery/door/firedoor/glass, +/obj/spawner/window/low_wall/full/nogrille, +/turf/simulated/floor/plating, +/area/crew_quarters/heads/hop) +"tve" = ( +/obj/structure/closet, +/obj/random/maintenance/clean, +/obj/random/cigarettes, +/turf/simulated/floor/plating, +/area/maintenance/security/starboard) +"tvy" = ( +/obj/item/weldingtool, +/obj/item/clothing/glasses/welding, +/obj/structure/table/steel, +/turf/simulated/floor/plating, +/area/maintenance/security/starboard) +"tvS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/aft) +"twp" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 4 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/captain) +"twB" = ( +/obj/effect/floor_decal/techfloor, +/obj/machinery/computer/ship/navigation/telescreen{ + pixel_y = -37 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/aft) +"twI" = ( +/turf/simulated/wall/prepainted, +/area/victory/surfacebase/sauna) +"txj" = ( +/obj/item/radio/beacon, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/aft) +"txk" = ( +/obj/machinery/door/firedoor/glass{ + dir = 8 + }, +/obj/spawner/window/low_wall/borosillicate/full, +/obj/effect/paint_stripe/violet, +/turf/simulated/floor/plating, +/area/crew_quarters/lounge) +"txV" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/space) +"tyc" = ( +/obj/item/paper_bin, +/obj/structure/table/reinforced, +/turf/simulated/floor/tiled, +/area/space) +"tzn" = ( +/obj/machinery/shield_diffuser, +/obj/map_helper/airlock/door/ext_door, +/obj/machinery/access_button/airlock_exterior{ + dir = 1; + frequency = 1380; + master_tag = "deck4_dockarm2"; + pixel_x = -24 + }, +/obj/machinery/door/airlock/glass_external{ + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/external_airlock, +/turf/simulated/floor/tiled/dark, +/area/space) +"tAk" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/obj/machinery/vending/snack, +/turf/simulated/floor/tiled, +/area/hallway/primary/aft) +"tAw" = ( +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/aft) +"tBo" = ( +/obj/structure/cable/green, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/tram) +"tCc" = ( +/obj/structure/bed/double/padded, +/obj/item/bedsheet/hopdouble, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/sleep/HOP_quarters) +"tCh" = ( +/obj/structure/sign/directions/medical{ + dir = 1; + pixel_y = 42 + }, +/obj/structure/sign/directions/command{ + dir = 4; + pixel_y = 36 + }, +/obj/structure/sign/directions/science{ + dir = 1; + pixel_y = 30 + }, +/obj/structure/sign/directions/security{ + dir = 8; + pixel_y = 24 + }, +/obj/machinery/door/airlock/glass, +/obj/machinery/door/firedoor/glass{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/secondary/civilian_hallway_mid) +"tCG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/holopad, +/turf/simulated/floor/wood, +/area/library) +"tCP" = ( +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -24 + }, +/turf/simulated/floor/wood, +/area/bridge/office) +"tCW" = ( +/obj/structure/table/woodentable, +/obj/machinery/chemical_dispenser/catering/bar_alc, +/obj/machinery/air_alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/CE_quarters) +"tCX" = ( +/obj/machinery/camera/network/outside{ + dir = 1 + }, +/turf/space, +/area/space) +"tDB" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/table/woodentable, +/obj/item/towel/random, +/obj/item/towel/random, +/obj/item/towel/random, +/obj/item/towel/random, +/obj/item/towel/random, +/obj/item/towel/random, +/obj/item/towel/random, +/obj/item/towel/random, +/obj/item/towel/random, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/sauna) +"tDC" = ( +/obj/machinery/telecomms/relay/preset/telecomms, +/turf/simulated/floor/airless, +/area/shuttle/civvie/cockpit) +"tDK" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/CE_quarters) +"tEj" = ( +/obj/structure/closet/crate, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/glass, +/turf/simulated/floor/plating, +/area/maintenance/central) +"tFw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/research{ + name = "Exploration Showers" + }, +/obj/machinery/door/firedoor/glass{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/space) +"tFC" = ( +/obj/structure/shuttle/engine/heater{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/turf/simulated/shuttle/wall/voidcraft/green, +/area/shuttle/civvie/general) +"tFS" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/tram) +"tFU" = ( +/obj/machinery/porta_turret/crescent{ + density = 1; + faction = "neutral" + }, +/turf/simulated/floor/airless/ceiling, +/area/bridge) +"tHm" = ( +/turf/simulated/floor/carpet/blue, +/area/crew_quarters/heads/blueshield) +"tHB" = ( +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -28 + }, +/turf/simulated/floor/wood, +/area/library) +"tHJ" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/carpet/purcarpet, +/area/crew_quarters/coffee_shop) +"tIH" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 4 + }, +/obj/structure/table/woodentable, +/obj/item/universal_translator, +/obj/item/tape_recorder, +/turf/simulated/floor/tiled, +/area/space) +"tJg" = ( +/turf/space/basic, +/area/exploration) +"tJq" = ( +/obj/machinery/holopad, +/turf/simulated/floor/tiled/steel_grid, +/area/victory/surfacebase/tram) +"tLe" = ( +/obj/machinery/suit_cycler/director, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"tLz" = ( +/obj/machinery/camera/network/command{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/beige/border, +/turf/simulated/floor/tiled, +/area/bridge/hallway) +"tLA" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/spline/fancy, +/obj/machinery/door/firedoor{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/space) +"tLH" = ( +/obj/structure/table/bench/wooden, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"tMg" = ( +/obj/machinery/vending/cafe, +/turf/simulated/floor/carpet/purcarpet, +/area/crew_quarters/coffee_shop) +"tMy" = ( +/obj/machinery/camera/network/civilian{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"tMU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass{ + dir = 8 + }, +/obj/machinery/door/airlock/glass, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/aft) +"tNi" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ + dir = 1 + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + frequency = 1380; + id_tag = "civvie_docker"; + pixel_y = 32 + }, +/turf/simulated/floor/tiled/old_tile/green, +/area/shuttle/civvie/general) +"tNT" = ( +/obj/machinery/camera/network/command{ + dir = 1 + }, +/obj/machinery/papershredder, +/obj/effect/floor_decal/corner/purple{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"tOv" = ( +/obj/structure/bookcase, +/obj/item/book/manual/hydroponics_pod_people, +/turf/simulated/floor/wood/broken, +/area/maintenance/security/starboard) +"tOO" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"tPq" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"tPy" = ( +/obj/structure/sign/poster{ + pixel_y = 32 + }, +/turf/simulated/floor/carpet, +/area/medical/patient_wing) +"tPH" = ( +/obj/structure/bed/chair/sofa/black/left{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/medical/patient_wing) +"tQg" = ( +/obj/item/gps/internal/base{ + desc = "A tracking beacon embedded in the shuttle systems, to help explorers find where they landed."; + gps_tag = "CIVVIE"; + name = "civilian transport beacon" + }, +/obj/machinery/computer/ship/sensors{ + dir = 8 + }, +/turf/simulated/floor/tiled/old_tile/green, +/area/shuttle/civvie/cockpit) +"tQt" = ( +/obj/structure/window/reinforced, +/obj/structure/table/reinforced, +/turf/simulated/floor/carpet/tealcarpet, +/area/shuttle/civvie/general) +"tQu" = ( +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/machinery/power/apc/north_mount, +/turf/simulated/floor/plating, +/area/vacant/vacant_bar) +"tQS" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/central) +"tRJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/shuttle/wall/voidcraft/hard_corner, +/area/shuttle/civvie/general) +"tTD" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/sauna) +"tUt" = ( +/obj/machinery/airlock_sensor{ + dir = 4; + frequency = 1380; + id_tag = "courser_dock"; + pixel_x = 25 + }, +/obj/map_helper/airlock/sensor/chamber_sensor, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + frequency = 1380; + id_tag = "courser_dock"; + pixel_y = 28; + req_one_access = list(19,43,67) + }, +/turf/simulated/floor/tiled/monofloor{ + dir = 8 + }, +/area/space) +"tUS" = ( +/obj/machinery/computer/communications, +/obj/machinery/keycard_auth{ + pixel_x = -28; + pixel_y = 6 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"tUY" = ( +/obj/structure/loot_pile/maint/trash, +/turf/simulated/floor/plating, +/area/maintenance/security/starboard) +"tVb" = ( +/obj/machinery/computer/ship/sensors{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/shuttle/excursion/cockpit) +"tVO" = ( +/obj/machinery/camera/network/civilian, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/structure/closet/hydrant{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/aft) +"tVX" = ( +/obj/machinery/computer/secure_data{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/space) +"tWk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/maintenance/substation/exploration) +"tWE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/space) +"tXo" = ( +/obj/item/radio/intercom{ + pixel_y = -24 + }, +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled, +/area/maintenance/tool_storage) +"tXI" = ( +/turf/simulated/floor/tiled, +/area/exploration/excursion_dock) +"tYg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/turf/simulated/shuttle/wall/voidcraft/green, +/area/shuttle/civvie/general) +"tYv" = ( +/turf/simulated/wall/prepainted/exploration, +/area/maintenance/chapel) +"tZN" = ( +/turf/simulated/floor/tiled, +/area/exploration) +"uau" = ( +/obj/machinery/holopad, +/turf/simulated/floor/carpet/bcarpet, +/area/library) +"uaA" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden, +/obj/structure/shuttle/engine/heater{ + dir = 8 + }, +/turf/simulated/wall/r_wall/prepainted/exploration, +/area/space) +"uaC" = ( +/obj/machinery/camera/network/exploration, +/obj/structure/table/bench/steel, +/obj/machinery/fire_alarm/north_mount, +/turf/simulated/floor/tiled, +/area/space) +"uaF" = ( +/turf/simulated/wall/r_wall/prepainted/civilian, +/area/hallway/secondary/docking_hallway) +"uba" = ( +/turf/simulated/floor/tiled/dark, +/area/exploration/courser_dock) +"ubd" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/space) +"ubg" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/flora/ausbushes/ywflowers, +/turf/simulated/floor/grass, +/area/hydroponics/garden) +"ucd" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/obj/structure/shuttle/engine/heater{ + dir = 4 + }, +/turf/simulated/wall/r_wall/prepainted/exploration, +/area/shuttle/excursion/cargo) +"ucz" = ( +/obj/structure/table/reinforced, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/turf/simulated/floor/tiled, +/area/maintenance/tool_storage) +"ucD" = ( +/obj/machinery/atmospherics/component/unary/engine{ + dir = 4 + }, +/turf/simulated/shuttle/plating/airless/carry, +/area/shuttle/civvie/general) +"udE" = ( +/obj/item/radio/intercom{ + pixel_y = -24 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/lounge) +"ueA" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/victory/station/stairs_four) +"ueQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"ueR" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/secondary/civilian_hallway_mid) +"uft" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/simulated/floor/tiled/dark, +/area/hallway/secondary/docking_hallway) +"ufz" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "courser_battery" + }, +/obj/machinery/door/blast/regular{ + dir = 4; + id = "courser_cannon_chamber"; + name = "Cannon Chamber Shroud" + }, +/turf/simulated/floor/plating, +/area/space) +"ufM" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/wall/prepainted/command, +/area/victory/station/stairs_four) +"ufQ" = ( +/obj/structure/table/woodentable, +/obj/item/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/pen/blue{ + pixel_x = 5; + pixel_y = 5 + }, +/turf/simulated/floor/lino, +/area/chapel/office) +"ugn" = ( +/obj/structure/table/woodentable, +/obj/item/book/manual/standard_operating_procedure, +/obj/item/hand_labeler, +/turf/simulated/floor/tiled, +/area/space) +"ugo" = ( +/turf/simulated/wall/r_wall/prepainted/command, +/area/maintenance/central) +"ugs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/library) +"uhc" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 4 + }, +/obj/structure/closet/hydrant{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled, +/area/space) +"uhE" = ( +/obj/fiftyspawner/steel, +/obj/structure/table/rack, +/turf/simulated/floor/plating, +/area/maintenance/security/port) +"uhG" = ( +/obj/machinery/atmospheric_field_generator/perma, +/obj/machinery/door/blast/regular{ + id = "explo-hanger" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exploration/excursion_dock) +"uhT" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central6, +/turf/simulated/floor/tiled, +/area/maintenance/tool_storage) +"uhY" = ( +/obj/effect/floor_decal/spline/fancy{ + dir = 1 + }, +/obj/structure/flora/ausbushes/fernybush, +/turf/simulated/floor/water/deep/indoors, +/area/hydroponics/garden) +"ujD" = ( +/obj/machinery/door/morgue, +/turf/simulated/floor/wood, +/area/crew_quarters/mimeoffice) +"ujK" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/rust/mono_rusted3, +/turf/simulated/floor/plating, +/area/maintenance/chapel) +"ukx" = ( +/obj/effect/floor_decal/corner/red/border, +/obj/landmark/spawnpoint/overflow/station, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"ulc" = ( +/obj/machinery/door/airlock{ + name = "Public Heated Pool" + }, +/obj/structure/curtain/open/shower{ + anchored = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/fans/tiny, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/sauna) +"ulS" = ( +/obj/machinery/vending/snack, +/turf/simulated/floor/carpet, +/area/medical/patient_wing) +"umY" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance/common, +/turf/simulated/floor/plating, +/area/maintenance/chapel) +"uni" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/sleep/CE_quarters) +"unu" = ( +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/machinery/power/apc/east_mount, +/turf/simulated/floor/tiled, +/area/space) +"unE" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/secondary/docking_hallway) +"unN" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"uoD" = ( +/obj/structure/bed/chair/comfy/brown, +/turf/simulated/floor/plating, +/area/vacant/vacant_bar) +"upy" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/voidcraft/vertical{ + name = "fire control hatch" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/obj/map_helper/airlock/door/int_door, +/obj/machinery/access_button/airlock_interior{ + dir = 4; + frequency = 1380; + master_tag = "courser_docker"; + pixel_y = -22 + }, +/turf/simulated/floor/plating, +/area/space) +"uqo" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/carpet/oracarpet, +/area/crew_quarters/sleep/CE_quarters) +"uqw" = ( +/obj/machinery/computer/guestpass{ + dir = 4; + pixel_x = -28 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"uqY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/flora/ausbushes/ppflowers, +/turf/simulated/floor/grass, +/area/hydroponics/garden) +"urc" = ( +/turf/simulated/wall/prepainted/civilian, +/area/chapel/office) +"urh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/carpet/tealcarpet, +/area/crew_quarters/sleep/CMO_quarters) +"urL" = ( +/obj/structure/cable/cyan{ + icon_state = "1-2" + }, +/obj/machinery/door/window/brigdoor/northleft{ + req_access = null + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/carpet/tealcarpet, +/area/shuttle/civvie/general) +"ush" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass{ + dir = 8 + }, +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 8; + name = "Library" + }, +/turf/simulated/floor/tiled, +/area/library) +"usi" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor/grid, +/area/victory/surfacebase/tram) +"usG" = ( +/obj/machinery/shield_diffuser, +/turf/simulated/floor/airless/ceiling, +/area/space) +"usY" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/filingcabinet, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/sleep/HOP_quarters) +"utu" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/maintenance, +/obj/map_helper/access_helper/airlock/station/service/bar, +/turf/simulated/floor/plating, +/area/crew_quarters/coffee_shop) +"uty" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/tram) +"uue" = ( +/turf/simulated/floor/wood, +/area/hydroponics/garden) +"uuC" = ( +/obj/structure/table/standard, +/obj/item/roller, +/obj/item/bodybag/cryobag, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/turf/simulated/floor/tiled/white, +/area/exploration/explorer_prep) +"uvm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/space) +"uvS" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/camera/network/command{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/bridge/hallway) +"uvU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/library) +"uvX" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/computer/guestpass{ + dir = 4; + pixel_x = -28 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/library) +"uwd" = ( +/obj/structure/catwalk, +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor/glass{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/security/starboard) +"uxe" = ( +/obj/structure/railing, +/obj/effect/floor_decal/techfloor, +/obj/effect/floor_decal/techfloor/hole, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/secondary/civilian_hallway_mid) +"uxl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/machinery/door/airlock/command{ + id_tag = "blueshielddoor"; + name = "Blueshield"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/head_office/blueshield, +/turf/simulated/floor/wood, +/area/crew_quarters/heads/blueshield) +"uxn" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/cyan, +/obj/map_helper/airlock/sensor/chamber_sensor, +/obj/machinery/airlock_sensor{ + id_tag = "civvie_docker"; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/old_tile/green, +/area/shuttle/civvie/general) +"uxM" = ( +/obj/machinery/photocopier, +/obj/machinery/camera/network/exploration, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/space) +"uyf" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/obj/structure/table/standard, +/obj/item/storage/firstaid/fire{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/storage/firstaid/regular{ + pixel_x = -2; + pixel_y = -1 + }, +/turf/simulated/floor/tiled/white, +/area/exploration/explorer_prep) +"uze" = ( +/turf/simulated/floor/plating, +/area/maintenance/chapel) +"uzz" = ( +/obj/machinery/computer/ship/engines, +/turf/simulated/floor/tiled, +/area/shuttle/excursion/cockpit) +"uzY" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/machinery/button/remote/blast_door{ + desc = "A remote control-switch for shutters."; + id = "hop_office_desk"; + name = "Desk Privacy Shutter"; + pixel_x = -25; + pixel_y = -25 + }, +/obj/machinery/button/windowtint{ + id = "hop_office"; + pixel_x = -24; + pixel_y = 25 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/hop) +"uAZ" = ( +/obj/machinery/light_switch{ + name = "light switch "; + pixel_y = 26 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"uCu" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 9 + }, +/obj/machinery/fire_alarm/west_mount{ + pixel_x = -24 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"uCU" = ( +/obj/machinery/camera/network/exploration, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"uCX" = ( +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/machinery/suit_storage_unit/exploration, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/space) +"uDk" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/tiled, +/area/space) +"uDt" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/heads/hop) +"uDx" = ( +/obj/machinery/power/apc/north_mount, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/aft) +"uDC" = ( +/obj/structure/table/woodentable, +/obj/item/reagent_containers/food/snacks/dtreat, +/obj/item/reagent_containers/food/snacks/dtreat, +/obj/item/reagent_containers/food/snacks/dtreat, +/obj/item/reagent_containers/food/snacks/dtreat, +/obj/item/reagent_containers/food/snacks/dtreat, +/obj/item/reagent_containers/food/snacks/dtreat, +/obj/item/reagent_containers/food/snacks/dtreat, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/sleep/HOP_quarters) +"uDE" = ( +/obj/machinery/light_switch{ + name = "light switch "; + pixel_y = 26 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"uEN" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/item/barrier_tape_segment/engineering, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/maintenance/security/starboard) +"uFu" = ( +/obj/structure/bookcase{ + name = "bookcase (Non-Fiction)" + }, +/obj/item/book/custom_library/nonfiction, +/turf/simulated/floor/wood, +/area/library) +"uFy" = ( +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -23 + }, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/structure/table/marble, +/turf/simulated/floor/wood, +/area/bridge/office) +"uGs" = ( +/obj/machinery/tele_pad, +/turf/simulated/floor/tiled, +/area/teleporter) +"uGt" = ( +/obj/machinery/camera/network/command{ + dir = 4 + }, +/obj/item/radio/intercom{ + dir = 8; + pixel_x = -24 + }, +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/folder/red, +/obj/item/folder/blue, +/obj/item/pen, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"uGO" = ( +/obj/machinery/atmospherics/pipe/tank/air, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/railing, +/turf/simulated/floor/plating, +/area/space) +"uHb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/effect/floor_decal/corner/purple{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"uHc" = ( +/obj/structure/table/woodentable, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/obj/item/paicard, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/lounge) +"uHw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/obj/structure/shuttle/engine/heater{ + dir = 8 + }, +/turf/simulated/wall/r_wall/prepainted/exploration, +/area/space) +"uHE" = ( +/obj/structure/bed/chair/comfy/beige, +/turf/simulated/floor/wood, +/area/maintenance/security/starboard) +"uIC" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/monofloor{ + dir = 4 + }, +/area/space) +"uJm" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = -31 + }, +/obj/effect/floor_decal/techfloor, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/secondary/civilian_hallway_mid) +"uJx" = ( +/obj/effect/floor_decal/corner/red/full{ + dir = 1 + }, +/obj/machinery/computer/security{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"uJA" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced, +/turf/simulated/floor/carpet/tealcarpet, +/area/shuttle/civvie/general) +"uKB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/carpet/bcarpet, +/area/chapel/main) +"uKO" = ( +/obj/structure/bed/double/padded, +/obj/item/bedsheet/bluedouble, +/obj/item/handcuffs/fuzzy, +/turf/simulated/floor/carpet/tealcarpet, +/area/maintenance/central) +"uLa" = ( +/obj/machinery/turretid/lethal{ + pixel_x = -35 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/holopad/ship, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"uLN" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/turf/simulated/floor/tiled, +/area/space) +"uMq" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/railing, +/obj/structure/lightpost, +/obj/effect/floor_decal/grass_edge{ + dir = 1 + }, +/turf/simulated/floor/grass, +/area/hydroponics/garden) +"uMM" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/library) +"uNb" = ( +/obj/machinery/door/airlock/glass/exploration{ + name = "Medic Prep"; + req_one_access = list(44,19,5) + }, +/turf/simulated/floor/tiled, +/area/exploration/explorer_prep) +"uNx" = ( +/obj/machinery/status_display, +/turf/simulated/wall/r_wall/prepainted/command, +/area/crew_quarters/captain) +"uNT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/table/bench/wooden, +/obj/machinery/reagentgrinder, +/turf/simulated/floor/wood, +/area/hydroponics/garden) +"uPB" = ( +/obj/machinery/fire_alarm/north_mount, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/turf/simulated/floor/carpet/tealcarpet, +/area/shuttle/civvie/general) +"uQs" = ( +/obj/structure/table/woodentable, +/obj/item/nullrod, +/obj/item/reagent_containers/food/drinks/bottle/holywater, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/lino, +/area/chapel/office) +"uQL" = ( +/obj/machinery/computer/secure_data{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"uRE" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/bed/chair/comfy/black{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/CE_quarters) +"uTd" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"uTr" = ( +/turf/simulated/wall/prepainted, +/area/maintenance/central) +"uUa" = ( +/obj/structure/table/bench/steel, +/obj/landmark/spawnpoint/job/field_medic, +/turf/simulated/floor/tiled, +/area/space) +"uUK" = ( +/turf/simulated/floor/tiled/techfloor/grid, +/area/victory/surfacebase/tram) +"uVf" = ( +/obj/machinery/vending/cola, +/turf/simulated/floor/carpet/bcarpet, +/area/library) +"uVB" = ( +/obj/machinery/gateway{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/exploration/courser_dock) +"uWF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock{ + name = "Chapel Office" + }, +/obj/map_helper/access_helper/airlock/station/service/chapel, +/turf/simulated/floor/lino, +/area/chapel/office) +"uXd" = ( +/obj/machinery/door/window/brigdoor/southleft{ + req_access = null + }, +/obj/structure/bed/chair/shuttle{ + dir = 4 + }, +/turf/simulated/floor/carpet/tealcarpet, +/area/shuttle/civvie/general) +"uXy" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/techfloor, +/obj/effect/floor_decal/techfloor/hole, +/turf/simulated/floor/tiled/dark, +/area/hallway/secondary/civilian_hallway_mid) +"uXJ" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"uXK" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/hallway/secondary/docking_hallway) +"uYs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/grass, +/area/hydroponics/garden) +"uYH" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/holopad, +/turf/simulated/floor/tiled, +/area/exploration/courser_dock) +"uYY" = ( +/obj/structure/table/rack, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/window/brigdoor/eastright{ + dir = 8; + name = "Facility Director's Voidsuit"; + req_access = list(20) + }, +/obj/item/clothing/suit/space/void/captain, +/obj/item/clothing/head/helmet/space/void/captain, +/obj/item/clothing/shoes/magboots, +/obj/item/tank/oxygen, +/obj/item/clothing/mask/breath, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"vaR" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 1 + }, +/obj/machinery/computer/ship/navigation/telescreen{ + pixel_y = -37 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/library) +"vaT" = ( +/obj/machinery/camera/network/command, +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"vbb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/teleporter) +"vbT" = ( +/obj/structure/table/woodentable, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/library) +"vca" = ( +/obj/structure/closet/firecloset, +/turf/simulated/floor/plating, +/area/maintenance/chapel) +"vce" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/machinery/door/window{ + dir = 8; + name = "Cafe"; + req_one_access = list(25) + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/coffee_shop) +"vcl" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/lawoffice) +"vde" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/maintenance/security/starboard) +"vdw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/vending/hydroseeds, +/turf/simulated/floor/wood, +/area/hydroponics/garden) +"vdz" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/structure/sign/warning/bomb_range{ + name = "\improper LIVE ORDINANCE"; + pixel_x = 32 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/space) +"vdF" = ( +/obj/machinery/account_database, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/hop) +"vdY" = ( +/obj/structure/flora/pottedplant, +/obj/item/radio/intercom{ + pixel_y = -24 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"vgh" = ( +/obj/structure/table/woodentable, +/obj/item/reagent_containers/food/drinks/shaker, +/turf/simulated/floor/plating, +/area/vacant/vacant_bar) +"vgr" = ( +/turf/space, +/area/exploration/courser_dock) +"vgW" = ( +/turf/simulated/wall/prepainted/exploration, +/area/vacant/vacant_bar) +"vjh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/carpet, +/area/bridge/meeting_room) +"vjS" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/space) +"vjT" = ( +/obj/machinery/power/apc/west_mount{ + cell_type = /obj/item/cell/super + }, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"vkl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/sauna) +"vkr" = ( +/obj/machinery/button/remote/blast_door{ + dir = 1; + id = "hangar_ammo_storage"; + name = "Courser Ammunition Storage"; + pixel_y = -26 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"vld" = ( +/obj/machinery/computer/ship/helm{ + dir = 8 + }, +/turf/simulated/floor/tiled/old_tile/green, +/area/shuttle/civvie/cockpit) +"vll" = ( +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/aft) +"vmt" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/bed, +/obj/item/bedsheet/medical, +/turf/simulated/floor/tiled, +/area/space) +"vmY" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"vnQ" = ( +/obj/machinery/computer/cryopod{ + name = "asset retention console"; + pixel_y = -30 + }, +/obj/landmark/spawnpoint/overflow/station, +/turf/simulated/floor/tiled, +/area/hallway/primary/aft) +"vof" = ( +/obj/effect/floor_decal/industrial/warning/full, +/obj/structure/anomaly_container, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/shuttle/excursion/cargo) +"voy" = ( +/obj/structure/catwalk, +/obj/structure/handrail{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/shuttle/excursion/cargo) +"voG" = ( +/obj/structure/table/standard, +/obj/item/hand_tele, +/turf/simulated/floor/tiled, +/area/teleporter) +"voN" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 1 + }, +/obj/item/radio/intercom{ + pixel_y = -24 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/library) +"vpu" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/space) +"vpK" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/table/marble, +/obj/machinery/computer/skills{ + dir = 4 + }, +/obj/machinery/keycard_auth{ + pixel_y = -28 + }, +/turf/simulated/floor/carpet, +/area/bridge/office) +"vpO" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/space) +"vqA" = ( +/obj/structure/grille, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/wall_frame/prepainted, +/obj/structure/wall_frame/prepainted, +/obj/structure/window/reinforced/polarized/full{ + id = "hop_office"; + name = "HoP Office window" + }, +/obj/effect/paint_stripe/commandblue, +/turf/simulated/floor/plating, +/area/crew_quarters/heads/hop) +"vqJ" = ( +/obj/structure/table/marble, +/obj/item/flashlight/lamp/green, +/turf/simulated/floor/wood, +/area/bridge/office) +"vqM" = ( +/obj/machinery/recharger/wallcharger{ + pixel_x = 32; + pixel_y = -10 + }, +/obj/machinery/recharger/wallcharger{ + pixel_x = 32; + pixel_y = 3 + }, +/turf/simulated/floor/tiled, +/area/shuttle/excursion/general) +"vrC" = ( +/obj/structure/bookcase{ + name = "bookcase (Reference)" + }, +/obj/item/book/manual/chef_recipes, +/turf/simulated/floor/wood, +/area/library) +"vsf" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/lounge) +"vsG" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/secondary/civilian_hallway_mid) +"vsK" = ( +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/shuttle/excursion/cargo) +"vtb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/table/marble, +/obj/machinery/chemical_dispenser/catering/bar_coffee, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/computer/security/telescreen{ + pixel_y = 32 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/coffee_shop) +"vte" = ( +/obj/structure/closet, +/obj/random/maintenance/security, +/turf/simulated/floor/plating, +/area/maintenance/security/starboard) +"vuf" = ( +/obj/machinery/computer/ship/navigation/telescreen{ + pixel_y = 27 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/library) +"vuK" = ( +/obj/structure/bookcase{ + name = "bookcase (Fiction)" + }, +/obj/item/book/custom_library/fiction, +/obj/item/book/custom_library/fiction, +/turf/simulated/floor/wood, +/area/library) +"vvP" = ( +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/curtain/black{ + anchored = 1 + }, +/turf/simulated/floor/wood, +/area/library) +"vvR" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/door/firedoor/glass{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/central) +"vww" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/wood, +/area/hallway/secondary/docking_hallway) +"vwK" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/flashlight/lamp{ + pixel_y = 12 + }, +/obj/item/pen, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"vxd" = ( +/obj/structure/table/woodentable, +/obj/item/duct_tape_roll, +/turf/simulated/floor/plating, +/area/vacant/vacant_bar) +"vxr" = ( +/obj/machinery/door/blast/regular, +/turf/simulated/floor/plating, +/area/exploration/excursion_dock) +"vxs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/flora/ausbushes/palebush, +/turf/simulated/floor/grass, +/area/hydroponics/garden) +"vyg" = ( +/obj/structure/flora/ausbushes/ywflowers, +/turf/simulated/floor/grass, +/area/hydroponics/garden) +"vzu" = ( +/obj/structure/sign/department/biblio, +/turf/simulated/wall/prepainted/civilian, +/area/library) +"vAn" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor/hole{ + dir = 1 + }, +/obj/machinery/computer/timeclock/premade/north, +/turf/simulated/floor/tiled/dark, +/area/hallway/secondary/civilian_hallway_mid) +"vCO" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/shuttle/courser/general) +"vDA" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 5 + }, +/obj/machinery/fire_alarm/north_mount, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 4 + }, +/obj/machinery/vending/fitness, +/turf/simulated/floor/tiled, +/area/space) +"vEi" = ( +/turf/simulated/floor/tiled/monofloor{ + dir = 1 + }, +/area/space) +"vEl" = ( +/obj/structure/loot_pile/maint/technical, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/central) +"vEX" = ( +/obj/structure/closet/hydrant{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/component/binary/pump{ + dir = 4; + name = "secondary fuel pump" + }, +/turf/simulated/floor/plating, +/area/shuttle/excursion/cargo) +"vFf" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/bridge/hallway) +"vFk" = ( +/obj/machinery/shower{ + pixel_y = 8 + }, +/obj/item/soap/deluxe, +/obj/structure/curtain/open/shower, +/obj/item/bikehorn/rubberducky, +/turf/simulated/floor/tiled, +/area/crew_quarters/sleep/HOP_quarters) +"vFv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/captain) +"vGA" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/structure/sign/directions/evac{ + dir = 8; + pixel_y = 32 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/secondary/civilian_hallway_mid) +"vGH" = ( +/obj/machinery/power/apc/south_mount, +/obj/structure/cable/green, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/hop) +"vGJ" = ( +/obj/machinery/door/firedoor/glass, +/obj/spawner/window/low_wall/reinforced/full, +/turf/simulated/floor/plating, +/area/space) +"vGO" = ( +/turf/simulated/wall/r_wall/prepainted/exploration, +/area/shuttle/courser/cockpit) +"vHF" = ( +/obj/item/radio/intercom{ + pixel_y = -24 + }, +/obj/machinery/light, +/obj/machinery/mech_recharger, +/obj/effect/floor_decal/industrial/warning/full, +/turf/simulated/floor/tiled, +/area/shuttle/excursion/general) +"vIe" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/structure/catwalk, +/obj/machinery/door/firedoor/glass{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/security/starboard) +"vIw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/lounge/kitchen_freezer) +"vIH" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/teleporter) +"vIY" = ( +/obj/structure/cable/cyan{ + icon_state = "1-4" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/space) +"vJp" = ( +/obj/structure/table/reinforced, +/obj/fiftyspawner/rods, +/obj/fiftyspawner/rods, +/obj/fiftyspawner/rods, +/turf/simulated/floor/tiled, +/area/maintenance/tool_storage) +"vJK" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"vMW" = ( +/obj/machinery/light/small, +/obj/machinery/air_alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/sauna) +"vNu" = ( +/obj/structure/undies_wardrobe, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/CMO_quarters) +"vNz" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/exploration) +"vNY" = ( +/obj/structure/cable/green, +/obj/machinery/power/apc/west_mount{ + cell_type = /obj/item/cell/super + }, +/turf/simulated/floor/wood, +/area/library) +"vOo" = ( +/turf/simulated/open, +/area/exploration/explorer_prep) +"vOU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/hallway/secondary/civilian_hallway_mid) +"vOV" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor/hole{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/aft) +"vQw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"vQN" = ( +/obj/effect/floor_decal/sign/a, +/turf/simulated/wall/r_wall/prepainted, +/area/space) +"vRx" = ( +/obj/structure/sign/deck/fourth, +/turf/simulated/wall/prepainted, +/area/victory/station/stairs_four) +"vRP" = ( +/obj/machinery/air_alarm/alarms_hidden{ + dir = 4; + pixel_x = -27 + }, +/obj/structure/table/reinforced, +/turf/simulated/floor/tiled/old_tile/green, +/area/shuttle/civvie/cockpit) +"vSp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exploration/excursion_dock) +"vTh" = ( +/obj/structure/window/reinforced, +/turf/simulated/floor/carpet, +/area/medical/patient_wing) +"vTi" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/space) +"vTv" = ( +/obj/landmark{ + name = "carpspawn" + }, +/turf/space, +/area/space) +"vTH" = ( +/obj/item/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 21 + }, +/obj/structure/table/reinforced, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/turf/simulated/floor/tiled, +/area/maintenance/tool_storage) +"vUa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/bridge/hallway) +"vVE" = ( +/obj/machinery/computer/ship/disperser{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/space) +"vVS" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 9 + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + frequency = 1380; + id_tag = "courser_docker"; + pixel_x = 25 + }, +/obj/effect/shuttle_landmark/victory/deck4/courser, +/obj/overmap/entity/visitable/ship/landable/courser/victory, +/turf/simulated/floor/plating, +/area/space) +"vVT" = ( +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + frequency = 1380; + id_tag = "expshuttle_docker"; + pixel_x = -22 + }, +/turf/simulated/floor/tiled, +/area/shuttle/excursion/general) +"vVZ" = ( +/obj/effect/floor_decal/spline/fancy{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/excursion/general) +"vWs" = ( +/obj/structure/flora/ausbushes/sunnybush, +/turf/simulated/floor/grass, +/area/hydroponics/garden) +"vYa" = ( +/obj/item/radio/intercom{ + pixel_y = -24 + }, +/obj/machinery/power/apc/east_mount, +/obj/structure/cable/cyan, +/turf/simulated/floor/tiled, +/area/shuttle/excursion/cockpit) +"vYC" = ( +/turf/simulated/wall/r_wall/prepainted/command, +/area/bridge) +"vYM" = ( +/turf/simulated/floor/tiled/dark, +/area/hallway/secondary/docking_hallway) +"vYN" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/railing, +/obj/structure/handrail, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/space) +"vYT" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance/common, +/turf/simulated/floor/plating, +/area/chapel/main) +"vZH" = ( +/obj/structure/closet/firecloset, +/turf/simulated/floor/plating, +/area/maintenance/central) +"waj" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/CMO_quarters) +"waV" = ( +/obj/machinery/button/remote/airlock{ + id = "explo-hanger"; + name = "Hanger Blast Door Switch"; + pixel_y = 24 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exploration/explorer_prep) +"wbu" = ( +/obj/structure/barricade, +/turf/simulated/floor/plating, +/area/maintenance/security/starboard) +"wbx" = ( +/obj/machinery/air_alarm/alarms_hidden{ + dir = 1; + pixel_y = -23 + }, +/turf/simulated/floor/tiled, +/area/shuttle/excursion/general) +"wby" = ( +/obj/machinery/camera/network/civilian{ + dir = 4 + }, +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/structure/table/woodentable, +/obj/item/flame/candle/candelabra, +/turf/simulated/floor/wood, +/area/hallway/secondary/docking_hallway) +"wbz" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/bridge/hallway) +"weh" = ( +/turf/simulated/floor/carpet, +/area/medical/patient_wing) +"wei" = ( +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/obj/machinery/camera/network/civilian{ + dir = 8 + }, +/obj/machinery/computer/guestpass{ + dir = 8; + pixel_x = 30 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/aft) +"wfl" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/table/bench, +/turf/simulated/floor/plating, +/area/vacant/vacant_bar) +"wfu" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/obj/structure/shuttle/engine/heater{ + dir = 8 + }, +/turf/simulated/wall/r_wall/prepainted/exploration, +/area/space) +"wfz" = ( +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/shutters{ + dir = 2; + id = "cap_office"; + layer = 3.1; + name = "Colony Directo's Shutters" + }, +/obj/spawner/window/low_wall/reinforced/full, +/obj/effect/paint_stripe/commandblue, +/turf/simulated/floor/plating, +/area/crew_quarters/captain) +"wge" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/mimeoffice) +"wgu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/command{ + id_tag = "captaindoor"; + name = "Facility Director's Office"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/head_office/captain, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"wgE" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1380; + id_tag = "civvie_docker_pump" + }, +/obj/map_helper/airlock/atmos/chamber_pump, +/turf/simulated/floor/tiled/old_tile/green, +/area/shuttle/civvie/general) +"whp" = ( +/obj/machinery/power/apc/south_mount, +/obj/structure/cable/green, +/turf/simulated/floor/plating, +/area/maintenance/substation/security) +"wim" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/machinery/door/firedoor{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/hallway/primary/aft) +"wjo" = ( +/obj/structure/bed/chair/bay/comfy/black, +/obj/landmark/spawnpoint/job/blueshield, +/obj/machinery/atmospherics/component/unary/vent_pump/on, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/carpet/blue, +/area/crew_quarters/heads/blueshield) +"wne" = ( +/obj/random/cutout, +/turf/simulated/floor/plating, +/area/maintenance/security/starboard) +"wni" = ( +/obj/machinery/door/firedoor/glass{ + dir = 8 + }, +/obj/machinery/door/airlock/maintenance/common, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/security/starboard) +"wny" = ( +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/shutters{ + dir = 2; + id = "cap_office"; + layer = 3.1; + name = "Colony Directo's Shutters" + }, +/obj/spawner/window/low_wall/reinforced/full, +/obj/effect/paint_stripe/commandblue, +/turf/simulated/floor/plating, +/area/crew_quarters/captain) +"woe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/table/reinforced, +/obj/item/stamp/internalaffairs, +/obj/item/stamp/denied{ + pixel_x = 4; + pixel_y = -2 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen/red{ + pixel_x = -1; + pixel_y = 3 + }, +/obj/item/pen/blue{ + pixel_x = -5; + pixel_y = -1 + }, +/turf/simulated/floor/carpet/blucarpet, +/area/lawoffice) +"wox" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/table/woodentable, +/obj/machinery/recharger, +/turf/simulated/floor/carpet/oracarpet, +/area/crew_quarters/sleep/CE_quarters) +"woV" = ( +/obj/structure/flora/pottedplant/orientaltree, +/obj/machinery/atmospherics/component/unary/vent_pump/on, +/turf/simulated/floor/wood, +/area/hydroponics/garden) +"wpZ" = ( +/obj/machinery/bodyscanner{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exploration/explorer_prep) +"wqe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/flora/ausbushes/ywflowers, +/obj/effect/floor_decal/grass_edge{ + dir = 1 + }, +/obj/machinery/camera/network/civilian, +/turf/simulated/floor/grass, +/area/hydroponics/garden) +"wqi" = ( +/obj/effect/floor_decal/chapel{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"wqQ" = ( +/obj/machinery/holopad, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"wrh" = ( +/obj/structure/table/woodentable, +/obj/machinery/photocopier/faxmachine{ + department = "Library Conference Room" + }, +/turf/simulated/floor/wood, +/area/library) +"wrQ" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/simulated/floor/wood, +/area/bridge/office) +"wtl" = ( +/turf/simulated/floor/tiled, +/area/exploration/courser_dock) +"wtM" = ( +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/machinery/door/blast/shutters{ + dir = 2; + id = "cafe"; + layer = 3.1; + name = "Cafe Shutters" + }, +/obj/structure/table/marble, +/turf/simulated/floor/lino, +/area/crew_quarters/coffee_shop) +"wwz" = ( +/obj/machinery/shipsensors, +/turf/simulated/floor/airless, +/area/shuttle/civvie/cockpit) +"wwG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/space) +"wwN" = ( +/turf/simulated/floor/carpet/purcarpet, +/area/space) +"wxb" = ( +/turf/simulated/wall/prepainted/command, +/area/crew_quarters/sleep/HOP_quarters) +"wxw" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/hallway/secondary/civilian_hallway_mid) +"wxx" = ( +/obj/effect/floor_decal/corner_techfloor_grid{ + dir = 5 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/victory/surfacebase/sauna) +"wxJ" = ( +/obj/effect/floor_decal/chapel{ + dir = 4 + }, +/obj/structure/table/bench/wooden, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"wxP" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/maintenance/security/starboard) +"wyc" = ( +/obj/structure/closet/crate/secure/weapon, +/turf/simulated/floor/tiled, +/area/space) +"wym" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/victory/surfacebase/tram) +"wyP" = ( +/obj/landmark/spawnpoint/job/librarian, +/obj/machinery/newscaster{ + pixel_x = -27 + }, +/obj/structure/bed/chair/comfy/brown, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/library/study) +"wyX" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/carpet/bcarpet, +/area/library/study) +"wzg" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/hallway/secondary/docking_hallway) +"wzh" = ( +/turf/simulated/wall/prepainted/medical, +/area/medical/patient_wing) +"wzN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/table/reinforced, +/obj/item/stamp/internalaffairs, +/obj/item/stamp/denied{ + pixel_x = 4; + pixel_y = -2 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen/red{ + pixel_x = -1; + pixel_y = 3 + }, +/obj/item/pen/blue{ + pixel_x = -5; + pixel_y = -1 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/lawoffice) +"wAr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/maintenance/tool_storage) +"wAB" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/library) +"wAS" = ( +/obj/machinery/tele_projector{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/teleporter) +"wBM" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/hallway/secondary/docking_hallway) +"wCb" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/maintenance/security/starboard) +"wDb" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden, +/obj/structure/shuttle/engine/heater{ + dir = 4 + }, +/turf/simulated/wall/r_wall/prepainted/exploration, +/area/shuttle/excursion/cargo) +"wDH" = ( +/obj/machinery/camera/network/command{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/bridge/hallway) +"wEZ" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/computer/ship/sensors{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/shuttle/excursion/general) +"wFn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/flora/pottedplant/orientaltree, +/turf/simulated/floor/grass, +/area/hydroponics/garden) +"wGj" = ( +/obj/structure/table/reinforced, +/obj/structure/panic_button{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled/old_tile/green, +/area/shuttle/civvie/cockpit) +"wGG" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/CE_quarters) +"wGN" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/light_switch{ + pixel_x = -25 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/chapel/main) +"wHY" = ( +/turf/simulated/floor/tiled/monofloor{ + dir = 1 + }, +/area/hallway/primary/aft) +"wIX" = ( +/obj/machinery/computer/secure_data, +/turf/simulated/floor/tiled, +/area/space) +"wIY" = ( +/turf/simulated/wall/prepainted/command, +/area/lawoffice) +"wJf" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/space) +"wJl" = ( +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/medical/patient_wing) +"wJJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"wJX" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 10 + }, +/obj/structure/table/reinforced, +/obj/item/clipboard, +/obj/machinery/newscaster{ + pixel_x = -27 + }, +/obj/item/storage/briefcase{ + pixel_x = -2; + pixel_y = -5 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/lawoffice) +"wLm" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/coffee_shop) +"wLo" = ( +/obj/structure/dogbed{ + name = "pet bed" + }, +/turf/simulated/floor/carpet/oracarpet, +/area/crew_quarters/sleep/CE_quarters) +"wLx" = ( +/obj/structure/bed/chair/sofa/black/left{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/maintenance/security/starboard) +"wOi" = ( +/turf/simulated/floor/tiled, +/area/bridge/hallway) +"wOA" = ( +/obj/effect/floor_decal/industrial/warning/full, +/obj/structure/stasis_cage, +/obj/effect/floor_decal/industrial/warning/full, +/turf/simulated/floor/tiled, +/area/shuttle/excursion/cargo) +"wPw" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 1 + }, +/obj/machinery/vending/cola, +/turf/simulated/floor/tiled, +/area/bridge/hallway) +"wPz" = ( +/obj/structure/flora/skeleton, +/turf/simulated/floor/plating, +/area/maintenance/central) +"wPB" = ( +/obj/structure/table/borosilicate, +/obj/structure/dancepole, +/turf/simulated/floor/wood, +/area/vacant/vacant_bar) +"wPV" = ( +/obj/machinery/holopad, +/turf/simulated/floor/carpet/purcarpet, +/area/space) +"wSl" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/space) +"wSw" = ( +/obj/structure/table/woodentable, +/obj/item/flashlight/lamp/green, +/turf/simulated/floor/carpet/oracarpet, +/area/crew_quarters/sleep/CE_quarters) +"wSU" = ( +/obj/effect/floor_decal/sign/dock/one, +/turf/simulated/wall/r_wall/prepainted, +/area/space) +"wTx" = ( +/obj/machinery/suit_storage_closet, +/turf/simulated/floor/tiled/dark, +/area/hallway/secondary/docking_hallway) +"wTD" = ( +/turf/simulated/floor/wood, +/area/crew_quarters/lounge) +"wUc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/secondary/civilian_hallway_mid) +"wUf" = ( +/obj/machinery/door/airlock/glass/security{ + id_tag = "Checkpoint"; + layer = 2.8; + name = "Security"; + req_one_access = null + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/map_helper/access_helper/airlock/station/security/general, +/turf/simulated/floor/tiled, +/area/space) +"wUl" = ( +/turf/simulated/wall/r_wall/prepainted/exploration, +/area/exploration/pilot_prep) +"wUJ" = ( +/obj/machinery/door/airlock/command{ + name = "Private Restroom"; + req_access = list(); + req_one_access = list() + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/HOP_quarters) +"wVs" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan, +/obj/spawner/window/low_wall/borosillicate/full, +/obj/effect/paint_stripe/violet, +/turf/simulated/shuttle/floor/voidcraft, +/area/shuttle/excursion/general) +"wVA" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/victory/station/stairs_four) +"wVY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"wWq" = ( +/turf/simulated/wall/prepainted, +/area/victory/station/stairs_four) +"wWR" = ( +/obj/machinery/fire_alarm/north_mount, +/obj/machinery/vending/fitness, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/tram) +"wWT" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 4 + }, +/obj/structure/closet/hydrant{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled, +/area/bridge/hallway) +"wXu" = ( +/obj/machinery/camera/network/civilian{ + dir = 8 + }, +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/obj/machinery/air_alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/secondary/civilian_hallway_mid) +"wXK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/space) +"wXT" = ( +/obj/effect/floor_decal/techfloor, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/aft) +"wYc" = ( +/obj/machinery/door/window/westright{ + name = "Funeral Hall" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/secondary/docking_hallway) +"wYg" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Primary Tool Storage" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/maintenance/tool_storage) +"wYU" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/hop) +"wZL" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/space) +"wZQ" = ( +/turf/simulated/wall/wood/hardwood, +/area/victory/surfacebase/sauna) +"xaF" = ( +/obj/structure/closet/secure_closet/pathfinder, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 4 + }, +/obj/item/reagent_containers/hypospray/autoinjector/biginjector/pain, +/obj/item/reagent_containers/hypospray/autoinjector/biginjector/pain, +/obj/item/tank/jetpack/oxygen, +/obj/item/tank/oxygen, +/obj/item/suit_cooling_unit, +/obj/item/reagent_containers/hypospray/autoinjector/biginjector/healing_nanites, +/turf/simulated/floor/tiled, +/area/space) +"xaN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/item/radio/beacon, +/obj/effect/floor_decal/steeldecal/steel_decals_central6, +/turf/simulated/floor/tiled, +/area/bridge/hallway) +"xaQ" = ( +/obj/machinery/status_display{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"xch" = ( +/obj/machinery/door/blast/regular{ + id = "sensor-shroud"; + name = "Sensor Shroud" + }, +/turf/space, +/area/space) +"xdl" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/aft) +"xdt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/dark, +/area/victory/station/stairs_four) +"xed" = ( +/obj/structure/table/woodentable, +/obj/item/storage/box/glasses/meta, +/obj/item/storage/box/glasses/meta, +/turf/simulated/floor/carpet/tealcarpet, +/area/crew_quarters/sleep/CMO_quarters) +"xef" = ( +/obj/machinery/camera/network/exploration{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exploration/courser_dock) +"xfk" = ( +/obj/effect/floor_decal/corner/blue/full, +/obj/structure/window/reinforced, +/obj/structure/table/reinforced, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"xft" = ( +/obj/effect/floor_decal/spline/fancy{ + dir = 8 + }, +/obj/structure/flora/ausbushes/fernybush, +/turf/simulated/floor/water/deep/indoors, +/area/hydroponics/garden) +"xfQ" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/wood, +/area/space) +"xgP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/hallway/primary/aft) +"xgT" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/security/starboard) +"xhd" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/table/reinforced, +/obj/machinery/door/window/northleft{ + dir = 8; + icon_state = "right"; + name = "Reception Window" + }, +/obj/machinery/door/window/brigdoor/eastright{ + name = "Head of Personnel's Desk"; + req_access = list(57) + }, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "hop_office_desk"; + name = "HoP Office Privacy Shutters"; + opacity = 0 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"xhP" = ( +/obj/structure/sink/kitchen{ + dir = 8; + name = "sink"; + pixel_x = 13 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/lounge/kitchen_freezer) +"xhZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"xii" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/aft) +"xjE" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock{ + name = "Public Heated Pool" + }, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/sauna) +"xjI" = ( +/obj/structure/table/woodentable, +/obj/item/paper{ + info = "Look to the mice for answers."; + name = "strange note" + }, +/turf/simulated/floor/wood/broken, +/area/maintenance/security/starboard) +"xkO" = ( +/obj/machinery/fire_alarm/west_mount{ + pixel_x = -28 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/heads/blueshield) +"xkX" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled/dark, +/area/space) +"xls" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 1 + }, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"xlM" = ( +/obj/item/radio/intercom{ + dir = 8; + pixel_x = -24 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/aft) +"xlX" = ( +/obj/structure/table/marble, +/turf/simulated/floor/carpet, +/area/bridge/meeting_room) +"xmk" = ( +/obj/structure/table/standard, +/obj/item/multitool/victory_buffered, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/turf/simulated/floor/tiled, +/area/exploration/pilot_prep) +"xmw" = ( +/turf/simulated/floor/tiled, +/area/maintenance/chapel) +"xmE" = ( +/obj/structure/catwalk, +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/maintenance/security/starboard) +"xmL" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/high_volume{ + dir = 4; + frequency = 1380; + id_tag = "courser_docker_pump"; + power_rating = 20000 + }, +/obj/map_helper/airlock/atmos/chamber_pump, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/space) +"xna" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/floor_decal/industrial/warning, +/obj/structure/cable/cyan{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/shuttle/excursion/cargo) +"xnh" = ( +/obj/machinery/recharge_station, +/obj/effect/floor_decal/industrial/warning/full, +/turf/simulated/floor/plating, +/area/space) +"xoh" = ( +/obj/machinery/gateway{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/courser/general) +"xoy" = ( +/obj/machinery/light/small, +/obj/structure/table/woodentable, +/obj/item/paper_bin, +/obj/item/radio/intercom{ + pixel_y = -24 + }, +/turf/simulated/floor/wood, +/area/library) +"xoY" = ( +/obj/machinery/air_alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exploration/excursion_dock) +"xoZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/space) +"xpv" = ( +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/structure/reagent_dispensers/beerkeg/fakenuke, +/turf/simulated/floor/plating, +/area/maintenance/central) +"xpQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/grass_edge, +/obj/structure/flora/ausbushes/ppflowers, +/turf/simulated/floor/grass, +/area/hydroponics/garden) +"xpU" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/exploration/courser_dock) +"xri" = ( +/obj/structure/window/reinforced, +/obj/structure/bed/chair/shuttle{ + dir = 4 + }, +/turf/simulated/floor/carpet/tealcarpet, +/area/shuttle/civvie/general) +"xsC" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/bridge/office) +"xtc" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/aft) +"xtj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/newscaster{ + pixel_x = -27 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"xtw" = ( +/obj/structure/table/bench/wooden, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"xtP" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/bridge/meeting_room) +"xtW" = ( +/obj/structure/table/woodentable, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/button/windowtint{ + dir = 4; + id = "pool_tint"; + pixel_x = -25 + }, +/turf/simulated/floor/tiled/freezer, +/area/victory/surfacebase/sauna) +"xuK" = ( +/obj/machinery/door/firedoor/glass{ + dir = 8 + }, +/obj/spawner/window/low_wall/full/nogrille, +/turf/simulated/floor/plating, +/area/crew_quarters/lounge) +"xuR" = ( +/obj/machinery/camera/network/civilian{ + dir = 8 + }, +/turf/simulated/floor/lino, +/area/chapel/office) +"xuV" = ( +/obj/effect/floor_decal/corner/blue/full, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"xvm" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 10 + }, +/obj/effect/mist, +/turf/simulated/floor/water/pool, +/area/victory/surfacebase/sauna) +"xvH" = ( +/obj/effect/floor_decal/techfloor{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/aft) +"xvS" = ( +/obj/item/clothing/shoes/black, +/turf/simulated/floor/plating, +/area/maintenance/security/starboard) +"xwo" = ( +/obj/machinery/fire_alarm/north_mount, +/turf/simulated/floor/wood, +/area/bridge/office) +"xwz" = ( +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/obj/structure/bed/chair/comfy/black, +/turf/simulated/floor/carpet/purcarpet, +/area/crew_quarters/coffee_shop) +"xwO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/hallway/secondary/civilian_hallway_mid) +"xwU" = ( +/obj/effect/floor_decal/techfloor, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/aft) +"xxb" = ( +/obj/structure/table/rack, +/turf/simulated/floor/plating, +/area/maintenance/chapel) +"xxd" = ( +/obj/machinery/air_alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/computer/aifixer{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"xxf" = ( +/obj/structure/table/woodentable, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"xyG" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -28 + }, +/turf/simulated/floor/plating, +/area/vacant/vacant_bar) +"xzr" = ( +/obj/machinery/air_alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/camera/network/northern_star{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 4 + }, +/obj/machinery/suit_cycler/exploration, +/turf/simulated/floor/tiled, +/area/space) +"xzs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"xzO" = ( +/obj/structure/table/woodentable, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/vacant/vacant_bar) +"xAa" = ( +/obj/machinery/camera/network/outside{ + dir = 5 + }, +/turf/space, +/area/space) +"xAd" = ( +/obj/structure/closet/largecardboard, +/turf/simulated/floor/tiled, +/area/maintenance/chapel) +"xBJ" = ( +/obj/machinery/shipsensors, +/turf/simulated/floor/plating{ + initial_gas_mix = "TEMP=2.7" + }, +/area/bridge) +"xCr" = ( +/obj/effect/floor_decal/spline/plain, +/obj/item/radio/intercom{ + pixel_y = -24 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/lawoffice) +"xCy" = ( +/obj/structure/closet/lasertag/red, +/turf/simulated/floor/tiled/old_tile/red, +/area/maintenance/security/starboard) +"xCL" = ( +/obj/machinery/power/apc/south_mount, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable/green, +/obj/machinery/vending/dinnerware, +/turf/simulated/floor/tiled, +/area/crew_quarters/lounge/kitchen_freezer) +"xDl" = ( +/obj/machinery/atmospherics/pipe/tank/phoron{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/shuttle/excursion/cargo) +"xEh" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/space) +"xEl" = ( +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/machinery/fire_alarm/north_mount, +/obj/machinery/suit_storage_unit/exploration, +/turf/simulated/floor/tiled, +/area/space) +"xFb" = ( +/obj/structure/closet/crate/trashcart, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/drinkbottle, +/turf/simulated/floor/plating, +/area/maintenance/central) +"xFj" = ( +/obj/structure/closet/hydrant{ + pixel_x = 32 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = -31 + }, +/turf/simulated/floor/plating, +/area/maintenance/central) +"xGU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/table/marble, +/turf/simulated/floor/carpet, +/area/bridge/meeting_room) +"xHb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/lino, +/area/chapel/office) +"xHd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/cargo) +"xHo" = ( +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/obj/machinery/appliance/cooker/oven, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/crew_quarters/lounge/kitchen_freezer) +"xHD" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"xIb" = ( +/obj/structure/extinguisher_cabinet{ + dir = 8; + pixel_x = 30 + }, +/obj/structure/table/bench/wooden, +/obj/effect/mist, +/turf/simulated/floor/wood, +/area/victory/surfacebase/sauna) +"xIk" = ( +/obj/structure/table/woodentable, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/hallway/secondary/docking_hallway) +"xIq" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/aft) +"xIC" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/research{ + name = "Exploration Showers" + }, +/turf/simulated/floor/tiled, +/area/space) +"xJO" = ( +/obj/effect/shuttle_landmark/victory/deck4/excursion_space, +/turf/space, +/area/space) +"xJZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/hallway/secondary/civilian_hallway_mid) +"xKz" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/hydroponics/soil, +/turf/simulated/floor/grass, +/area/hydroponics/garden) +"xKD" = ( +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/HOP_quarters) +"xKW" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/spline/fancy, +/obj/structure/flora/pottedplant/stoutbush, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled, +/area/space) +"xMN" = ( +/obj/machinery/camera/network/exploration{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exploration/excursion_dock) +"xNI" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/firedoor/glass{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/secondary/docking_hallway) +"xNZ" = ( +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -24 + }, +/turf/simulated/floor/wood, +/area/bridge/meeting_room) +"xON" = ( +/obj/machinery/door/firedoor, +/obj/map_helper/airlock/door/int_door, +/obj/machinery/door/airlock/voidcraft/vertical, +/turf/simulated/floor/tiled/old_tile/green, +/area/shuttle/civvie/general) +"xPG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/obj/structure/shuttle/engine/heater{ + dir = 4 + }, +/turf/simulated/wall/r_wall/prepainted/exploration, +/area/shuttle/excursion/cargo) +"xPV" = ( +/obj/machinery/chem_master/condimaster, +/turf/simulated/floor/tiled, +/area/crew_quarters/lounge/kitchen_freezer) +"xQm" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/holopad, +/turf/simulated/floor/tiled/techfloor/grid, +/area/hallway/secondary/civilian_hallway_mid) +"xQD" = ( +/obj/machinery/shipsensors, +/obj/effect/floor_decal/spline/fancy{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/shuttle/excursion/general) +"xRc" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/security/starboard) +"xRj" = ( +/turf/space/basic, +/area/space) +"xSt" = ( +/obj/machinery/door/firedoor, +/obj/spawner/window/low_wall/reinforced/full, +/turf/simulated/floor/plating, +/area/space) +"xST" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/map_helper/airlock/door/int_door, +/obj/machinery/access_button/airlock_interior{ + dir = 1; + frequency = 1380; + master_tag = "deck4_dockarm2"; + pixel_x = -24 + }, +/obj/machinery/door/airlock/glass_external{ + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/external_airlock, +/turf/simulated/floor/tiled/dark, +/area/space) +"xSZ" = ( +/turf/simulated/wall/r_wall/prepainted/exploration, +/area/exploration/medical) +"xTU" = ( +/obj/structure/flora/ausbushes/brflowers, +/obj/effect/floor_decal/grass_edge, +/turf/simulated/floor/grass, +/area/hydroponics/garden) +"xUp" = ( +/obj/effect/wingrille_spawn/reinforced_phoron, +/obj/machinery/door/firedoor, +/turf/simulated/shuttle/floor/voidcraft, +/area/shuttle/civvie/general) +"xUy" = ( +/obj/effect/floor_decal/grass_edge{ + dir = 5 + }, +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/grass, +/area/hydroponics/garden) +"xVw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/space) +"xXS" = ( +/obj/machinery/shower{ + pixel_y = 8 + }, +/obj/structure/curtain/open/shower, +/obj/item/soap/deluxe, +/turf/simulated/floor/tiled, +/area/crew_quarters/sleep/CMO_quarters) +"xYB" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/turf/simulated/floor/plating, +/area/space) +"xYV" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/sign/department/bridge{ + pixel_x = 32 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/victory/station/stairs_four) +"xZS" = ( +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/structure/closet, +/obj/random/soap, +/turf/simulated/floor/plating, +/area/maintenance/central) +"ybJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/wood, +/area/hallway/secondary/docking_hallway) +"ycz" = ( +/obj/effect/floor_decal/spline/fancy, +/obj/machinery/porta_turret/stationary{ + gl_uid = "exploration"; + installation = /obj/item/gun/energy/phasegun; + name = "exploration turret"; + req_one_access = list(19,43,62,67); + uid = "exploration" + }, +/obj/effect/floor_decal/industrial/warning/full, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/excursion/general) +"ycC" = ( +/obj/machinery/camera/network/civilian, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/secondary/civilian_hallway_mid) +"ycW" = ( +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "bridge_lockdown"; + name = "Bridge Lockdown"; + pixel_x = -30; + pixel_y = 5; + req_access = list(19) + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -28; + pixel_y = -4 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"ydy" = ( +/obj/machinery/button/remote/blast_door{ + dir = 1; + id = "courser_cannon_shroud"; + name = "Cannon Barrel Shutter"; + pixel_y = -23 + }, +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "courser_magazine_1"; + name = "Cannon Magazine One"; + pixel_x = -10; + pixel_y = -33 + }, +/obj/machinery/button/remote/blast_door{ + dir = 8; + id = "courser_magazine_2"; + name = "Cannon Magazine Two"; + pixel_x = 9; + pixel_y = -32 + }, +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "courser_loading_1"; + name = "Magazine One Input"; + pixel_x = -10; + pixel_y = -42 + }, +/obj/machinery/button/remote/blast_door{ + dir = 8; + id = "courser_loading_2"; + name = "Magazine Two Input"; + pixel_x = 9; + pixel_y = -41 + }, +/obj/structure/bed/chair/bay/shuttle{ + dir = 8 + }, +/obj/machinery/button/remote/blast_door{ + dir = 1; + id = "courser_cannon_chamber"; + name = "Cannon Chamber Shroud"; + pixel_y = -34 + }, +/turf/simulated/floor/plating, +/area/space) +"ydA" = ( +/obj/structure/table/standard, +/obj/item/defib_kit/loaded, +/obj/item/storage/firstaid/surgery, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/turf/simulated/floor/tiled/white, +/area/exploration/explorer_prep) +"yey" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/hydroponics/garden) +"yfe" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor/glass{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"yfo" = ( +/obj/structure/dispenser/oxygen, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/shuttle/courser/general) +"yfy" = ( +/obj/machinery/power/apc/west_mount, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/security/starboard) +"yfG" = ( +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/aft) +"ygA" = ( +/turf/simulated/floor/carpet/tealcarpet, +/area/maintenance/central) +"yhF" = ( +/obj/machinery/door/blast/regular, +/turf/simulated/floor/tiled/techfloor/grid, +/area/victory/surfacebase/tram) +"yiH" = ( +/turf/simulated/wall/prepainted/civilian, +/area/vacant/vacant_bar) +"yiZ" = ( +/obj/machinery/gateway{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/exploration/courser_dock) +"yjr" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/carpet/gaycarpet, +/area/crew_quarters/clownoffice) +"yjC" = ( +/obj/machinery/station_map{ + pixel_y = 32 + }, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor/hole{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/secondary/civilian_hallway_mid) +"ykT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/victory/surfacebase/sauna) +"ylC" = ( +/obj/structure/railing, +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/grass, +/area/hydroponics/garden) + +(1,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(2,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(3,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(4,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(5,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(6,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(7,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(8,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(9,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +vTv +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(10,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +xJO +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(11,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(12,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +vTv +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(13,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +bzE +psc +bzE +bzE +bzE +bzE +bzE +bzE +bzE +bzE +bzE +bzE +bzE +bzE +bzE +bzE +bzE +psc +psc +dkX +dkX +vxr +vxr +vxr +vxr +vxr +vxr +vxr +vxr +vxr +vxr +vxr +vxr +vxr +vxr +vxr +rbp +nZb +nZb +yhF +yhF +yhF +yhF +yhF +yhF +yhF +yhF +yhF +yhF +yhF +yhF +arJ +sQl +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(14,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +psc +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +dkX +dkX +joA +joA +joA +joA +joA +joA +joA +joA +joA +joA +joA +joA +joA +aKN +joA +uUK +nZb +nZb +uUK +uUK +uUK +uUK +uUK +uUK +uUK +uUK +uUK +uUK +uUK +uUK +mne +sQl +xRj +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(15,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +bzE +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +dkX +dkX +joA +joA +joA +joA +joA +qeZ +qeZ +qlw +qlw +qeZ +qeZ +joA +joA +joA +joA +uUK +nZb +nZb +uUK +uUK +uUK +uUK +uUK +uUK +uUK +uUK +uUK +uUK +uUK +uUK +mne +sQl +xRj +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(16,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +rdJ +rdJ +rdJ +rdJ +rdJ +rdJ +rdJ +rdJ +rdJ +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +vTv +jNg +jNg +jNg +bzE +tCX +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +ris +ris +ris +ris +ris +ris +ris +ris +ris +qTI +qTI +joA +joA +joA +joA +joA +qeZ +tVb +ixK +geI +bnc +qeZ +joA +joA +joA +joA +uUK +nZb +nZb +cQp +uUK +uUK +uUK +uUK +uUK +uUK +uUK +uUK +uUK +uUK +uUK +qjN +sQl +xRj +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(17,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +rdJ +kHU +mLJ +uLN +rdJ +dtE +rdJ +aIX +rdJ +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +bzE +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +ris +ris +ris +ris +ris +ris +ris +ris +ris +qTI +qTI +joA +joA +joA +joA +joA +qlw +nFg +kIy +gZU +gZU +qlw +joA +joA +joA +joA +uUK +uUK +sFX +uUK +uUK +uUK +uUK +uUK +uUK +uUK +uUK +uUK +uUK +uUK +uUK +mne +sQl +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(18,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +rdJ +lHf +dMx +mRX +rdJ +lIQ +rdJ +hBp +rdJ +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +bzE +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +ris +ris +ris +ris +ris +ris +ris +ris +ris +qTI +qTI +joA +joA +joA +joA +joA +qeZ +uzz +kIy +fqC +vYa +qeZ +joA +joA +joA +joA +uUK +nZb +nZb +poQ +uUK +uUK +uUK +uUK +uUK +uUK +uUK +uUK +uUK +uUK +uUK +mne +sQl +xRj +xRj +xRj +xRj +xRj +cqc +cqc +cqc +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(19,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xIC +wZL +unu +lyU +lpv +gGb +wXK +cgw +rdJ +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +bzE +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +ris +ris +ris +ris +ris +ris +ris +ris +ris +qTI +qTI +joA +joA +joA +joA +exE +bKZ +qeZ +qlw +qCw +qeZ +bKZ +exE +joA +izk +joA +uUK +nZb +nZb +uUK +uUK +uUK +uUK +uUK +uUK +uUK +uUK +uUK +uUK +uUK +uUK +tmI +sQl +xRj +xRj +xRj +xRj +xRj +cqc +cqc +cqc +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(20,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +rdJ +rdJ +rdJ +rdJ +rdJ +rdJ +tFw +rdJ +rdJ +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +bzE +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +ris +ris +ris +ris +ris +ris +ris +ris +ris +nkp +nkp +eav +joA +joA +joA +xQD +bKZ +wEZ +cGG +lqO +fDv +bKZ +sEx +joA +joA +joA +uUK +nZb +nZb +osa +uUK +uUK +uUK +uUK +uUK +uUK +uUK +uUK +uUK +uUK +uUK +mne +sQl +xRj +xRj +xRj +xRj +cqc +cqc +cqc +cqc +cqc +cqc +cqc +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(21,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +psc +jNg +jNg +jNg +jNg +jNg +jNg +bzE +psc +psc +xRj +xRj +xRj +xRj +xRj +dkX +dkX +xSZ +xSZ +nTu +nTu +nTu +nTu +nTu +nTu +nTu +nkp +nkp +ePs +joA +rKO +joA +bKZ +bKZ +eAX +cGG +lqO +kDj +bKZ +bKZ +joA +joA +joA +uUK +nZb +nZb +uUK +uUK +uUK +uUK +uUK +uUK +uUK +uUK +uUK +uUK +uUK +uUK +mne +sQl +xRj +xRj +xRj +xRj +cqc +cqc +cqc +cqc +wBM +wBM +wBM +sQl +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(22,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +bzE +psc +jNg +jNg +psc +bzE +bzE +jNg +xRj +xRj +xRj +xRj +xRj +xRj +dkX +dkX +xSZ +xSZ +nTu +nTu +nTu +nTu +nTu +nTu +nTu +nkp +nkp +ePs +joA +suA +qeV +qWg +fjB +cGG +cGG +lqO +cGG +fjB +qWg +hOJ +joA +joA +uUK +nZb +nZb +uUK +uUK +uUK +uUK +uUK +uUK +uUK +uUK +uUK +uUK +uUK +uUK +mne +sQl +xRj +xRj +xRj +xRj +cqc +cqc +cqc +cqc +wBM +wBM +wBM +sQl +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(23,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +psc +psc +psc +bzE +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +dkX +dkX +xSZ +xSZ +nTu +nTu +nTu +nTu +nTu +nTu +nTu +nkp +nkp +ePs +joA +suA +luN +qWg +fjB +cGG +cGG +saB +cGG +fjB +qWg +ycz +joA +joA +uUK +nZb +nZb +uUK +uUK +uUK +uUK +uUK +uUK +uUK +uUK +uUK +uUK +uUK +uUK +mne +sQl +xRj +xRj +wBM +wBM +wBM +wBM +wBM +wBM +wBM +wBM +wBM +sQl +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(24,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +dkX +xSZ +xSZ +xSZ +xSZ +xSZ +xSZ +xSZ +xSZ +xSZ +nkp +nkp +bOq +joA +suA +vVZ +qWg +fjB +cGG +cGG +aFk +cGG +fjB +qWg +hSi +aKN +joA +uUK +nZb +nZb +uUK +uUK +uUK +uUK +uUK +uUK +uUK +uUK +uUK +uUK +uUK +uUK +mne +sQl +sQl +sQl +wBM +cqc +cqc +cqc +cqc +cqc +cqc +sQl +sQl +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(25,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bFR +bFR +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xSZ +qhA +iwR +jag +jag +quA +saq +dXL +aIj +rdz +nkp +ePs +joA +suA +bKZ +bKZ +bKZ +hrd +cGG +lqO +nlh +bKZ +bKZ +bKZ +izk +joA +uUK +nZb +nZb +cQp +uUK +uUK +uUK +uUK +uUK +uUK +uUK +uUK +uUK +uUK +uUK +qjN +sQl +xRj +xRj +cqc +cqc +cqc +cqc +cqc +cqc +cqc +sQl +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(26,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bFR +bFR +bFR +bFR +bFR +bFR +bFR +ili +ili +nkp +lta +mEg +mEg +mEg +mEg +ydA +bkR +rdz +rdz +nkp +ePs +joA +suA +aMu +pEF +gTH +hMQ +svZ +cXY +cGG +cVS +fPE +qWg +joA +joA +uUK +nZb +nZb +uUK +uUK +uUK +uUK +uUK +uUK +uUK +uUK +uUK +uUK +uUK +uUK +mne +sQl +xRj +xRj +cqc +cqc +cqc +cqc +cqc +cqc +cqc +sQl +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +bWr +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(27,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bFR +bFR +bFR +bFR +bFR +bFR +bFR +ili +ili +nkp +bmD +mEg +wpZ +gNY +mEg +uyf +bkR +rdz +rdz +nkp +ePs +joA +suA +bKZ +fmb +hlP +sZF +giv +qWS +cGG +cGG +vHF +bKZ +joA +joA +uUK +nZb +nZb +uUK +uUK +uUK +uUK +uUK +uUK +uUK +uUK +uUK +uUK +uUK +uUK +mne +sQl +xRj +xRj +xRj +xRj +cqc +cqc +cqc +cqc +cqc +sQl +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(28,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bFR +bFR +bFR +bFR +bFR +bFR +bFR +ili +ili +nkp +jwy +mEg +myn +pAX +mEg +uuC +bkR +rdz +rdz +nkp +ePs +ePs +suA +bKZ +bKZ +bKZ +bKZ +bKZ +aXD +cGG +cGG +wbx +bKZ +joA +joA +uUK +nZb +nZb +osa +uUK +uUK +uUK +uUK +uUK +uUK +uUK +uUK +uUK +uUK +uUK +mne +sQl +xRj +xRj +xRj +xRj +cqc +cqc +cqc +cqc +cqc +sQl +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(29,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bFR +bFR +bFR +bFR +bFR +bFR +bFR +ili +ili +nkp +mxK +mEg +mEg +mEg +mEg +glY +bkR +rdz +rdz +nkp +ePs +ePs +suA +har +cib +vVT +cVS +jzd +jkQ +pSS +cGG +mEj +bKZ +joA +joA +uUK +nZb +nZb +uUK +uUK +uUK +uUK +uUK +uUK +uUK +uUK +uUK +uUK +uUK +uUK +mne +sQl +xRj +xRj +xRj +xRj +cqc +cqc +cqc +cqc +cqc +sQl +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(30,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +iPx +iPx +iPx +iPx +iPx +iPx +iPx +iPx +ili +nkp +jTN +ium +ium +kHv +afY +pVE +bkR +rdz +rdz +nkp +ePs +ePs +suA +bKZ +nNs +aAL +agV +bKZ +mOO +rpR +vqM +pxg +bKZ +joA +joA +uUK +nZb +nZb +uUK +uUK +uUK +uUK +uUK +uUK +uUK +uUK +uUK +uUK +uUK +uUK +tmI +sQl +xRj +xRj +xRj +xRj +cqc +cqc +cqc +cqc +cqc +sQl +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(31,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +iPx +iPx +iPx +iPx +iPx +iPx +iPx +iPx +ili +nkp +bkR +gBG +gBG +gBG +uNb +gBG +bkR +rdz +kbw +nkp +waV +joA +suA +bKZ +jJv +wVs +bKZ +bKZ +ahi +bKZ +bKZ +bKZ +bKZ +joA +joA +uUK +nZb +nZb +uUK +uUK +uUK +uUK +uUK +uUK +uUK +uUK +uUK +uUK +uUK +uUK +mne +sQl +xRj +xRj +xRj +xRj +cqc +cqc +cqc +cqc +cqc +sQl +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(32,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +psc +xRj +xRj +xRj +xRj +xRj +xRj +iPx +iPx +iPx +iPx +iPx +iPx +iPx +iPx +tJg +gxB +trI +trI +trI +trI +trI +trI +trI +trI +tXI +uhG +joA +joA +suA +sXa +dYq +dYq +lOV +scX +aGA +pRd +jXV +jXV +sXa +joA +joA +uUK +nZb +nZb +uUK +uUK +uUK +uUK +uUK +uUK +uUK +uUK +uUK +uUK +uUK +uUK +qjN +sQl +xRj +xRj +xRj +xRj +cqc +cqc +cqc +cqc +cqc +sQl +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(33,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +iPx +iPx +iPx +iPx +iPx +iPx +iPx +iPx +tJg +gxB +trI +trI +trI +trI +trI +trI +trI +trI +tXI +uhG +joA +joA +suA +sXa +kAU +lXS +nCK +xna +frn +jOl +fmn +dyP +sXa +joA +joA +uUK +nZb +nZb +cQp +uUK +uUK +uUK +uUK +uUK +uUK +uUK +uUK +uUK +uUK +uUK +mne +sQl +xRj +xRj +xRj +xRj +cqc +cqc +cqc +cqc +cqc +sQl +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(34,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +iPx +iPx +iPx +iPx +iPx +iPx +iPx +tfx +tJg +gxB +trI +trI +trI +trI +trI +trI +trI +trI +tXI +uhG +joA +joA +suA +sXa +vEX +iYo +hJV +eWE +vsK +fbe +jvT +voy +sXa +aKN +joA +uUK +nZb +nZb +poQ +uUK +uUK +uUK +uUK +uUK +uUK +uUK +uUK +uUK +uUK +uUK +mne +sQl +xRj +xRj +xRj +xRj +cqc +cqc +cqc +cqc +cqc +sQl +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(35,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +tfx +tfx +tfx +tfx +tfx +tfx +tJg +gxB +trI +trI +trI +trI +trI +trI +trI +trI +tXI +qTI +gwu +joA +suA +sXa +geW +eUW +rNe +sXa +nrb +sXa +qXE +qyg +sXa +joA +joA +uUK +nZb +nZb +uUK +uUK +uUK +uUK +uUK +uUK +uUK +uUK +uUK +uUK +uUK +uUK +mne +sQl +xRj +xRj +xRj +xRj +cqc +cqc +cqc +cqc +cqc +sQl +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(36,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +tfx +tfx +tfx +tfx +tfx +tfx +tJg +gxB +trI +trI +trI +trI +trI +trI +trI +trI +tXI +qTI +joA +joA +suA +sXa +xDl +xDl +rNe +joA +joA +sXa +vof +wOA +sXa +joA +joA +uUK +nZb +nZb +osa +uUK +uUK +uUK +uUK +uUK +uUK +uUK +uUK +uUK +uUK +uUK +mne +sQl +xRj +xRj +xRj +xRj +cqc +cqc +cqc +cqc +cqc +wBM +cqc +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(37,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +tfx +tfx +tfx +tfx +tfx +tfx +tJg +gxB +trI +trI +trI +trI +trI +trI +trI +trI +tXI +qTI +joA +joA +suA +xPG +ucd +ucd +wDb +joA +joA +hfG +trn +ucd +qFo +izk +joA +uUK +nZb +nZb +pRD +uUK +uUK +uUK +uUK +aKL +edY +aKL +uUK +uUK +uUK +pRD +iBx +sQl +xRj +xRj +xRj +xRj +cqc +cqc +cqc +cqc +cqc +wBM +cqc +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +dkX +dkX +dkX +dkX +dkX +dkX +dkX +dkX +dkX +dkX +dkX +dkX +dkX +dkX +dkX +jNg +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(38,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +tfx +tfx +tfx +tfx +tfx +tfx +tJg +gxB +trI +trI +trI +trI +trI +trI +trI +trI +tXI +qTI +joA +joA +suA +ceP +ceP +ceP +ceP +joA +joA +ceP +ceP +ceP +ceP +pWM +joA +uUK +jNC +rqI +aHm +lzf +cZl +cZl +usi +qlh +rJw +aXa +sqd +cZl +usi +jYq +gLm +sQl +xRj +xRj +xRj +xRj +cqc +cqc +cqc +cqc +cqc +wBM +cqc +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +dkX +mne +mne +eyi +eQl +xzs +xzs +svY +swq +mmg +svY +bMm +fmh +jVp +dkX +cpb +cpb +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(39,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +tfx +tfx +tfx +tfx +tfx +tfx +tJg +gxB +tZN +tZN +tZN +tZN +tZN +tZN +tZN +tZN +tXI +qTI +joA +joA +suA +joA +sHS +joA +joA +cYO +sHS +joA +cYO +sHS +joA +vSp +joA +uUK +nZb +nZb +seH +lDt +tmL +tmL +tmL +wym +wym +wym +tmL +tmL +tmL +tbP +fth +sQl +xRj +xRj +xRj +xRj +cqc +cqc +cqc +cqc +cqc +wBM +cqc +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +psc +dkX +mne +mne +fjA +kHH +mne +mne +kHH +fjA +mne +kHH +fjA +mne +cUV +dkX +rYj +sPS +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(40,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +tfx +tfx +tfx +tfx +tfx +tfx +tJg +gxB +tZN +tZN +tZN +tZN +tZN +tZN +tZN +tZN +tXI +qTI +izQ +joA +jWV +eTR +qxW +cbd +eTR +ryd +xMN +hRj +ryd +lGt +hRj +hwW +joA +uUK +nZb +nZb +cqF +wym +wym +wym +wym +wym +tJq +wym +wym +wym +wym +wym +txV +sQl +xRj +xRj +xRj +xRj +cqc +cqc +cqc +cqc +sQl +sQl +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +dkX +mne +mne +dkX +iBS +iBS +iBS +iBS +iBS +iBS +iBS +dkX +mne +rcm +qik +eXk +pob +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(41,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +tfx +tfx +tfx +tfx +tfx +tfx +tJg +gxB +tZN +tZN +tZN +tZN +tZN +tZN +tZN +tZN +qTI +qTI +qTI +qTI +amJ +pOB +pzo +pzo +txk +txk +pzo +txk +txk +txk +pzo +pzo +nZb +nZb +nZb +nZb +wWR +rTZ +ito +ito +ito +rTZ +rTZ +rTZ +ito +ito +ito +rTZ +rSO +sQl +xRj +xRj +xRj +xRj +jLe +jLe +jLe +jLe +sQl +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +dkX +mne +mne +dkX +uHw +uaA +wfu +wfu +wfu +wfu +pAv +dkX +mne +eKd +nxI +hOd +fWk +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(42,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +tfx +tfx +tfx +tfx +tfx +tfx +tJg +gxB +tZN +tZN +tZN +tZN +tZN +tZN +tZN +tZN +mgA +qQe +bcg +qTI +gyS +joA +fAz +fix +wTD +wTD +ahL +oqH +fSO +wTD +iqj +jch +rTZ +rTZ +sQR +rTZ +rTZ +rTZ +sqa +sqa +sqa +rTZ +rTZ +rTZ +sqa +sqa +sqa +rTZ +gcd +sQl +xRj +xRj +xRj +xRj +jLe +jLe +jLe +jLe +sQl +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +tCX +dkX +mne +mne +dkX +fpV +oiA +dkX +dkX +dkX +xnh +kDz +dkX +mne +iJu +dgq +tUt +poA +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(43,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +psc +xRj +xRj +xRj +xRj +xRj +xRj +xRj +tfx +tfx +tfx +tfx +tfx +tfx +tfx +tJg +gxB +tZN +tZN +tZN +tZN +tZN +tZN +tZN +tZN +mgA +tXI +tXI +qTI +sBt +bXx +fAz +oVm +hvo +dgF +cuA +wTD +wTD +wTD +kXM +mbY +rTZ +rTZ +qvn +rTZ +rTZ +tBo +sjw +tFS +rTZ +rTZ +rTZ +rTZ +rTZ +rTZ +rTZ +rTZ +pob +sQl +xRj +xRj +xRj +xRj +jLe +jLe +jLe +jLe +sQl +xRj +xRj +xRj +xRj +xRj +xRj +jNg +sQl +htr +sQl +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +dkX +fGf +mne +dkX +mRF +jjf +keP +mXt +hnG +vIY +dpS +dkX +mne +iJu +dkX +dkX +dkX +dkX +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(44,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +ili +ili +ili +ili +ili +ili +ili +tJg +gxB +gxB +gxB +gxB +gxB +tZN +tZN +tZN +tZN +mgA +tXI +tXI +qTI +kFF +jMJ +fAz +nif +eyn +aPx +wTD +udE +mmO +mmO +mmO +mbY +sti +iZc +iZc +sti +sti +sti +sti +cMJ +cMJ +afX +pjL +cMJ +cMJ +qUM +uty +uty +kAA +sQl +xRj +xRj +xRj +xRj +jLe +jLe +jLe +jLe +sQl +xRj +xRj +xRj +xRj +jNg +jNg +jNg +sQl +dry +sQl +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +dkX +mne +mne +dkX +uGO +avV +sVb +kOi +iIr +nIi +dkX +dkX +mne +vJK +dkX +fUM +jbz +dkX +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(45,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +ili +ili +ili +ili +ili +ili +ili +tJg +tJg +tJg +tJg +tJg +gxB +tZN +tZN +tZN +tZN +mgA +tXI +tXI +qTI +icW +xoY +fAz +hOL +uHc +maw +wTD +wTD +aNV +qqq +qqq +mmO +jKs +mRT +aVd +aNK +gXh +gXh +hhF +apf +agD +pgL +mne +jVG +sQl +pob +pob +pob +pob +sQl +xRj +xRj +xRj +xRj +jLe +jLe +jLe +jLe +sQl +xRj +xRj +xRj +xRj +jNg +jNg +sQl +vQN +hzU +sQl +rwD +sQl +sQl +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +dkX +mne +mne +dkX +dkX +gjL +dkX +hdp +dkX +aGj +dkX +dkX +mne +iJu +dkX +tkc +nMp +dkX +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(46,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +ili +ili +ili +ili +ili +ili +ili +tJg +tJg +tJg +tJg +tJg +gxB +tZN +tZN +tZN +tZN +mgA +tXI +tXI +qTI +aHh +joA +fAz +joB +vsf +iVk +wTD +wTD +aNV +qqq +qqq +mmO +nkN +lqh +vnQ +aNK +gXh +gXh +hhF +amu +reN +pgL +mne +oYa +sQl +pob +pob +pob +pob +sQl +xRj +xRj +xRj +xRj +jLe +jLe +jLe +jLe +sQl +xRj +xRj +xRj +xRj +jNg +jNg +xSt +uCu +hTg +arI +xST +rhG +tzn +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +kze +dkX +mne +mne +dkX +kaV +icC +dkX +dkX +dkX +xmL +iIf +ebH +mne +rXv +dkX +rKu +laK +dkX +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(47,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +ili +ili +ili +ili +ili +ogK +ogK +ogK +ogK +ogK +ogK +ogK +gxB +tZN +tZN +tZN +tZN +bvo +aau +aau +qTI +amJ +pOB +fAz +fAz +fcl +jPH +xuK +xuK +mmO +nbm +mmO +mmO +ddh +tae +fqB +aNK +aNK +aNK +aNK +pfG +pgL +pgL +mne +ukx +sQl +sQl +sQl +sQl +sQl +sQl +xRj +xRj +xRj +xRj +jLe +jLe +jLe +jLe +sQl +xRj +xRj +xRj +xRj +jNg +jNg +xSt +quF +eoY +bAB +mTa +bew +hoc +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +psc +dkX +uCU +mne +dkX +gGl +bzP +dkX +vVE +dkX +fuR +vVS +lqD +uXJ +dUh +cdt +dnj +pBX +dkX +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(48,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +ili +ili +ili +ili +ili +ogK +ogK +ogK +ogK +ogK +ogK +ogK +dkX +pob +pob +pob +pob +rdJ +gSS +cXT +tAk +cXT +cXT +iaB +bvo +jLe +jLe +jLe +jLe +jLe +jLe +jLe +jLe +xvH +sdd +vll +vll +cxg +iZR +vll +dAK +vll +vll +vll +dAK +vll +vll +vll +vll +dAK +vll +vll +vll +dAK +vll +vll +dAK +vll +eRR +sQl +sQl +sQl +sQl +sQl +sQl +sQl +sQl +ilO +wVY +fYz +sQl +sQl +sQl +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +psc +dkX +mne +mne +dkX +dkX +vYN +lno +ydy +dkX +upy +dkX +dkX +mne +mne +cdt +dnj +xkX +dkX +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(49,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +ili +ili +ili +ili +ili +ogK +ogK +ogK +ogK +ogK +ogK +ogK +dkX +ssu +pob +pob +pob +rdJ +pob +wHY +ihy +aau +aau +mBH +bvo +jLe +jLe +jLe +jLe +jLe +jLe +jLe +jLe +eQL +txj +tAw +tAw +tAw +cGC +tAw +tAw +axR +tAw +skd +tAw +axR +tAw +tAw +tAw +tAw +axR +skd +tAw +tAw +tAw +tAw +tAw +axR +tAw +dnj +dnj +dnj +dnj +dnj +dnj +dnj +dnj +xHD +xVw +fYz +sQl +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +psc +dkX +mne +mne +aYh +dkX +mWf +pPU +oAZ +vdz +ipd +dkX +dkX +mne +mne +cdt +dnj +qrY +dkX +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(50,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +ili +ili +ili +ili +ili +ogK +ogK +ogK +ogK +ogK +ogK +ogK +dkX +ssu +pob +bwl +iCK +eyp +lSc +aoJ +kFe +kEs +aoJ +juq +opn +jLe +jLe +jLe +jLe +jLe +jLe +jLe +jLe +rWo +cHu +iTz +iTz +iTz +yfG +iTz +iTz +ipC +ipC +xii +iTz +ipC +ipC +ipC +ipC +iTz +ipC +xii +ipC +iTz +ipC +ipC +iTz +ipC +ipC +tWE +tWE +tWE +tWE +tWE +tWE +tWE +tWE +aIY +gJJ +fYz +sQl +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +kze +dkX +fGf +mne +mne +dkX +dkX +dkX +gDh +dkX +dkX +dkX +mne +mne +vkr +dkX +nTo +rxS +dkX +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(51,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +bzE +jNg +jNg +xRj +xRj +xRj +xRj +xRj +ili +ili +ili +ili +ili +ogK +ogK +ogK +ogK +ogK +ogK +ogK +dkX +oDJ +hjz +jAG +cgw +xRj +fvk +pob +fOT +aCo +aCo +qEL +gyv +jLe +jLe +jLe +jLe +jLe +jLe +jLe +jLe +eQL +iAm +qRx +nnX +syr +pqO +pqO +wei +chb +pqO +lfu +fBm +chb +pqO +pqO +pqO +fBm +chb +lfu +pqO +fBm +pqO +pqO +fBm +chb +pqO +dnj +dnj +dnj +dnj +dnj +dnj +dnj +dnj +xHD +wVY +fYz +sQl +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +dkX +mne +mne +mne +mne +dkX +dkX +dGi +dkX +dkX +mne +mne +mne +qjN +dkX +qdx +dos +dkX +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(52,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +bzE +jNg +jNg +xRj +xRj +xRj +xRj +xRj +ili +ili +ili +ili +ili +ogK +ogK +ogK +ogK +ogK +ogK +ogK +dkX +ssu +pob +kIs +ekF +rdJ +fSC +bNm +bUG +eNv +mwK +cVf +bvo +jLe +jLe +jLe +jLe +jLe +jLe +jLe +jLe +eQL +iAm +koO +aNK +aNK +aNK +sti +sti +sti +sti +sti +sti +sti +sti +sti +sti +sti +sti +sti +sti +sti +sti +sti +sti +sti +sti +sQl +sQl +sQl +sQl +sQl +sQl +sQl +wSU +xHD +wVY +fYz +sQl +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +dkX +mne +mne +mne +mne +pGP +qKF +amf +jud +rIW +mne +mne +mne +mne +dkX +fgz +evm +dkX +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(53,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +bzE +jNg +jNg +xRj +xRj +xRj +xRj +xRj +ili +ili +ili +ili +ili +ogK +ogK +ogK +ogK +ogK +ogK +ogK +dkX +uCX +pob +kIs +oSx +rdJ +gkZ +pob +aCo +aCo +aCo +qEL +bvo +jLe +jLe +jLe +jLe +jLe +jLe +jLe +jLe +eQL +iAm +xwU +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +xSt +iWI +cfh +emu +xSt +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +dkX +mne +mne +mne +mne +dkX +jqP +ufz +mcN +dkX +mne +mne +mne +mne +dkX +dkX +dkX +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(54,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +bzE +jNg +jNg +xRj +xRj +xRj +xRj +xRj +ili +ili +ili +ili +ili +ogK +ogK +ogK +ogK +ogK +ogK +ogK +dkX +xEl +pob +kIs +naE +rdJ +vjS +pob +pob +pob +pob +lsx +rdJ +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +nLZ +tvS +dZr +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +sQl +xls +wVY +fYz +xSt +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +dkX +mne +mne +mne +mne +dkX +dkX +sKH +dkX +dkX +mne +mne +mne +nio +dkX +jNg +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(55,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +bzE +jNg +jNg +xRj +xRj +xRj +xRj +xRj +ili +ili +ili +ili +ili +ogK +ogK +ogK +ogK +ogK +ogK +ogK +dkX +gud +pob +kIs +naE +rdJ +vDA +jXo +clB +jWs +mNu +aUt +rdJ +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +uDx +odj +twB +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +xSt +fRJ +bxc +jOI +sQl +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +dkX +mne +mne +mne +mne +dkX +dkX +mHi +dkX +dkX +mne +mne +mne +mne +dkX +jNg +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(56,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +bzE +jNg +jNg +xRj +xRj +xRj +xRj +xRj +ili +ili +ili +ili +ili +ogK +ogK +ogK +ogK +ogK +ogK +ogK +dkX +nCd +pob +kIs +oRQ +rdJ +rdJ +rdJ +rdJ +pob +pob +kEh +rdJ +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +vOV +sXI +xwU +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +xSt +hRF +wVY +qva +sQl +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +dkX +mne +mne +mne +mne +dkX +dkX +acr +dkX +dkX +mne +mne +mne +mne +dkX +jNg +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(57,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +bzE +jNg +jNg +xRj +xRj +xRj +xRj +xRj +ili +ili +ili +ili +ili +ogK +ogK +ogK +ogK +ogK +ili +ili +dkX +sFB +sRK +bog +ayS +rdJ +pob +pob +pob +pob +pob +pob +rdJ +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +qOz +okH +jFO +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +xSt +gKK +wVY +sho +sQl +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +dkX +fGf +mne +mne +mne +mne +dkX +rGc +dkX +mne +mne +mne +mne +qjN +dkX +jNg +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(58,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +sXg +oxc +oxc +oxc +oxc +oxc +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +bzE +jNg +jNg +xRj +xRj +xRj +xRj +xRj +ili +ili +ili +ili +ili +xRj +xRj +xRj +xRj +xRj +xRj +xRj +dkX +jMS +hjz +uIC +rUz +rdJ +pob +pob +pob +pob +pob +pob +rdJ +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +nNR +ebA +xtc +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +sQl +nWQ +wVY +fYz +xSt +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +dkX +uCU +mne +mne +mne +mne +dkX +rEK +dkX +mne +mne +mne +mne +mne +dkX +jNg +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(59,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +pdu +oxc +qzP +ahT +hoa +qbH +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +bzE +jNg +jNg +xRj +xRj +xRj +xRj +xRj +ili +ili +ili +ili +ili +xRj +xRj +xRj +xRj +xRj +xRj +xRj +dkX +dfk +pob +kIs +uUa +rdJ +pmD +jtj +ala +pMo +kAO +jbB +rdJ +xRj +xRj +eUU +eUU +eUU +eUU +eUU +eUU +tVO +iAm +clz +eUU +eUU +eUU +eUU +eUU +eUU +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +xSt +aIl +ogq +emu +xSt +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +dkX +mne +mne +mne +mne +mne +mne +mne +mne +mne +mne +mne +mne +mne +dkX +jNg +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(60,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +plb +pdu +oxc +dIm +uze +lhZ +dhZ +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +bzE +jNg +jNg +xRj +xRj +xRj +xRj +xRj +ili +ili +ili +ili +ili +xRj +xRj +xRj +xRj +xRj +xRj +xRj +dkX +dfk +pob +kIs +oNQ +rdJ +rdJ +rdJ +qQg +poP +qQg +rdJ +rdJ +xRj +xRj +eez +eUU +eez +eez +eez +eez +eQL +xdl +mIj +eez +eez +eez +eez +eez +eez +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +xSt +xHD +wVY +fYz +xSt +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +dkX +mne +mne +mne +mne +mne +mne +mne +mne +mne +mne +mne +mne +mne +dkX +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(61,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +vca +pdu +umY +uze +cIC +trR +odY +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +bzE +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +ili +ili +ili +ili +xRj +xRj +xRj +xRj +xRj +xRj +xRj +dkX +hja +pob +kIs +uUa +rdJ +rEF +dDt +aID +ubd +ihG +nwQ +rdJ +xRj +xRj +eez +eez +eez +eez +eez +eez +wim +xgP +tfY +eez +eez +eez +eez +eez +eez +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +xSt +xHD +wVY +fYz +xSt +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +tCX +dkX +mne +mne +mne +mne +mne +mne +mne +mne +mne +mne +mne +mne +mne +dkX +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(62,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +uze +pdu +oxc +uze +dhZ +kFr +uze +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +vTv +jNg +jNg +jNg +jNg +bzE +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +ili +ili +ili +ili +xRj +xRj +xRj +xRj +xRj +xRj +xRj +dkX +uaC +lwn +gmV +bqQ +rdJ +uxM +pob +dpf +gGO +cgw +qvM +rdJ +xRj +xRj +eUU +eUU +eUU +xRj +xRj +xRj +wim +xgP +oWB +xRj +xRj +xRj +eUU +eUU +eUU +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +sQl +lnR +eTg +emu +rwD +sQl +sQl +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +psc +dkX +dTn +dTn +dTn +dTn +dTn +dTn +dTn +dTn +dTn +dTn +dTn +dTn +dTn +dkX +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(63,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +dYN +pdu +oxc +uze +jfr +obp +cCy +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +dkX +hja +pob +kIs +mHj +rdJ +ang +pob +evV +lQM +ugn +bmL +rdJ +xRj +eez +eez +eez +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +eez +eez +eez +xRj +xRj +urc +urc +urc +urc +urc +urc +nnP +yfe +nnP +nnP +nnP +nnP +nnP +nnP +nnP +nnP +nnP +nnP +xRj +jNg +jNg +sQl +aCx +lFl +fYz +xST +rhG +tzn +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +psc +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(64,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +qAx +pdu +oxc +oxc +oxc +oxc +oxc +bjg +bjg +bjg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +dkX +dpf +hjz +jAG +cgw +rdJ +pGC +pob +pob +pob +qey +emL +rdJ +eez +eez +eez +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +eez +eez +eez +xRj +urc +sdx +sWz +rFT +aju +gqZ +cUa +aPQ +sVm +dPQ +khD +vjT +xtw +hik +rxu +wGN +nEa +nnP +xRj +jNg +jNg +xSt +xHD +lFl +fYz +mTa +bew +hoc +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(65,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +uze +pdu +oxc +xmw +uze +pMT +xmw +eNi +xAd +oxc +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +dkX +dkX +pob +kIs +pob +rdJ +bcY +sHH +xaF +tIH +xzr +jAa +rdJ +oHN +iRB +kPv +wIY +wIY +wIY +wIY +wIY +wIY +wIY +wIY +xRj +xRj +xRj +xRj +xRj +oHN +iRB +kPv +xRj +urc +qWJ +eRi +ufQ +hro +gqZ +pAD +cWc +jeQ +oOx +ovt +khu +oYx +wqi +csq +onr +ojm +nnP +xRj +jNg +jNg +xSt +xHD +fjs +eTc +sQl +sQl +sQl +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(66,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +dIm +pdu +bMJ +uze +obb +dvF +uze +kMv +kfP +oxc +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +rTu +rTu +rTu +rTu +rTu +rTu +rTu +rTu +rTu +rTu +vgr +aGI +fsR +llY +pQR +rdJ +qQg +qQg +rdJ +rdJ +rdJ +rdJ +rdJ +qZT +tMU +gbt +wIY +cgB +vcl +fNh +bRX +kab +wJX +wIY +xRj +xRj +xRj +xRj +xRj +qZT +tMU +gbt +xRj +urc +oUz +dOA +cyk +rRi +uWF +lns +fyz +hrH +lsW +pfA +mNO +eJe +cTe +lFq +srQ +ojm +nnP +xRj +jNg +jNg +kaO +oyd +iju +dtb +sQl +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(67,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +rTu +rTu +rTu +rTu +rTu +rTu +rTu +rTu +rTu +rTu +iyv +aGI +hXY +dBq +tfg +wUl +bFR +xRj +xRj +xRj +xRj +xRj +xRj +oYe +nRX +ftM +kbP +eoP +puC +raV +eaB +nEf +xCr +wIY +xRj +xRj +xRj +xRj +xRj +oYe +nRX +ftM +xRj +urc +kot +xHb +mfn +mfn +gqG +ntW +fCr +hYO +fmO +hpO +qZD +ctl +qZD +hpO +dGc +ojm +vYT +xRj +xRj +xRj +sQl +sQl +sQl +sQl +sQl +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(68,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +rTu +rTu +rTu +rTu +rTu +rTu +rTu +rTu +rTu +rTu +aGI +aGI +wtl +szl +tfg +wUl +bFR +xRj +xRj +xRj +xRj +xRj +xRj +byY +bZl +hbS +kbP +hey +puC +qzE +gvc +wzN +nuL +wIY +xRj +xRj +xRj +xRj +xRj +byY +bZl +hbS +xRj +urc +bdl +uQs +kMb +xuR +gqZ +pAD +jZL +dmO +kxa +ojm +kQS +sZS +ojm +ojm +uKB +ojm +nnP +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(69,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +rTu +rTu +rTu +oCN +oCN +oCN +oCN +oCN +oCN +oCN +dVW +vCO +lOs +xpU +fSE +wUl +bFR +xRj +xRj +xRj +xRj +xRj +xRj +eQL +xgP +clz +kbP +ivS +puC +puC +qzE +fUE +rCU +wIY +xRj +xRj +xRj +xRj +xRj +eQL +xgP +clz +xRj +urc +urc +urc +urc +urc +urc +uDE +job +dmO +kxa +gJj +ojm +bHg +ojm +gJj +uKB +ciK +nnP +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(70,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +rTu +rTu +rTu +oCN +mXO +mXO +mXO +mXO +mXO +mXO +vGO +sBr +wtl +uYH +kid +wUl +bFR +xRj +xRj +xRj +xRj +xRj +xRj +rlK +xgP +clz +aMl +hDt +jxt +jxt +bkP +ljJ +dDm +wIY +xRj +xRj +xRj +xRj +xRj +rlK +xgP +clz +xRj +nnP +eNY +eNY +bxv +eNY +nnP +geL +pxb +khu +wJJ +ovt +khu +ejb +wqi +csq +uKB +ojm +nnP +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(71,1,1) = {" +jNg +jNg +jNg +jNg +jNg +dzN +jMw +wSl +cRT +rfr +cRT +cRT +vTi +cRT +cRT +fvL +cRT +tsP +fsZ +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +rTu +rTu +rTu +oCN +mXO +mXO +mXO +mXO +mXO +mXO +vGO +onw +wtl +fcu +xmk +wUl +bFR +xRj +xRj +xRj +xRj +xRj +xRj +nld +xgP +adZ +kbP +niu +puC +puC +qzE +fUE +hJp +wIY +xRj +xRj +xRj +xRj +xRj +nld +xgP +adZ +xRj +npu +aiV +nZq +nKg +pbT +jvK +esY +kYz +ftL +mWX +wxJ +ftL +gmp +rOm +cEY +uKB +ojm +nnP +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(72,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jPj +irX +sjP +rzs +hvu +pob +riK +kEh +pob +pob +riK +pob +pob +cci +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +rTu +rTu +rTu +oCN +mXO +mXO +mXO +mXO +mXO +mXO +vGO +yfo +aCq +fcu +mLh +aGI +aGI +aGI +dkX +dkX +dkX +xRj +xRj +eQL +xgP +bSd +kbP +kEB +puC +qzE +iEw +woe +cdx +wIY +xRj +xRj +xRj +xRj +xRj +eQL +xgP +bSd +xRj +nnP +eNY +eNY +ife +eNY +nnP +pAD +djr +pAD +tMy +khD +xaQ +khD +tMy +tLH +uKB +ojm +nnP +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +psc +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(73,1,1) = {" +jNg +jNg +jNg +jNg +jNg +klU +che +pob +pob +sSQ +ocK +dec +hJZ +saT +ocK +dec +ocK +saT +tLA +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +rTu +rTu +rTu +oCN +oCN +mXO +mXO +mXO +mXO +mXO +dVW +yfo +oCT +fcu +bKU +mRI +uba +uba +dnj +dnj +dkX +xRj +xRj +olB +xgP +clz +kbP +pjH +puC +raV +fLD +rpb +bEg +wIY +xRj +xRj +xRj +xRj +xRj +olB +xgP +clz +xRj +nnP +nnP +nnP +nnP +nnP +nnP +nnP +nnP +nnP +nnP +nnP +nnP +nnP +nnP +dtG +mJt +hbA +dtG +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(74,1,1) = {" +jNg +jNg +jNg +jNg +jNg +xRj +jTi +pob +pob +hgl +hAR +aDH +hAR +uDk +hAR +aDH +hAR +uDk +cci +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +rTu +rTu +rTu +oCN +oCN +oCN +mXO +mXO +mXO +oCN +dVW +pvb +jPL +nSW +kCI +jQF +uba +uba +dnj +dnj +dkX +xRj +xRj +jys +olt +wXT +wIY +nIu +rdf +hyL +rCH +jDn +piy +wIY +xRj +xRj +xRj +xRj +xRj +jys +olt +wXT +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(75,1,1) = {" +jNg +jNg +jNg +jNg +jNg +xRj +dSQ +pob +pob +pob +pob +pob +pob +pob +pob +pob +pob +pob +cci +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +oPo +rTu +rTu +rTu +oCN +oCN +oCN +oCN +oCN +oCN +oCN +dVW +bLC +dpg +bii +gRE +aGI +aXR +uba +dnj +dnj +dkX +xRj +xRj +rWo +sIF +clz +rFF +wIY +wIY +wIY +wIY +wIY +wIY +wIY +xRj +xRj +xRj +xRj +xRj +rWo +sIF +clz +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(76,1,1) = {" +jNg +jNg +jNg +jNg +jNg +xRj +vpu +aKZ +gWq +fRf +jMn +kAA +jzc +crL +oSJ +aBr +sNR +lPB +xKW +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +rTu +rTu +rTu +oCN +oCN +oCN +oCN +oCN +oCN +kJi +dVW +dVW +aGI +aGI +aGI +aGI +aGI +sgr +hue +hue +dkX +xRj +xRj +eQL +xgP +maa +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +eQL +xgP +maa +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(77,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +rTu +rTu +rTu +oCN +oCN +oCN +oCN +oCN +oCN +kJi +dVW +xoh +uVB +yiZ +xef +dEt +rPt +uba +dnj +jMU +dkX +xRj +xRj +eQL +xgP +ifQ +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +eQL +xgP +ifQ +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(78,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +dkX +dkX +dkX +dkX +dkX +dkX +dkX +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +rTu +rTu +rTu +oCN +oCN +oCN +oCN +oCN +oCN +kJi +dVW +eIv +fFJ +cPD +uba +uba +uba +uba +dnj +jMU +dkX +xRj +xRj +jux +olt +wXT +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jux +olt +wXT +xRj +meE +meE +meE +meE +meE +meE +meE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(79,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +dkX +eNt +pGg +fBI +iwF +xfQ +bul +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +oPo +rTu +rTu +rTu +rTu +oCN +oCN +oCN +oCN +oCN +kJi +dVW +gva +hxi +alo +iRf +uba +uba +uba +dnj +jMU +dkX +xRj +xRj +eQL +xgP +fkm +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +eQL +xgP +fkm +xRj +meE +pIB +rQc +aKC +wyP +rou +pul +iMY +hdt +cys +lEq +tmf +mqr +xlM +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(80,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +hMD +rKA +wwN +wPV +wwN +wwN +rKA +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +rTu +rTu +rTu +rTu +rTu +oCN +oCN +oCN +oCN +kJi +aGI +aGI +aGI +aGI +aGI +aGI +aGI +aGI +dkX +dkX +dkX +xRj +xRj +rip +xgP +clz +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +rip +xgP +clz +xRj +meE +dkh +noZ +sDe +mrA +kqJ +pul +thX +aau +jyC +oTA +aQv +aoJ +aoJ +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +psc +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(81,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +byX +byX +byX +nBS +gxC +eOH +dTX +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +hMD +rKA +gPM +bZe +bZe +dSB +fcc +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +rTu +rTu +rTu +rTu +rTu +oCN +oCN +oCN +oCN +kJi +rTu +rTu +rTu +rTu +rTu +rTu +rTu +rTu +xRj +xRj +xRj +xRj +xRj +dhw +bZl +xtc +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +dhw +bZl +xtc +xRj +meE +oIm +ezT +wyX +lKS +bgE +pul +kyW +sXO +aau +xIq +pxF +aau +sXO +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(82,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +pob +pob +pob +vEi +kqD +phG +hkg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +hMD +rKA +gPM +faa +bZe +dSB +gAa +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +rTu +rTu +rTu +rTu +rTu +oCN +oCN +oCN +oCN +oCN +rTu +rTu +rTu +rTu +rTu +rTu +rTu +xRj +xRj +xRj +xRj +xRj +xRj +oHN +iRB +kPv +xRj +xRj +xRj +xRj +bjg +bjg +bjg +bjg +bjg +bjg +bjg +xRj +xRj +oHN +iRB +kPv +xRj +meE +pul +pul +jTS +dub +jTS +pul +dsD +vzu +dsD +hvO +ush +dsD +vzu +dsD +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(83,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +qzd +kRF +aEB +kRF +clX +jIp +mKg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +hMD +rKA +gPM +bZe +faa +dSB +rKA +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +rTu +rTu +rTu +rTu +rTu +oCN +oCN +oCN +oCN +oCN +rTu +rTu +rTu +rTu +rTu +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +qZT +tMU +gbt +xRj +xRj +xRj +xRj +bjg +rqD +fLR +axd +sLs +qFN +bjg +xRj +xRj +qZT +tMU +gbt +xRj +iPW +haQ +tHB +uMM +amw +tkI +vbT +eeY +eOe +uvX +ceM +rJD +vNY +fsN +dsD +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +psc +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(84,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +pob +pob +pob +hTQ +cKP +pob +xEh +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +hMD +rKA +gPM +eUJ +kpe +dSB +iNf +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +rTu +rTu +rTu +rTu +rTu +oCN +oCN +oCN +oCN +oCN +rTu +rTu +rTu +rTu +rTu +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +oYe +nRX +ftM +xRj +xRj +xRj +xRj +bjg +vNz +lsZ +tWk +tWk +lQO +fIO +xRj +xRj +oYe +nRX +ftM +xRj +iPW +eOl +eOl +eOl +feB +tCG +rLV +fDJ +fDJ +fDJ +fDJ +hPn +eOl +uVf +dsD +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(85,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +pob +pob +pob +pob +kEh +pob +qvM +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +dkX +bOF +wwN +quB +uvm +iSC +rKA +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +rTu +rTu +rTu +rTu +rTu +oCN +oCN +oCN +oCN +oCN +rTu +rTu +rTu +rTu +rTu +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +byY +bZl +hbS +xRj +xRj +xRj +xRj +rGD +oVe +hfQ +nBa +heq +heq +fVV +xRj +xRj +byY +bZl +hbS +xRj +iPW +rqs +lEF +sfX +rRJ +sfX +wrh +eOl +eOl +eOl +eOl +nJA +eOl +ltO +dsD +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(86,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +uhc +pmD +jtj +ala +pMo +kAO +jbB +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +rdJ +rKA +rKA +rKA +aek +eMS +fdP +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +rTu +rTu +rTu +rTu +rTu +rTu +oCN +oCN +oCN +rTu +rTu +rTu +rTu +rTu +rTu +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +eQL +xgP +clz +xRj +xRj +xRj +xRj +bjg +kiQ +bjg +bjg +bjg +bjg +bjg +xRj +xRj +eQL +xgP +clz +xRj +iPW +aqR +mJP +mJP +mJP +mJP +mJP +mJP +wAB +mJP +eOl +fDI +tsT +dsD +dsD +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(87,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +rdJ +xfQ +sBI +fXq +rdJ +hOW +bQH +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +rTu +rTu +rTu +rTu +rTu +rTu +oCN +oCN +oCN +rTu +rTu +rTu +rTu +rTu +rTu +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +rlK +xgP +clz +xRj +xRj +xRj +xRj +bjg +iLD +bjg +xRj +xRj +xRj +xRj +xRj +xRj +rlK +xgP +clz +xRj +iPW +wAB +scN +mJP +hOF +uvU +jTs +jTs +rVX +jCV +fDJ +fOe +xoy +dsD +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(88,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +rdJ +rdJ +rdJ +rdJ +rdJ +vpO +wJf +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +rTu +rTu +rTu +rTu +rTu +rTu +rTu +rTu +rTu +rTu +rTu +rTu +rTu +rTu +rTu +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +nld +xgP +adZ +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +nld +xgP +adZ +xRj +iPW +mgg +qSq +kNK +aVu +ugs +mJP +mJP +fJm +mJP +eOl +eOl +shJ +dsD +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(89,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +rTu +rTu +rTu +rTu +rTu +rTu +rTu +rTu +rTu +rTu +rTu +rTu +rTu +rTu +rTu +xRj +xRj +xRj +aFa +aFa +aFa +aFa +aFa +aFa +xRj +eQL +xgP +bSd +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +eQL +xgP +bSd +xRj +xRj +iPW +fJm +uFu +rXg +qZR +mJP +kjF +jnZ +sLI +lCx +eOl +eOl +eOl +iEX +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(90,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +rTu +rTu +rTu +rTu +rTu +rTu +rTu +rTu +rTu +rTu +rTu +rTu +rTu +rTu +rTu +xRj +xRj +xRj +aFa +tHJ +maM +sNr +gpv +kiD +xRj +olB +xgP +clz +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +olB +xgP +clz +xRj +xRj +xRj +iPW +mJP +mrS +rXg +vrC +mJP +kjF +jnZ +sLI +dsD +vvP +tbS +vvP +dsD +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +psc +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(91,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bPU +lcW +aFa +aFa +aFa +tMg +nSH +piB +piB +kiD +xRj +jys +olt +wXT +xRj +uTr +vvR +uTr +qJG +ggL +ggL +ggL +jmz +jys +olt +wXT +xRj +xRj +xRj +iPW +dRt +mJP +mJP +mJP +mJP +mJP +uau +jNp +dsD +mJP +uau +mJP +dsD +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(92,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +pTh +ecK +aFa +kYx +piB +mMT +nSH +lEw +lEw +kiD +xRj +rWo +sIF +clz +xRj +wPz +byt +fop +qJG +czH +khS +khS +tuY +rWo +sIF +clz +xRj +xRj +xRj +iPW +fMh +vuK +bsZ +mJP +mJP +kjF +cHX +vaR +dsD +kjF +jnZ +bnw +dsD +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(93,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +pfO +xHd +aFa +xwz +piB +mMT +nSH +lDo +rzS +aFa +xRj +eQL +xgP +maa +xRj +byt +byt +hlO +qJG +jBm +izO +vmY +oRw +eQL +xgP +maa +xRj +xRj +xRj +iPW +vuf +mJP +mJP +mJP +mJP +kjF +aXb +voN +dsD +kjF +oGx +voN +dsD +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +psc +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(94,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +ikV +oKe +aFa +kLc +lus +lus +gCd +dGT +goT +iiq +xRj +eQL +xgP +ifQ +xRj +ugo +mER +mER +mER +xhd +ePo +vqA +mER +eQL +xgP +ifQ +xRj +xRj +xRj +iPW +eDF +plx +plx +ect +bIw +dsD +dsD +dsD +dsD +dsD +dsD +dsD +dsD +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(95,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +pst +xHd +aFa +cEN +rlA +rlA +cvx +rlA +rlA +mgS +xRj +oHN +iRB +kPv +xRj +ugo +tnA +mBh +jnl +uzY +emV +vdF +mER +oHN +iRB +kPv +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(96,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +uaF +vYM +tsf +unE +ofn +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +nAT +xHd +aFa +vce +ghr +wtM +cPp +eaK +rBZ +nTC +xRj +qZT +tMU +gbt +xRj +ugo +iVV +mlA +mlA +mlA +nHP +vGH +mER +qZT +tMU +gbt +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(97,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +aNK +oYj +eoX +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +uaF +vYM +ert +fYF +kjn +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +saW +xHd +aFa +icA +pzu +ifX +cPp +eaK +noo +aFa +xRj +oYe +nRX +ftM +xRj +ugo +jsb +peJ +uDt +qHS +gUh +iWC +mER +oYe +nRX +ftM +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(98,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +pmV +pBa +ndA +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +uaF +wTx +qwZ +tsf +kjn +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +tps +boL +utu +dYP +mwp +ifX +cPp +eaK +nPI +aFa +xRj +byY +bZl +hbS +xRj +ugo +iZf +tfv +tfv +sWc +qLk +sFn +mER +byY +bZl +hbS +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(99,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +aNK +oYj +sgq +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +uaF +jRW +edF +tsf +uft +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +dCO +ouH +aFa +vtb +flK +ifX +gmJ +rbv +bWH +kiD +xRj +eQL +xgP +clz +xRj +axv +feD +raA +dEr +sWc +mlA +mlA +mER +eQL +xgP +clz +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(100,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +dkX +dkX +dkX +dkX +rdJ +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +aNK +oYj +sMV +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +uaF +eGI +erV +tsf +lZv +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bPU +aFa +gLA +wLm +pcR +loh +dQJ +rTs +kiD +xRj +rlK +xgP +clz +xRj +ugo +taX +esN +esN +fsG +mlA +wYU +msB +rlK +xgP +clz +xRj +xRj +xRj +isf +ucD +nkk +nkk +skf +mTU +nkk +nkk +ucD +isf +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(101,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +dkX +toF +hFN +hFN +nwm +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +aNK +oYj +uhE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +uaF +jkS +pfk +jor +imI +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +mwl +aFa +gqq +sEz +mXP +hJW +eaK +mJy +aFa +xRj +nld +xgP +adZ +xRj +ugo +mER +mER +mER +mER +mER +mER +mER +nld +xgP +adZ +xRj +xRj +xRj +iAK +qYI +fXA +nkk +clE +npO +nkk +fXA +tFC +hbF +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(102,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +dkX +wwG +syO +rdJ +rdJ +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +aNK +oYj +eoX +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +uaF +jkS +fbr +nct +iif +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +fZy +fZy +cfv +fZy +fZy +dOB +eaK +qbM +aFa +xRj +eQL +xgP +bSd +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +eQL +xgP +bSd +xRj +xRj +xRj +rWf +nNo +ekR +nkk +tNi +uxn +fmw +nHt +jQd +rWf +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(103,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +dkX +nAF +ddG +rdJ +rdJ +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +aNK +oYj +nvI +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +uaF +oKo +lnF +bAc +bRa +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +kMD +qCb +jNH +xCL +fZy +xRj +xRj +xRj +xRj +xRj +olB +xgP +clz +xRj +xRj +aLV +aLV +aLV +aLV +aLV +xRj +xRj +olB +xgP +clz +xRj +xRj +xRj +rWf +gEb +mVc +nkk +wgE +gRB +kOk +qQK +dOW +rWf +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(104,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +dkX +ovp +kxn +rdJ +rdJ +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +aNK +oYj +nvI +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +uaF +ozZ +iCg +fhK +fhK +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xHo +muT +nYt +sBP +fZy +xRj +xRj +xRj +xRj +xRj +jys +olt +wXT +xRj +xRj +aDX +ctS +kYE +oZB +aLV +xRj +xRj +jys +olt +wXT +xRj +xRj +xRj +mVP +tRJ +gVv +nkk +fLT +xON +nkk +bYt +tRJ +tYg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(105,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +dkX +fHh +xYB +rdJ +rdJ +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +aNK +oYj +nvI +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +fZy +aAt +gwz +vIw +nmq +fZy +xRj +xRj +xRj +xRj +xRj +rWo +sIF +clz +xRj +xRj +aLV +lCd +ghn +meH +aLV +xRj +xRj +rWo +sIF +clz +xRj +xRj +xRj +jNg +fXA +uPB +qJO +iRz +dFj +urL +iiI +fXA +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(106,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +inw +nuU +oeU +rdJ +rdJ +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +aNK +oYj +nvI +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +fZy +kvM +muT +lXt +qeJ +fZy +xRj +xRj +xRj +xRj +xRj +eQL +xgP +maa +xRj +xRj +sTF +sAo +bLT +qXL +aLV +xRj +xRj +eQL +xgP +maa +xRj +xRj +xRj +jNg +xUp +jmU +xri +iLZ +lVu +jcv +jmU +xUp +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +psc +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(107,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +rdJ +rdJ +rdJ +rdJ +rdJ +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +fZy +pQo +xhP +qum +xPV +fZy +xRj +xRj +xRj +xRj +xRj +eQL +xgP +ifQ +xRj +xRj +aLV +aLV +aLV +aLV +aLV +xRj +xRj +eQL +xgP +ifQ +xRj +xRj +xRj +jNg +fXA +lAO +uJA +jsj +aSd +qoL +bYy +fXA +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(108,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +muZ +mdo +omA +iPD +qVT +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +fZy +fZy +fZy +fZy +fZy +fZy +xRj +xRj +xRj +xRj +xRj +jux +olt +wXT +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jux +olt +wXT +xRj +xRj +xRj +jNg +xUp +jmU +uXd +iLZ +lVu +sks +jmU +xUp +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(109,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +leE +qQJ +pob +qnG +mAC +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +qBc +uaF +uaF +uaF +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xxb +pdu +oxc +oxc +oxc +oxc +oxc +oxc +oxc +oxc +xRj +xRj +xRj +xRj +eQL +xgP +fkm +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +eQL +xgP +fkm +xRj +xRj +xRj +jNg +fXA +sfh +tQt +eTt +lVu +aWX +mcY +fXA +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +psc +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(110,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +fiu +car +car +car +joN +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +qBc +doM +nVs +fhK +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +bzE +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +uze +pdu +mYb +skq +kvR +oNi +gjY +dzM +jpf +mYb +xRj +xRj +xRj +xRj +oHN +iRB +kPv +twI +twI +twI +xjE +twI +twI +twI +twI +twI +rip +xgP +clz +xRj +xRj +xRj +jNg +isf +isf +isf +isf +oOL +isf +isf +isf +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +puF +tOv +jdj +glq +jdj +cyD +cyD +mOV +mOV +mOV +mOV +mOV +fZY +lft +lft +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(111,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +rdJ +iLb +eGS +rdJ +rdJ +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +uaF +gjr +gjr +gjr +gjr +uaF +rcq +fhK +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +bzE +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +qAx +lQC +mYb +mUT +ckl +cmM +qYE +euS +cTH +mYb +mYb +mYb +mYb +qZT +tMU +gbt +xRj +twI +oHX +kXe +ntG +dBL +kmI +bRS +vMW +twI +dhw +bZl +xtc +xRj +xRj +xRj +jNg +wwz +fvW +vRP +dRp +aJQ +wGj +fvW +tDC +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +sEA +sEA +coK +oVo +jdj +cyD +cyD +cyD +cyD +cyD +cyD +cyD +iwC +kSZ +lft +sAS +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(112,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +rdJ +wIX +iGx +gja +rdJ +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +uaF +wzg +wzg +wzg +wzg +fBz +uXK +fhK +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +bzE +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +dIm +pdu +mYb +avM +jwc +gas +sJi +sJi +sJi +sJi +jXa +woV +jTK +oYe +nRX +ftM +xRj +twI +sne +qOk +ykT +kZt +twI +twI +twI +twI +oYe +nRX +ftM +xRj +xRj +xRj +jNg +jNg +nzy +hHd +vld +tQg +iCl +nzy +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xjI +cyD +jdj +jdj +jdj +jdj +jdj +jdj +cyD +cyD +cyD +cyD +cyD +pDd +lft +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(113,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +rdJ +pob +pob +tyc +rdJ +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +uaF +dNq +wzg +wzg +wzg +oFx +rcq +wby +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +bzE +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +gkR +pdu +mYb +eJs +dqb +spc +fRL +uue +uue +oEf +hws +foc +xpQ +byY +bZl +hbS +xRj +twI +sne +qOk +jxe +nLd +kmI +oFO +bpS +twI +byY +bZl +hbS +xRj +xRj +xRj +jNg +jNg +nzy +nzy +fEx +fEx +nzy +nzy +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +aka +cJh +lID +jdj +cyD +oDQ +kSZ +jdj +jdj +jdj +jdj +jdj +jdj +jdj +lft +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(114,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +rdJ +bfO +pob +nMh +rdJ +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +uaF +oFx +gDL +vww +kxe +jMp +ybJ +oFx +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +bzE +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +gkR +pdu +mYb +wqe +pvF +pOC +ePR +hfp +uue +pAM +pOC +fZp +dvb +eQL +xgP +clz +xRj +twI +gnr +wxx +jym +vkl +twI +twI +twI +twI +eQL +xgP +clz +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jdj +jdj +jdj +jdj +kSZ +cyD +cyD +kSZ +jdj +uHE +oIZ +wxP +pPX +jdj +lft +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(115,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +rdJ +wyc +pob +cUt +rdJ +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +uaF +nTf +xIk +kMQ +oFx +nZR +oFx +pAb +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +gkR +pdu +mYb +bHQ +cri +arW +svn +oqJ +hJO +tbI +gVE +bxI +hkm +rlK +xgP +clz +xRj +twI +bdt +bRS +bRS +vkl +biT +bjw +kXr +twI +rlK +xgP +clz +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +vde +fOY +vte +jdj +cyD +cyD +cyD +cyD +oQY +sEA +sEA +rgW +rBw +biu +kNR +psc +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(116,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +rdJ +wyc +gsj +kpN +rdJ +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +uaF +uaF +uaF +uaF +xNI +wYc +gUN +mKq +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +uze +pdu +mYb +nKO +amc +coH +ylC +uue +uue +pAM +uYs +fZp +xTU +nld +xgP +adZ +xRj +twI +maJ +rbW +opm +lwU +nLd +bjw +atV +twI +nld +xgP +adZ +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +bzE +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +dNv +dNv +dNv +xmE +dNv +dNv +dNv +dNv +jdj +pPX +sEA +rgW +khQ +blv +kNR +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(117,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +rdJ +wyc +hSU +kvI +rdJ +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +dIm +pdu +mYb +nKO +vWs +sbD +teT +uue +uue +ubg +vxs +sPy +cAt +eQL +xgP +bSd +xRj +twI +nzK +bjw +vkl +bRS +vkl +bjw +ihi +twI +eQL +xgP +bSd +xRj +pbo +oeE +oeE +oeE +hYh +eza +oeE +xRj +xRj +xRj +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +bzE +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jdj +jdj +jdj +jdj +kSZ +dNv +cyD +dNv +jdj +lOX +sEA +rgW +ciW +kJp +kNR +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(118,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +rdJ +scr +aVF +joU +rdJ +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +gzm +pdu +qhK +pdu +mYb +iBZ +vyg +doC +nNH +uue +uue +iQL +pRV +iQL +qtB +olB +xgP +clz +xRj +twI +mRl +gjv +rln +tDB +tTD +gjv +cbS +twI +olB +xgP +clz +xRj +aNK +anp +fOY +tUY +oAT +kSZ +kSZ +xRj +xRj +xRj +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +psc +bzE +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +cyD +oDQ +cyD +wzh +wzh +qXp +wzh +dNv +jdj +ctY +mak +fPa +pPX +lft +lft +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(119,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +rdJ +qfY +kIs +bnJ +pbY +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +psc +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +uze +xxb +ujK +pdu +mYb +owz +bsl +eLu +ibU +plz +plz +plz +yey +plz +cEb +jys +olt +wXT +xRj +wZQ +wZQ +wZQ +iQk +wZQ +ulc +wZQ +wZQ +wZQ +jys +olt +wXT +xRj +pgL +dth +dth +dth +jhJ +dth +dth +xRj +xRj +xRj +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +bzE +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +cyD +wzh +wzh +wzh +wJl +eUD +wzh +huP +jdj +lft +lft +lft +lft +lft +lft +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(120,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +rdJ +pob +kIs +tVX +rdJ +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +iWc +hqK +mYb +kxk +pOC +uqY +nCE +uue +uue +uue +pyh +uue +qLG +rWo +sIF +clz +xRj +wZQ +ftb +xtW +jOr +wZQ +lPo +hJE +gvL +wZQ +rWo +sIF +clz +xRj +kwF +iui +cTE +rBP +nMY +nQj +dth +xRj +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +bzE +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +cyD +wzh +ulS +eMF +eaR +eUD +wzh +dNv +cyD +cyD +lft +lft +lft +lft +lft +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(121,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +rdJ +kHM +kIs +kcJ +rdJ +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +lhZ +pdu +mYb +tep +pOC +nRR +teT +uue +uue +iQL +hZk +sDi +ahv +eQL +xgP +maa +xRj +wZQ +ftn +cJy +eHF +wZQ +eIl +izy +okP +wZQ +eQL +xgP +maa +xRj +ohW +dth +lIw +qLQ +yjr +gPm +dth +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +bzE +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +cyD +wzh +tPy +vTh +ckU +mha +wzh +dRO +cyD +cyD +lft +lft +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(122,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +rdJ +rdJ +wUf +rdJ +rdJ +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +lOO +pdu +esp +hJi +hgo +hrv +aGL +fFM +uue +iZX +arr +hGU +qBg +eQL +xgP +ifQ +xRj +wZQ +hsu +kWo +mXd +sYk +kHE +xvm +sve +wZQ +eQL +xgP +ifQ +xRj +ohW +dth +pOh +tpH +alU +oAa +dth +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +bzE +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +cyD +wzh +weh +weh +weh +eUD +wzh +dNv +cyD +cyD +lft +lft +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(123,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +rdJ +nui +apg +khT +rdJ +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +bzE +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +lhZ +pdu +mYb +qdE +nwz +xft +dIE +bFn +rZl +rVI +aMy +hfY +dgm +jux +olt +wXT +xRj +wZQ +oYJ +gAi +eYk +sYk +bRC +pgF +izz +wZQ +jux +olt +wXT +xRj +oeW +dth +dth +dth +dth +qHn +dth +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +bzE +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +cyD +wzh +tci +esm +tPH +dBa +wzh +dNv +lAI +cyD +lft +tFU +cgo +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(124,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +rdJ +iLv +kHn +nHB +gaj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +vTv +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +bzE +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +gMJ +pdu +mYb +jsH +uhY +esI +cKW +bFn +uue +xKz +amc +vyg +adp +eQL +xgP +fkm +xRj +wZQ +ikk +gAi +eYk +sYk +bRC +pgF +oAh +wZQ +eQL +xgP +fkm +xRj +oeW +sCh +iso +sly +dth +rEd +dth +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +bzE +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +cyD +wzh +oxx +esm +fmm +eUD +wzh +dNv +cyD +wne +lft +lft +lft +sAS +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(125,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +rdJ +suU +xoZ +fnT +vGJ +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +bzE +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +mZA +ftU +mYb +eFG +bwJ +jzT +cXG +rzL +uue +xKz +vyg +pOC +ofd +rip +xgP +clz +xRj +wZQ +ibx +nFT +pkq +jpl +bMt +hgn +dnu +wZQ +rip +xgP +clz +xRj +oeW +dpb +jrm +lhL +oeW +oeW +oeW +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +cyD +wzh +wzh +wzh +wzh +thc +wzh +dNv +jdj +jdj +jdj +cyD +lft +bph +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(126,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +rdJ +tgY +pdw +vmt +rdJ +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +bzE +jNg +jNg +tCX +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +lhZ +pdu +mYb +hGB +aUs +iQS +lVq +bFn +uue +xKz +pOC +vyg +bIp +dhw +bZl +xtc +xRj +wZQ +ibx +ibx +iDW +wZQ +gZf +cVE +xIb +wZQ +dhw +bZl +xtc +xRj +oeW +mrJ +wge +loX +ujD +qoX +oeW +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +psc +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +cyD +cyD +cyD +jdj +lAI +dNv +kSZ +dNv +jdj +cyD +vde +cyD +cyD +bph +rUF +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(127,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +rdJ +lYx +rdJ +lYx +rdJ +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +mfu +pdu +mYb +uMq +sQf +hLV +dCX +kPw +uue +uue +rZl +sJi +uNT +xRj +bTI +hhy +lNo +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bTI +hhy +lNo +xRj +xRj +oeW +fPp +iuu +ofG +oeW +nVc +oeW +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +psc +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +cyD +cyD +cyD +jdj +phr +dNv +dNv +dNv +fnF +cyD +cyD +cyD +cyD +cyD +rUF +rUF +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(128,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +keD +xxb +mYb +jfm +lcR +fmJ +apK +wFn +nbg +esr +vdw +dyH +fJS +xRj +vsG +hhy +uxe +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +vsG +hhy +uxe +xRj +xRj +oeW +oeW +aNv +oeW +oeW +oeW +oeW +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +cyD +cyD +cyD +jdj +cyD +dNv +cyD +jdj +jdj +cyD +cyD +cyD +cyD +cyD +dqg +rUF +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(129,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +gMJ +uze +mYb +xUy +mpL +tmc +otM +rhR +kim +gAb +gAb +ckq +odX +xRj +yjC +hhy +uJm +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +yjC +hhy +uJm +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +cyD +xgT +cyD +jdj +kSZ +dNv +cyD +jdj +xRc +cyD +cyD +cyD +cyD +cyD +dqg +rUF +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(130,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +ycC +hhy +eLC +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +ycC +hhy +eLC +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +psc +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jdj +jdj +jdj +jdj +cyD +dNv +cyD +jdj +teS +cyD +cyD +cyD +ksB +cyD +dqg +rUF +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(131,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +tjm +lUh +edR +tjm +tjm +wUc +tjm +hgT +ueR +oAD +kKH +kef +hgT +tjm +vGA +hhy +ngd +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +vGA +hhy +ngd +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jdj +cyD +cyD +kSZ +cyD +dNv +cyD +jdj +lAI +jdj +jdj +jdj +jdj +jdj +jdj +lft +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(132,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +aFo +aFo +aFo +aFo +gBt +wxw +kKt +hWM +ipW +irE +irE +xJZ +hWM +irE +jGf +vOU +eLC +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jGf +vOU +eLC +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +dNv +dNv +dNv +dNv +dNv +dNv +cyD +jdj +cyD +cyD +cyD +cyD +sEA +sEA +sEA +rUF +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(133,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +oYV +eEJ +wXu +thT +lmB +brQ +jOq +oCc +jYo +thT +gnm +sSr +oCc +jOq +mhL +mWz +cYl +xRj +xRj +own +own +stV +own +own +xRj +mhL +mWz +cYl +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +cyD +kSZ +lAI +jdj +cyD +dNv +kSZ +jdj +oGE +cyD +cyD +cyD +wLx +mUO +sEA +rUF +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(134,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +vgW +yiH +yiH +yiH +yiH +yiH +yiH +uoD +xzO +pdK +ceG +sle +asR +nQR +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +dDd +pcK +pcK +pcK +pcK +pcK +pcK +eez +hhy +jpO +xRj +xRj +own +qTR +kPs +whp +own +xRj +eez +hhy +jpO +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jdj +jdj +jdj +jdj +jdj +dNv +dkf +jdj +jdj +jdj +eXv +cyD +rku +mGw +sEA +rUF +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(135,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +vgW +kBl +pWq +xyG +lLc +asR +ceG +ceG +ceG +ceG +eWd +asR +hqO +nQR +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +snQ +rXC +aqP +fSZ +fRp +ctD +pcK +dKl +hrs +pvA +xRj +xRj +own +aDc +qfo +iyz +own +xRj +dKl +hrs +pvA +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +kBR +jdj +fDQ +liM +jdj +vIe +jdj +jdj +teS +cyD +cyD +cyD +pQg +jhs +sEA +rUF +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(136,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +vgW +opC +ceG +gnD +bQx +hkO +hkO +hkO +aBi +gER +mID +hqO +mID +nQR +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +wYg +bIF +bIF +bIF +dOz +rXC +pcK +lSz +kzB +rCI +xRj +xRj +own +oIG +gPV +fMf +own +xRj +lSz +kzB +rCI +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xvS +jdj +mYH +cyD +wbu +dNv +lAI +jdj +xRc +cyD +cyD +cyD +sEA +sEA +rUF +rUF +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(137,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +vgW +vgW +fhC +ceG +nZD +gnD +aBi +juQ +hkO +eWd +hqO +wPB +hqO +nQR +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +pcK +vTH +rXC +jZp +sGG +fFn +pcK +lOq +xwO +adT +xRj +xRj +own +own +caS +own +own +xRj +lOq +xwO +adT +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +sZk +jdj +fNJ +cyD +jdj +dRO +dNv +uEN +dNv +dNv +dNv +dNv +sEA +bph +rUF +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(138,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +vOo +vgW +vgh +ceG +vxd +hkO +hkO +hkO +hkO +gnD +mID +hqO +hqO +nQR +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +snQ +nKb +rXC +ucz +sGG +tuw +pcK +bTI +hhy +qzG +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bTI +hhy +qzG +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +bzE +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +aSm +jdj +qOl +xCy +jdj +dNv +dkf +jdj +wne +phr +cyD +cyD +lft +bph +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(139,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +vOo +vgW +lLc +ceG +lLc +ceG +aBi +ceG +ceG +ceG +eWd +eWd +mID +nQR +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +snQ +vJp +uhT +gug +sGG +rkb +pcK +eNZ +hhy +mTR +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +eNZ +hhy +mTR +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +bzE +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jdj +jdj +jdj +jdj +jdj +uwd +jdj +jdj +jdj +jdj +jdj +lft +lft +sAS +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(140,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +vOo +vgW +tQu +hVY +coo +nqR +tbQ +myU +jEr +gIY +ceG +wfl +eWd +nQR +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +pcK +jJV +dqY +ilP +sGG +tXo +pcK +fVU +lTA +nNp +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +fVU +lTA +nNp +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +psc +psc +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +pop +cyD +dJe +jdj +cyD +dNv +cyD +cyD +cyD +ssZ +mhR +kRj +jNg +jNg +klc +klc +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(141,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +dfU +jNg +jNg +xRj +xRj +xRj +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +tYv +vgW +nQR +nQR +nQR +lHa +nQR +nQR +nQR +nQR +nQR +nQR +nQR +nQR +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +snQ +rXC +eDV +tqr +sGG +ctD +pcK +tsU +hhy +jpO +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +tsU +hhy +jpO +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +psc +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +dNv +dNv +dNv +kNs +dNv +dNv +dNv +dNv +dNv +cyD +aKv +kRj +jNg +jNg +bzE +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(142,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +kRq +jkq +oLF +wAr +sCW +bIF +rOW +vGA +hhy +uXy +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +vGA +hhy +uXy +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +jNg +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +dNv +cyD +cyD +wCb +cyD +kSZ +kSZ +aMc +lzA +cyD +cyD +kRj +jNg +jNg +psc +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(143,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +jNg +sQl +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +dDd +pGO +fef +tme +kkT +dtm +pcK +fDi +hhy +jpO +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +fDi +hhy +jpO +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +psc +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +wni +jdj +dfS +dfS +dfS +dfS +dfS +dfS +dfS +dfS +dfS +dfS +jNg +jNg +psc +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(144,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +hvp +hvp +hvp +hvp +hvp +hvp +hvp +hvp +hvp +iqo +iqo +iqo +iqo +iqo +iqo +iqo +iqo +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +jNg +sQl +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +dGX +xQm +giF +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +dGX +xQm +giF +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +jNg +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(145,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +hvp +dDx +nUC +xed +ixz +iPS +xXS +eUo +hvp +cAF +uni +cLM +wSw +sIg +cSS +cJE +iqo +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +jNg +sQl +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +eUU +hhy +jpO +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +eUU +hhy +jpO +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(146,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +hvp +oZw +dqo +arP +dqo +nZl +dMa +pYI +hvp +dgt +dUe +cLM +sFu +dpE +fAR +fAR +iqo +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +jNg +sQl +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +uTr +uTr +xRj +xRj +eez +hhy +qdu +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +eez +hhy +qdu +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(147,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +hvp +hVk +dqo +urh +cPh +iPS +iPS +iPS +hvp +cLM +mma +cLM +wLo +enn +wox +uqo +iqo +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +jNg +sQl +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +mgO +mgO +dFa +fUg +dFa +dFa +baZ +wOi +sIK +xRj +ehT +hlO +xRj +xRj +eez +hhy +mTR +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +eez +hhy +mTR +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +psc +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(148,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +hvp +czv +gkp +eNz +sfB +fsb +sfB +bCL +hvp +qTM +qTM +aqI +qTM +qME +tDK +tDK +iqo +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +tCX +sQl +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +mgO +mgO +aPj +xsC +tCP +uFy +baZ +wOi +sIK +xRj +byt +byt +xRj +xRj +xRj +dGX +rXE +jpO +xRj +tuO +qyL +qyL +tuO +xRj +dGX +rXE +jpO +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(149,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +iwD +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +hvp +jBQ +lNH +bHe +awW +cGN +hEs +dCl +hvp +nzw +qTM +qTM +gnb +wGG +uRE +maZ +iqo +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +jNg +sQl +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +mgO +mgO +xwo +dOG +pQu +iMc +baZ +wOi +sIK +xRj +byt +hlO +xRj +xRj +xRj +xRj +vsG +hhy +jpO +qyL +kWJ +kWJ +qyL +vsG +hhy +jpO +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(150,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +hvp +vNu +waj +iIx +gED +phc +nfJ +kGi +hvp +dKn +tCW +tjU +hTM +iHc +fkf +qZu +iqo +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +jNg +sQl +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +mgO +mgO +wrQ +qzh +pqe +iMc +baZ +wOi +sIK +xRj +byt +hlO +xRj +xRj +xRj +xRj +vAn +hhy +uXy +qyL +kWJ +kWJ +kWJ +vAn +hhy +uXy +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(151,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +hvp +hvp +hvp +eDy +hvp +hvp +hvp +hvp +hvp +iqo +iqo +iqo +iqo +mew +iqo +iqo +iqo +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +jNg +sQl +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +mgO +mgO +vqJ +vpK +jKE +iMc +qln +wOi +sIK +xRj +byt +pFN +xRj +xRj +xRj +xRj +ifq +iSe +giF +qyL +kWJ +kWJ +kWJ +ifq +iSe +giF +xRj +xRj +xRj +xRj +xRj +dNv +cyD +jdj +cyD +cyD +iwC +cyD +jdj +tvy +cyD +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(152,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +psc +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +mgO +mgO +ihK +esO +fge +fJz +baZ +wOi +sIK +xRj +byt +lRe +xRj +xRj +xRj +xRj +ycC +hhy +jpO +qyL +kWJ +kWJ +qyL +ycC +hhy +jpO +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +dzf +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(153,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +psc +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +mgO +mgO +dHq +nka +iMc +cHj +baZ +wOi +sIK +xRj +izR +uTr +xRj +xRj +xRj +xRj +iKm +nNT +jpO +tuO +qyL +qyL +tuO +iKm +nNT +jpO +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bVS +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(154,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +mgO +mgO +kKo +dFa +dFa +kKo +kOQ +wOi +sIK +byt +byt +byt +xRj +xRj +fVU +lTA +nNp +eUU +eUU +eUU +eUU +eUU +eUU +eUU +eUU +eUU +fVU +lTA +nNp +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +aYQ +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +vTv +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(155,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +wxb +wxb +wxb +ooD +wxb +wxb +wxb +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +bzE +usG +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +elR +elR +elR +elR +elR +kOQ +kOQ +wOi +sIK +hlO +byt +vEl +xRj +xRj +thM +nqz +djF +eez +eez +eez +eez +eez +eez +eez +eez +eez +thM +nqz +djF +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jdj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(156,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +rbl +kOV +ber +fAa +cTV +pDq +mGa +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +bzE +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +hlO +bNR +xRj +xRj +xRj +xRj +wOi +sIK +uTr +izR +uTr +xRj +xRj +tCh +maq +oPW +eez +eez +eez +eez +eez +eez +eez +eez +eez +tCh +maq +oPW +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +kSZ +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(157,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +oEA +xKD +fkS +dIv +usY +cZJ +wxb +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +bzE +tCX +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +baZ +baZ +lCw +baZ +dam +baZ +baZ +baZ +wOi +sIK +hlO +byt +xFb +hcC +kXy +ehT +hlO +xZS +cvL +vZH +wWq +oOQ +xdt +oXK +wWq +xRj +xRj +xRj +xRj +yfy +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +dNv +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(158,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +uDC +fMr +fMr +wxb +wxb +wxb +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +bzE +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bSR +nHX +qnv +kyr +jnB +xNZ +aMR +baZ +wOi +sIK +byt +byt +byt +byt +byt +byt +byt +byt +byt +byt +ueA +brF +kgu +jRj +gKk +tjQ +tjQ +tjQ +tjQ +jRq +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +cyD +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +psc +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(159,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +tgG +fMr +fMr +wUJ +jkE +qrE +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +bzE +usG +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +cOc +pgc +afl +jbd +csk +xtP +qeP +baZ +wOi +sIK +hlO +jYs +jYs +jYs +jYs +jYs +jYs +jYs +cvL +xFj +wWq +brF +kgu +fnO +wWq +vde +gJD +cyD +cyD +dNv +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jdj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(160,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +pnz +fMr +fMr +wxb +vFk +fzZ +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +bzE +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +vjh +qNu +xGU +xGU +rVV +xlX +aFj +baZ +wOi +sIK +hlO +jYs +dXG +eSO +jWo +kEl +xkO +iBH +wWq +wWq +vRx +gEQ +qdM +iBV +vRx +wWq +wWq +wWq +teS +dNv +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +rUP +dNv +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +bzE +psc +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(161,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +qsh +tCc +dUl +wxb +wxb +wxb +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +bzE +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +hFw +pgc +eWO +eWO +eWO +eWO +qPr +baZ +wOi +sIK +byt +jYs +ldn +wjo +cIw +kME +nFc +iBH +iDg +iDg +brF +brF +kgu +wVA +brF +iDg +iDg +wWq +cyD +cyD +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +dNv +dNv +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +bzE +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(162,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +bgc +kaL +kaL +kaL +kaL +kaL +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +bzE +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +aFB +lKq +qnv +pMy +qnv +qnv +dqd +baZ +wOi +sIK +gMn +jYs +rdn +tHm +tHm +exi +kdX +iBH +iDg +iDg +brF +sQO +kgu +xYV +brF +iDg +iDg +wWq +tve +cyD +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +cyD +kSZ +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +psc +bzE +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(163,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +psc +jNg +jNg +jNg +kaL +kaL +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +bzE +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +skI +skI +skI +skI +skI +skI +baZ +baZ +wOi +sIK +qJG +jYs +jYs +ctB +ctB +ctB +uxl +iBH +iBH +iBH +iBH +oOB +mzp +ufM +iBH +iBH +iBH +iBH +jhq +jhq +jhq +blR +blR +blR +blR +blR +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +bzE +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(164,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +bzE +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +mBp +mBp +mBp +wDH +mBp +mBp +eiM +dSe +sRV +jJL +hcK +lKM +glF +fZu +mnd +uvS +qJU +qJU +qJU +qJU +qJU +qJU +gXo +uvS +qJU +rSk +blR +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +usG +bzE +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(165,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +bzE +psc +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +ttX +ttX +ttX +kqq +ttX +ttX +wbz +gSE +ttX +vFf +ttX +ttX +vFf +lWb +ttX +sbG +fxj +fxj +pxG +fxj +kHP +qKj +ieh +aHc +oqO +lNr +blR +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +bzE +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(166,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +uTr +uTr +uTr +uTr +uTr +uTr +uTr +jNg +jNg +jNg +jNg +jNg +jNg +jNg +bzE +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +hMj +hMj +hMj +fIt +hMj +khl +dIR +rVB +fIt +rui +wWT +kNH +wOi +jlu +wOi +sIK +cYi +cYi +cYi +cYi +cYi +wgu +cYi +cYi +cYi +cYi +cYi +cYi +cYi +cYi +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +bzE +psc +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(167,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +uTr +kXy +ygA +sXj +njW +hcC +uTr +jNg +jNg +jNg +jNg +jNg +jNg +jNg +bzE +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +svq +svq +hYM +svq +svq +aNE +wPw +ssc +ebJ +aCt +tLz +uNx +heD +tUS +qDU +xtj +fnK +kJv +cYi +kCA +les +cYi +fIz +jlr +cYi +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +bzE +psc +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(168,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +uTr +uKO +ygA +oWX +jGs +kNx +uTr +jNg +jNg +jNg +jNg +jNg +jNg +jNg +bzE +tCX +rQl +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +svq +uGs +eyc +roT +voG +svq +rba +wOi +xaN +wOi +dkB +cYi +uAZ +eYI +qmC +iPF +jwM +jHU +cYi +aQs +qTj +ilb +lgr +twp +cYi +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +bzE +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(169,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +uTr +ygA +abL +tEj +njW +njW +uTr +jNg +jNg +jNg +jNg +jNg +jNg +jNg +bzE +jNg +rQl +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +svq +wAS +vbb +qRD +nNn +svq +nnp +wOi +pEy +wOi +sIK +qkE +hai +wqQ +qPy +hai +jwM +jAg +cYi +iTu +eus +cYi +rEv +dZF +cYi +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +bzE +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(170,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +uTr +uTr +uTr +uTr +sXj +njW +uTr +jNg +jNg +jNg +jNg +jNg +jNg +jNg +bzE +jNg +rQl +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +svq +svq +prQ +qoS +oCY +nnq +svq +dJR +wOi +jlu +wOi +sIK +wny +vaT +hai +puK +hai +jwM +vdY +cYi +cYi +cYi +mUi +fxw +fVM +cYi +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +bzE +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(171,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +uTr +xpv +jVj +tQS +njW +sXj +uTr +jNg +jNg +jNg +jNg +jNg +jNg +jNg +bzE +jNg +tCX +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +svq +gMk +gMk +vIH +oCY +nnq +svq +rXx +ssc +ebJ +aCt +sIK +wfz +oxf +hai +qko +xhZ +pgT +xhZ +sFr +kXH +prS +rvv +vFv +qDT +cYi +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +bzE +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(172,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +uTr +exp +iMM +uTr +sXj +dIc +uTr +jNg +jNg +jNg +jNg +jNg +jNg +jNg +psc +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +svq +gMk +gMk +jNb +oCY +nnq +svq +eFE +fIt +vUa +fIt +dDB +cYi +nfQ +xxf +sZv +fsr +aRm +dip +cYi +uAZ +uYY +tLe +aAh +bGl +cYi +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +sAS +bzE +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(173,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +uTr +uTr +uTr +uTr +eGV +uTr +uTr +jNg +jNg +jNg +jNg +jNg +jNg +jNg +bzE +psc +psc +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +vYC +vYC +vYC +vYC +vYC +vYC +vYC +vYC +qTb +rqv +qTb +vYC +vYC +aEU +cbh +qhn +vYC +vYC +vYC +vYC +cYi +cYi +cYi +cYi +cYi +cYi +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +bzE +bzE +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(174,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +bzE +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +vYC +jUy +axV +tix +eNI +uGt +unN +pqr +fVe +mvb +evM +uqw +ejQ +eYD +cBI +iIB +hXy +pwQ +vYC +vYC +rQl +rQl +rQl +rQl +rQl +rQl +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +bzE +psc +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(175,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +bzE +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +vYC +dJV +fgr +omT +fEX +rQb +nKZ +vQw +vQw +qHM +vQw +vQw +nKZ +rQb +hDD +uHb +aVK +tNT +vYC +vYC +rQl +jNg +psc +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +usG +bzE +psc +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(176,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +bzE +jNg +jNg +jNg +jNg +jNg +psc +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +psc +jNg +jNg +jNg +jNg +rTr +jdR +qkB +ioL +evM +tPq +ueQ +evM +qjK +myo +myo +myo +meS +evM +hFM +evM +psb +evM +xxd +vYC +vYC +xAa +jNg +psc +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xAa +jNg +jNg +usG +psc +jNg +jNg +jNg +jNg +bzE +psc +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(177,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +psc +jNg +jNg +jNg +jNg +jNg +psc +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +psc +jNg +jNg +jNg +jNg +vYC +vYC +noe +scH +qBy +isK +ueQ +evM +tOO +gcb +uLa +ycW +uTd +evM +hFM +oUM +hOH +pXa +jec +vYC +vYC +jNg +jNg +psc +psc +psc +psc +psc +psc +psc +psc +psc +psc +psc +psc +psc +psc +psc +psc +jNg +jNg +jNg +jNg +bzE +psc +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +xRj +xRj +xRj +xRj +xRj +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(178,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +bzE +bzE +bzE +bzE +psc +psc +bzE +bzE +bzE +bzE +bzE +bzE +bzE +bzE +bzE +bzE +bzE +bzE +bzE +bzE +bzE +bzE +psc +vYC +vYC +vYC +vYC +vYC +duF +mDd +aVK +xfk +moK +bTg +lbH +gqQ +evM +ueQ +bGJ +mjY +dZv +noM +vYC +vYC +jNg +jNg +psc +jNg +jNg +jNg +jNg +jNg +psc +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +psc +jNg +jNg +jNg +jNg +bzE +psc +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(179,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +psc +tCX +vYC +vYC +vYC +vYC +vYC +sja +evM +evM +cvc +xuV +qxi +pvg +iqI +evM +hus +smi +vYC +vYC +vYC +vYC +vYC +sAS +jNg +psc +bzE +bzE +bzE +bzE +bzE +bzE +bzE +bzE +bzE +bzE +bzE +bzE +psc +psc +jNg +psc +bzE +bzE +bzE +bzE +psc +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(180,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +psc +jNg +jNg +vYC +xBJ +vYC +vYC +owq +ioL +jbr +evM +cvc +gEG +iqI +evM +iWy +qWo +phb +myo +vYC +xBJ +vYC +jNg +jNg +jNg +psc +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(181,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +bzE +jNg +jNg +vYC +jNg +vYC +vYC +uJx +uQL +tat +nyK +ioL +bEs +ioL +fbC +vwK +cZC +kyG +myo +vYC +xch +vYC +jNg +jNg +jNg +psc +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(182,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +vTv +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +bzE +jNg +jNg +jNg +jNg +vYC +vYC +pNt +pNt +pNt +sQi +kMz +mWK +mkn +aKu +pNt +pNt +pNt +vYC +vYC +jNg +jNg +jNg +jNg +jNg +psc +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(183,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +bzE +jNg +jNg +jNg +jNg +rnI +vYC +oDs +oDs +oDs +oDs +oDs +oDs +oDs +oDs +oDs +oDs +oDs +vYC +rnI +jNg +jNg +jNg +jNg +jNg +psc +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(184,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +bzE +jNg +jNg +jNg +jNg +cgo +jNg +jNg +jNg +pNt +pNt +pNt +pNt +pNt +pNt +pNt +jNg +jNg +jNg +cgo +jNg +jNg +jNg +jNg +jNg +psc +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(185,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +bzE +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +psc +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(186,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +vTv +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +bzE +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +psc +jNg +jNg +jNg +jNg +jNg +vTv +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(187,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +psc +psc +psc +psc +psc +bzE +bzE +bzE +bzE +psc +psc +psc +bzE +bzE +bzE +bzE +psc +psc +bzE +bzE +bzE +bzE +bzE +bzE +psc +psc +psc +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(188,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +vTv +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(189,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(190,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +vTv +jNg +jNg +jNg +jNg +jNg +jNg +vTv +jNg +jNg +jNg +jNg +jNg +jNg +vTv +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(191,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} +(192,1,1) = {" +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +jNg +"} diff --git a/maps/victory/levels/flagship.dmm b/maps/victory/levels/flagship.dmm new file mode 100644 index 000000000000..156ba90fd7b9 --- /dev/null +++ b/maps/victory/levels/flagship.dmm @@ -0,0 +1,53920 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ac" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 4 + }, +/obj/map_helper/access_helper/airlock/station/centcom, +/turf/unsimulated/floor/steel, +/area/centcom/command) +"ae" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/gun/energy/xray, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"ag" = ( +/obj/structure/bed/chair/shuttle{ + dir = 1 + }, +/obj/structure/closet/walllocker/emergsuit_wall{ + pixel_y = -26 + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/escape) +"ah" = ( +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/blue/border, +/obj/effect/floor_decal/borderfloorblack/corner2, +/obj/effect/floor_decal/corner/blue/bordercorner2, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/command) +"ai" = ( +/obj/structure/closet/wardrobe/robotics_black, +/obj/item/radio/headset/headset_sci{ + pixel_x = -3 + }, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"ak" = ( +/obj/machinery/button/remote/blast_door{ + id = "ArmouryC2"; + name = "Armoury Access"; + pixel_x = -28; + pixel_y = 28; + req_access = list(3) + }, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"al" = ( +/obj/machinery/vending/cola, +/turf/simulated/shuttle/floor/darkred, +/area/shuttle/escape) +"am" = ( +/obj/machinery/computer/teleporter, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"ap" = ( +/obj/structure/table/glass, +/obj/item/paper_bin{ + pixel_x = -1; + pixel_y = 3 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"ar" = ( +/obj/item/aicard, +/obj/item/pinpointer/advpinpointer, +/obj/item/stamp/centcom, +/obj/structure/table/steel_reinforced, +/turf/unsimulated/floor/wood, +/area/centcom/specops) +"au" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/gun/energy/sniperrifle, +/obj/item/gun/energy/sniperrifle, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"av" = ( +/obj/machinery/computer/rdconsole/robotics, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/control) +"aw" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/gun/energy/gun/combat, +/obj/item/gun/energy/gun/combat, +/obj/item/gun/energy/gun/combat, +/obj/item/gun/energy/gun/combat, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"ax" = ( +/obj/machinery/computer/security, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/unsimulated/floor/steel, +/area/centcom/command) +"ay" = ( +/obj/landmark{ + name = "tdome1" + }, +/obj/machinery/camera/network/thunder{ + invisibility = 101 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/tdome/tdome1) +"az" = ( +/obj/machinery/turretid/stun{ + check_access = 0; + check_anomalies = 0; + check_records = 0; + control_area = "\improper CentCom Residential Security"; + pixel_y = 32; + req_access = list(101); + req_one_access = list(101) + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"aC" = ( +/obj/structure/table/reinforced, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"aD" = ( +/obj/structure/table/glass, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/item/backup_implanter{ + pixel_y = -8 + }, +/obj/item/backup_implanter{ + pixel_y = 8 + }, +/obj/item/backup_implanter, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"aG" = ( +/turf/unsimulated/wall, +/area/centcom/specops/dock) +"aH" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"aI" = ( +/obj/structure/bed/chair/wood/wings{ + dir = 8 + }, +/turf/unsimulated/floor/wood, +/area/centcom/restaurant) +"aJ" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/machinery/newscaster{ + pixel_x = 29 + }, +/turf/unsimulated/floor/steel, +/area/centcom/command) +"aL" = ( +/obj/structure/table/rack, +/obj/item/clothing/under/color/red, +/obj/item/clothing/shoes/brown, +/obj/item/clothing/suit/armor/vest, +/obj/item/clothing/head/helmet/swat, +/obj/item/gun/energy/laser, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/tdome/tdome1) +"aM" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/turf/unsimulated/floor/steel, +/area/centcom/main_hall) +"aP" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/ammo_magazine/a7_62mm, +/obj/item/ammo_magazine/a7_62mm, +/obj/item/ammo_magazine/a7_62mm, +/obj/item/ammo_magazine/a7_62mm, +/obj/item/ammo_magazine/a7_62mm, +/obj/item/ammo_magazine/a7_62mm, +/obj/item/ammo_magazine/a7_62mm/ap, +/obj/item/ammo_magazine/a7_62mm/ap, +/obj/item/ammo_magazine/a7_62mm/ap, +/obj/item/ammo_magazine/a7_62mm/ap, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"aQ" = ( +/obj/structure/table/reinforced, +/obj/machinery/chemical_dispenser/catering/bar_alc, +/turf/unsimulated/floor/wood, +/area/centcom/bar) +"aR" = ( +/obj/effect/floor_decal/derelict/d9, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"aS" = ( +/obj/structure/table/standard, +/obj/structure/flora/pottedplant{ + pixel_y = 10 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 10 + }, +/turf/unsimulated/floor/steel, +/area/centcom/holding) +"aV" = ( +/obj/structure/table/rack, +/obj/item/storage/box/flashbangs, +/obj/item/storage/box/flashbangs, +/obj/item/storage/box/emps{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/storage/box/smokes, +/obj/item/storage/box/smokes, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"aX" = ( +/obj/structure/bed/padded, +/obj/item/bedsheet/orange, +/obj/effect/floor_decal/borderfloorblack{ + dir = 9 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/orange/bordercorner2{ + dir = 10 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"aY" = ( +/obj/structure/table/marble, +/obj/item/reagent_containers/food/drinks/glass2/square{ + pixel_x = 8; + pixel_y = 8 + }, +/obj/item/reagent_containers/food/drinks/glass2/square{ + pixel_y = 8 + }, +/obj/item/reagent_containers/food/drinks/glass2/square{ + pixel_x = -8; + pixel_y = 8 + }, +/obj/item/reagent_containers/food/drinks/glass2/square{ + pixel_x = 8; + pixel_y = 4 + }, +/obj/item/reagent_containers/food/drinks/glass2/square{ + pixel_y = 4 + }, +/obj/item/reagent_containers/food/drinks/glass2/square{ + pixel_x = -8; + pixel_y = 4 + }, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/centcom/command) +"aZ" = ( +/obj/structure/table/rack, +/obj/item/storage/box/flashshells/large, +/obj/item/storage/box/flashshells/large, +/obj/item/storage/box/flashshells/large, +/obj/item/storage/box/flashshells/large, +/obj/item/storage/box/flashshells/large, +/obj/item/storage/box/flashshells/large, +/obj/item/storage/box/flashshells/large, +/obj/item/storage/box/flashshells/large, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"bb" = ( +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/landmark{ + name = "tdome2" + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/tdome/tdome1) +"bg" = ( +/obj/machinery/porta_turret/crescent{ + density = 1 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/unsimulated/floor/steel, +/area/centcom/main_hall) +"bh" = ( +/obj/structure/table/woodentable, +/obj/item/reagent_containers/food/drinks/bottle/space_mountain_wind, +/turf/unsimulated/floor/wood, +/area/centcom/bar) +"bi" = ( +/obj/structure/table/glass, +/obj/item/roller/adv, +/obj/item/roller/adv{ + pixel_y = 6 + }, +/obj/item/roller/adv{ + pixel_y = 12 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"bj" = ( +/obj/machinery/computer/cryopod/dorms{ + name = "Company Property Retention System"; + pixel_y = -28 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/turf/unsimulated/floor/steel, +/area/centcom/living) +"bk" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/tdome/tdomeobserve) +"bm" = ( +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/command) +"bn" = ( +/obj/structure/table/woodentable, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 5 + }, +/obj/item/flame/lighter/zippo, +/obj/item/storage/fancy/cigarettes, +/turf/unsimulated/floor{ + icon_state = "carpet" + }, +/area/centcom/restaurant) +"bs" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/control) +"bu" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 10 + }, +/obj/structure/table/reinforced, +/obj/item/book/manual/security_space_law, +/obj/item/book/manual/security_space_law, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"bv" = ( +/obj/machinery/vending/security, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/turf/unsimulated/floor/steel, +/area/centcom/holding) +"bz" = ( +/obj/machinery/porta_turret/crescent{ + density = 1 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/unsimulated/floor/steel, +/area/centcom/specops) +"bA" = ( +/obj/effect/forcefield{ + desc = "You can't get in. Heh."; + layer = 1; + name = "Blocker" + }, +/turf/unsimulated/floor/steel, +/area/centcom/living) +"bC" = ( +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/obj/item/stack/material/glass{ + amount = 50; + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stack/material/steel{ + amount = 50 + }, +/obj/item/clothing/glasses/welding, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"bD" = ( +/obj/structure/closet/radiation, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"bE" = ( +/obj/structure/table/reinforced, +/obj/item/book/manual/security_space_law, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"bF" = ( +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 10 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/command) +"bH" = ( +/obj/structure/table/rack, +/obj/item/gun/energy/ionrifle, +/obj/item/gun/energy/ionrifle, +/obj/item/gun/energy/ionrifle, +/obj/item/gun/energy/ionrifle, +/obj/item/gun/energy/ionrifle, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/camera/network/crescent, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"bI" = ( +/obj/structure/bed/padded, +/obj/machinery/camera/network/crescent, +/obj/machinery/flasher{ + id = "CellC3"; + pixel_x = -24; + pixel_y = 25 + }, +/turf/unsimulated/floor/steel, +/area/centcom/holding) +"bJ" = ( +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon_state = "carpet" + }, +/area/centcom/command) +"bK" = ( +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "carpet" + }, +/area/centcom/restaurant) +"bO" = ( +/obj/spawner/window/low_wall/reinforced/full, +/turf/unsimulated/floor{ + name = "plating" + }, +/area/centcom/holding) +"bP" = ( +/obj/structure/table/standard, +/obj/item/bodybag/cryobag{ + pixel_x = 6 + }, +/obj/item/storage/firstaid/regular{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/random/firstaid, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/turf/unsimulated/floor/steel, +/area/centcom/holding) +"bQ" = ( +/obj/machinery/door/airlock/glass/security{ + name = "Security"; + req_access = list(); + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/security/equipment, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"bV" = ( +/obj/machinery/light{ + dir = 8; + use_power = 0; + old_wall = 1 + }, +/obj/structure/closet/emcloset, +/turf/simulated/shuttle/floor/darkred, +/area/shuttle/escape) +"bX" = ( +/obj/item/storage/box/flashbangs, +/obj/item/handcuffs, +/obj/item/flash, +/obj/item/melee/baton/loaded, +/obj/item/storage/belt/security/tactical, +/obj/item/gun/energy/stunrevolver, +/obj/item/clothing/glasses/sunglasses/sechud/tactical, +/obj/item/material/knife/tacknife/combatknife, +/obj/structure/table/steel_reinforced, +/turf/unsimulated/floor/wood, +/area/centcom/specops) +"ca" = ( +/obj/machinery/door/window/brigdoor{ + dir = 8; + req_access = list(63); + req_one_access = list() + }, +/obj/machinery/button/remote/airlock{ + id = "front"; + name = "Front doors"; + pixel_x = 5; + pixel_y = 25; + req_access = list(63); + req_one_access = list(1) + }, +/obj/machinery/button/remote/airlock{ + id = "innerS"; + name = "Inner doors"; + pixel_x = -5; + pixel_y = 25; + req_access = list(63); + req_one_access = list(1) + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"cb" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/multi_tile/metal{ + name = "Nanotrasen Offices" + }, +/obj/map_helper/access_helper/airlock/station/centcom, +/turf/unsimulated/floor/steel, +/area/centcom/command) +"cc" = ( +/obj/structure/sign/securearea{ + name = "ENGINEERING ACCESS"; + pixel_y = -32 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"ce" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/vending/security, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 5 + }, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"cf" = ( +/obj/machinery/door/blast/regular{ + dir = 4 + }, +/turf/unsimulated/wall, +/area/centcom/specops/dock) +"cg" = ( +/obj/effect/floor_decal/industrial/warning/dust/corner{ + dir = 1 + }, +/obj/structure/railing, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"cl" = ( +/obj/structure/bed/padded, +/obj/item/bedsheet/orange, +/obj/machinery/camera/network/crescent, +/obj/effect/floor_decal/borderfloorblack{ + dir = 5 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 5 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"cm" = ( +/obj/structure/table/standard, +/obj/item/hand_labeler, +/obj/item/pen, +/obj/item/packageWrap, +/obj/item/packageWrap, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"cn" = ( +/obj/structure/table/rack{ + dir = 4 + }, +/obj/item/clothing/suit/space/void/security, +/obj/item/clothing/suit/space/void/security, +/obj/item/clothing/head/helmet/space/void/security, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"cq" = ( +/obj/effect/floor_decal/industrial/outline, +/obj/structure/bed/chair, +/obj/machinery/status_display{ + pixel_y = 29 + }, +/turf/unsimulated/floor/steel, +/area/centcom/main_hall) +"ct" = ( +/obj/item/stool/padded, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/medical) +"cu" = ( +/obj/structure/table/reinforced, +/obj/item/camera, +/obj/item/storage/box/ids, +/obj/effect/floor_decal/borderfloorblack{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 6 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"cv" = ( +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/medical) +"cy" = ( +/obj/structure/table/rack, +/obj/item/tank/emergency/oxygen/double, +/obj/item/tank/emergency/oxygen/double, +/obj/item/tank/emergency/oxygen/double, +/obj/item/tank/emergency/oxygen/double, +/obj/item/tank/emergency/oxygen/double, +/obj/item/tank/emergency/oxygen/double, +/obj/item/tank/emergency/oxygen/double, +/obj/item/tank/emergency/oxygen/double, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"cz" = ( +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/structure/table/marble, +/obj/machinery/reagentgrinder, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/bar) +"cA" = ( +/obj/map_helper/access_helper/airlock/station/security/general, +/obj/machinery/door/airlock/glass/security{ + name = "Security"; + req_access = list(); + req_one_access = null + }, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"cC" = ( +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet{ + dir = 6 + }, +/turf/unsimulated/floor{ + icon_state = "carpet" + }, +/area/centcom/control) +"cD" = ( +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/blue/border, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 9 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"cF" = ( +/obj/machinery/camera/network/crescent, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/centcom/command) +"cG" = ( +/obj/machinery/computer/rdservercontrol{ + badmin = 1; + dir = 1; + name = "Master R&D Server Controller" + }, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"cH" = ( +/obj/structure/table/glass, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"cJ" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/item/paper_bin{ + pixel_x = -1; + pixel_y = 5 + }, +/obj/item/pen, +/turf/unsimulated/floor/steel, +/area/centcom/command) +"cK" = ( +/obj/structure/table/standard, +/obj/machinery/chemical_dispenser/catering/bar_soft, +/obj/item/storage/box/glasses/square, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"cL" = ( +/obj/structure/table/standard, +/obj/item/storage/belt/utility, +/obj/item/clothing/gloves/sterile/latex, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 1 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/control) +"cM" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/gun/energy/gun, +/obj/item/gun/energy/gun, +/obj/item/gun/energy/gun, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"cN" = ( +/obj/machinery/door_timer/cell_3{ + id = "CellC2"; + name = "Cell 2"; + pixel_y = 29 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 4 + }, +/turf/unsimulated/floor/steel, +/area/centcom/holding) +"cP" = ( +/obj/structure/dispenser/oxygen, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"cS" = ( +/obj/machinery/door/window/brigdoor/southleft{ + id = "CellC3"; + name = "Cell 3"; + req_access = list(2) + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/unsimulated/floor/steel, +/area/centcom/holding) +"cT" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/armor/riot, +/obj/item/melee/baton/loaded, +/obj/item/shield/riot, +/obj/item/clothing/head/helmet/riot, +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"cW" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/storage/box/sniperammo, +/obj/item/storage/box/sniperammo, +/obj/item/storage/box/sniperammo, +/obj/item/storage/box/sniperammo, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"cX" = ( +/obj/machinery/iv_drip, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"cY" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "TelelockdownC"; + name = "Security Doors"; + opacity = 0 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/living) +"da" = ( +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/machinery/appliance/cooker/grill, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/bar) +"dc" = ( +/obj/machinery/fitness/heavy/lifter, +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"dd" = ( +/obj/machinery/r_n_d/circuit_imprinter, +/obj/item/reagent_containers/glass/beaker/sulphuric, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"df" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"dg" = ( +/obj/structure/flora/ausbushes/ppflowers, +/turf/simulated/floor/outdoors/grass/heavy/interior, +/area/centcom/main_hall) +"dh" = ( +/obj/machinery/computer/security/telescreen/entertainment{ + icon_state = "frame"; + pixel_x = 32 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"di" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/structure/reagent_dispensers/water_cooler/full, +/obj/machinery/camera/network/crescent, +/turf/unsimulated/floor/steel, +/area/centcom/command) +"dj" = ( +/obj/spawner/window/low_wall/reinforced/full, +/turf/unsimulated/floor{ + name = "plating" + }, +/area/centcom/security) +"dk" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/machinery/button/remote/blast_door{ + id = "TelelockdownC"; + name = "Teleporter Full Lockdown"; + pixel_x = 6; + pixel_y = -5; + req_access = list(63); + req_one_access = list(1) + }, +/obj/item/pen, +/turf/unsimulated/floor/steel, +/area/centcom/command) +"dl" = ( +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/blue/border, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 9 + }, +/obj/structure/closet/secure_closet/nanotrasen_security, +/obj/item/storage/box/handcuffs, +/obj/item/gun/energy/gun, +/obj/item/shield/riot, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"dn" = ( +/obj/effect/floor_decal/derelict/d15, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"do" = ( +/obj/structure/table/standard, +/obj/item/storage/box/bodybags{ + pixel_x = -1; + pixel_y = -2 + }, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"dp" = ( +/mob/living/silicon/decoy{ + name = "A.L.I.C.E." + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"dq" = ( +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/outdoors/grass/heavy/interior, +/area/centcom/main_hall) +"dr" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"ds" = ( +/obj/machinery/button/remote/blast_door{ + id = "ArmouryC5"; + name = "Armoury Access"; + pixel_y = -28; + req_access = list(3) + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/control) +"du" = ( +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 6 + }, +/turf/unsimulated/floor{ + icon_state = "carpet" + }, +/area/centcom/command) +"dv" = ( +/obj/machinery/disease2/incubator, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"dw" = ( +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"dx" = ( +/obj/structure/medical_stand/anesthetic, +/obj/structure/bed/roller, +/turf/simulated/shuttle/floor, +/area/shuttle/escape) +"dy" = ( +/obj/overmap/entity/visitable/sector/centcom_victory, +/turf/space, +/area/space) +"dz" = ( +/obj/effect/floor_decal/rust/steel_decals_rusted2, +/obj/effect/floor_decal/industrial/warning/dust, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"dA" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/green/border, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"dE" = ( +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/blue/border, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 9 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/command) +"dF" = ( +/obj/structure/table/rack, +/obj/item/gun/ballistic/shotgun/pump, +/obj/item/gun/ballistic/shotgun/pump, +/obj/item/gun/ballistic/shotgun/pump, +/obj/item/gun/ballistic/shotgun/pump, +/obj/item/gun/ballistic/shotgun/pump, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"dG" = ( +/obj/structure/curtain/open/shower, +/obj/machinery/shower{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/control) +"dH" = ( +/obj/structure/table/rack, +/obj/structure/window/reinforced, +/obj/item/storage/box/shotgunammo, +/obj/item/storage/box/shotgunammo, +/obj/item/storage/box/shotgunshells, +/obj/item/storage/box/shotgunshells, +/obj/item/storage/box/shotgunshells, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"dI" = ( +/obj/machinery/door/airlock, +/obj/map_helper/access_helper/airlock/station/security/department, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"dK" = ( +/obj/machinery/cryopod/robot/door/dorms{ + base_icon_state = "door_closed"; + desc = "A small elevator"; + dir = 2; + icon_state = "door_closed"; + name = "elevator"; + on_enter_occupant_message = "The elevator doors close slowly. You can now head off for the residential, commercial, and other floors."; + on_store_message = "has departed for one of the various colony floors"; + on_store_name = "Colony Oversight"; + on_store_visible_message_2 = "to the colony districts."; + time_till_despawn = 5 + }, +/turf/unsimulated/floor/steel, +/area/centcom/living) +"dM" = ( +/obj/effect/floor_decal/industrial/warning/dust/corner{ + dir = 4 + }, +/obj/structure/railing, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/light/flamp/noshade, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"dQ" = ( +/obj/machinery/vending/engivend, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"dS" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell 1"; + name = "Cell 1 Locker" + }, +/turf/unsimulated/floor/steel, +/area/centcom/holding) +"dT" = ( +/obj/structure/table/rack, +/obj/item/gun/ballistic/automatic/pdw, +/obj/item/gun/ballistic/automatic/pdw, +/obj/item/gun/ballistic/automatic/pdw, +/obj/item/gun/ballistic/automatic/pdw, +/obj/item/gun/ballistic/automatic/pdw, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"dV" = ( +/obj/structure/table/steel, +/obj/item/clothing/shoes/boots/jackboots{ + armor = list("melee"=69,"bullet"=69,"laser"=69,"energy"=69,"bomb"=69,"bio"=69,"rad"=69); + desc = "This pair of Jackboots look worn and freshly used. They have several claw markings inside and you can read the initials D and M at the bottom"; + name = "Dhaeleena's Jackboots" + }, +/turf/unsimulated/floor{ + icon_state = "freezerfloor" + }, +/area/centcom/bathroom) +"dX" = ( +/obj/structure/table/standard, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/capacitor, +/obj/item/stock_parts/capacitor, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/micro_laser, +/obj/item/stock_parts/micro_laser, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"dY" = ( +/obj/machinery/porta_turret, +/turf/simulated/floor/plating, +/area/shuttle/specops/general) +"dZ" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-21" + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 9 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/bordercorner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/purple/bordercorner2{ + dir = 1 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/control) +"ea" = ( +/obj/item/material/knife/tacknife/combatknife, +/obj/item/material/knife/tacknife/combatknife, +/obj/item/material/knife/tacknife/combatknife, +/obj/item/material/knife/tacknife/combatknife, +/obj/item/material/knife/tacknife/combatknife, +/obj/item/material/knife/tacknife/combatknife, +/obj/item/melee/baton/loaded, +/obj/item/melee/baton/loaded, +/obj/item/melee/baton/loaded, +/obj/item/melee/baton/loaded, +/obj/item/melee/baton/loaded, +/obj/item/melee/baton/loaded, +/obj/structure/table/steel_reinforced, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"ec" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/obj/structure/closet/secure_closet/nanotrasen_security, +/turf/unsimulated/floor/steel, +/area/centcom/command) +"ed" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/suit_cycler/security{ + req_access = null + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"ee" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 6 + }, +/obj/structure/table/reinforced, +/obj/machinery/computer/skills, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"ef" = ( +/obj/structure/table/rack, +/obj/item/clothing/under/color/red, +/obj/item/clothing/shoes/brown, +/obj/item/melee/transforming/energy/axe, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/tdome/tdome1) +"eg" = ( +/obj/machinery/computer/rdservercontrol{ + badmin = 1; + dir = 1; + name = "Master RnD Server Controller" + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/command) +"eh" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 4 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"ei" = ( +/obj/machinery/vending/coffee, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/green/border, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"ek" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/borderfloor{ + dir = 1; + pixel_y = -16 + }, +/obj/item/paper_bin{ + pixel_x = -1; + pixel_y = 5 + }, +/obj/item/pen, +/turf/unsimulated/floor/steel, +/area/centcom/command) +"el" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 9 + }, +/obj/structure/closet/crate/bin, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"em" = ( +/obj/structure/urinal{ + pixel_y = 31 + }, +/turf/unsimulated/floor{ + icon_state = "freezer" + }, +/area/centcom/security) +"eo" = ( +/obj/machinery/cryopod/robot/door/gateway, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/living) +"ep" = ( +/obj/effect/floor_decal/derelict/d12, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"eq" = ( +/obj/structure/table/reinforced, +/obj/item/pda/captain, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"es" = ( +/turf/unsimulated/wall, +/area/centcom/control) +"eu" = ( +/obj/structure/table/reinforced, +/obj/item/roller, +/obj/item/roller{ + pixel_y = 8 + }, +/obj/item/roller{ + pixel_y = 16 + }, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"ev" = ( +/obj/structure/table/rack, +/obj/item/hardsuit/ert/assetprotection, +/obj/item/hardsuit/ert/assetprotection, +/obj/item/hardsuit/ert/assetprotection, +/obj/item/hardsuit/ert/assetprotection, +/obj/item/hardsuit/ert/assetprotection, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"ew" = ( +/obj/machinery/camera/network/crescent, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"ex" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/turf/unsimulated/floor/steel, +/area/centcom/command) +"ez" = ( +/turf/simulated/shuttle/wall/voidcraft/hard_corner, +/area/shuttle/specops/general) +"eB" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel, +/area/centcom/security) +"eG" = ( +/obj/machinery/door/airlock/security{ + name = "Security"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/security/department, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/command) +"eI" = ( +/obj/structure/sign/nanotrasen, +/turf/unsimulated/wall, +/area/centcom/specops) +"eJ" = ( +/obj/machinery/recharge_station, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/bathroom) +"eN" = ( +/obj/structure/reagent_dispensers/water_cooler/full, +/turf/unsimulated/floor{ + icon_state = "freezerfloor" + }, +/area/centcom/bathroom) +"eQ" = ( +/turf/unsimulated/floor/steel, +/area/centcom/specops) +"eR" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/control) +"eV" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"eY" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/control) +"eZ" = ( +/turf/simulated/shuttle/wall/voidcraft, +/area/shuttle/specops/general) +"fe" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/unsimulated/floor/steel, +/area/centcom/command) +"ff" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet{ + dir = 5 + }, +/turf/unsimulated/floor{ + icon_state = "carpet" + }, +/area/centcom/control) +"fg" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/turf/unsimulated/floor/steel, +/area/centcom/command) +"fh" = ( +/turf/unsimulated/wall, +/area/centcom/bar) +"fi" = ( +/obj/structure/table/rack, +/obj/item/storage/box/empshells/large, +/obj/item/storage/box/empshells/large, +/obj/item/storage/box/empshells/large, +/obj/item/storage/box/empshells/large, +/obj/item/storage/box/empshells/large, +/obj/item/storage/box/empshells/large, +/obj/item/storage/box/empshells/large, +/obj/item/storage/box/empshells/large, +/obj/item/storage/box/empshells/large, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/camera/network/crescent, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"fl" = ( +/obj/item/storage/firstaid/combat, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/control) +"fm" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"fn" = ( +/obj/machinery/vending/snack{ + name = "hacked Getmore Chocolate Corp"; + prices = list() + }, +/turf/unsimulated/floor/wood, +/area/centcom/specops) +"fr" = ( +/obj/machinery/door/airlock/command{ + name = "Thunderdome"; + req_one_access = list() + }, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeadmin) +"fs" = ( +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/machinery/vending/dinnerware, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/bar) +"ft" = ( +/turf/unsimulated/wall, +/area/centcom/medical) +"fu" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/structure/flora/pottedplant{ + icon_state = "plant-22" + }, +/obj/machinery/newscaster{ + pixel_y = 30 + }, +/turf/unsimulated/floor/steel, +/area/centcom/command) +"fw" = ( +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 6 + }, +/obj/machinery/camera/network/crescent, +/turf/unsimulated/floor/steel, +/area/centcom/living) +"fz" = ( +/obj/structure/morgue{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/medical) +"fA" = ( +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/structure/table/marble, +/obj/item/book/manual/chef_recipes, +/obj/item/reagent_containers/food/condiment/small/saltshaker{ + pixel_x = -3 + }, +/obj/item/reagent_containers/food/condiment/small/peppermill{ + pixel_x = 3 + }, +/obj/item/material/kitchen/rollingpin, +/obj/item/material/knife/butch, +/turf/simulated/floor/tiled/white, +/area/centcom/bar) +"fC" = ( +/obj/machinery/porta_turret, +/obj/machinery/flasher{ + id = "breach_flash"; + pixel_x = -32 + }, +/turf/simulated/floor/plating, +/area/shuttle/specops/general) +"fD" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/borderfloorblack{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 9 + }, +/obj/machinery/door/window/brigdoor/northleft{ + req_access = list(63); + req_one_access = list(1) + }, +/obj/item/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/pen, +/obj/machinery/button/remote/blast_door{ + id = "FrontlockC"; + name = "Colony Entrance Lockdown"; + pixel_x = 6; + pixel_y = -5; + req_access = list(63); + req_one_access = list(1) + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "FrontlockC2"; + name = "Security Door"; + opacity = 0 + }, +/obj/machinery/button/remote/blast_door{ + id = "FrontlockBD"; + name = "Colony Entrance Bottom"; + pixel_x = -3; + pixel_y = -5; + req_access = list(63); + req_one_access = list(1) + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"fF" = ( +/turf/simulated/shuttle/wall/voidcraft, +/area/shuttle/specops/engine) +"fG" = ( +/obj/structure/table/reinforced, +/obj/item/perfect_tele, +/obj/item/binoculars, +/obj/item/survivalcapsule, +/obj/item/survivalcapsule, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"fH" = ( +/obj/structure/closet{ + name = "materials" + }, +/obj/item/stack/material/steel{ + amount = 50 + }, +/obj/item/stack/material/steel{ + amount = 50 + }, +/obj/item/stack/material/steel{ + amount = 50 + }, +/obj/item/stack/material/steel{ + amount = 50 + }, +/obj/item/stack/material/steel{ + amount = 50 + }, +/obj/item/stack/material/glass{ + amount = 50; + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/stack/material/glass{ + amount = 50; + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/stack/material/glass{ + amount = 50; + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/stack/material/glass{ + amount = 50; + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/stack/material/plasteel{ + amount = 10 + }, +/obj/machinery/camera/network/crescent, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"fI" = ( +/obj/machinery/pipedispenser/orderable, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"fK" = ( +/obj/structure/table/rack, +/obj/item/shield/transforming/energy, +/obj/item/shield/transforming/energy, +/obj/item/shield/transforming/energy, +/obj/item/shield/transforming/energy, +/obj/item/shield/transforming/energy, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/melee/transforming/energy/sword, +/obj/item/melee/transforming/energy/sword, +/obj/item/melee/transforming/energy/sword, +/obj/item/melee/transforming/energy/sword, +/obj/item/melee/transforming/energy/sword, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"fL" = ( +/obj/structure/table/standard, +/turf/unsimulated/floor/steel, +/area/centcom/command) +"fN" = ( +/obj/machinery/fitness/punching_bag/clown, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"fO" = ( +/obj/landmark{ + name = "tdome1" + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/tdome/tdome1) +"fP" = ( +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/turf/unsimulated/floor/steel, +/area/centcom/living) +"fQ" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/table/rack, +/obj/item/gun/energy/ionrifle, +/obj/item/gun/energy/ionrifle, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"fS" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 9 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/bordercorner2{ + dir = 1 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"fV" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/window/reinforced, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/living) +"fX" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"fZ" = ( +/obj/structure/table/reinforced, +/obj/machinery/computer/skills, +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 5 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"ga" = ( +/turf/unsimulated/wall, +/area/centcom/living) +"gb" = ( +/obj/structure/handrail, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/shuttle/floor/darkred, +/area/shuttle/escape) +"gc" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/pen, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"ge" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 1 + }, +/obj/machinery/camera/network/crescent, +/obj/effect/floor_decal/corner_steel_grid{ + dir = 10 + }, +/obj/machinery/clonepod/transhuman/full, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"gf" = ( +/obj/machinery/vending/mre{ + emagged = 1 + }, +/turf/unsimulated/floor/wood, +/area/centcom/restaurant) +"gg" = ( +/obj/structure/handrail, +/obj/structure/closet/walllocker/emergsuit_wall{ + pixel_y = 32 + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/escape) +"gh" = ( +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/structure/table/marble, +/obj/item/book/manual/chef_recipes, +/obj/item/reagent_containers/food/condiment/small/saltshaker{ + pixel_x = -3 + }, +/obj/item/reagent_containers/food/condiment/small/peppermill{ + pixel_x = 3 + }, +/obj/item/material/kitchen/rollingpin, +/obj/item/material/knife/butch, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"gj" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 5 + }, +/obj/machinery/door/blast/shutters{ + id = "RiotCon"; + name = "Riot Control"; + req_access = list(63); + req_one_access = list(1) + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"gk" = ( +/obj/machinery/door/airlock/highsecurity{ + desc = "SHIT IS LIT"; + name = "TACTICAL TOILET"; + req_one_access = list() + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"gl" = ( +/obj/structure/table/glass, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/item/healthanalyzer/advanced, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"gm" = ( +/obj/structure/table/woodentable, +/obj/item/reagent_containers/food/snacks/roastbeef, +/turf/unsimulated/floor/wood, +/area/centcom/restaurant) +"gn" = ( +/obj/machinery/door/airlock{ + name = "Unit 1" + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/bathroom) +"go" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-22" + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/bathroom) +"gp" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 5 + }, +/obj/structure/table/reinforced, +/obj/item/camera, +/obj/item/storage/box/ids, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"gq" = ( +/obj/structure/bed/chair, +/obj/effect/floor_decal/industrial/outline, +/turf/unsimulated/floor/steel, +/area/centcom/main_hall) +"gs" = ( +/obj/structure/table/woodentable, +/obj/item/reagent_containers/food/snacks/pastatomato, +/turf/unsimulated/floor/wood, +/area/centcom/restaurant) +"gt" = ( +/turf/simulated/shuttle/wall/voidcraft/hard_corner, +/area/shuttle/specops/engine) +"gu" = ( +/obj/machinery/shower{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"gv" = ( +/obj/machinery/space_heater, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"gy" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/oxygen/prechilled, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 10 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 10 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"gB" = ( +/obj/machinery/vending/hydroseeds, +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"gE" = ( +/obj/effect/floor_decal/industrial/warning/dust/corner, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/light/flamp/noshade, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"gF" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/mirror{ + pixel_x = -28 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 10 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/bathroom) +"gG" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/obj/item/pen, +/turf/unsimulated/floor{ + icon_state = "carpet" + }, +/area/centcom/command) +"gH" = ( +/obj/effect/floor_decal/industrial/outline, +/turf/unsimulated/floor/steel, +/area/centcom/living) +"gI" = ( +/obj/effect/floor_decal/industrial/outline, +/obj/structure/closet/secure_closet/nanotrasen_security, +/obj/item/storage/box/handcuffs, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"gJ" = ( +/obj/structure/table/reinforced, +/obj/machinery/computer/skills, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 6 + }, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"gK" = ( +/obj/structure/table/rack/steel, +/obj/item/tank/phoron/pressurized, +/obj/item/tank/phoron/pressurized, +/obj/item/tank/phoron/pressurized, +/obj/item/tank/phoron/pressurized, +/obj/effect/floor_decal/industrial/outline/red, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/specops/general) +"gL" = ( +/obj/structure/bed/padded, +/obj/machinery/camera/network/crescent, +/obj/machinery/flasher{ + id = "CellC2"; + pixel_x = -24; + pixel_y = 25 + }, +/turf/unsimulated/floor/steel, +/area/centcom/holding) +"gM" = ( +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/command) +"gN" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "Secure Armoury Section"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/head_office/head_of_security, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"gO" = ( +/obj/effect/floor_decal/rust, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/obj/structure/railing, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"gQ" = ( +/obj/machinery/body_scanconsole, +/obj/effect/floor_decal/corner_steel_grid{ + dir = 10 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"gS" = ( +/obj/structure/handrail{ + dir = 1 + }, +/obj/machinery/status_display{ + pixel_y = -32 + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/escape) +"gW" = ( +/obj/structure/table/glass, +/obj/item/storage/firstaid/regular, +/obj/item/storage/firstaid/regular, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 10 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 10 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"gX" = ( +/obj/random/firstaid, +/obj/item/storage/firstaid/adv, +/obj/item/storage/firstaid/bonemed, +/obj/item/storage/firstaid/clotting, +/obj/item/storage/firstaid/clotting, +/obj/structure/table/reinforced, +/turf/simulated/shuttle/floor, +/area/shuttle/escape) +"gY" = ( +/obj/structure/sign/nanotrasen, +/turf/unsimulated/wall, +/area/centcom/command) +"gZ" = ( +/obj/structure/table/rack, +/obj/item/ammo_casing/rocket, +/obj/item/ammo_casing/rocket, +/obj/item/ammo_casing/rocket, +/obj/item/ammo_casing/rocket, +/obj/item/ammo_casing/rocket, +/obj/item/ammo_casing/rocket, +/obj/item/gun/ballistic/rocket, +/obj/item/gun/ballistic/rocket, +/obj/item/ammo_magazine/a5_56mm/saw, +/obj/item/ammo_magazine/a5_56mm/saw, +/obj/item/ammo_magazine/a5_56mm/saw, +/obj/item/ammo_magazine/a5_56mm/saw, +/obj/item/ammo_magazine/a5_56mm/saw, +/obj/item/ammo_magazine/a5_56mm/saw, +/obj/item/ammo_magazine/a5_56mm/saw/ap, +/obj/item/ammo_magazine/a5_56mm/saw/ap, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"hd" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1; + pixel_y = -16 + }, +/turf/unsimulated/floor/steel, +/area/centcom/command) +"hf" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/machinery/camera/network/crescent, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"hh" = ( +/obj/item/clothing/glasses/welding/superior, +/obj/item/clothing/glasses/welding/superior, +/obj/item/clothing/glasses/welding/superior, +/obj/item/clothing/glasses/welding/superior, +/obj/item/clothing/glasses/welding/superior, +/obj/structure/table/steel_reinforced, +/obj/item/clothing/glasses/welding/superior, +/obj/item/grenade/chem_grenade/metalfoam, +/obj/item/grenade/chem_grenade/metalfoam, +/obj/item/grenade/chem_grenade/metalfoam, +/obj/item/grenade/chem_grenade/metalfoam, +/obj/item/grenade/chem_grenade/metalfoam, +/obj/item/grenade/chem_grenade/metalfoam, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"hi" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/borderfloor{ + dir = 1; + pixel_y = -16 + }, +/obj/machinery/photocopier/faxmachine, +/turf/unsimulated/floor/steel, +/area/centcom/command) +"hj" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorblack/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/bordercorner{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"hk" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 5 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"ho" = ( +/obj/structure/table/woodentable, +/turf/unsimulated/floor/wood, +/area/centcom/bar) +"hp" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/obj/machinery/camera/network/crescent, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"ht" = ( +/obj/machinery/camera/network/crescent, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"hw" = ( +/obj/structure/table/reinforced, +/obj/item/camera, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 10 + }, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"hx" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/unsimulated/floor/steel, +/area/centcom/command) +"hz" = ( +/obj/structure/table/standard, +/obj/item/surgical/circular_saw, +/obj/item/surgical/scalpel{ + pixel_y = 12 + }, +/obj/item/surgical/hemostat, +/obj/item/surgical/retractor, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/control) +"hA" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/turf/unsimulated/floor/steel, +/area/centcom/command) +"hC" = ( +/obj/effect/floor_decal/industrial/outline, +/obj/structure/closet/secure_closet/nanotrasen_security, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"hD" = ( +/obj/structure/table/rack, +/obj/item/storage/backpack/dufflebag/syndie/med, +/obj/item/storage/backpack/dufflebag/syndie/med, +/obj/item/storage/backpack/dufflebag/syndie/med, +/obj/item/storage/backpack/dufflebag/syndie/med, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"hE" = ( +/obj/machinery/telecomms/hub/preset_cent, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"hF" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/dark, +/area/shuttle/specops/general) +"hH" = ( +/obj/machinery/telecomms/bus/preset_cent, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/command) +"hK" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "carpet" + }, +/area/centcom/restaurant) +"hM" = ( +/obj/machinery/door/blast/regular{ + id = "thunderdome"; + name = "Thunderdome Blast Door" + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/tdome/tdome1) +"hQ" = ( +/obj/structure/closet{ + name = "Prisoner's Locker" + }, +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/orange/border, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"hR" = ( +/obj/machinery/vending/cigarette{ + name = "hacked cigarette machine"; + prices = list(); + products = list(/obj/item/storage/fancy/cigarettes=10,/obj/item/storage/box/matches=10,/obj/item/flame/lighter/zippo=4,/obj/item/clothing/mask/smokable/cigarette/cigar/havana=2) + }, +/turf/unsimulated/floor/wood, +/area/centcom/specops) +"hS" = ( +/obj/machinery/atmospherics/component/unary/engine{ + dir = 4 + }, +/turf/simulated/shuttle/plating/airless/carry, +/area/shuttle/specops/engine) +"hU" = ( +/obj/machinery/gibber, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/bar) +"hV" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-24" + }, +/turf/unsimulated/floor/steel, +/area/centcom/command) +"hW" = ( +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = 26 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"hY" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 4 + }, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"hZ" = ( +/obj/machinery/r_n_d/server/centcom, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"ia" = ( +/obj/machinery/computer/guestpass{ + pixel_y = 27 + }, +/turf/unsimulated/floor/steel, +/area/centcom/main_hall) +"ib" = ( +/obj/structure/toilet{ + dir = 8 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/bathroom) +"id" = ( +/obj/machinery/portable_atmospherics/powered/pump/filled, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"ie" = ( +/obj/machinery/button/remote/airlock{ + dir = 4; + id = "ADMINFUN"; + name = "Door Bolts"; + pixel_x = 28; + pixel_y = 28; + req_access = list(109); + specialfunctions = 4 + }, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"if" = ( +/obj/structure/table/glass, +/obj/machinery/computer/med_data{ + icon_keyboard = "laptop_key"; + icon_screen = "medlaptop"; + icon_state = "laptop"; + light_color = "#00b000" + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"ih" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/structure/flora/pottedplant{ + pixel_y = 10 + }, +/turf/unsimulated/floor/steel, +/area/centcom/command) +"ik" = ( +/obj/structure/musician/piano{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/diagonal, +/obj/effect/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"il" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/control) +"im" = ( +/obj/machinery/computer/communications{ + dir = 4 + }, +/obj/machinery/keycard_auth{ + pixel_x = -24; + pixel_y = -24 + }, +/turf/simulated/shuttle/floor/white, +/area/shuttle/escape) +"in" = ( +/obj/structure/handrail{ + dir = 8 + }, +/turf/simulated/shuttle/floor/white, +/area/shuttle/escape) +"ip" = ( +/obj/machinery/porta_turret/crescent{ + density = 1 + }, +/turf/simulated/floor/reinforced, +/area/centcom/command) +"ir" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"it" = ( +/obj/machinery/door/blast/regular{ + id = "CentComPort"; + name = "Security Doors" + }, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"iu" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"iv" = ( +/obj/structure/table/reinforced, +/obj/item/card/id/gold/captain/spare, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"iz" = ( +/obj/effect/floor_decal/derelict/d16, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"iA" = ( +/obj/machinery/door/blast/regular{ + dir = 8; + id = "ArmouryC2"; + name = "Armoury" + }, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"iC" = ( +/obj/structure/fans/tiny, +/obj/spawner/window/low_wall/reinforced/electrochromic/full/firelocks{ + id = "emergency_medical" + }, +/obj/machinery/door/blast/regular/open{ + id = "emergency_shuttle_lockdown"; + name = "Emergency Shuttle Blast Door" + }, +/turf/unsimulated/floor{ + name = "plating" + }, +/area/shuttle/escape) +"iE" = ( +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/bathroom) +"iH" = ( +/turf/unsimulated/wall, +/area/centcom/terminal) +"iJ" = ( +/obj/machinery/telecomms/receiver/preset_cent, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/command) +"iM" = ( +/obj/effect/floor_decal/borderfloor{ + pixel_y = -16 + }, +/turf/unsimulated/floor/steel, +/area/centcom/command) +"iN" = ( +/obj/item/stool/padded, +/turf/unsimulated/floor/wood, +/area/centcom/bar) +"iO" = ( +/obj/machinery/tele_projector, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"iP" = ( +/obj/structure/table/woodentable, +/obj/item/reagent_containers/food/drinks/bottle/grenadine, +/turf/unsimulated/floor/wood, +/area/centcom/bar) +"iR" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 9 + }, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"iT" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/structure/table/woodentable, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/command) +"iU" = ( +/obj/machinery/door/airlock/command{ + id_tag = "HoSdoor"; + name = "Head of Security"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/head_office/head_of_security, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"iV" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/brigdoor{ + dir = 8; + req_access = list(63); + req_one_access = list() + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"iX" = ( +/obj/effect/floor_decal/corner_steel_grid{ + dir = 4 + }, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"ja" = ( +/obj/machinery/door/airlock{ + name = "Unisex Showers" + }, +/turf/unsimulated/floor{ + icon_state = "freezerfloor" + }, +/area/centcom/bathroom) +"jd" = ( +/obj/structure/table/woodentable, +/obj/item/flashlight/lamp/green{ + pixel_x = 10; + pixel_y = 12 + }, +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/machinery/button/remote/blast_door{ + id = "ADMINFUN"; + name = "Restricted Armory Access"; + req_access = list(109) + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/command) +"jf" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/obj/item/folder/white_rd, +/turf/unsimulated/floor{ + icon_state = "carpet" + }, +/area/centcom/command) +"jg" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/syringes{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/storage/box/syringes, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"jj" = ( +/obj/structure/bed/padded, +/obj/item/bedsheet/orange, +/obj/effect/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/orange/bordercorner2{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"jl" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/ammo_magazine/a5_56mm/ap, +/obj/item/ammo_magazine/a5_56mm/ap, +/obj/item/ammo_magazine/a5_56mm, +/obj/item/ammo_magazine/a5_56mm, +/obj/item/ammo_magazine/a5_56mm, +/obj/item/ammo_magazine/a5_56mm, +/obj/item/ammo_magazine/a5_56mm, +/obj/item/ammo_magazine/a5_56mm, +/obj/item/gun/ballistic/automatic/sts35, +/obj/item/gun/ballistic/automatic/sts35, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"jm" = ( +/turf/unsimulated/floor/steel{ + icon_state = "asteroidfloor" + }, +/area/centcom/main_hall) +"jo" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 4 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"jp" = ( +/obj/structure/closet/crate/freezer, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/bar) +"jq" = ( +/obj/machinery/door/airlock/security{ + name = "Security"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/security/department, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/command) +"jr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"jt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/obj/structure/shuttle/engine/heater{ + dir = 8 + }, +/turf/simulated/shuttle/wall/voidcraft, +/area/shuttle/specops/engine) +"ju" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/turf/unsimulated/floor/steel, +/area/centcom/command) +"jv" = ( +/obj/structure/table/reinforced, +/obj/item/storage/firstaid/fire{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/storage/firstaid/fire, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"jw" = ( +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/centcom/command) +"jy" = ( +/obj/structure/kitchenspike, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/bar) +"jA" = ( +/obj/machinery/camera/network/thunder{ + invisibility = 101 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/tdome) +"jB" = ( +/obj/effect/floor_decal/steeldecal/steel_decals10, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"jC" = ( +/obj/machinery/camera/network/crescent, +/turf/unsimulated/floor{ + icon_state = "freezer" + }, +/area/centcom/security) +"jE" = ( +/obj/structure/table/standard, +/obj/item/mmi, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"jF" = ( +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = 26 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"jH" = ( +/obj/machinery/power/smes/buildable/point_of_interest, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/shuttle/specops/engine) +"jI" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/unsimulated/floor/steel, +/area/centcom/main_hall) +"jJ" = ( +/obj/structure/table/rack, +/obj/item/gun/energy/pulse_rifle, +/obj/item/gun/energy/pulse_rifle, +/obj/item/gun/energy/pulse_rifle, +/obj/item/gun/energy/pulse_rifle, +/obj/item/gun/energy/pulse_rifle, +/obj/item/gun/energy/pulse_rifle, +/obj/item/storage/secure/briefcase/nsfw_pack, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"jK" = ( +/obj/structure/table/woodentable, +/obj/item/reagent_containers/food/drinks/bottle/cola, +/turf/unsimulated/floor/wood, +/area/centcom/bar) +"jM" = ( +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/turf/unsimulated/floor/steel, +/area/centcom/living) +"jO" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/power/terminal{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/shuttle/specops/engine) +"jP" = ( +/obj/effect/floor_decal/corner/yellow/diagonal, +/obj/effect/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/obj/machinery/vending/snack, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"jQ" = ( +/turf/simulated/shuttle/wall/voidcraft/blue, +/area/shuttle/escape) +"jR" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/bordercorner{ + dir = 8 + }, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"jS" = ( +/obj/structure/table/glass, +/obj/effect/floor_decal/borderfloor{ + dir = 1; + pixel_y = -16 + }, +/turf/unsimulated/floor/steel, +/area/centcom/command) +"jT" = ( +/obj/structure/fans/tiny, +/obj/machinery/door/airlock/glass_external{ + req_one_access = null + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/escape) +"jZ" = ( +/obj/effect/floor_decal/derelict/d4, +/obj/effect/floor_decal/industrial/warning/dust, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"kb" = ( +/obj/machinery/door/airlock{ + name = "Unit 1" + }, +/turf/unsimulated/floor{ + icon_state = "freezer" + }, +/area/centcom/bathroom) +"kc" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 6 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"ke" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/gun/ballistic/automatic/z8, +/obj/item/gun/ballistic/automatic/z8, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"kf" = ( +/obj/machinery/computer/card{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 4 + }, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"kg" = ( +/obj/machinery/door/blast/regular{ + id = "ArmouryC"; + name = "Armoury" + }, +/obj/effect/floor_decal/industrial/warning, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"kh" = ( +/turf/unsimulated/floor{ + icon_state = "carpet" + }, +/area/centcom/command) +"ki" = ( +/obj/structure/closet/crate, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/obj/item/storage/box, +/obj/item/storage/box, +/obj/item/storage/box, +/obj/item/storage/box, +/obj/item/storage/box, +/obj/item/storage/box, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"kk" = ( +/obj/machinery/door/airlock/centcom{ + name = "Special Operations"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/centcom/ert, +/turf/unsimulated/floor/steel, +/area/centcom/specops) +"kl" = ( +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "CentComPort"; + name = "Security Doors"; + opacity = 0 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/unsimulated/floor/steel, +/area/centcom/main_hall) +"km" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-22" + }, +/turf/unsimulated/floor/steel, +/area/centcom/command) +"ko" = ( +/obj/machinery/vending/snack, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeobserve) +"kq" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/borderfloor, +/turf/unsimulated/floor/steel, +/area/centcom/command) +"kr" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/control) +"kv" = ( +/obj/machinery/light, +/obj/effect/floor_decal/industrial/danger, +/turf/simulated/floor/tiled/steel, +/area/centcom/security) +"ky" = ( +/obj/machinery/light/flamp/noshade, +/turf/simulated/floor/outdoors/grass/heavy/interior, +/area/centcom/main_hall) +"kA" = ( +/obj/machinery/computer/supplycomp{ + dir = 4 + }, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"kE" = ( +/obj/machinery/door_timer/cell_3{ + id = "CellC3"; + pixel_x = 31 + }, +/turf/unsimulated/floor/steel, +/area/centcom/holding) +"kH" = ( +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/blue/border, +/obj/effect/floor_decal/borderfloorblack/corner2, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 9 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"kI" = ( +/obj/machinery/door/blast/regular{ + id = "HEAVY"; + name = "HEAVY ORDINANCE" + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"kJ" = ( +/obj/structure/table/standard, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen/blue, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"kL" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/control) +"kM" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 5 + }, +/obj/structure/filingcabinet, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/command) +"kP" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/unsimulated/floor/steel, +/area/centcom/main_hall) +"kQ" = ( +/obj/structure/closet/wardrobe/ert, +/turf/unsimulated/floor/wood, +/area/centcom/specops) +"kR" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/machinery/computer/crew{ + dir = 4 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"kS" = ( +/obj/item/clothing/accessory/holster/waist, +/obj/item/clothing/accessory/holster/waist, +/obj/item/clothing/accessory/holster/waist, +/obj/item/clothing/accessory/holster/waist, +/obj/item/clothing/accessory/holster/waist, +/obj/item/clothing/accessory/holster/waist, +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/obj/structure/table/steel_reinforced, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"kT" = ( +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = 30 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 5 + }, +/turf/unsimulated/floor/steel, +/area/centcom/holding) +"kU" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"kV" = ( +/obj/machinery/door/airlock/glass/security{ + name = "Security"; + req_access = list(); + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/security/department, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"kW" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/spawner/window/low_wall/borosillicate/full/firelocks, +/turf/simulated/floor/plating, +/area/shuttle/specops/engine) +"kX" = ( +/obj/structure/handrail{ + dir = 1 + }, +/obj/machinery/door/window/brigdoor/southright{ + dir = 8; + name = "holding cell" + }, +/obj/machinery/status_display{ + pixel_y = -32 + }, +/turf/simulated/shuttle/floor/darkred, +/area/shuttle/escape) +"kY" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/structure/closet/crate/bin, +/turf/unsimulated/floor/steel, +/area/centcom/command) +"kZ" = ( +/obj/effect/floor_decal/corner/white{ + dir = 10 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"le" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/unsimulated/floor/steel, +/area/centcom/terminal) +"lf" = ( +/obj/structure/table/glass, +/obj/structure/flora/pottedplant{ + pixel_y = 10 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8; + pixel_x = 16 + }, +/turf/unsimulated/floor/steel, +/area/centcom/command) +"lh" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet{ + dir = 6 + }, +/turf/unsimulated/floor{ + icon_state = "carpet" + }, +/area/centcom/control) +"lj" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"lm" = ( +/obj/effect/floor_decal/sign/dock/one, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 8 + }, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"lo" = ( +/obj/structure/handrail, +/obj/machinery/vending/wallmed1/public{ + pixel_y = 32 + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/escape) +"lp" = ( +/obj/machinery/computer/card{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 9 + }, +/obj/item/radio/intercom{ + dir = 1; + frequency = 1475; + name = "Station Intercom (Security)"; + pixel_y = 27 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"lr" = ( +/obj/structure/closet{ + name = "Prisoner's Locker" + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"ls" = ( +/obj/structure/table/glass, +/obj/machinery/computer/skills{ + pixel_y = 2 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/turf/unsimulated/floor/steel, +/area/centcom/command) +"lt" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"lu" = ( +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/living) +"lv" = ( +/obj/structure/table/woodentable, +/obj/item/reagent_containers/food/snacks/kitsuneudon, +/turf/unsimulated/floor/wood, +/area/centcom/restaurant) +"lw" = ( +/obj/structure/table/glass, +/obj/item/storage/box/cups, +/obj/item/storage/box/cups, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"lx" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 6 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 6 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"ly" = ( +/obj/machinery/telecomms/server/presets/centcom, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"lz" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 10 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 10 + }, +/obj/machinery/smartfridge/chemistry/virology, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"lA" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/structure/table/woodentable, +/obj/item/storage/box/handcuffs, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/command) +"lB" = ( +/obj/item/megaphone, +/obj/item/megaphone, +/obj/item/megaphone, +/obj/item/megaphone, +/obj/item/megaphone, +/obj/item/megaphone, +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/obj/structure/table/steel_reinforced, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"lC" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/food/drinks/flask/barflask, +/obj/item/reagent_containers/glass/rag, +/obj/item/reagent_containers/food/drinks/flask/vacuumflask, +/turf/unsimulated/floor/wood, +/area/centcom/bar) +"lD" = ( +/obj/machinery/door/blast/regular, +/turf/unsimulated/floor/steel, +/area/space) +"lE" = ( +/obj/machinery/r_n_d/circuit_imprinter, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/item/book/manual/robotics_cyborgs{ + pixel_x = 2; + pixel_y = 5 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/control) +"lF" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/specops/general) +"lG" = ( +/obj/machinery/computer/pod{ + id = "thunderdomehea"; + name = "Thunderdome Heavy Supply" + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/tdome/tdomeadmin) +"lJ" = ( +/obj/machinery/computer/security/telescreen, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeobserve) +"lK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"lL" = ( +/obj/machinery/telecomms/hub/preset_cent, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/command) +"lM" = ( +/turf/simulated/shuttle/floor/darkred, +/area/shuttle/escape) +"lO" = ( +/obj/structure/table/rack, +/obj/item/storage/box/seccarts{ + pixel_x = 3; + pixel_y = 2 + }, +/obj/item/storage/box/handcuffs, +/obj/item/storage/box/flashbangs{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 21 + }, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"lQ" = ( +/obj/machinery/deployable/barrier, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"lR" = ( +/obj/spawner/window/low_wall/reinforced/full, +/turf/unsimulated/floor{ + name = "plating" + }, +/area/centcom/control) +"lS" = ( +/obj/machinery/door/airlock/centcom{ + name = "Teleporter"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/centcom/ert, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"lT" = ( +/obj/structure/table/standard, +/obj/item/soap, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 8 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/bathroom) +"lV" = ( +/obj/structure/table/standard, +/obj/machinery/recharger, +/obj/item/flash, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"lX" = ( +/obj/structure/flora/pottedplant, +/turf/unsimulated/floor/steel, +/area/centcom/command) +"lY" = ( +/obj/machinery/door/airlock/glass/security{ + name = "Warden's Office"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/security/armory, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"ma" = ( +/obj/effect/floor_decal/carpet, +/obj/structure/bed/chair/comfy/teal{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon_state = "carpet" + }, +/area/centcom/command) +"mb" = ( +/obj/spawner/window/low_wall/reinforced/electrochromic/full/firelocks{ + id = "emergency_cockpit" + }, +/turf/simulated/floor, +/area/shuttle/escape) +"md" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/table/glass, +/obj/item/storage/box/monkeycubes, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 5 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/bordercorner2{ + dir = 4 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"me" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"mf" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 5 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"mg" = ( +/obj/machinery/smartfridge/drinks, +/turf/unsimulated/floor/wood, +/area/centcom/bar) +"mh" = ( +/turf/unsimulated/floor/wood, +/area/centcom/restaurant) +"mi" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/multi_tile/glass, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"mj" = ( +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 10 + }, +/turf/unsimulated/floor/steel, +/area/centcom/living) +"ml" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 1 + }, +/obj/structure/closet/crate/bin, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"mn" = ( +/obj/structure/table/rack, +/obj/item/clothing/glasses/night, +/obj/item/clothing/glasses/night, +/obj/item/clothing/glasses/night, +/obj/item/clothing/glasses/night, +/obj/item/clothing/glasses/night, +/obj/item/clothing/glasses/night, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"mo" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"mq" = ( +/obj/structure/sign/directions/security{ + dir = 4; + pixel_y = 32 + }, +/obj/structure/sign/directions/medical{ + dir = 4; + pixel_y = 38 + }, +/obj/structure/sign/directions/elevator{ + dir = 4; + pixel_y = 25 + }, +/turf/unsimulated/floor/steel, +/area/centcom/main_hall) +"mu" = ( +/obj/structure/toilet, +/turf/unsimulated/floor{ + icon_state = "freezer" + }, +/area/centcom/bathroom) +"my" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/borderfloor/corner2, +/turf/unsimulated/floor/steel, +/area/centcom/command) +"mz" = ( +/obj/machinery/door/airlock/security{ + name = "Security" + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"mA" = ( +/obj/machinery/sleep_console{ + dir = 4 + }, +/turf/simulated/shuttle/floor, +/area/shuttle/escape) +"mD" = ( +/obj/structure/table/rack, +/obj/item/clothing/gloves/swat{ + armor = list("melee"=80,"bullet"=80,"laser"=80,"energy"=80,"bomb"=80,"bio"=80,"rad"=80) + }, +/obj/item/clothing/gloves/swat{ + armor = list("melee"=80,"bullet"=80,"laser"=80,"energy"=80,"bomb"=80,"bio"=80,"rad"=80) + }, +/obj/item/clothing/gloves/swat{ + armor = list("melee"=80,"bullet"=80,"laser"=80,"energy"=80,"bomb"=80,"bio"=80,"rad"=80) + }, +/obj/item/clothing/gloves/swat{ + armor = list("melee"=80,"bullet"=80,"laser"=80,"energy"=80,"bomb"=80,"bio"=80,"rad"=80) + }, +/obj/item/clothing/gloves/swat{ + armor = list("melee"=80,"bullet"=80,"laser"=80,"energy"=80,"bomb"=80,"bio"=80,"rad"=80) + }, +/obj/item/clothing/shoes/boots/swat, +/obj/item/clothing/shoes/boots/swat, +/obj/item/clothing/shoes/boots/swat, +/obj/item/clothing/shoes/boots/swat, +/obj/item/clothing/shoes/boots/swat, +/obj/item/clothing/shoes/boots/swat, +/obj/item/clothing/suit/armor/swat, +/obj/item/clothing/suit/armor/swat, +/obj/item/clothing/suit/armor/swat, +/obj/item/clothing/suit/armor/swat, +/obj/item/clothing/suit/armor/swat, +/obj/item/clothing/suit/armor/swat, +/obj/item/clothing/mask/gas/commando{ + armor = list("melee"=50,"bullet"=50,"laser"=50,"energy"=50,"bomb"=50,"bio"=75,"rad"=0); + name = "Commando Mask" + }, +/obj/item/clothing/mask/gas/commando{ + armor = list("melee"=50,"bullet"=50,"laser"=50,"energy"=50,"bomb"=50,"bio"=75,"rad"=0); + name = "Commando Mask" + }, +/obj/item/clothing/mask/gas/commando{ + armor = list("melee"=50,"bullet"=50,"laser"=50,"energy"=50,"bomb"=50,"bio"=75,"rad"=0); + name = "Commando Mask" + }, +/obj/item/clothing/mask/gas/commando{ + armor = list("melee"=50,"bullet"=50,"laser"=50,"energy"=50,"bomb"=50,"bio"=75,"rad"=0); + name = "Commando Mask" + }, +/obj/item/clothing/mask/gas/commando{ + armor = list("melee"=50,"bullet"=50,"laser"=50,"energy"=50,"bomb"=50,"bio"=75,"rad"=0); + name = "Commando Mask" + }, +/obj/item/clothing/head/helmet/space/deathsquad{ + armor = list("melee"=80,"bullet"=80,"laser"=60,"energy"=70,"bomb"=50,"bio"=100,"rad"=60); + name = "swat helmet" + }, +/obj/item/clothing/head/helmet/space/deathsquad{ + armor = list("melee"=80,"bullet"=80,"laser"=60,"energy"=70,"bomb"=50,"bio"=100,"rad"=60); + name = "swat helmet" + }, +/obj/item/clothing/head/helmet/space/deathsquad{ + armor = list("melee"=80,"bullet"=80,"laser"=60,"energy"=70,"bomb"=50,"bio"=100,"rad"=60); + name = "swat helmet" + }, +/obj/item/clothing/head/helmet/space/deathsquad{ + armor = list("melee"=80,"bullet"=80,"laser"=60,"energy"=70,"bomb"=50,"bio"=100,"rad"=60); + name = "swat helmet" + }, +/obj/item/clothing/head/helmet/space/deathsquad{ + armor = list("melee"=80,"bullet"=80,"laser"=60,"energy"=70,"bomb"=50,"bio"=100,"rad"=60); + name = "swat helmet" + }, +/obj/item/clothing/head/helmet/space/deathsquad{ + armor = list("melee"=80,"bullet"=80,"laser"=60,"energy"=70,"bomb"=50,"bio"=100,"rad"=60); + name = "swat helmet" + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"mE" = ( +/obj/structure/fans/tiny, +/obj/spawner/window/low_wall/reinforced/electrochromic/full/firelocks{ + id = "emergency_medical" + }, +/turf/unsimulated/floor{ + name = "plating" + }, +/area/shuttle/escape) +"mF" = ( +/obj/machinery/door/airlock/vault/bolted{ + id_tag = "the_end"; + name = "RESTRICTED"; + req_one_access = null + }, +/obj/machinery/door/blast/regular{ + id = "ADMINFUN"; + name = "RESTRICTED" + }, +/obj/map_helper/access_helper/airlock/station/command/vault, +/turf/simulated/floor/reinforced, +/area/centcom/command) +"mG" = ( +/obj/structure/bed/chair/shuttle{ + dir = 8 + }, +/obj/machinery/status_display{ + pixel_y = -32 + }, +/turf/simulated/shuttle/floor/white, +/area/shuttle/escape) +"mH" = ( +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/bar) +"mI" = ( +/obj/structure/table/woodentable, +/obj/item/reagent_containers/food/snacks/lasagna, +/turf/unsimulated/floor/wood, +/area/centcom/restaurant) +"mJ" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/mirror{ + pixel_x = -28 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/bathroom) +"mM" = ( +/obj/structure/table/glass, +/obj/effect/floor_decal/borderfloor{ + dir = 8; + pixel_x = 16 + }, +/obj/item/paper_bin{ + pixel_x = -1; + pixel_y = 5 + }, +/obj/item/pen, +/turf/unsimulated/floor/steel, +/area/centcom/command) +"mN" = ( +/obj/machinery/camera/network/crescent, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/control) +"mQ" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/brigdoor{ + req_access = list(63); + req_one_access = list(1) + }, +/obj/item/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/pen, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"mR" = ( +/obj/structure/table/reinforced, +/obj/item/book/manual/security_space_law, +/obj/item/gun/energy/taser, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"mS" = ( +/obj/effect/floor_decal/industrial/warning/dust/corner{ + dir = 8 + }, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"mT" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/blood/OMinus, +/obj/item/reagent_containers/blood/OMinus, +/obj/item/reagent_containers/blood/OMinus, +/obj/item/reagent_containers/blood/OMinus, +/obj/item/reagent_containers/blood/OMinus, +/obj/item/reagent_containers/blood/OMinus, +/obj/item/defib_kit/compact/combat/loaded, +/obj/item/defib_kit/compact/combat/loaded, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"mU" = ( +/obj/item/defib_kit, +/obj/structure/table/reinforced, +/obj/item/storage/firstaid/surgery, +/obj/item/reagent_containers/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + name = "Surgery Cleaner"; + pixel_x = 2; + pixel_y = 2 + }, +/turf/simulated/shuttle/floor, +/area/shuttle/escape) +"mV" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"mW" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/armor/vest/ert/medical, +/obj/item/clothing/suit/armor/vest/ert/medical, +/obj/item/clothing/suit/armor/vest/ert/medical, +/obj/item/clothing/suit/armor/vest/ert/medical, +/obj/item/clothing/head/helmet/ert/medical, +/obj/item/clothing/head/helmet/ert/medical, +/obj/item/clothing/head/helmet/ert/medical, +/obj/item/clothing/head/helmet/ert/medical, +/obj/item/storage/backpack/ert/medical, +/obj/item/storage/backpack/ert/medical, +/obj/item/storage/backpack/ert/medical, +/obj/item/storage/backpack/ert/medical, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"na" = ( +/obj/machinery/door/airlock/glass/security{ + name = "Security"; + req_access = list(); + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/security/general, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"nb" = ( +/obj/structure/bed/chair/shuttle, +/turf/simulated/shuttle/floor/darkred, +/area/shuttle/escape) +"nc" = ( +/obj/machinery/turretid/stun{ + check_access = 0; + check_anomalies = 0; + check_records = 0; + control_area = "\improper CentCom Security Arrivals"; + pixel_x = 32; + req_access = list(101); + req_one_access = list(101) + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"nd" = ( +/obj/structure/bed/chair, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"ne" = ( +/obj/machinery/status_display{ + layer = 4; + pixel_y = 32 + }, +/obj/machinery/vending/security, +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"nf" = ( +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet{ + dir = 6 + }, +/turf/unsimulated/floor{ + icon_state = "carpet" + }, +/area/centcom/restaurant) +"ng" = ( +/obj/machinery/r_n_d/destructive_analyzer, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"nh" = ( +/obj/machinery/porta_turret/crescent{ + density = 1 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"ni" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/gun/energy/lasercannon, +/obj/item/gun/energy/lasercannon, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"nl" = ( +/obj/structure/table/woodentable, +/obj/item/reagent_containers/food/snacks/hotdog, +/obj/item/reagent_containers/food/snacks/hotdog{ + pixel_x = -5; + pixel_y = -3 + }, +/turf/unsimulated/floor/wood, +/area/centcom/restaurant) +"nm" = ( +/obj/machinery/vending/wallmed1{ + name = "Emergency NanoMed"; + pixel_y = 30 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/specops/general) +"nn" = ( +/obj/machinery/vending/boozeomat, +/turf/unsimulated/floor/wood, +/area/centcom/bar) +"no" = ( +/obj/machinery/atm{ + pixel_y = 30 + }, +/turf/unsimulated/floor/steel, +/area/centcom/command) +"np" = ( +/obj/machinery/vending/coffee, +/turf/unsimulated/floor/wood, +/area/centcom/restaurant) +"nr" = ( +/obj/structure/statue/marble/venus{ + dir = 8; + pixel_y = -5 + }, +/turf/unsimulated/floor/steel{ + icon_state = "asteroidfloor" + }, +/area/centcom/main_hall) +"ns" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 4 + }, +/turf/unsimulated/floor/steel, +/area/centcom/main_hall) +"nt" = ( +/obj/structure/table/glass, +/obj/effect/floor_decal/borderfloor{ + dir = 1; + pixel_y = -16 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8; + pixel_x = 16 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10; + pixel_x = 16 + }, +/turf/unsimulated/floor/steel, +/area/centcom/command) +"nu" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/gun/energy/sniperrifle, +/obj/item/gun/energy/sniperrifle, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"nv" = ( +/obj/structure/table/marble, +/obj/item/reagent_containers/food/drinks/cup{ + pixel_x = 8; + pixel_y = 8 + }, +/obj/item/reagent_containers/food/drinks/cup{ + pixel_x = -4; + pixel_y = 8 + }, +/obj/item/reagent_containers/food/drinks/cup{ + pixel_x = 3 + }, +/obj/item/reagent_containers/food/drinks/cup{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/item/reagent_containers/food/drinks/cup{ + pixel_x = 8 + }, +/obj/item/reagent_containers/food/drinks/cup{ + pixel_x = -4 + }, +/obj/item/reagent_containers/food/drinks/cup{ + pixel_x = 8; + pixel_y = 12 + }, +/obj/item/reagent_containers/food/drinks/cup{ + pixel_x = -4; + pixel_y = 12 + }, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/centcom/command) +"nx" = ( +/obj/machinery/computer/security/telescreen/entertainment{ + icon_state = "frame"; + pixel_x = 32 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"ny" = ( +/obj/machinery/door/blast/regular{ + dir = 8; + id = "ArmouryC4"; + name = "Armoury" + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"nz" = ( +/obj/structure/table/rack, +/obj/item/shield/transforming/energy, +/obj/item/shield/transforming/energy, +/obj/item/shield/transforming/energy, +/obj/item/shield/transforming/energy, +/obj/item/shield/transforming/energy, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/melee/transforming/energy/sword, +/obj/item/melee/transforming/energy/sword, +/obj/item/melee/transforming/energy/sword, +/obj/item/melee/transforming/energy/sword, +/obj/item/melee/transforming/energy/sword, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"nA" = ( +/turf/unsimulated/floor/wood, +/area/centcom/bar) +"nD" = ( +/obj/structure/table/rack, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/item/clothing/gloves/arm_guard/riot, +/obj/item/clothing/shoes/leg_guard/riot, +/obj/item/clothing/suit/armor/riot/alt, +/obj/item/clothing/head/helmet/riot, +/obj/item/shield/riot, +/obj/item/melee/baton/loaded, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"nH" = ( +/obj/machinery/door/airlock/security{ + name = "Security"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/security/department, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"nI" = ( +/obj/machinery/door/airlock/glass/research{ + name = "Robotics Lab"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/science/robotics, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/control) +"nJ" = ( +/obj/structure/table/marble, +/obj/machinery/door/blast/shutters{ + dir = 2; + id = "kitchenC"; + name = "Kitchen Shutters" + }, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"nL" = ( +/obj/machinery/door/airlock/research{ + id_tag = "researchdoor"; + name = "Research Division Access" + }, +/obj/map_helper/access_helper/airlock/station/science/department, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/control) +"nN" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/machinery/button/remote/blast_door{ + id = "turrets"; + name = "Turret Doors"; + pixel_x = -23; + req_access = list(63); + req_one_access = list(1) + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 10 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"nO" = ( +/obj/machinery/computer/security{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"nP" = ( +/obj/landmark{ + name = "Response Team" + }, +/turf/unsimulated/floor/wood, +/area/centcom/specops) +"nQ" = ( +/obj/machinery/door/airlock{ + name = "Brig Restroom" + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"nT" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/control) +"nU" = ( +/obj/structure/bed/chair/shuttle, +/obj/structure/closet/walllocker/emergsuit_wall{ + pixel_y = 32 + }, +/turf/simulated/shuttle/floor/darkred, +/area/shuttle/escape) +"nV" = ( +/obj/structure/table/rack, +/obj/structure/window/reinforced, +/obj/item/ammo_magazine/a9mm/advanced_smg, +/obj/item/ammo_magazine/a9mm/advanced_smg, +/obj/item/ammo_magazine/a9mm/advanced_smg, +/obj/item/ammo_magazine/a9mm/advanced_smg, +/obj/item/silencer, +/obj/item/silencer, +/obj/item/silencer, +/obj/item/silencer, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"nX" = ( +/obj/machinery/computer/arcade, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/green/border, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"nY" = ( +/obj/structure/closet/l3closet/scientist, +/obj/effect/floor_decal/industrial/warning, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/control) +"oa" = ( +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = 28 + }, +/obj/structure/bed/chair/bay/shuttle, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/specops/general) +"ob" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/orange/bordercorner2{ + dir = 6 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"od" = ( +/turf/unsimulated/floor/wood, +/area/centcom/main_hall) +"og" = ( +/obj/machinery/camera/network/crescent, +/turf/unsimulated/floor/wood, +/area/centcom/restaurant) +"oi" = ( +/obj/machinery/scale, +/turf/unsimulated/floor{ + icon_state = "freezerfloor" + }, +/area/centcom/bathroom) +"oj" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"ol" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-21" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 10 + }, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"om" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/structure/mirror{ + pixel_x = 29 + }, +/turf/unsimulated/floor{ + icon_state = "freezer" + }, +/area/centcom/bathroom) +"on" = ( +/obj/effect/floor_decal/derelict/d7, +/obj/effect/floor_decal/industrial/warning/dust, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"or" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 6 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2, +/obj/effect/floor_decal/corner/purple/bordercorner2, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/control) +"os" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/blue/border, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"ot" = ( +/obj/structure/statue/marble/venus{ + pixel_y = -5 + }, +/turf/unsimulated/floor/steel{ + icon_state = "asteroidfloor" + }, +/area/centcom/main_hall) +"ou" = ( +/obj/machinery/camera/network/crescent, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 1 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/bathroom) +"ov" = ( +/obj/structure/table/reinforced, +/obj/item/radio{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/radio, +/turf/simulated/shuttle/floor/darkred, +/area/shuttle/escape) +"ox" = ( +/obj/structure/flora/ausbushes/ywflowers, +/turf/simulated/floor/outdoors/grass/heavy/interior, +/area/centcom/main_hall) +"oy" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/machinery/camera/network/crescent, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"oz" = ( +/obj/structure/bed/chair/shuttle, +/obj/structure/closet/walllocker/emergsuit_wall{ + pixel_y = 32 + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/escape) +"oA" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/turf/unsimulated/floor/steel, +/area/centcom/command) +"oB" = ( +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = 28 + }, +/obj/structure/bed/chair/bay/shuttle, +/turf/simulated/floor/tiled/dark, +/area/shuttle/specops/general) +"oE" = ( +/obj/machinery/vending/cola, +/obj/effect/floor_decal/corner/yellow/diagonal, +/obj/effect/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"oF" = ( +/turf/simulated/wall{ + can_open = 1; + icon_state = "riveted" + }, +/area/centcom/control) +"oH" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 9 + }, +/obj/machinery/turretid/stun{ + check_access = 0; + check_anomalies = 0; + check_records = 0; + control_area = "\improper Main Hallway"; + pixel_y = 32; + req_access = list(101); + req_one_access = list(101) + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/command) +"oK" = ( +/turf/unsimulated/wall/planetary/virgo3b, +/area/centcom/living) +"oL" = ( +/obj/structure/fans/tiny, +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/obj/machinery/door/blast/regular/open{ + id = "emergency_shuttle_lockdown"; + name = "Emergency Shuttle Blast Door" + }, +/turf/simulated/floor, +/area/shuttle/escape) +"oN" = ( +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/control) +"oV" = ( +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeobserve) +"oW" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/obj/item/folder/blue_captain, +/turf/unsimulated/floor{ + icon_state = "carpet" + }, +/area/centcom/command) +"oX" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"oY" = ( +/obj/structure/table/reinforced, +/obj/machinery/computer/skills, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"oZ" = ( +/obj/structure/table/reinforced, +/obj/structure/flora/pottedplant{ + pixel_y = 10 + }, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"pa" = ( +/obj/structure/handrail{ + dir = 4 + }, +/turf/simulated/shuttle/floor/white, +/area/shuttle/escape) +"pb" = ( +/obj/machinery/status_display{ + pixel_y = 29 + }, +/turf/unsimulated/floor/steel, +/area/centcom/main_hall) +"pc" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/ammo_magazine/a9mm/large, +/obj/item/ammo_magazine/a9mm/large, +/obj/item/ammo_magazine/a9mm/large, +/obj/item/ammo_magazine/a9mm/large, +/obj/item/ammo_magazine/a9mm/large, +/obj/item/ammo_magazine/a9mm/large, +/obj/item/ammo_magazine/a9mm/large/ap, +/obj/item/ammo_magazine/a9mm/large/ap, +/obj/item/ammo_magazine/a9mm/large/ap, +/obj/item/ammo_magazine/a9mm/large/ap, +/obj/machinery/button/remote/blast_door{ + id = "ArmouryC4"; + name = "Armoury Access"; + pixel_y = 28; + req_access = list(3) + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"pe" = ( +/obj/item/melee/baton/cattleprod, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/control) +"pg" = ( +/turf/unsimulated/floor{ + name = "plating" + }, +/area/centcom/control) +"pi" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/camera/network/crescent, +/obj/item/ammo_magazine/a5_7mm/p90, +/obj/item/ammo_magazine/a5_7mm/p90, +/obj/item/ammo_magazine/a5_7mm/p90, +/obj/item/ammo_magazine/a5_7mm/p90, +/obj/item/ammo_magazine/a5_7mm/p90, +/obj/item/ammo_magazine/a5_7mm/p90, +/obj/item/ammo_magazine/a5_7mm/p90, +/obj/item/ammo_magazine/a5_7mm/p90, +/obj/item/ammo_magazine/a5_7mm/p90, +/obj/item/ammo_magazine/a5_7mm/p90, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"pj" = ( +/obj/effect/floor_decal/industrial/outline, +/obj/structure/bed/chair, +/turf/unsimulated/floor/steel, +/area/centcom/main_hall) +"pk" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/machinery/camera/network/crescent, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"pl" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/command) +"pp" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/structure/flora/pottedplant{ + icon_state = "plant-22" + }, +/turf/unsimulated/floor/steel, +/area/centcom/command) +"pq" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/structure/closet/crate/bin, +/turf/unsimulated/floor/steel, +/area/centcom/command) +"pr" = ( +/obj/effect/floor_decal/borderfloorwhite/corner, +/obj/effect/floor_decal/corner/green/bordercorner, +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"pt" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = 28 + }, +/obj/structure/bed/chair/bay/shuttle, +/turf/simulated/floor/tiled/dark, +/area/shuttle/specops/general) +"pv" = ( +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/orange/border, +/obj/effect/floor_decal/borderfloorblack/corner2, +/obj/effect/floor_decal/corner/orange/bordercorner2, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"pw" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/item/storage/box/donkpockets, +/obj/item/storage/box/donkpockets, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"pz" = ( +/obj/structure/flora/pottedplant, +/turf/unsimulated/floor/steel, +/area/centcom/main_hall) +"pA" = ( +/obj/machinery/door/airlock/security{ + name = "Security"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/security/general, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"pB" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/borderfloor, +/obj/item/paper_bin{ + pixel_x = -1; + pixel_y = 5 + }, +/obj/item/pen, +/turf/unsimulated/floor/steel, +/area/centcom/command) +"pC" = ( +/obj/machinery/vending/cola, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/blue/bordercorner2, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"pG" = ( +/obj/effect/floor_decal/corner_steel_grid{ + dir = 10 + }, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"pH" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/obj/item/folder/white_cmo, +/turf/unsimulated/floor{ + icon_state = "carpet" + }, +/area/centcom/command) +"pI" = ( +/obj/machinery/computer/security{ + dir = 4 + }, +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 9 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/command) +"pK" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/bordercorner{ + dir = 4 + }, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"pM" = ( +/obj/structure/fake_stairs/north/bottom{ + _stair_tag = "stairtest" + }, +/turf/simulated/floor/tiled/steel, +/area/centcom/security) +"pN" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-10" + }, +/turf/unsimulated/floor/steel, +/area/centcom/main_hall) +"pO" = ( +/obj/structure/sign/warning/docking_area, +/turf/unsimulated/wall, +/area/centcom/terminal) +"pS" = ( +/obj/structure/bed/chair/wood/wings{ + dir = 4 + }, +/turf/unsimulated/floor/wood, +/area/centcom/restaurant) +"pT" = ( +/obj/machinery/status_display{ + pixel_y = 29 + }, +/turf/unsimulated/floor/wood, +/area/centcom/restaurant) +"pU" = ( +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "CentComPort"; + name = "Security Doors"; + opacity = 0 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/unsimulated/floor/steel, +/area/centcom/main_hall) +"pV" = ( +/obj/structure/table/standard, +/obj/item/mmi/digital/posibrain, +/obj/item/robotanalyzer, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"pW" = ( +/obj/machinery/flasher{ + id = "breach_flash" + }, +/turf/simulated/shuttle/wall/voidcraft, +/area/shuttle/specops/general) +"pX" = ( +/obj/machinery/vending/coffee, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 6 + }, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"pY" = ( +/obj/effect/blocker, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/living) +"qa" = ( +/obj/structure/table/woodentable, +/obj/machinery/computer/skills{ + pixel_y = 4 + }, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/command) +"qb" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/gun/ballistic/heavysniper, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"qc" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/gun/energy/gun/burst, +/obj/item/gun/energy/gun/burst, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"qd" = ( +/obj/machinery/door/firedoor, +/turf/unsimulated/floor/steel, +/area/centcom/restaurant) +"qe" = ( +/obj/structure/table/standard, +/obj/item/clothing/accessory/badge/holo, +/obj/item/clothing/accessory/badge/holo, +/obj/item/clothing/accessory/badge/holo/cord, +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = 26 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"qf" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 6 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 6 + }, +/obj/structure/table/glass, +/obj/item/storage/box/syringes, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"qg" = ( +/obj/structure/curtain/open/shower, +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/machinery/shower{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon_state = "freezerfloor" + }, +/area/centcom/bathroom) +"qi" = ( +/obj/structure/filingcabinet/chestdrawer, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"qj" = ( +/obj/structure/table/reinforced, +/obj/item/storage/firstaid/clotting, +/obj/item/storage/firstaid/combat, +/obj/item/storage/firstaid/combat, +/obj/item/storage/pill_bottle/iron, +/obj/item/storage/pill_bottle/iron, +/obj/item/storage/pill_bottle/nutriment, +/obj/item/storage/pill_bottle/nutriment, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"qk" = ( +/obj/structure/closet/walllocker/autolok_wall{ + pixel_y = 32 + }, +/obj/machinery/light{ + dir = 4; + use_power = 0 + }, +/turf/simulated/shuttle/floor/white, +/area/shuttle/escape) +"qm" = ( +/obj/machinery/light{ + dir = 4; + use_power = 0 + }, +/obj/machinery/vending/fitness, +/turf/simulated/shuttle/floor/darkred, +/area/shuttle/escape) +"qn" = ( +/obj/machinery/door/firedoor, +/turf/unsimulated/floor/steel, +/area/centcom/main_hall) +"qo" = ( +/obj/item/storage/box/donkpockets{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/donkpockets{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/donkpockets{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/donkpockets{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/structure/table/standard, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/tdome/tdomeobserve) +"qp" = ( +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/control) +"qq" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/obj/structure/shuttle/engine/heater{ + dir = 8 + }, +/turf/simulated/shuttle/wall/voidcraft, +/area/shuttle/specops/engine) +"qr" = ( +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/structure/bed/chair/comfy/brown{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon_state = "carpet" + }, +/area/centcom/restaurant) +"qu" = ( +/obj/machinery/computer/pod{ + id = "thunderdomegen"; + name = "Thunderdome General Supply" + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/tdome/tdomeadmin) +"qv" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/machinery/status_display{ + pixel_y = 29 + }, +/turf/unsimulated/floor/steel, +/area/centcom/command) +"qx" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/structure/closet/crate/bin, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"qz" = ( +/obj/structure/toilet{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "freezer" + }, +/area/centcom/security) +"qE" = ( +/obj/structure/closet/crate/bin, +/turf/unsimulated/floor{ + icon_state = "freezer" + }, +/area/centcom/bathroom) +"qF" = ( +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/blue/border, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 9 + }, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"qG" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"qH" = ( +/obj/structure/handrail, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/simulated/shuttle/floor, +/area/shuttle/escape) +"qI" = ( +/obj/structure/table/rack, +/obj/item/hardsuit_module/chem_dispenser/combat, +/obj/item/hardsuit_module/chem_dispenser/combat, +/obj/item/hardsuit_module/chem_dispenser/injector, +/obj/item/hardsuit_module/chem_dispenser/injector, +/obj/item/hardsuit_module/device/healthscanner, +/obj/item/hardsuit_module/device/healthscanner, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"qL" = ( +/obj/item/radio/intercom{ + dir = 1; + frequency = 1475; + name = "Station Intercom (Security)"; + pixel_y = 27 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"qM" = ( +/obj/structure/sign/double/barsign, +/turf/unsimulated/wall, +/area/centcom/restaurant) +"qQ" = ( +/obj/item/stamp/centcom, +/obj/item/pen, +/obj/item/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/structure/table/steel_reinforced, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"qR" = ( +/obj/structure/table/reinforced, +/obj/machinery/chemical_dispenser/catering/bar_soft, +/turf/unsimulated/floor/wood, +/area/centcom/bar) +"qS" = ( +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/blue/border, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/command) +"qV" = ( +/obj/structure/table/glass, +/obj/item/storage/firstaid/adv, +/obj/item/storage/firstaid/adv, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"qZ" = ( +/obj/machinery/turretid/lethal{ + check_access = 0; + check_anomalies = 0; + check_arrest = 0; + check_records = 0; + control_area = "\improper Centcom Command"; + pixel_y = 26; + req_access = list(109); + req_one_access = list(109) + }, +/turf/simulated/floor/reinforced, +/area/centcom/command) +"rb" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"rc" = ( +/obj/machinery/computer/card, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 5 + }, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"rd" = ( +/obj/machinery/vending/snack, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 10 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 10 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"rg" = ( +/obj/structure/bed/padded, +/obj/machinery/camera/network/crescent, +/obj/machinery/flasher{ + id = "CellC1"; + pixel_x = -28 + }, +/turf/unsimulated/floor/steel, +/area/centcom/holding) +"ri" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 6 + }, +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = 30 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"rn" = ( +/obj/machinery/door/airlock/glass/security{ + name = "Security"; + req_access = list(); + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/security/general, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"ro" = ( +/obj/machinery/vending/hydronutrients, +/obj/effect/floor_decal/borderfloorblack{ + dir = 9 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/orange/bordercorner2{ + dir = 10 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"rp" = ( +/obj/spawner/window/low_wall/reinforced/full, +/turf/unsimulated/floor{ + name = "plating" + }, +/area/centcom/restaurant) +"rq" = ( +/obj/machinery/computer/pod{ + id = "thunderdomeaxe"; + name = "Thunderdome Axe Supply" + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/tdome/tdomeadmin) +"rr" = ( +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 1 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"rs" = ( +/obj/structure/bed/chair/wood/wings{ + dir = 1 + }, +/turf/unsimulated/floor/wood, +/area/centcom/restaurant) +"rt" = ( +/obj/structure/closet/crate/bin, +/obj/machinery/camera/network/crescent, +/turf/unsimulated/floor/steel, +/area/centcom/command) +"rv" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 1 + }, +/obj/item/radio/intercom{ + dir = 1; + frequency = 1475; + name = "Station Intercom (Security)"; + pixel_y = 27 + }, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"rw" = ( +/obj/structure/table/standard, +/obj/item/storage/box/handcuffs{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/item/storage/box/chemimp{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/item/storage/box/trackimp, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"rx" = ( +/obj/machinery/computer/secure_data, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 9 + }, +/obj/machinery/camera/network/crescent, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"rz" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/bordercorner{ + dir = 4 + }, +/obj/machinery/door/window/brigdoor/northright{ + req_access = list(63); + req_one_access = list(1) + }, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"rA" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/obj/item/storage/briefcase{ + pixel_x = 3; + pixel_y = 5 + }, +/turf/unsimulated/floor{ + icon_state = "carpet" + }, +/area/centcom/command) +"rB" = ( +/obj/machinery/vending/medical, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"rC" = ( +/obj/structure/closet/secure_closet/bar, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/tdome/tdomeobserve) +"rD" = ( +/obj/effect/floor_decal/derelict/d5, +/obj/effect/floor_decal/industrial/warning/dust, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"rF" = ( +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "residential"; + name = "Security Door"; + opacity = 0 + }, +/obj/machinery/door/firedoor, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"rH" = ( +/obj/machinery/computer/secure_data, +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 1 + }, +/obj/machinery/camera/network/crescent, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"rI" = ( +/obj/item/radio/intercom{ + dir = 1; + frequency = 1475; + name = "Station Intercom (Security)"; + pixel_y = 27 + }, +/obj/machinery/photocopier, +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = 30 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 5 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"rJ" = ( +/obj/structure/table/standard, +/obj/machinery/computer/skills{ + pixel_y = 2 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/turf/unsimulated/floor/steel, +/area/centcom/command) +"rK" = ( +/obj/effect/floor_decal/industrial/outline, +/obj/structure/closet/secure_closet/nanotrasen_security, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"rL" = ( +/obj/effect/floor_decal/corner_techfloor_grid{ + dir = 10 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/control) +"rM" = ( +/obj/structure/kitchenspike, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/control) +"rN" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-22" + }, +/turf/unsimulated/floor/steel, +/area/centcom/living) +"rO" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/computer/ship/engines{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/shuttle/specops/engine) +"rR" = ( +/obj/structure/closet/secure_closet/medical2, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 5 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 5 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"rT" = ( +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = 26 + }, +/obj/structure/table/reinforced, +/obj/item/stamp/ward, +/obj/item/stamp/denied, +/obj/item/binoculars, +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"rV" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/storage/box/shotgunshells/large, +/obj/item/storage/box/shotgunshells/large, +/obj/item/storage/box/shotgunshells/large, +/obj/item/storage/box/shotgunshells/large, +/obj/item/storage/box/shotgunshells/large, +/obj/item/storage/box/shotgunshells/large, +/obj/item/storage/box/shotgunshells/large, +/obj/item/storage/box/shotgunshells/large, +/obj/item/storage/box/shotgunshells/large, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"rW" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/blood/OMinus, +/obj/item/reagent_containers/blood/OMinus, +/obj/item/reagent_containers/blood/OMinus, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 8 + }, +/obj/item/reagent_containers/blood/OPlus{ + pixel_x = 4; + pixel_y = 2 + }, +/obj/item/reagent_containers/blood/OPlus{ + pixel_x = 4; + pixel_y = 2 + }, +/obj/item/reagent_containers/blood/OPlus{ + pixel_x = 4; + pixel_y = 2 + }, +/obj/item/healthanalyzer/advanced, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"rZ" = ( +/obj/structure/undies_wardrobe, +/turf/unsimulated/floor{ + icon_state = "freezerfloor" + }, +/area/centcom/bathroom) +"sb" = ( +/obj/machinery/computer/prisoner, +/obj/effect/floor_decal/borderfloorblack{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 9 + }, +/obj/machinery/camera/network/crescent, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"sc" = ( +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/machinery/appliance/cooker/fryer, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/bar) +"sf" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/gun/energy/ionrifle/pistol, +/obj/item/gun/energy/ionrifle/pistol, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"sg" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"si" = ( +/obj/structure/sign/department/prison, +/turf/unsimulated/wall, +/area/centcom/security) +"sj" = ( +/obj/structure/table/rack, +/obj/item/storage/box/stunshells/large, +/obj/item/storage/box/stunshells/large, +/obj/item/storage/box/stunshells/large, +/obj/item/storage/box/stunshells/large, +/obj/item/storage/box/stunshells/large, +/obj/item/storage/box/stunshells/large, +/obj/item/storage/box/stunshells/large, +/obj/item/storage/box/stunshells/large, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"sk" = ( +/obj/machinery/cryopod/robot/door/travel/specops, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"sm" = ( +/turf/unsimulated/floor/steel, +/area/centcom/command) +"sn" = ( +/obj/structure/bed/chair/office/dark, +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 6 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"so" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 10 + }, +/obj/machinery/camera/network/crescent, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"sp" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/machinery/camera/network/crescent{ + dir = 4 + }, +/turf/unsimulated/floor/steel, +/area/centcom/main_hall) +"sq" = ( +/obj/machinery/fitness/punching_bag/clown, +/turf/unsimulated/floor{ + icon_state = "freezerfloor" + }, +/area/centcom/bathroom) +"sr" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 10 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/command) +"ss" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/shuttle/specops/engine) +"st" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/hatch{ + name = "Engine Bay"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/centcom/ert, +/turf/simulated/floor/plating, +/area/shuttle/specops/engine) +"sw" = ( +/obj/machinery/computer/med_data, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 10 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 10 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"sx" = ( +/obj/machinery/vending/cola, +/turf/unsimulated/floor/wood, +/area/centcom/restaurant) +"sz" = ( +/obj/structure/bed/chair, +/obj/landmark{ + name = "tdomeobserve" + }, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeobserve) +"sA" = ( +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/machinery/appliance/cooker/grill, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/control) +"sB" = ( +/obj/machinery/door/airlock/centcom{ + name = "General Access"; + req_access = list(101) + }, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"sC" = ( +/obj/machinery/flasher{ + id = "flash"; + name = "Thunderdome Flash" + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/tdome) +"sD" = ( +/obj/structure/table/rack, +/obj/item/flash, +/obj/item/flash, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/black_drop_pouches, +/obj/item/clothing/accessory/storage/black_drop_pouches, +/obj/item/clothing/accessory/storage/black_drop_pouches, +/obj/item/clothing/accessory/storage/black_drop_pouches, +/obj/item/clothing/accessory/storage/black_drop_pouches, +/obj/item/clothing/accessory/storage/black_drop_pouches, +/obj/item/gun/energy/gun/martin, +/obj/item/gun/energy/gun/martin, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"sF" = ( +/obj/machinery/telecomms/receiver/preset_cent, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"sH" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/gun/energy/combat, +/obj/item/gun/energy/combat, +/obj/item/gun/energy/combat, +/obj/item/gun/energy/combat, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"sI" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/unsimulated/floor/steel, +/area/centcom/main_hall) +"sL" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/blue/border, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"sM" = ( +/obj/structure/bed/padded, +/obj/item/bedsheet/green, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 6 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 6 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"sN" = ( +/obj/structure/bed/padded, +/obj/item/bedsheet/green, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 5 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 5 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"sO" = ( +/obj/structure/table/reinforced, +/obj/machinery/computer/skills, +/obj/effect/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 10 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"sP" = ( +/obj/landmark{ + name = "Commando" + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"sQ" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/specops/general) +"sR" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/turf/unsimulated/floor/steel, +/area/centcom/command) +"sS" = ( +/obj/machinery/door/airlock{ + name = "Unit 2" + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/bathroom) +"sT" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-22" + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 5 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 5 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"sV" = ( +/turf/unsimulated/wall, +/area/centcom/bathroom) +"sW" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/obj/item/reagent_containers/food/drinks/cup{ + pixel_x = -2; + pixel_y = 2 + }, +/turf/unsimulated/floor{ + icon_state = "carpet" + }, +/area/centcom/command) +"ta" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"tb" = ( +/obj/effect/floor_decal/industrial/warning/dust, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"te" = ( +/obj/structure/table/rack, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"th" = ( +/obj/structure/bed/chair/office/dark, +/obj/machinery/button/remote/blast_door{ + desc = "A remote control switch for port-side blast doors."; + id = "CentComPort"; + name = "Security Doors"; + pixel_x = -12; + pixel_y = -25; + req_access = list(63); + req_one_access = list(1) + }, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/blue/bordercorner, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"ti" = ( +/obj/structure/closet/firecloset, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/control) +"tj" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"tk" = ( +/obj/structure/sign/nosmoking_2, +/turf/unsimulated/wall, +/area/centcom/control) +"tl" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/obj/structure/flora/pottedplant{ + pixel_y = 8 + }, +/turf/simulated/floor/tiled, +/area/centcom/terminal) +"tm" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 9 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"tn" = ( +/obj/machinery/atm{ + pixel_y = 30 + }, +/turf/unsimulated/floor/steel, +/area/centcom/main_hall) +"tp" = ( +/obj/map_helper/access_helper/airlock/station/external_airlock, +/obj/machinery/door/airlock/glass_external{ + req_one_access = null + }, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"tr" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 10 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"ts" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/ammo_magazine/a9mm/top_mount, +/obj/item/ammo_magazine/a9mm/top_mount, +/obj/item/ammo_magazine/a9mm/top_mount, +/obj/item/ammo_magazine/a9mm/top_mount, +/obj/item/ammo_magazine/a9mm/top_mount, +/obj/item/ammo_magazine/a9mm/top_mount, +/obj/item/ammo_magazine/a9mm/top_mount, +/obj/item/ammo_magazine/a9mm/top_mount, +/obj/item/ammo_magazine/a9mm/top_mount, +/obj/item/ammo_magazine/a9mm/top_mount, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"tw" = ( +/obj/structure/bed/chair/comfy/teal{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "carpet" + }, +/area/centcom/command) +"ty" = ( +/obj/item/clothing/glasses/sunglasses/sechud/tactical, +/obj/item/clothing/gloves/tactical, +/obj/item/clothing/head/helmet/tactical, +/obj/item/clothing/mask/balaclava/tactical, +/obj/item/clothing/shoes/boots/tactical, +/obj/item/clothing/suit/armor/tactical, +/obj/item/clothing/under/tactical, +/obj/item/storage/belt/security/tactical, +/obj/structure/closet{ + desc = "It's a storage unit for standard-issue attire."; + icon_closed = "syndicate1"; + icon_opened = "syndicate1open"; + icon_state = "syndicate1"; + name = "tactical equipment" + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/item/storage/backpack/dufflebag/syndie/med, +/obj/item/storage/backpack/satchel/sec, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"tz" = ( +/obj/structure/table/glass, +/obj/item/roller, +/obj/item/roller{ + pixel_y = 8 + }, +/obj/item/roller{ + pixel_y = 16 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 10 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 10 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"tB" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"tC" = ( +/obj/effect/floor_decal/corner_steel_grid{ + dir = 6 + }, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"tF" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"tI" = ( +/obj/machinery/door/firedoor, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"tJ" = ( +/obj/effect/floor_decal/derelict/d1, +/obj/effect/floor_decal/industrial/warning/dust, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"tR" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-22" + }, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"tS" = ( +/obj/structure/table/reinforced, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"tT" = ( +/turf/unsimulated/wall/planetary/virgo3b, +/area/space) +"tU" = ( +/obj/machinery/status_display{ + pixel_y = 30 + }, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/centcom/command) +"tV" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 1 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/control) +"tZ" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/specops/general) +"ue" = ( +/obj/structure/table/reinforced, +/obj/item/cell/hyper, +/obj/item/cell/hyper, +/obj/item/cell/hyper, +/obj/item/cell/hyper, +/obj/item/cell/hyper, +/obj/item/cell/hyper, +/obj/item/cell/hyper, +/obj/item/cell/hyper, +/obj/item/cell/hyper, +/obj/item/cell/hyper, +/obj/item/cell/hyper, +/obj/item/cell/hyper, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"uf" = ( +/obj/machinery/deployable/barrier, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"ug" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"ui" = ( +/obj/structure/table/standard, +/obj/machinery/computer/skills{ + pixel_y = 2 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/turf/unsimulated/floor/steel, +/area/centcom/command) +"uk" = ( +/obj/machinery/camera/network/crescent{ + dir = 4 + }, +/turf/unsimulated/floor/wood, +/area/centcom/restaurant) +"ul" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"un" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 4 + }, +/turf/unsimulated/floor/steel, +/area/centcom/restaurant) +"uo" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner_steel_grid{ + dir = 10 + }, +/obj/machinery/computer/transhuman, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"uq" = ( +/obj/machinery/door/airlock/security{ + id_tag = "front"; + name = "Security"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/security/department, +/turf/simulated/shuttle/floor/darkred, +/area/shuttle/escape) +"uu" = ( +/obj/structure/table/reinforced{ + desc = "It's a table, but you see something writen in permanent marker 'Dhael was here'" + }, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"uv" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/brigdoor{ + dir = 8; + req_access = list(63); + req_one_access = list() + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"ux" = ( +/obj/structure/table/steel, +/obj/item/autopsy_scanner, +/obj/item/surgical/scalpel, +/obj/item/surgical/cautery, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/medical) +"uz" = ( +/obj/effect/floor_decal/rust, +/obj/effect/floor_decal/industrial/warning/dust, +/obj/structure/railing{ + dir = 1 + }, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"uA" = ( +/obj/structure/closet/secure_closet/personal, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/bathroom) +"uC" = ( +/obj/machinery/account_database{ + name = "CentCom Accounts database" + }, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"uE" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/computer/security/telescreen{ + desc = ""; + name = "Spec. Ops. Monitor"; + network = list("NETWORK_ERT"); + pixel_y = -32 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/specops/general) +"uF" = ( +/obj/structure/table/standard, +/obj/item/surgical/surgicaldrill, +/obj/item/autopsy_scanner, +/obj/item/reagent_containers/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + name = "Surgery Cleaner"; + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/surgical/FixOVein, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/item/stack/nanopaste, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"uG" = ( +/obj/structure/table/standard, +/obj/item/surgical/bonesetter, +/obj/item/surgical/bonegel, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"uJ" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/specops/general) +"uK" = ( +/obj/machinery/vending/wallmed1{ + pixel_y = -32 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"uO" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/computer/operating{ + dir = 1; + name = "Robotics Operating Computer" + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/control) +"uR" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/obj/structure/flora/pottedplant{ + icon_state = "plant-22" + }, +/turf/unsimulated/floor/steel, +/area/centcom/main_hall) +"uT" = ( +/obj/structure/closet{ + name = "welding equipment" + }, +/obj/item/clothing/head/welding{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/item/clothing/glasses/welding, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"uV" = ( +/obj/structure/closet/hydrant{ + dir = 4; + pixel_x = -32 + }, +/turf/simulated/shuttle/floor/white, +/area/shuttle/escape) +"uW" = ( +/obj/item/storage/belt/security/tactical, +/obj/item/storage/belt/security/tactical, +/obj/item/storage/belt/security/tactical, +/obj/item/storage/belt/security/tactical, +/obj/item/storage/belt/security/tactical, +/obj/item/storage/belt/security/tactical, +/obj/structure/table/steel_reinforced, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"uY" = ( +/obj/machinery/door/airlock/freezer{ + name = "Kitchen cold room" + }, +/obj/map_helper/access_helper/airlock/station/service/kitchen, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/control) +"uZ" = ( +/obj/machinery/chemical_dispenser/ert, +/obj/item/reagent_containers/glass/beaker/large, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"va" = ( +/obj/machinery/vending/snack, +/turf/simulated/shuttle/floor/darkred, +/area/shuttle/escape) +"vc" = ( +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"ve" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/specops/general) +"vi" = ( +/obj/machinery/power/port_gen/pacman, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"vl" = ( +/obj/machinery/computer/secure_data{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"vm" = ( +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"vn" = ( +/obj/structure/bed/chair/office/dark, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"vs" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/control) +"vt" = ( +/obj/machinery/iv_drip, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"vv" = ( +/obj/item/clothing/accessory/holster/hip, +/obj/item/clothing/accessory/holster/hip, +/obj/item/clothing/accessory/holster/hip, +/obj/item/clothing/accessory/holster/hip, +/obj/item/clothing/accessory/holster/hip, +/obj/item/clothing/accessory/holster/hip, +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/obj/structure/table/steel_reinforced, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"vw" = ( +/obj/machinery/button/remote/blast_door{ + id = "RiotCon"; + name = "Riot Control"; + pixel_x = -23; + req_access = list(63); + req_one_access = list(1) + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"vy" = ( +/obj/structure/sign/directions/elevator{ + name = "\improper Elevator"; + pixel_x = -30 + }, +/turf/unsimulated/floor/steel, +/area/centcom/main_hall) +"vz" = ( +/obj/structure/table/reinforced, +/obj/item/camera, +/obj/item/storage/box/ids, +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 10 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"vG" = ( +/obj/structure/table/marble, +/obj/item/reagent_containers/food/drinks/cup{ + pixel_x = 8; + pixel_y = 8 + }, +/obj/item/reagent_containers/food/drinks/cup{ + pixel_x = -4; + pixel_y = 8 + }, +/obj/item/reagent_containers/food/drinks/cup{ + pixel_x = 3 + }, +/obj/item/reagent_containers/food/drinks/cup{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/item/reagent_containers/food/drinks/cup{ + pixel_x = 8 + }, +/obj/item/reagent_containers/food/drinks/cup{ + pixel_x = -4 + }, +/obj/item/reagent_containers/food/drinks/cup{ + pixel_x = 8; + pixel_y = 12 + }, +/obj/item/reagent_containers/food/drinks/cup{ + pixel_x = -4; + pixel_y = 12 + }, +/obj/effect/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/diagonal, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"vI" = ( +/turf/unsimulated/wall/planetary/virgo3b, +/area/centcom/bathroom) +"vK" = ( +/obj/structure/table/standard, +/obj/item/reagent_containers/syringe/inaprovaline, +/obj/item/reagent_containers/syringe/inaprovaline{ + pixel_x = -2; + pixel_y = 5 + }, +/obj/item/reagent_containers/syringe/inaprovaline{ + pixel_y = 10 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/turf/unsimulated/floor/steel, +/area/centcom/holding) +"vL" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/unsimulated/floor/steel, +/area/centcom/command) +"vN" = ( +/obj/spawner/window/low_wall/reinforced/full, +/turf/unsimulated/floor{ + name = "plating" + }, +/area/centcom/terminal) +"vO" = ( +/obj/machinery/door/firedoor/glass, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"vP" = ( +/turf/unsimulated/wall/planetary/virgo3b, +/area/centcom/security) +"vQ" = ( +/obj/effect/floor_decal/corner_steel_grid/diagonal, +/obj/effect/floor_decal/industrial/warning/dust/corner{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/light/flamp/noshade, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"vR" = ( +/obj/machinery/vending/mre, +/turf/simulated/shuttle/floor/darkred, +/area/shuttle/escape) +"vS" = ( +/obj/structure/sign/greencross, +/turf/unsimulated/wall, +/area/centcom/medical) +"vU" = ( +/obj/machinery/door/airlock/glass/security{ + name = "Colonial Security Airlock"; + req_access = list(63) + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"vV" = ( +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "turrets"; + name = "Security Door"; + opacity = 0 + }, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"vW" = ( +/obj/machinery/computer/card{ + dir = 8 + }, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"wa" = ( +/obj/structure/closet/crate/bin, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/centcom/command) +"wb" = ( +/obj/machinery/lathe/autolathe{ + desc = "Your typical Autolathe. It appears to have much more options than your regular one, however..."; + name = "Centcom Autolathe" + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 9 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 9 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/control) +"wc" = ( +/obj/machinery/camera/network/crescent{ + dir = 8 + }, +/obj/machinery/computer/secure_data{ + dir = 8 + }, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"wd" = ( +/obj/structure/closet/l3closet/security, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/camera/network/crescent, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"wf" = ( +/obj/structure/table/standard, +/obj/machinery/computer/skills{ + pixel_y = 2 + }, +/turf/unsimulated/floor/steel, +/area/centcom/command) +"wg" = ( +/obj/structure/closet{ + name = "robotics parts" + }, +/obj/item/cell/high{ + maxcharge = 15000; + pixel_x = 5; + pixel_y = -5 + }, +/obj/item/assembly/prox_sensor{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/item/assembly/prox_sensor{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/item/cell/high{ + maxcharge = 15000; + pixel_x = 5; + pixel_y = -5 + }, +/obj/item/cell/high{ + maxcharge = 15000; + pixel_x = 5; + pixel_y = -5 + }, +/obj/item/cell/high{ + maxcharge = 15000; + pixel_x = 5; + pixel_y = -5 + }, +/obj/item/storage/firstaid/regular{ + empty = 1; + name = "First-Aid (empty)" + }, +/obj/item/storage/firstaid/regular{ + empty = 1; + name = "First-Aid (empty)" + }, +/obj/item/storage/firstaid/regular{ + empty = 1; + name = "First-Aid (empty)" + }, +/obj/item/healthanalyzer, +/obj/item/healthanalyzer, +/obj/item/healthanalyzer, +/obj/item/flash/synthetic, +/obj/item/flash/synthetic, +/obj/item/flash/synthetic, +/obj/item/flash/synthetic, +/obj/item/flash/synthetic, +/obj/item/flash/synthetic, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"wh" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"wi" = ( +/obj/effect/floor_decal/corner_steel_grid/diagonal, +/obj/effect/floor_decal/corner_steel_grid/diagonal{ + dir = 4 + }, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"wj" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"wm" = ( +/obj/structure/table/rack{ + dir = 4 + }, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"wo" = ( +/obj/structure/table/reinforced, +/obj/item/storage/firstaid/toxin{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/storage/firstaid/toxin, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"wp" = ( +/obj/structure/sign/nanotrasen, +/turf/unsimulated/wall, +/area/centcom/security) +"wq" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/control) +"wr" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/item/hardsuit_module/rescue_pharm, +/obj/item/hardsuit_module/sprinter, +/obj/item/hardsuit_module/sprinter, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"ws" = ( +/obj/structure/table/marble, +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/bar) +"wv" = ( +/obj/structure/closet/athletic_mixed, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/bathroom) +"wy" = ( +/obj/item/megaphone, +/obj/item/storage/box/trackimp, +/obj/item/storage/box/cdeathalarm_kit, +/obj/structure/table/steel_reinforced, +/turf/unsimulated/floor/wood, +/area/centcom/specops) +"wB" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 4 + }, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"wC" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/donkpockets, +/obj/item/storage/box/donkpockets, +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"wD" = ( +/obj/structure/bed/padded, +/obj/item/bedsheet/orange, +/obj/effect/floor_decal/borderfloorblack{ + dir = 6 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 6 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"wE" = ( +/turf/simulated/floor/outdoors/grass/heavy/interior, +/area/centcom/main_hall) +"wF" = ( +/obj/structure/table/standard, +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = 30 + }, +/obj/item/radio, +/obj/item/radio, +/obj/item/radio, +/obj/item/radio, +/obj/item/radio, +/obj/item/radio, +/obj/item/flashlight, +/obj/item/flashlight, +/obj/item/flashlight, +/obj/item/flashlight, +/obj/item/flashlight, +/obj/item/flashlight, +/obj/item/tool/crowbar, +/obj/item/tool/crowbar, +/obj/item/tool/crowbar, +/obj/item/tool/crowbar, +/obj/item/tool/crowbar, +/obj/item/tool/crowbar, +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = 26 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 5 + }, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"wG" = ( +/turf/simulated/shuttle/wall/voidcraft/hard_corner, +/area/shuttle/escape) +"wH" = ( +/obj/machinery/camera/network/crescent{ + dir = 10 + }, +/turf/unsimulated/floor/steel, +/area/centcom/main_hall) +"wJ" = ( +/obj/machinery/vending/cola, +/turf/unsimulated/floor/steel, +/area/centcom/command) +"wK" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 9 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/bathroom) +"wL" = ( +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/structure/sink/kitchen{ + pixel_y = 28 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/bar) +"wN" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 9 + }, +/obj/structure/closet/secure_closet/paramedic, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"wP" = ( +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/machinery/power/apc/alarms_hidden/east_mount, +/turf/simulated/floor/tiled/dark, +/area/shuttle/specops/general) +"wQ" = ( +/obj/map_helper/airlock/atmos/chamber_pump, +/obj/machinery/turretid/lethal{ + control_area = /area/shuttle/specops/general; + pixel_y = 32; + req_access = list(103) + }, +/obj/machinery/atmospherics/component/unary/vent_pump/high_volume{ + frequency = 1380; + id_tag = "specops_docker_pump"; + power_rating = 20000 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/specops/general) +"wR" = ( +/obj/item/stock_parts/console_screen, +/obj/structure/table/standard, +/obj/item/stock_parts/console_screen, +/obj/item/stock_parts/console_screen, +/obj/item/stock_parts/matter_bin, +/obj/item/stock_parts/matter_bin, +/obj/machinery/recharger, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 5 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"wS" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/structure/table/woodentable, +/obj/item/radio/off, +/obj/item/megaphone, +/obj/machinery/camera/network/crescent, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/command) +"wU" = ( +/obj/structure/table/standard, +/obj/machinery/microwave, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/tdome/tdomeobserve) +"wX" = ( +/obj/structure/table/reinforced, +/obj/item/book/manual/security_space_law, +/obj/item/tape_recorder, +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/blue/border, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"wY" = ( +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/medical) +"xa" = ( +/turf/unsimulated/wall, +/area/centcom/specops) +"xb" = ( +/obj/structure/table/standard, +/obj/machinery/computer/skills{ + pixel_y = 2 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/turf/unsimulated/floor/steel, +/area/centcom/command) +"xd" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 6 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"xe" = ( +/obj/machinery/telecomms/server/presets/centcom, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/command) +"xf" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/purple/border, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/purple/bordercorner2{ + dir = 9 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/control) +"xh" = ( +/obj/structure/table/woodentable, +/obj/item/reagent_containers/food/snacks/meatballsoup, +/turf/unsimulated/floor/wood, +/area/centcom/restaurant) +"xi" = ( +/obj/item/reagent_containers/food/condiment/small/saltshaker{ + pixel_x = -6 + }, +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/yellow/diagonal, +/obj/effect/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"xj" = ( +/obj/structure/fans/tiny, +/obj/spawner/window/low_wall/reinforced/electrochromic/full/firelocks{ + id = "emergency_security" + }, +/obj/machinery/door/blast/regular/open{ + id = "emergency_shuttle_lockdown"; + name = "Emergency Shuttle Blast Door" + }, +/turf/simulated/floor, +/area/shuttle/escape) +"xk" = ( +/obj/machinery/computer/crew{ + dir = 4 + }, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"xl" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/bordercorner{ + dir = 1 + }, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"xn" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/machinery/door/airlock/glass/security{ + name = "Security"; + req_access = list(); + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/security/department, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"xp" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"xr" = ( +/obj/structure/table/rack, +/obj/item/clothing/under/color/red, +/obj/item/clothing/shoes/brown, +/obj/item/clothing/suit/armor/tdome/red, +/obj/item/clothing/head/helmet/thunderdome, +/obj/item/melee/baton/loaded, +/obj/item/melee/transforming/energy/sword, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/tdome/tdome1) +"xv" = ( +/obj/machinery/door/airlock/centcom{ + name = "General Access"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/centcom, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"xw" = ( +/obj/item/storage/box/flashshells, +/obj/item/storage/box/flashshells, +/obj/item/storage/box/stunshells, +/obj/item/storage/box/stunshells, +/obj/item/storage/box/beanbags, +/obj/item/storage/box/beanbags, +/obj/structure/table/steel_reinforced, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"xx" = ( +/obj/effect/floor_decal/corner_steel_grid{ + dir = 9 + }, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"xy" = ( +/turf/simulated/floor/reinforced, +/area/centcom/command) +"xB" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-10" + }, +/turf/unsimulated/floor/steel, +/area/centcom/command) +"xC" = ( +/obj/structure/table/standard, +/obj/structure/reagent_dispensers/acid{ + pixel_y = -30 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/purple/border, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/control) +"xE" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 10 + }, +/obj/structure/table/reinforced, +/obj/item/melee/baton/loaded, +/obj/item/melee/baton/loaded, +/obj/item/gun/energy/taser, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"xF" = ( +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/living) +"xG" = ( +/obj/structure/bed/roller, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/control) +"xJ" = ( +/obj/structure/closet/crate/medical, +/obj/item/reagent_containers/food/snacks/liquid, +/obj/item/reagent_containers/food/snacks/liquid, +/obj/item/reagent_containers/food/snacks/liquid, +/obj/item/reagent_containers/food/snacks/liquid, +/obj/item/reagent_containers/food/snacks/liquid, +/obj/item/reagent_containers/food/snacks/liquid, +/obj/item/reagent_containers/food/snacks/liquid, +/obj/item/reagent_containers/food/snacks/liquid, +/obj/item/reagent_containers/food/snacks/liquid, +/obj/item/reagent_containers/food/snacks/liquid, +/obj/item/reagent_containers/food/snacks/liquid, +/obj/item/reagent_containers/food/snacks/liquid, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"xK" = ( +/obj/structure/sign/redcross{ + pixel_y = 32 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"xL" = ( +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/bathroom) +"xM" = ( +/obj/machinery/computer/communications, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/unsimulated/floor/steel, +/area/centcom/command) +"xN" = ( +/obj/item/reagent_containers/food/drinks/cans/cola, +/obj/item/reagent_containers/food/drinks/cans/cola, +/obj/item/reagent_containers/food/drinks/cans/cola, +/obj/structure/table/standard, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeobserve) +"xP" = ( +/obj/machinery/button/remote/blast_door{ + id = "ArmouryC2"; + name = "Armoury Access"; + pixel_y = -28; + req_access = list(3) + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"xR" = ( +/obj/structure/table/woodentable, +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/item/material/ashtray/glass, +/obj/machinery/camera/network/crescent{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "carpet" + }, +/area/centcom/restaurant) +"xS" = ( +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "carpet" + }, +/area/centcom/control) +"xU" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 8 + }, +/turf/unsimulated/floor/steel, +/area/centcom/main_hall) +"xW" = ( +/obj/machinery/atmospherics/component/unary/cryo_cell, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"xX" = ( +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/machinery/appliance/cooker/oven, +/obj/machinery/camera/network/crescent{ + dir = 10 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/control) +"xY" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/machinery/shower{ + dir = 1 + }, +/obj/effect/floor_decal/corner_techfloor_grid{ + dir = 5 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/control) +"xZ" = ( +/obj/structure/filingcabinet/tall, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"ya" = ( +/obj/structure/bed/chair/shuttle{ + dir = 8 + }, +/turf/simulated/shuttle/floor/darkred, +/area/shuttle/escape) +"yb" = ( +/obj/machinery/optable{ + name = "Robotics Operating Table" + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/control) +"yc" = ( +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/bar) +"yd" = ( +/obj/structure/morgue{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/medical) +"yg" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/floor_decal/carpet, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/command) +"yh" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorblack/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/bordercorner{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"yi" = ( +/obj/machinery/button/remote/blast_door{ + id = "crescent_checkpoint_access"; + name = "Crescent Checkpoint Access"; + pixel_x = -6; + pixel_y = -24; + req_access = list(101) + }, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"yl" = ( +/obj/item/radio/intercom{ + broadcasting = 1; + dir = 1; + frequency = 1443; + listening = 0; + name = "Spec Ops Intercom"; + pixel_y = 28 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"yn" = ( +/obj/machinery/door/airlock{ + name = "Prison Showers" + }, +/turf/unsimulated/floor{ + icon_state = "freezer" + }, +/area/centcom/security) +"yo" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/machinery/vending/coffee, +/turf/unsimulated/floor/steel, +/area/centcom/command) +"yp" = ( +/obj/effect/floor_decal/corner_steel_grid/diagonal, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"yq" = ( +/obj/structure/table/reinforced, +/obj/item/storage/firstaid/regular{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/storage/firstaid/regular, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"yt" = ( +/obj/effect/floor_decal/rust, +/obj/effect/floor_decal/corner_steel_grid/diagonal, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"yv" = ( +/obj/structure/table/marble, +/obj/machinery/chemical_dispenser/catering/bar_coffee, +/obj/machinery/camera/network/crescent, +/turf/unsimulated/floor/wood, +/area/centcom/restaurant) +"yw" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloorblack/corner2, +/obj/effect/floor_decal/corner/blue/bordercorner2, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"yy" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/dispenser/oxygen, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"yz" = ( +/turf/simulated/shuttle/floor/white, +/area/shuttle/escape) +"yB" = ( +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/bar) +"yC" = ( +/obj/machinery/newscaster{ + pixel_y = 30 + }, +/turf/unsimulated/floor/wood, +/area/centcom/restaurant) +"yF" = ( +/obj/structure/bed, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/control) +"yG" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/machinery/photocopier, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/command) +"yI" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/bordercorner{ + dir = 1 + }, +/obj/machinery/door/window/brigdoor/northleft{ + req_access = list(63); + req_one_access = list(1) + }, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"yJ" = ( +/obj/structure/table/reinforced, +/obj/machinery/computer/skills, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 10 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"yK" = ( +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/tdome/tdome1) +"yL" = ( +/obj/machinery/cryopod/robot/door/dorms, +/turf/unsimulated/floor/steel, +/area/centcom/living) +"yR" = ( +/obj/structure/table/reinforced, +/obj/item/book/manual/security_space_law, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"yT" = ( +/obj/item/gun/energy/gun/nuclear, +/obj/item/hand_tele, +/obj/structure/table/steel_reinforced, +/turf/unsimulated/floor/wood, +/area/centcom/specops) +"yU" = ( +/obj/machinery/disease2/isolator, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 5 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 5 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"yW" = ( +/obj/item/grenade/supermatter, +/obj/structure/table/rack/steel, +/obj/machinery/door/window/brigdoor{ + req_access = list(109) + }, +/obj/structure/window/phoronreinforced, +/obj/structure/window/phoronreinforced{ + dir = 1 + }, +/obj/structure/window/phoronreinforced{ + dir = 8 + }, +/turf/simulated/floor/reinforced, +/area/centcom/command) +"yY" = ( +/obj/machinery/door/airlock/medical{ + name = "Operating Theatre"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/medical/department, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"yZ" = ( +/obj/machinery/button/remote/blast_door{ + id = "ArmouryC"; + name = "Armoury Access"; + pixel_y = -28; + req_access = list(3) + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"za" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"zb" = ( +/obj/machinery/door/airlock/security{ + name = "Security"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/security/department, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"zc" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/machinery/photocopier, +/turf/unsimulated/floor/steel, +/area/centcom/command) +"zd" = ( +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 10 + }, +/turf/unsimulated/floor{ + icon_state = "carpet" + }, +/area/centcom/control) +"ze" = ( +/obj/structure/bed/chair/shuttle, +/obj/machinery/light{ + dir = 8; + use_power = 0 + }, +/turf/simulated/shuttle/floor/darkred, +/area/shuttle/escape) +"zg" = ( +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/black_drop_pouches, +/obj/item/clothing/accessory/storage/black_drop_pouches, +/obj/item/clothing/accessory/storage/black_drop_pouches, +/obj/item/clothing/accessory/storage/black_drop_pouches, +/obj/item/clothing/accessory/storage/black_drop_pouches, +/obj/item/clothing/accessory/storage/black_drop_pouches, +/obj/structure/table/steel_reinforced, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"zi" = ( +/obj/overmap/entity/visitable/ship/landable/specops, +/obj/machinery/button/flasher{ + id = "breach_flash"; + pixel_y = 26 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/shuttle_landmark/shuttle_initializer/specops, +/turf/simulated/floor/tiled/dark, +/area/shuttle/specops/general) +"zk" = ( +/obj/item/handcuffs/legcuffs/fuzzy, +/obj/item/handcuffs/legcuffs/fuzzy, +/obj/item/handcuffs/legcuffs/fuzzy, +/obj/item/handcuffs/fuzzy, +/obj/item/handcuffs/fuzzy, +/obj/item/handcuffs/fuzzy, +/obj/structure/table/rack/steel, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/control) +"zm" = ( +/obj/spawner/window/low_wall/full/firelocks, +/turf/unsimulated/floor{ + name = "plating" + }, +/area/centcom/security) +"zt" = ( +/obj/machinery/button/remote/blast_door{ + id = "HEAVY"; + name = "SHIT IS LIT"; + pixel_y = -28; + req_access = list(3) + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"zu" = ( +/obj/effect/floor_decal/corner/yellow/diagonal, +/obj/effect/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/obj/structure/flora/pottedplant{ + icon_state = "plant-06" + }, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"zv" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/obj/item/megaphone, +/turf/unsimulated/floor{ + icon_state = "carpet" + }, +/area/centcom/command) +"zw" = ( +/obj/machinery/door/window{ + name = "AI Core Door"; + req_access = list(109) + }, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"zx" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/green/bordercorner2{ + dir = 5 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"zA" = ( +/obj/structure/table/rack, +/obj/item/clothing/under/color/green, +/obj/item/clothing/shoes/brown, +/obj/item/melee/transforming/energy/axe, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/tdome/tdome1) +"zB" = ( +/obj/structure/table/rack, +/obj/item/hardsuit/ert/engineer, +/obj/item/hardsuit/ert/engineer, +/obj/item/hardsuit/ert/engineer, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"zC" = ( +/obj/structure/table/reinforced, +/obj/item/storage/firstaid/o2{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/storage/firstaid/o2, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"zD" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/orange/bordercorner2{ + dir = 5 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"zH" = ( +/obj/machinery/door/airlock{ + name = "Unit 2" + }, +/turf/unsimulated/floor{ + icon_state = "freezer" + }, +/area/centcom/bathroom) +"zJ" = ( +/obj/structure/table/standard, +/obj/machinery/light, +/obj/structure/closet/secure_closet/medical_wall{ + name = "anesthetic closet"; + pixel_x = -32; + req_access = list(29) + }, +/obj/item/tank/anesthetic, +/obj/item/tank/anesthetic, +/obj/item/tank/anesthetic, +/obj/item/clothing/mask/breath/medical, +/obj/item/clothing/mask/breath/medical, +/obj/item/clothing/mask/breath/medical, +/obj/item/storage/box/gloves, +/obj/item/defib_kit/jumper_kit, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/control) +"zK" = ( +/obj/machinery/gibber, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/control) +"zL" = ( +/obj/structure/sink{ + pixel_y = 16 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/control) +"zN" = ( +/obj/machinery/vending/cigarette, +/obj/effect/floor_decal/corner/yellow/diagonal, +/obj/effect/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"zO" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/tank/air{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/plating, +/area/shuttle/specops/engine) +"zP" = ( +/obj/structure/morgue{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/medical) +"zR" = ( +/obj/machinery/computer/arcade, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 9 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 9 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"zS" = ( +/obj/effect/floor_decal/derelict/d10, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"zV" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/ammo_magazine/m95, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"zW" = ( +/obj/machinery/door/airlock/glass{ + name = "Brig Dormitories" + }, +/obj/map_helper/access_helper/airlock/station/security/general, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"Ac" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"Ae" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 4 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"Ai" = ( +/obj/item/stool/padded, +/turf/unsimulated/floor/wood, +/area/centcom/specops) +"Aj" = ( +/obj/item/stack/material/glass{ + amount = 50 + }, +/obj/item/stack/material/glass{ + amount = 50 + }, +/obj/item/stack/material/glass{ + amount = 50 + }, +/obj/item/stack/material/glass{ + amount = 50 + }, +/obj/item/stack/material/steel{ + amount = 50; + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/stack/material/steel{ + amount = 50; + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/stack/material/steel{ + amount = 50; + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/stack/material/steel{ + amount = 50; + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/stack/material/plasteel{ + amount = 50 + }, +/obj/item/stack/material/plasteel{ + amount = 50 + }, +/obj/item/stack/material/plasteel{ + amount = 50 + }, +/obj/item/stack/material/plasteel{ + amount = 50 + }, +/obj/item/stack/material/glass/reinforced{ + amount = 50 + }, +/obj/item/stack/material/glass/reinforced{ + amount = 50 + }, +/obj/item/stack/material/glass/reinforced{ + amount = 50 + }, +/obj/item/storage/briefcase/inflatable{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/briefcase/inflatable{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/briefcase/inflatable{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/briefcase/inflatable{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/structure/table/steel_reinforced, +/obj/item/stack/rods, +/obj/item/stack/rods, +/obj/item/stack/material/glass/phoronglass, +/obj/item/stack/material/glass/phoronglass, +/obj/item/stack/rods, +/obj/item/stack/rods, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"Ap" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/machinery/camera/network/crescent, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"Aq" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/turf/unsimulated/floor/steel, +/area/centcom/command) +"Ar" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/obj/machinery/vending/nifsoft_shop, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"As" = ( +/obj/machinery/door/blast/regular{ + id = "thunderdomegen"; + name = "General Supply" + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/tdome/tdome1) +"At" = ( +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 10 + }, +/turf/unsimulated/floor{ + icon_state = "carpet" + }, +/area/centcom/command) +"Au" = ( +/obj/machinery/door/airlock/centcom{ + name = "General Access"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/centcom, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/tdome/tdomeadmin) +"Ay" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/turf/unsimulated/floor/steel, +/area/centcom/main_hall) +"Az" = ( +/obj/machinery/tele_projector, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"AA" = ( +/obj/structure/fans/tiny, +/obj/spawner/window/low_wall/reinforced/electrochromic/full/firelocks{ + id = "emergency_medical" + }, +/turf/simulated/floor, +/area/shuttle/escape) +"AB" = ( +/obj/structure/table/standard, +/obj/item/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/reagent_containers/glass/beaker/cryoxadone, +/obj/item/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = 7; + pixel_y = 1 + }, +/obj/item/tool/wrench, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 9 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 9 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"AD" = ( +/obj/structure/table/rack, +/obj/item/gun/ballistic/automatic/bullpup, +/obj/item/gun/ballistic/automatic/bullpup, +/obj/item/gun/ballistic/automatic/bullpup, +/obj/item/gun/ballistic/automatic/bullpup, +/obj/item/gun/ballistic/automatic/bullpup, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"AF" = ( +/turf/unsimulated/floor/techfloor_grid, +/area/centcom/terminal) +"AG" = ( +/obj/machinery/pipedispenser/disposal/orderable, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"AI" = ( +/turf/unsimulated/wall, +/area/centcom/holding) +"AK" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/structure/table/woodentable, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/folder/red_hos, +/obj/item/pen/multi, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/command) +"AL" = ( +/obj/structure/table/rack, +/obj/item/clothing/under/color/green, +/obj/item/clothing/shoes/brown, +/obj/item/clothing/suit/armor/vest, +/obj/item/clothing/head/helmet/swat, +/obj/item/gun/energy/laser, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/tdome/tdome1) +"AM" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/obj/item/folder/yellow_ce, +/turf/unsimulated/floor{ + icon_state = "carpet" + }, +/area/centcom/command) +"AP" = ( +/obj/structure/bed{ + desc = "This is a bed..It says something close to the bottom 'I fuck the cat here too'." + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/control) +"AQ" = ( +/obj/machinery/porta_turret/crescent{ + density = 1 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/unsimulated/floor/steel, +/area/centcom/living) +"AT" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 10 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 10 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"AW" = ( +/obj/machinery/door/blast/shutters{ + id = "RiotCon"; + name = "Riot Control"; + req_access = list(63); + req_one_access = list(1) + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"AZ" = ( +/obj/structure/table/reinforced, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/tdome/tdomeobserve) +"Ba" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 10 + }, +/obj/structure/closet/crate/bin, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/bathroom) +"Bb" = ( +/obj/item/cell/device/weapon, +/obj/item/cell/device/weapon, +/obj/item/cell/device/weapon, +/obj/item/cell/device/weapon, +/obj/item/cell/device/weapon, +/obj/item/cell/device/weapon, +/obj/item/cell/device/weapon, +/obj/item/cell/device/weapon, +/obj/item/cell/device/weapon, +/obj/item/cell/device/weapon, +/obj/item/cell/device/weapon, +/obj/item/cell/device/weapon, +/obj/item/cell/device/weapon, +/obj/item/cell/device/weapon, +/obj/item/cell/device/weapon, +/obj/item/cell/device/weapon, +/obj/item/cell/device/weapon, +/obj/item/cell/device/weapon, +/obj/item/cell/device/weapon, +/obj/item/cell/device/weapon, +/obj/structure/table/steel_reinforced, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"Bc" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 4 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/control) +"Bd" = ( +/obj/machinery/porta_turret/crescent{ + density = 1 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/sign/warning/lethal_turrets{ + pixel_y = 32 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"Be" = ( +/obj/item/camera, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeobserve) +"Bf" = ( +/obj/structure/table/rack, +/obj/item/barrier_tape_roll/police, +/obj/item/barrier_tape_roll/police, +/obj/item/barrier_tape_roll/police, +/obj/item/barrier_tape_roll/police, +/obj/item/barrier_tape_roll/police, +/obj/item/barrier_tape_roll/police, +/obj/item/flash, +/obj/item/flash, +/obj/item/flash, +/obj/item/flash, +/obj/item/flash, +/obj/item/flash, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"Bh" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/control) +"Bi" = ( +/obj/machinery/computer/guestpass{ + pixel_y = 26 + }, +/turf/unsimulated/floor/wood, +/area/centcom/restaurant) +"Bj" = ( +/obj/spawner/window/low_wall/reinforced/full, +/turf/unsimulated/floor{ + name = "plating" + }, +/area/centcom/medical) +"Bk" = ( +/obj/structure/table/woodentable, +/obj/item/stamp/hos, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/command) +"Bn" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 9 + }, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"Bp" = ( +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/living) +"Bq" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 9 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 9 + }, +/obj/machinery/vending/medical, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"Bt" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 8 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/control) +"Bw" = ( +/obj/machinery/cell_charger, +/obj/structure/table/reinforced, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"Bx" = ( +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"By" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/computer/skills, +/obj/effect/floor_decal/borderfloorblack{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 9 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"Bz" = ( +/obj/structure/bed/roller, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/turf/unsimulated/floor/steel, +/area/centcom/holding) +"BC" = ( +/obj/machinery/door/airlock/glass_external{ + req_one_access = null + }, +/obj/structure/fans/tiny, +/turf/simulated/shuttle/floor/black, +/area/shuttle/escape) +"BD" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/light/flamp/noshade, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"BF" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"BG" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/glass/beaker/large, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"BJ" = ( +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/machinery/appliance/mixer/cereal, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/bar) +"BK" = ( +/obj/machinery/camera/network/crescent{ + dir = 4 + }, +/turf/unsimulated/floor/steel, +/area/centcom/main_hall) +"BM" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/effect/floor_decal/borderfloorwhite/corner2, +/obj/effect/floor_decal/corner/paleblue/bordercorner2, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"BN" = ( +/obj/structure/table/reinforced, +/obj/item/book/manual/security_space_law, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"BO" = ( +/obj/effect/floor_decal/derelict/d6, +/obj/effect/floor_decal/industrial/warning/dust, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"BP" = ( +/turf/space, +/area/space) +"BS" = ( +/obj/machinery/power/thermoregulator, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"BT" = ( +/obj/item/gun/energy/stripper, +/obj/effect/floor_decal/corner_techfloor_grid{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/control) +"BU" = ( +/obj/effect/floor_decal/industrial/danger, +/turf/simulated/floor/tiled/steel, +/area/centcom/security) +"BV" = ( +/obj/machinery/mech_recharger, +/turf/unsimulated/floor{ + name = "plating" + }, +/area/centcom/control) +"BX" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"BY" = ( +/obj/structure/table/reinforced, +/obj/item/folder/red_hos, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"Ca" = ( +/obj/structure/table/woodentable, +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/item/material/ashtray/glass, +/turf/unsimulated/floor{ + icon_state = "carpet" + }, +/area/centcom/restaurant) +"Cb" = ( +/obj/machinery/vending/snack, +/turf/unsimulated/floor/steel, +/area/centcom/command) +"Cc" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/yellow/diagonal, +/obj/effect/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"Cd" = ( +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/blocker, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/living) +"Ch" = ( +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/machinery/door/airlock/glass{ + name = "Kitchen" + }, +/obj/map_helper/access_helper/airlock/station/service/kitchen, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/bar) +"Cl" = ( +/obj/machinery/door/airlock/glass/research{ + name = "Research and Development"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/science/research_lab, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/control) +"Cn" = ( +/obj/structure/table/reinforced, +/obj/item/gun/energy/taser, +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = 26 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"Cq" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 5 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"Cv" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/bodybags{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/storage/box/bodybags, +/obj/item/extinguisher/mini, +/obj/item/extinguisher/mini, +/obj/item/extinguisher/mini, +/obj/item/extinguisher/mini, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"Cw" = ( +/obj/machinery/door/airlock/medical{ + name = "Shuttle Medbay"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/medical/department, +/turf/simulated/shuttle/floor, +/area/shuttle/escape) +"Cx" = ( +/obj/effect/floor_decal/rust/part_rusted3, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 9 + }, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"Cy" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 1 + }, +/obj/machinery/turretid/stun{ + check_access = 0; + check_anomalies = 0; + check_records = 0; + control_area = "\improper CentCom Security"; + pixel_y = 32; + req_access = list(101); + req_one_access = list(101) + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"Cz" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/purple/border, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/control) +"CB" = ( +/obj/structure/cable/green, +/obj/machinery/power/apc/alarms_hidden/east_mount, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/shuttle/specops/engine) +"CC" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/hatch{ + name = "Cockpit"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/centcom/ert, +/turf/simulated/floor/tiled/dark, +/area/shuttle/specops/cockpit) +"CD" = ( +/obj/structure/fans/tiny, +/obj/machinery/door/airlock/glass_external{ + req_one_access = null + }, +/obj/effect/shuttle_landmark{ + base_area = /area/centcom/terminal; + base_turf = /turf/unsimulated/floor/techfloor_grid; + landmark_tag = "escape_cc"; + name = "Escape Shuttle Centcom" + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/escape) +"CE" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/regular{ + id = "CentComPort"; + name = "Security Doors" + }, +/turf/unsimulated/floor/steel, +/area/centcom/main_hall) +"CF" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "FrontlockC"; + name = "Security Doors"; + opacity = 0 + }, +/turf/unsimulated/floor/steel, +/area/centcom/main_hall) +"CG" = ( +/turf/simulated/shuttle/floor/black, +/area/shuttle/escape) +"CH" = ( +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/medical) +"CI" = ( +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/machinery/appliance/cooker/oven, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/bar) +"CJ" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/armor/riot, +/obj/item/melee/baton/loaded, +/obj/item/shield/riot, +/obj/item/clothing/head/helmet/riot, +/obj/effect/floor_decal/borderfloorblack{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 9 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"CL" = ( +/obj/effect/floor_decal/derelict/d14, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"CN" = ( +/obj/structure/table/reinforced, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"CO" = ( +/obj/effect/floor_decal/corner_steel_grid/diagonal, +/obj/effect/floor_decal/corner_steel_grid/diagonal{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 8 + }, +/turf/unsimulated/floor/steel, +/area/centcom/terminal) +"CQ" = ( +/obj/machinery/door/airlock{ + name = "Unit 1" + }, +/turf/unsimulated/floor{ + icon_state = "freezerfloor" + }, +/area/centcom/security) +"CS" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 1 + }, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"CT" = ( +/obj/effect/floor_decal/industrial/warning/dust/corner{ + dir = 1 + }, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"CW" = ( +/obj/structure/table/rack, +/obj/item/hardsuit_module/mounted/taser, +/obj/item/hardsuit_module/mounted/taser, +/obj/item/hardsuit_module/mounted/taser, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"CX" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/blue/bordercorner2, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"Da" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/turf/unsimulated/floor/steel, +/area/centcom/command) +"Db" = ( +/obj/machinery/computer/security{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 10 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"Dc" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/shield/riot, +/obj/item/shield/riot, +/obj/item/shield/riot, +/obj/item/shield/riot, +/obj/item/shield/riot, +/obj/item/shield/riot, +/obj/item/shield/riot, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"Df" = ( +/obj/structure/urinal{ + pixel_y = 30 + }, +/turf/unsimulated/floor{ + icon_state = "freezer" + }, +/area/centcom/bathroom) +"Dg" = ( +/obj/structure/table/rack, +/obj/item/clothing/gloves/arm_guard/riot, +/obj/item/clothing/shoes/leg_guard/riot, +/obj/item/clothing/suit/armor/riot/alt, +/obj/item/clothing/head/helmet/riot, +/obj/item/shield/riot, +/obj/item/melee/baton/loaded, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"Dh" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"Di" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 9 + }, +/obj/structure/railing, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"Dl" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/obj/structure/railing, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"Dm" = ( +/obj/structure/bed/chair/shuttle{ + dir = 1 + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/escape) +"Dp" = ( +/obj/machinery/button/windowtint{ + id = "emergency_medical"; + pixel_x = 24; + pixel_y = -24 + }, +/turf/simulated/shuttle/floor, +/area/shuttle/escape) +"Dq" = ( +/obj/machinery/telecomms/processor/preset_cent, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/command) +"Dr" = ( +/turf/unsimulated/floor/steel, +/area/centcom/main_hall) +"Ds" = ( +/obj/structure/table/reinforced, +/obj/item/folder/red, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"Dx" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner, +/turf/unsimulated/floor/steel, +/area/centcom/main_hall) +"Dy" = ( +/obj/structure/table/rack, +/obj/item/hardsuit/ert/medical, +/obj/item/hardsuit/ert/medical, +/obj/item/hardsuit/ert/medical, +/obj/item/clothing/accessory/storage/white_vest, +/obj/item/clothing/accessory/storage/white_vest, +/obj/item/clothing/accessory/storage/white_vest, +/obj/item/clothing/accessory/storage/white_vest, +/obj/item/clothing/accessory/storage/white_vest, +/obj/item/clothing/accessory/storage/white_vest, +/obj/item/clothing/accessory/storage/white_drop_pouches, +/obj/item/clothing/accessory/storage/white_drop_pouches, +/obj/item/clothing/accessory/storage/white_drop_pouches, +/obj/item/clothing/accessory/storage/white_drop_pouches, +/obj/item/clothing/accessory/storage/white_drop_pouches, +/obj/item/clothing/accessory/storage/white_drop_pouches, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"Dz" = ( +/turf/unsimulated/floor{ + icon_state = "carpet" + }, +/area/centcom/restaurant) +"DA" = ( +/obj/machinery/computer/operating, +/obj/effect/floor_decal/corner_steel_grid{ + dir = 10 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"DB" = ( +/obj/structure/curtain/open/shower, +/obj/machinery/shower{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon_state = "freezerfloor" + }, +/area/centcom/security) +"DC" = ( +/obj/effect/floor_decal/rust, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"DF" = ( +/obj/machinery/computer/security{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 5 + }, +/obj/machinery/camera/network/crescent, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"DG" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 5 + }, +/obj/structure/closet/crate/bin, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"DH" = ( +/obj/structure/sign/science, +/turf/unsimulated/wall, +/area/centcom/control) +"DI" = ( +/obj/item/pda/ert, +/obj/item/pda/ert, +/obj/item/pda/ert, +/obj/item/pda/ert, +/obj/item/pda/ert, +/obj/item/pda/ert, +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/obj/structure/table/steel_reinforced, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"DJ" = ( +/obj/machinery/door/airlock{ + name = "Standing Restrooms" + }, +/turf/unsimulated/floor{ + icon_state = "freezer" + }, +/area/centcom/living) +"DK" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/obj/item/folder/blue_hop, +/turf/unsimulated/floor{ + icon_state = "carpet" + }, +/area/centcom/command) +"DN" = ( +/obj/structure/table/rack, +/obj/item/hardsuit/ert/security, +/obj/item/hardsuit/ert/security, +/obj/item/hardsuit/ert/security, +/obj/item/hardsuit/ert/security, +/obj/item/hardsuit/ert/security, +/obj/item/hardsuit/ert/security, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"DQ" = ( +/obj/effect/floor_decal/corner_steel_grid{ + dir = 8 + }, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"DS" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-22" + }, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"DU" = ( +/obj/structure/sign/department/eva, +/turf/unsimulated/wall, +/area/centcom/security) +"DV" = ( +/turf/simulated/shuttle/wall/voidcraft/hard_corner, +/area/shuttle/specops/cockpit) +"DX" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/turf/unsimulated/floor/steel, +/area/centcom/main_hall) +"DZ" = ( +/obj/spawner/window/low_wall/reinforced/full, +/turf/unsimulated/floor{ + name = "plating" + }, +/area/centcom/bar) +"Ea" = ( +/obj/machinery/button/remote/blast_door{ + id = "ArmouryC4"; + name = "Armoury Access"; + pixel_y = -28; + req_access = list(3) + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/control) +"Ec" = ( +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/tdome) +"Ed" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"Ee" = ( +/obj/effect/floor_decal/rust, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"Ef" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 1 + }, +/turf/simulated/shuttle/plating/airless/carry, +/area/shuttle/escape) +"Eg" = ( +/obj/structure/sign/securearea{ + name = "\improper ARMORY"; + pixel_y = 32 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"Eh" = ( +/obj/structure/sign/directions/security{ + dir = 4; + pixel_y = 32 + }, +/obj/structure/sign/directions/elevator{ + dir = 4; + pixel_y = 25 + }, +/obj/machinery/door/firedoor, +/turf/unsimulated/floor/steel, +/area/centcom/main_hall) +"Ej" = ( +/obj/structure/table/rack, +/obj/item/storage/box/beanbags/large, +/obj/item/storage/box/beanbags/large, +/obj/item/storage/box/beanbags/large, +/obj/item/storage/box/beanbags/large, +/obj/item/storage/box/beanbags/large, +/obj/item/storage/box/beanbags/large, +/obj/item/storage/box/beanbags/large, +/obj/item/storage/box/beanbags/large, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"Em" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 9 + }, +/obj/structure/table/reinforced, +/obj/machinery/microwave{ + pixel_y = 5 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"En" = ( +/obj/machinery/chem_master, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"Ep" = ( +/obj/structure/table/rack, +/obj/item/storage/box/frags, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"Eq" = ( +/obj/item/stool/padded, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"Er" = ( +/obj/effect/floor_decal/carpet, +/turf/unsimulated/floor{ + icon_state = "carpet" + }, +/area/centcom/command) +"Et" = ( +/obj/spawner/window/low_wall/full/firelocks, +/obj/spawner/window/low_wall/full/firelocks, +/turf/unsimulated/floor{ + name = "plating" + }, +/area/centcom/security) +"Ev" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 10 + }, +/obj/structure/closet/secure_closet/nanotrasen_security, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"Ew" = ( +/obj/structure/bed/chair/shuttle{ + dir = 1 + }, +/obj/structure/window/reinforced, +/turf/simulated/shuttle/floor/black, +/area/shuttle/escape) +"Ez" = ( +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 5 + }, +/turf/unsimulated/floor{ + icon_state = "carpet" + }, +/area/centcom/command) +"EA" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"EC" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "TelelockdownC"; + name = "Security Doors"; + opacity = 0 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/living) +"ED" = ( +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/control) +"EH" = ( +/obj/machinery/mech_recharger, +/obj/effect/floor_decal/industrial/warning/full, +/turf/simulated/floor/tiled/dark, +/area/shuttle/specops/general) +"EI" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/cell/device/weapon{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/cell/device/weapon{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/cell/device/weapon{ + pixel_x = -2; + pixel_y = -2 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"EJ" = ( +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/structure/sink/kitchen{ + pixel_y = 28 + }, +/obj/machinery/button/remote/blast_door{ + id = "kitchenC"; + name = "Kitchen Shutters"; + pixel_x = -26; + pixel_y = 23 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/control) +"EL" = ( +/obj/machinery/telecomms/processor/preset_cent, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"EN" = ( +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = 26 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 4 + }, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"EO" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 10 + }, +/obj/machinery/door/blast/shutters{ + id = "RiotCon"; + name = "Riot Control"; + req_access = list(63); + req_one_access = list(1) + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"EQ" = ( +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/machinery/camera/network/crescent, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/medical) +"ET" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/specops/general) +"EX" = ( +/obj/landmark{ + name = "tdome2" + }, +/obj/machinery/camera/network/thunder{ + invisibility = 101 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/tdome/tdome1) +"EY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/specops/general) +"EZ" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/donkpockets, +/obj/item/storage/box/donkpockets, +/obj/item/storage/box/donkpockets, +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/blue/border, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"Fb" = ( +/obj/structure/table/rack{ + dir = 4 + }, +/obj/item/clothing/suit/space/void/security, +/obj/item/clothing/suit/space/void/security, +/obj/item/clothing/head/helmet/space/void/security, +/obj/item/clothing/head/helmet/space/void/security, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"Fe" = ( +/obj/machinery/transhuman/synthprinter, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/effect/floor_decal/corner_steel_grid{ + dir = 10 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"Fh" = ( +/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary/shuttle, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"Fl" = ( +/obj/structure/fans/tiny, +/obj/spawner/window/low_wall/reinforced/electrochromic/full/firelocks{ + id = "emergency_cockpit" + }, +/obj/machinery/door/blast/regular/open{ + id = "emergency_shuttle_lockdown"; + name = "Emergency Shuttle Blast Door" + }, +/turf/simulated/floor, +/area/shuttle/escape) +"Fm" = ( +/obj/structure/window/reinforced, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"Fn" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-22" + }, +/turf/unsimulated/floor/steel, +/area/centcom/main_hall) +"Fo" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/turf/unsimulated/floor{ + icon_state = "carpet" + }, +/area/centcom/command) +"Fp" = ( +/obj/structure/sign/securearea, +/turf/unsimulated/wall, +/area/centcom/control) +"Fr" = ( +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "CentComPort"; + name = "Security Doors"; + opacity = 0 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/unsimulated/floor/steel, +/area/centcom/main_hall) +"Ft" = ( +/obj/effect/floor_decal/corner_steel_grid{ + dir = 5 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"Fu" = ( +/obj/structure/fake_stairs/south/top{ + _stair_tag = "stairtest" + }, +/turf/simulated/floor/tiled/steel, +/area/centcom/security) +"Fv" = ( +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/living) +"Fw" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/item/paper_bin{ + pixel_x = -1; + pixel_y = 5 + }, +/obj/item/pen, +/obj/machinery/camera/network/crescent, +/turf/unsimulated/floor/steel, +/area/centcom/command) +"FA" = ( +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/living) +"FB" = ( +/obj/structure/bed/chair/shuttle{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4; + use_power = 0; + old_wall = 1 + }, +/turf/simulated/shuttle/floor/darkred, +/area/shuttle/escape) +"FC" = ( +/obj/structure/table/standard, +/obj/structure/flora/pottedplant{ + icon_state = "plant-06"; + pixel_y = 8 + }, +/turf/unsimulated/floor/steel, +/area/centcom/command) +"FD" = ( +/obj/machinery/computer/secure_data{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 5 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/command) +"FE" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/mirror{ + pixel_x = -28 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 9 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/bathroom) +"FF" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 10 + }, +/turf/unsimulated/floor/steel, +/area/centcom/command) +"FH" = ( +/obj/structure/table/standard, +/obj/item/surgical/circular_saw{ + pixel_y = 8 + }, +/obj/item/surgical/scalpel, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/machinery/camera/network/crescent, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"FI" = ( +/obj/structure/table/woodentable, +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/obj/item/flame/lighter/zippo, +/obj/item/storage/fancy/cigarettes, +/turf/unsimulated/floor{ + icon_state = "carpet" + }, +/area/centcom/restaurant) +"FJ" = ( +/obj/machinery/vending/cigarette, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"FK" = ( +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/structure/bed/chair/comfy/teal{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "carpet" + }, +/area/centcom/command) +"FN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/specops/general) +"FQ" = ( +/obj/machinery/porta_turret/crescent{ + density = 1 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/camera/network/crescent, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"FR" = ( +/obj/structure/window/reinforced, +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = 30 + }, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"FT" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/multi_tile/glass, +/turf/unsimulated/floor/steel, +/area/centcom/main_hall) +"FX" = ( +/obj/machinery/button/remote/blast_door{ + id = "emergency_shuttle_lockdown"; + name = "Emergency Blast Doors"; + pixel_x = -24; + pixel_y = -7 + }, +/obj/machinery/pointdefense_control, +/turf/simulated/shuttle/floor/white, +/area/shuttle/escape) +"FY" = ( +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/medical) +"FZ" = ( +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "freezerfloor" + }, +/area/centcom/bathroom) +"Ga" = ( +/obj/machinery/holopad, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"Gc" = ( +/obj/structure/table/glass{ + desc = "It's a table, it has some scracthes..they say 'Mlem'." + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"Gd" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/table/rack{ + dir = 4 + }, +/obj/item/suit_cooling_unit, +/obj/item/suit_cooling_unit, +/obj/item/suit_cooling_unit, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"Ge" = ( +/obj/structure/bed/chair/office/dark, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"Gg" = ( +/obj/structure/handrail, +/turf/simulated/shuttle/floor/black, +/area/shuttle/escape) +"Gh" = ( +/obj/machinery/mecha_part_fabricator, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"Gi" = ( +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 6 + }, +/obj/structure/sign/warning/lethal_turrets{ + pixel_y = 32 + }, +/turf/unsimulated/floor/steel, +/area/centcom/living) +"Gk" = ( +/obj/structure/bed/chair/office/dark, +/obj/effect/floor_decal/borderfloorblack/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/bordercorner{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"Gm" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/tdome/tdomeobserve) +"Go" = ( +/obj/machinery/door/airlock/glass/security{ + name = "Security Processing"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/security/general, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"Gp" = ( +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/machinery/camera/network/crescent, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/living) +"Gr" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/autoinjectors, +/obj/item/storage/box/beakers, +/obj/item/storage/box/gloves, +/obj/item/storage/box/pillbottles, +/obj/item/bodybag/cryobag, +/obj/item/bodybag/cryobag, +/obj/item/bodybag/cryobag, +/obj/item/bodybag/cryobag, +/obj/item/bodybag/cryobag, +/obj/item/bodybag/cryobag, +/obj/item/reagent_containers/glass/beaker/large, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"Gs" = ( +/obj/effect/floor_decal/corner/yellow/diagonal, +/obj/effect/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"Gv" = ( +/obj/effect/floor_decal/corner_steel_grid{ + dir = 5 + }, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"Gw" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"Gx" = ( +/obj/machinery/newscaster{ + pixel_y = 30 + }, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/centcom/command) +"Gy" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/gun/energy/netgun, +/obj/item/gun/energy/netgun, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"Gz" = ( +/obj/machinery/gibber, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/tdome/tdomeobserve) +"GB" = ( +/obj/machinery/access_button/airlock_interior{ + dir = 8; + frequency = 1380; + master_tag = "specops_docker"; + pixel_x = -8; + pixel_y = -26 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/map_helper/airlock/door/int_door, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/glass_external{ + frequency = null; + name = "Ship Hatch"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/external_airlock, +/turf/simulated/floor/tiled/dark, +/area/shuttle/specops/general) +"GC" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 8 + }, +/turf/unsimulated/floor/steel, +/area/centcom/holding) +"GD" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"GF" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 8 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"GJ" = ( +/obj/machinery/door/airlock/glass_external{ + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/external_airlock, +/turf/unsimulated/floor/steel, +/area/centcom/terminal) +"GK" = ( +/turf/unsimulated/wall/planetary/virgo3b, +/area/centcom/specops) +"GN" = ( +/obj/machinery/camera/network/crescent, +/turf/unsimulated/floor/steel, +/area/centcom/main_hall) +"GW" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 8 + }, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"GX" = ( +/obj/structure/table/glass, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/machinery/camera/network/crescent, +/obj/item/reagent_containers/glass/beaker/large, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"GZ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 6 + }, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"Hd" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-04" + }, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"He" = ( +/obj/machinery/telecomms/bus/preset_cent, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"Hf" = ( +/obj/structure/table/woodentable, +/obj/item/reagent_containers/food/snacks/grilledcheese, +/turf/unsimulated/floor/wood, +/area/centcom/restaurant) +"Hg" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/ammo_magazine/a7_62mm, +/obj/item/ammo_magazine/a7_62mm, +/obj/item/ammo_magazine/a7_62mm, +/obj/item/ammo_magazine/a7_62mm, +/obj/item/ammo_magazine/a7_62mm, +/obj/item/ammo_magazine/a7_62mm, +/obj/item/ammo_magazine/a7_62mm, +/obj/item/ammo_magazine/a7_62mm, +/obj/item/ammo_magazine/a7_62mm/ap, +/obj/item/ammo_magazine/a7_62mm/ap, +/obj/item/ammo_magazine/a7_62mm/ap, +/obj/item/ammo_magazine/a7_62mm/ap, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"Hj" = ( +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/turf/unsimulated/floor/steel, +/area/centcom/living) +"Hk" = ( +/obj/item/pda/ert, +/obj/structure/table/steel_reinforced, +/turf/unsimulated/floor/wood, +/area/centcom/specops) +"Hp" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced/full, +/turf/unsimulated/floor{ + name = "plating" + }, +/area/centcom/specops) +"Hq" = ( +/obj/structure/curtain/open/shower, +/obj/machinery/shower{ + pixel_y = 13 + }, +/turf/unsimulated/floor{ + icon_state = "freezerfloor" + }, +/area/centcom/security) +"Hr" = ( +/obj/structure/table/reinforced, +/obj/item/storage/firstaid/adv{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/storage/firstaid/adv, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"Hs" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"Hu" = ( +/obj/structure/sign/directions/security{ + dir = 4; + pixel_y = 32 + }, +/obj/structure/sign/directions/elevator{ + dir = 4; + pixel_y = 25 + }, +/turf/unsimulated/floor/steel, +/area/centcom/main_hall) +"Hv" = ( +/obj/structure/table/marble, +/obj/item/reagent_containers/food/drinks/glass2/square{ + pixel_x = 8; + pixel_y = 8 + }, +/obj/item/reagent_containers/food/drinks/glass2/square{ + pixel_y = 8 + }, +/obj/item/reagent_containers/food/drinks/glass2/square{ + pixel_x = -8; + pixel_y = 8 + }, +/obj/item/reagent_containers/food/drinks/glass2/square{ + pixel_x = 8; + pixel_y = 4 + }, +/obj/item/reagent_containers/food/drinks/glass2/square{ + pixel_y = 4 + }, +/obj/item/reagent_containers/food/drinks/glass2/square{ + pixel_x = -8; + pixel_y = 4 + }, +/turf/unsimulated/floor/wood, +/area/centcom/restaurant) +"Hw" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"Hy" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 4 + }, +/turf/unsimulated/floor/steel, +/area/centcom/holding) +"HA" = ( +/obj/machinery/door/airlock/command{ + id_tag = "HoSdoor"; + name = "Head of Security"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/head_office/head_of_security, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/command) +"HB" = ( +/obj/structure/table/reinforced, +/obj/item/storage/pill_bottle/dice, +/obj/item/deck/cards, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"HD" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/light, +/obj/machinery/transhuman/resleever, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"HG" = ( +/obj/machinery/computer/secure_data{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 6 + }, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"HH" = ( +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 8 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"HI" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/specops/general) +"HN" = ( +/obj/spawner/window/low_wall/reinforced/full, +/turf/unsimulated/floor{ + name = "plating" + }, +/area/centcom/command) +"HO" = ( +/obj/structure/table/glass, +/obj/item/healthanalyzer/advanced, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"HQ" = ( +/obj/machinery/door/airlock/glass/medical{ + name = "Virology Laboratory"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/medical/virology, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"HR" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = 26 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"HS" = ( +/obj/machinery/door/window/brigdoor{ + req_access = list(63); + req_one_access = list(1); + dir = 4 + }, +/obj/machinery/button/remote/airlock{ + id = "front"; + name = "Front doors"; + pixel_x = 5; + pixel_y = 25; + req_access = list(63); + req_one_access = list(1) + }, +/obj/machinery/button/remote/airlock{ + id = "innerS"; + name = "Inner doors"; + pixel_x = -5; + pixel_y = 25; + req_access = list(63); + req_one_access = list(1) + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"HT" = ( +/obj/machinery/vending/coffee, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeobserve) +"HU" = ( +/turf/simulated/floor/tiled/steel, +/area/centcom/security) +"HV" = ( +/obj/item/stool/padded, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/machinery/camera/network/crescent{ + dir = 4 + }, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"HX" = ( +/obj/structure/grille, +/obj/structure/railing{ + dir = 8 + }, +/turf/unsimulated/floor{ + name = "plating" + }, +/area/centcom/evac) +"HY" = ( +/obj/machinery/computer/guestpass{ + pixel_y = 27 + }, +/turf/unsimulated/floor/steel, +/area/centcom/command) +"HZ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/item/storage/box/ids, +/turf/unsimulated/floor/steel, +/area/centcom/command) +"Ia" = ( +/obj/machinery/door/airlock/centcom{ + name = "Special Operations"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/centcom/ert, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"Ib" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 6 + }, +/obj/structure/closet/secure_closet/nanotrasen_security, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"Ic" = ( +/turf/unsimulated/wall, +/area/space) +"Id" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/turf/unsimulated/floor/steel, +/area/centcom/living) +"Ie" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "TelelockdownC"; + name = "Security Doors"; + opacity = 0 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/living) +"If" = ( +/obj/machinery/shieldgen, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"Ig" = ( +/obj/machinery/access_button/airlock_exterior{ + dir = 4; + frequency = 1380; + master_tag = "specops_docker"; + pixel_x = 8; + pixel_y = 26 + }, +/obj/map_helper/airlock/door/ext_door, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/glass_external{ + frequency = null; + name = "Ship Hatch"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/external_airlock, +/turf/simulated/floor/tiled/dark, +/area/shuttle/specops/general) +"Ih" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "FrontlockBD"; + name = "Security Doors"; + opacity = 0 + }, +/turf/unsimulated/floor/steel, +/area/centcom/main_hall) +"Ii" = ( +/obj/structure/table/rack, +/obj/item/clothing/under/color/green, +/obj/item/clothing/shoes/brown, +/obj/item/clothing/suit/armor/tdome/green, +/obj/item/clothing/head/helmet/thunderdome, +/obj/item/melee/baton/loaded, +/obj/item/melee/transforming/energy/sword, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/tdome/tdome1) +"Ij" = ( +/obj/machinery/door/airlock{ + name = "Unit 3" + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/bathroom) +"Il" = ( +/obj/machinery/computer/robotics{ + dir = 4 + }, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"Im" = ( +/obj/machinery/flasher/portable, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/window/reinforced, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"Ip" = ( +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/structure/bed/chair/comfy/teal{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "carpet" + }, +/area/centcom/command) +"Is" = ( +/obj/structure/table/reinforced, +/obj/item/material/minihoe, +/obj/item/plant_analyzer, +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"It" = ( +/obj/structure/closet/crate/medical, +/obj/item/stack/nanopaste, +/obj/item/tank/anesthetic, +/obj/item/clothing/mask/breath/medical, +/obj/item/clothing/mask/surgical, +/obj/item/clothing/mask/surgical, +/obj/item/stack/nanopaste, +/obj/item/stack/nanopaste, +/obj/item/storage/firstaid/surgery, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"Iw" = ( +/obj/structure/table/steel_reinforced, +/obj/item/clothing/glasses/meson, +/obj/item/clothing/glasses/meson, +/obj/item/clothing/glasses/meson, +/obj/item/clothing/glasses/meson, +/obj/item/clothing/glasses/meson, +/obj/item/clothing/glasses/meson, +/obj/item/barrier_tape_roll/engineering, +/obj/item/barrier_tape_roll/engineering, +/obj/item/barrier_tape_roll/engineering, +/obj/item/barrier_tape_roll/engineering, +/obj/item/barrier_tape_roll/engineering, +/obj/item/barrier_tape_roll/engineering, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"Ix" = ( +/obj/machinery/door/airlock/centcom{ + name = "Living Quarters"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/centcom, +/turf/unsimulated/floor{ + icon_state = "carpet" + }, +/area/centcom/control) +"Iy" = ( +/obj/machinery/computer/secure_data{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"IA" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/pen, +/obj/machinery/button/remote/blast_door{ + id = "TelelockdownC"; + name = "Teleporter Entrance Lockdown"; + pixel_x = 6; + pixel_y = -5; + req_access = list(63); + req_one_access = list(1) + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "TelelockdownC"; + name = "Security Door"; + opacity = 0 + }, +/obj/machinery/door/window/brigdoor/northleft{ + req_access = list(63); + req_one_access = list(1) + }, +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/blue/border, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"IC" = ( +/obj/structure/reagent_dispensers/water_cooler/full, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/centcom/command) +"ID" = ( +/obj/structure/closet/walllocker/emergsuit_wall{ + pixel_y = 32 + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/escape) +"IG" = ( +/obj/structure/table/reinforced, +/obj/item/tool/crowbar, +/obj/item/tool/screwdriver, +/obj/item/tool/wrench, +/obj/item/tool/crowbar, +/obj/item/tool/screwdriver, +/obj/item/tool/wrench, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"II" = ( +/obj/structure/table/standard, +/obj/item/healthanalyzer, +/obj/item/stack/medical/bruise_pack{ + pixel_x = -4; + pixel_y = 3 + }, +/obj/item/stack/medical/bruise_pack{ + pixel_x = 10 + }, +/obj/item/stack/medical/ointment{ + pixel_y = 10 + }, +/obj/random/medical/lite, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/turf/unsimulated/floor/steel, +/area/centcom/holding) +"IL" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon_state = "carpet" + }, +/area/centcom/restaurant) +"IN" = ( +/obj/structure/table/glass, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/item/roller/adv, +/obj/item/roller/adv{ + pixel_y = 6 + }, +/obj/item/roller/adv{ + pixel_y = 12 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"IO" = ( +/obj/structure/table/marble, +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/machinery/appliance/mixer/cereal, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/control) +"IP" = ( +/obj/machinery/computer/security{ + dir = 8 + }, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"IQ" = ( +/obj/machinery/igniter, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/tdome) +"IS" = ( +/obj/structure/table/glass, +/obj/machinery/computer/med_data/laptop, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 9 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 9 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"IT" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/centcom/specops/dock) +"IW" = ( +/obj/structure/bed/chair/comfy/black, +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/command) +"IY" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/green/border, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/green/bordercorner2{ + dir = 9 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"IZ" = ( +/obj/structure/table/rack, +/obj/structure/window/reinforced, +/obj/item/storage/backpack/dufflebag/syndie/ammo, +/obj/item/storage/backpack/dufflebag/syndie/ammo, +/obj/item/storage/backpack/dufflebag/syndie/ammo, +/obj/item/storage/backpack/dufflebag/syndie/ammo, +/obj/item/storage/backpack/dufflebag/syndie/ammo, +/obj/item/storage/backpack/dufflebag/syndie/ammo, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"Ja" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden, +/obj/structure/shuttle/engine/heater{ + dir = 8 + }, +/turf/simulated/shuttle/wall/voidcraft, +/area/shuttle/specops/engine) +"Jb" = ( +/obj/item/circuitboard/aiupload, +/obj/item/circuitboard/borgupload, +/obj/item/circuitboard/smes, +/obj/item/aiModule/nanotrasen, +/obj/item/aiModule/reset, +/obj/item/aiModule/freeformcore, +/obj/item/aiModule/protectStation, +/obj/item/aiModule/quarantine, +/obj/item/aiModule/paladin, +/obj/item/aiModule/robocop, +/obj/item/aiModule/safeguard, +/obj/structure/table/steel_reinforced, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"Jd" = ( +/obj/machinery/vending/tool, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"Jf" = ( +/obj/structure/table/woodentable, +/turf/unsimulated/floor/wood, +/area/centcom/restaurant) +"Jg" = ( +/obj/structure/handrail{ + dir = 1 + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/escape) +"Ji" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 6 + }, +/obj/machinery/door/airlock/security{ + name = "Security"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/security/department, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"Jj" = ( +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 9 + }, +/turf/unsimulated/floor{ + icon_state = "carpet" + }, +/area/centcom/command) +"Jl" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/shuttle/specops/engine) +"Jm" = ( +/obj/structure/table/rack, +/obj/item/hardsuit_module/mounted, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/black_vest, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"Jn" = ( +/obj/item/stool/padded, +/obj/effect/floor_decal/corner/yellow/diagonal, +/obj/effect/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/obj/machinery/camera/network/crescent, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"Jo" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"Jq" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 9 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"Jr" = ( +/obj/structure/shuttle/engine/propulsion, +/turf/simulated/shuttle/plating/airless/carry, +/area/shuttle/escape) +"Js" = ( +/obj/machinery/r_n_d/protolathe, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"Jt" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"Jw" = ( +/obj/machinery/door/airlock{ + name = "Sitting Restrooms" + }, +/turf/unsimulated/floor{ + icon_state = "freezer" + }, +/area/centcom/living) +"Jx" = ( +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 10 + }, +/obj/structure/closet/secure_closet/personal, +/turf/unsimulated/floor{ + icon_state = "carpet" + }, +/area/centcom/control) +"Jz" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/bordercorner2{ + dir = 8 + }, +/obj/machinery/computer/centrifuge, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"JB" = ( +/turf/unsimulated/floor/steel, +/area/centcom/terminal) +"JC" = ( +/obj/machinery/vending/nifsoft_shop, +/turf/unsimulated/floor/wood, +/area/centcom/restaurant) +"JE" = ( +/obj/structure/sign/department/armory, +/turf/unsimulated/wall, +/area/centcom/security) +"JF" = ( +/obj/structure/bed/chair, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/control) +"JG" = ( +/obj/structure/table/standard, +/obj/machinery/computer/skills{ + pixel_y = 2 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/turf/unsimulated/floor/steel, +/area/centcom/command) +"JH" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/control) +"JJ" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/machinery/vending/medical, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"JM" = ( +/obj/structure/reagent_dispensers/water_cooler/full, +/turf/unsimulated/floor/steel, +/area/centcom/command) +"JN" = ( +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = 30 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"JO" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-04" + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"JP" = ( +/obj/machinery/door/blast/regular, +/turf/unsimulated/floor/techfloor_grid, +/area/centcom/terminal) +"JR" = ( +/obj/structure/sign/warning/nosmoking_2, +/turf/unsimulated/wall, +/area/centcom/terminal) +"JS" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"JU" = ( +/obj/structure/table/steel, +/obj/item/paper_bin{ + pixel_y = -6 + }, +/obj/item/camera{ + name = "Autopsy Camera"; + pixel_x = -2; + pixel_y = 7 + }, +/obj/item/pen/red, +/obj/item/pen/blue{ + pixel_x = 3; + pixel_y = -5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/medical) +"JV" = ( +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "CentComPort"; + name = "Security Doors"; + opacity = 0 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/unsimulated/floor/steel, +/area/centcom/main_hall) +"JW" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"JX" = ( +/obj/machinery/camera/network/crescent{ + dir = 10 + }, +/turf/unsimulated/floor{ + icon_state = "freezer" + }, +/area/centcom/security) +"JZ" = ( +/obj/machinery/optable, +/obj/effect/floor_decal/corner_steel_grid{ + dir = 10 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"Kb" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/effect/floor_decal/corner_steel_grid{ + dir = 10 + }, +/obj/machinery/transhuman/resleever, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"Kd" = ( +/obj/structure/table/standard, +/obj/item/stack/medical/advanced/bruise_pack, +/obj/item/surgical/retractor, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"Ke" = ( +/obj/item/gun/energy/sizegun, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/control) +"Kg" = ( +/obj/machinery/door/airlock/command{ + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/command/bridge, +/turf/simulated/shuttle/floor/white, +/area/shuttle/escape) +"Kh" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/glass/bottle/biomass{ + pixel_x = -4; + pixel_y = 8 + }, +/obj/item/reagent_containers/glass/bottle/biomass{ + pixel_x = -3; + pixel_y = -2 + }, +/obj/item/reagent_containers/glass/bottle/biomass{ + pixel_x = 3; + pixel_y = 5 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"Ki" = ( +/obj/structure/reagent_dispensers/water_cooler/full, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"Kk" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/oxygen/prechilled, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"Km" = ( +/obj/machinery/telecomms/relay/preset/centcom, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/command) +"Kn" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/effect/floor_decal/corner_steel_grid{ + dir = 5 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"Kq" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/ammo_magazine/a5_56mm/saw/ap, +/obj/item/ammo_magazine/a5_56mm/saw/ap, +/obj/item/ammo_magazine/a5_56mm/saw, +/obj/item/ammo_magazine/a5_56mm/saw, +/obj/item/ammo_magazine/a5_56mm/saw, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"Kt" = ( +/obj/structure/table/standard, +/obj/machinery/recharger, +/obj/item/reagent_containers/spray/cleaner, +/obj/item/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 27 + }, +/obj/item/storage/box/donut, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Kx" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/obj/item/reagent_containers/food/drinks/cup{ + pixel_x = 3 + }, +/turf/unsimulated/floor{ + icon_state = "carpet" + }, +/area/centcom/command) +"Ky" = ( +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = 26 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"KB" = ( +/obj/machinery/portable_atmospherics/canister/air, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"KC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/obj/structure/fuel_port{ + dir = 4; + pixel_x = 29 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/shuttle/specops/engine) +"KD" = ( +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/structure/reagent_dispensers/water_cooler/full, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/living) +"KF" = ( +/obj/machinery/newscaster{ + pixel_x = 28 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"KG" = ( +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/machinery/appliance/cooker/fryer, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/control) +"KH" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/armor/riot, +/obj/item/melee/baton/loaded, +/obj/item/shield/riot, +/obj/item/clothing/head/helmet/riot, +/obj/effect/floor_decal/borderfloorblack{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 5 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"KJ" = ( +/obj/machinery/door/window/brigdoor/southleft{ + id = "CellC2"; + name = "Cell 2"; + req_access = list(2) + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/unsimulated/floor/steel, +/area/centcom/holding) +"KK" = ( +/obj/machinery/vending/fitness, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/bathroom) +"KM" = ( +/obj/structure/table/standard, +/obj/item/cell/high{ + maxcharge = 15000 + }, +/obj/item/cell/high{ + maxcharge = 15000 + }, +/obj/machinery/cell_charger, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/purple/border, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/control) +"KN" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/specops/cockpit) +"KO" = ( +/obj/machinery/computer/shuttle_control/explore/specops{ + dir = 8 + }, +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/tiled/dark, +/area/shuttle/specops/cockpit) +"KP" = ( +/obj/effect/floor_decal/carpet, +/turf/unsimulated/floor{ + icon_state = "carpet" + }, +/area/centcom/restaurant) +"KQ" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"KR" = ( +/obj/structure/curtain/open/shower, +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/machinery/shower{ + pixel_y = 13 + }, +/turf/unsimulated/floor{ + icon_state = "freezerfloor" + }, +/area/centcom/bathroom) +"KV" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/armor/vest/ert/engineer, +/obj/item/clothing/suit/armor/vest/ert/engineer, +/obj/item/clothing/suit/armor/vest/ert/engineer, +/obj/item/clothing/suit/armor/vest/ert/engineer, +/obj/item/clothing/head/helmet/ert/engineer, +/obj/item/clothing/head/helmet/ert/engineer, +/obj/item/clothing/head/helmet/ert/engineer, +/obj/item/clothing/head/helmet/ert/engineer, +/obj/item/storage/backpack/ert/engineer, +/obj/item/storage/backpack/ert/engineer, +/obj/item/storage/backpack/ert/engineer, +/obj/item/storage/backpack/ert/engineer, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"KW" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/centcom/command) +"KY" = ( +/obj/structure/table/woodentable, +/obj/item/reagent_containers/food/snacks/toastedsandwich{ + pixel_y = 10 + }, +/turf/unsimulated/floor/wood, +/area/centcom/bar) +"Ld" = ( +/turf/unsimulated/floor/steel, +/area/centcom/control) +"Lg" = ( +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/blue/border, +/obj/structure/closet/secure_closet/nanotrasen_security, +/obj/item/storage/box/handcuffs, +/obj/item/gun/energy/gun, +/obj/item/shield/riot, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"Lh" = ( +/obj/machinery/vending/security, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"Lj" = ( +/obj/machinery/door/airlock{ + name = "Unit 4" + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/bathroom) +"Ll" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/handcuffs, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"Lp" = ( +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/living) +"Lq" = ( +/obj/structure/table/marble, +/obj/machinery/chemical_dispenser/catering/bar_coffee, +/obj/effect/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/diagonal, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"Lr" = ( +/obj/item/storage/box/syringes{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/box/beakers, +/obj/item/reagent_containers/dropper, +/obj/structure/table/glass, +/obj/structure/reagent_dispensers/virusfood{ + pixel_y = 28 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"Ls" = ( +/obj/machinery/camera/network/crescent{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/orange/border, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/orange/bordercorner2{ + dir = 9 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"Lt" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/armor/vest/ert/security, +/obj/item/clothing/suit/armor/vest/ert/security, +/obj/item/clothing/suit/armor/vest/ert/security, +/obj/item/clothing/suit/armor/vest/ert/security, +/obj/item/clothing/head/helmet/ert/security, +/obj/item/clothing/head/helmet/ert/security, +/obj/item/clothing/head/helmet/ert/security, +/obj/item/clothing/head/helmet/ert/security, +/obj/item/storage/backpack/ert/security, +/obj/item/storage/backpack/ert/security, +/obj/item/storage/backpack/ert/security, +/obj/item/storage/backpack/ert/security, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"Lu" = ( +/obj/structure/table/rack, +/obj/item/gun/ballistic/automatic/wt550/lethal, +/obj/item/gun/ballistic/automatic/wt550/lethal, +/obj/item/gun/ballistic/automatic/wt550/lethal, +/obj/item/gun/ballistic/automatic/wt550/lethal, +/obj/item/gun/ballistic/automatic/wt550/lethal, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/camera/network/crescent, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"Lv" = ( +/obj/machinery/lathe/autolathe{ + desc = "Your typical Autolathe. It appears to have much more options than your regular one, however..."; + name = "Centcom Autolathe" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/control) +"Lw" = ( +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/turf/simulated/floor/plating, +/area/shuttle/specops/cockpit) +"Lx" = ( +/obj/structure/reagent_dispensers/beerkeg, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeobserve) +"Ly" = ( +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/obj/structure/bed/chair/comfy/teal, +/turf/unsimulated/floor{ + icon_state = "carpet" + }, +/area/centcom/command) +"LA" = ( +/obj/item/camera{ + desc = "A one use - polaroid camera. 30 photos left."; + name = "detectives camera"; + pictures_left = 30; + pixel_x = 2; + pixel_y = 3 + }, +/obj/structure/table/reinforced, +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"LB" = ( +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "TelelockdownC"; + name = "Security Doors"; + opacity = 0 + }, +/turf/unsimulated/floor/steel, +/area/centcom/living) +"LC" = ( +/obj/structure/table/marble, +/obj/item/reagent_containers/food/drinks/cup{ + pixel_x = 8; + pixel_y = 8 + }, +/obj/item/reagent_containers/food/drinks/cup{ + pixel_x = -4; + pixel_y = 8 + }, +/obj/item/reagent_containers/food/drinks/cup{ + pixel_x = 3 + }, +/obj/item/reagent_containers/food/drinks/cup{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/item/reagent_containers/food/drinks/cup{ + pixel_x = 8 + }, +/obj/item/reagent_containers/food/drinks/cup{ + pixel_x = -4 + }, +/obj/item/reagent_containers/food/drinks/cup{ + pixel_x = 8; + pixel_y = 12 + }, +/obj/item/reagent_containers/food/drinks/cup{ + pixel_x = -4; + pixel_y = 12 + }, +/turf/unsimulated/floor/wood, +/area/centcom/restaurant) +"LF" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/vending/security, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 9 + }, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"LG" = ( +/obj/structure/table/rack, +/obj/item/clothing/gloves/arm_guard/combat, +/obj/item/clothing/shoes/leg_guard/combat, +/obj/item/clothing/suit/armor/combat, +/obj/item/clothing/head/helmet/combat, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"LJ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"LK" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"LL" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"LS" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"LU" = ( +/obj/structure/bed/chair/office/dark, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"LV" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/unsimulated/floor{ + icon_state = "freezer" + }, +/area/centcom/security) +"LW" = ( +/obj/structure/table/marble, +/obj/machinery/microwave{ + pixel_x = -3; + pixel_y = 6 + }, +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/bar) +"LX" = ( +/turf/unsimulated/wall, +/area/centcom/evac) +"LY" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/storage/backpack/dufflebag/syndie/ammo, +/obj/item/storage/backpack/dufflebag/syndie/ammo, +/obj/item/storage/backpack/dufflebag/syndie/ammo, +/obj/item/storage/backpack/dufflebag/syndie/ammo, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"LZ" = ( +/obj/structure/table/steel_reinforced, +/obj/item/gun/energy/netgun, +/turf/unsimulated/floor/wood, +/area/centcom/specops) +"Ma" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 4 + }, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"Mb" = ( +/obj/machinery/holopad/ship/starts_inactive, +/turf/simulated/floor/tiled/dark, +/area/shuttle/specops/general) +"Md" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/item/radio/intercom{ + dir = 1; + frequency = 1475; + name = "Station Intercom (Security)"; + pixel_y = 27 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"Me" = ( +/obj/structure/table/bench/wooden, +/turf/unsimulated/floor/wood, +/area/centcom/main_hall) +"Mg" = ( +/turf/simulated/floor/tiled/dark, +/area/shuttle/specops/general) +"Mh" = ( +/obj/machinery/fitness/heavy/lifter, +/turf/unsimulated/floor{ + icon_state = "freezerfloor" + }, +/area/centcom/bathroom) +"Mi" = ( +/obj/structure/table/marble, +/obj/machinery/chemical_dispenser/catering/bar_coffee, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/centcom/command) +"Mj" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 10 + }, +/obj/structure/closet/crate/bin, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/command) +"Mk" = ( +/obj/structure/closet/wardrobe/orange, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"Ml" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-22" + }, +/turf/unsimulated/floor/wood, +/area/centcom/restaurant) +"Mm" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"Mp" = ( +/obj/structure/sign/department/bar, +/turf/unsimulated/wall, +/area/centcom/restaurant) +"Mq" = ( +/obj/machinery/computer/security/telescreen/entertainment{ + icon_state = "frame"; + pixel_y = 30 + }, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/centcom/command) +"Mr" = ( +/obj/structure/bed/chair/comfy/teal{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "carpet" + }, +/area/centcom/command) +"Ms" = ( +/obj/structure/table/standard, +/obj/structure/flora/pottedplant{ + icon_state = "plant-06"; + pixel_y = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 4 + }, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"Mt" = ( +/obj/structure/bed/chair/wood/wings, +/turf/unsimulated/floor/wood, +/area/centcom/restaurant) +"Mu" = ( +/obj/machinery/photocopier, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/machinery/camera/network/crescent, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Mx" = ( +/obj/machinery/door/window/brigdoor/southleft{ + id = "CellC1"; + name = "Cell 1"; + req_access = list(2) + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/unsimulated/floor/steel, +/area/centcom/holding) +"My" = ( +/obj/structure/closet/crate/bin, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"Mz" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/gun/energy/ionrifle/pistol, +/obj/item/gun/energy/ionrifle/pistol, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"MD" = ( +/obj/effect/floor_decal/corner_steel_grid, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"ME" = ( +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/machinery/vending/dinnerware, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/control) +"MF" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/clothing/suit/storage/vest/heavy/officer, +/obj/item/clothing/suit/storage/vest/heavy/officer, +/obj/item/clothing/suit/storage/vest/heavy/officer, +/obj/item/clothing/suit/storage/vest/heavy/officer, +/obj/item/clothing/suit/storage/vest/heavy/officer, +/obj/item/clothing/suit/storage/vest/heavy/officer, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"MG" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass, +/turf/unsimulated/floor/steel, +/area/centcom/restaurant) +"MH" = ( +/obj/spawner/window/low_wall/reinforced/full, +/turf/unsimulated/floor{ + name = "plating" + }, +/area/centcom/main_hall) +"MI" = ( +/turf/unsimulated/floor/steel, +/area/centcom/living) +"MJ" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/bar) +"MK" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/structure/closet/secure_closet/nanotrasen_commander, +/obj/item/clothing/suit/armor/swat, +/obj/item/clothing/head/helmet/space/deathsquad{ + name = "swat helmet" + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/command) +"MM" = ( +/obj/effect/floor_decal/sign/dock/two, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 8 + }, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"MN" = ( +/obj/machinery/camera/network/crescent{ + dir = 4 + }, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"MO" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/brigdoor{ + dir = 8; + req_access = list(63); + req_one_access = list() + }, +/obj/machinery/button/remote/blast_door{ + id = "residential"; + name = "Security Doors"; + pixel_x = 6; + pixel_y = -5; + req_access = list(63); + req_one_access = list(1) + }, +/obj/item/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/pen, +/obj/effect/floor_decal/borderfloorblack{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 9 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"MP" = ( +/obj/effect/floor_decal/industrial/warning/dust/corner{ + dir = 8 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"MQ" = ( +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "CentComPort"; + name = "Security Doors"; + opacity = 0 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/unsimulated/floor/steel, +/area/centcom/main_hall) +"MR" = ( +/obj/machinery/camera/network/crescent, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/bathroom) +"MS" = ( +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + frequency = 1380; + id_tag = "specops_docker"; + pixel_x = -25 + }, +/obj/map_helper/airlock/atmos/chamber_pump, +/obj/machinery/atmospherics/component/unary/vent_pump/high_volume{ + dir = 1; + frequency = 1380; + id_tag = "specops_docker_pump"; + power_rating = 20000 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/specops/general) +"MT" = ( +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/machinery/door/airlock/glass{ + name = "Kitchen" + }, +/obj/map_helper/access_helper/airlock/station/service/kitchen, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/control) +"MV" = ( +/obj/machinery/computer/cryopod/dorms{ + name = "Company Property Retention System"; + pixel_y = 27 + }, +/turf/unsimulated/floor/steel, +/area/centcom/living) +"MY" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/closet/secure_closet/nanotrasen_warden, +/obj/item/storage/box/handcuffs, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"MZ" = ( +/obj/machinery/newscaster{ + pixel_x = -27 + }, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"Nd" = ( +/obj/machinery/airlock_sensor{ + dir = 1; + frequency = 1380; + id_tag = "specops_docker"; + pixel_y = -32 + }, +/obj/map_helper/airlock/sensor/chamber_sensor, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/specops/general) +"Ne" = ( +/obj/machinery/vending/medical, +/obj/machinery/light{ + dir = 8; + use_power = 0; + old_wall = 1 + }, +/turf/simulated/shuttle/floor, +/area/shuttle/escape) +"Nf" = ( +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"Ng" = ( +/obj/structure/sign/department/commander, +/turf/unsimulated/wall, +/area/centcom/security) +"Nh" = ( +/obj/machinery/door/blast/regular{ + name = "When Everything else fails." + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"Ni" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/unsimulated/floor/steel, +/area/centcom/main_hall) +"Nj" = ( +/obj/machinery/tele_pad, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"Nl" = ( +/obj/effect/floor_decal/industrial/warning/dust/corner{ + dir = 1 + }, +/obj/machinery/light/flamp/noshade, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"Nm" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/unsimulated/floor{ + icon_state = "freezerfloor" + }, +/area/centcom/bathroom) +"Nn" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/structure/filingcabinet/chestdrawer{ + name = "Medical Forms" + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"No" = ( +/obj/structure/closet/walllocker/emergsuit_wall{ + pixel_y = -26 + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/escape) +"Nq" = ( +/obj/structure/table/rack, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/gun/energy/stunrevolver, +/obj/item/gun/energy/stunrevolver, +/obj/item/gun/energy/stunrevolver, +/obj/item/gun/energy/stunrevolver, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"Ns" = ( +/obj/effect/floor_decal/derelict/d2, +/obj/effect/floor_decal/industrial/warning/dust, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"Nt" = ( +/obj/effect/floor_decal/industrial/warning/dust/corner{ + dir = 8 + }, +/obj/machinery/light/flamp/noshade, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"Ny" = ( +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/structure/table/marble, +/obj/machinery/reagentgrinder, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/control) +"NA" = ( +/obj/machinery/door/airlock/security{ + name = "Security"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/security/equipment, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"NC" = ( +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/living) +"ND" = ( +/obj/structure/table/rack, +/obj/item/clothing/gloves/arm_guard/laserproof, +/obj/item/clothing/shoes/leg_guard/laserproof, +/obj/item/clothing/suit/armor/laserproof, +/obj/item/clothing/head/helmet/ablative, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"NE" = ( +/obj/structure/toilet, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"NG" = ( +/obj/machinery/computer/diseasesplicer, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/obj/machinery/camera/network/crescent, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"NH" = ( +/obj/structure/closet/wardrobe/orange, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"NI" = ( +/obj/item/clothing/accessory/holster/hip, +/obj/item/ammo_magazine/a44/speedloader, +/obj/item/ammo_magazine/a44/speedloader, +/obj/item/gun/ballistic/revolver/combat, +/obj/structure/table/steel_reinforced, +/turf/unsimulated/floor/wood, +/area/centcom/specops) +"NQ" = ( +/obj/item/tool/crowbar, +/obj/item/tool/crowbar, +/obj/item/tool/crowbar, +/obj/item/tool/crowbar, +/obj/item/tool/crowbar, +/obj/item/tool/crowbar, +/obj/item/radio/off, +/obj/item/radio/off, +/obj/item/radio/off, +/obj/item/radio/off, +/obj/item/radio/off, +/obj/item/radio/off, +/obj/item/flashlight, +/obj/item/flashlight, +/obj/item/flashlight, +/obj/item/flashlight, +/obj/item/flashlight, +/obj/item/flashlight, +/obj/structure/table/steel_reinforced, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"NR" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 1 + }, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"NU" = ( +/obj/machinery/door/airlock/glass/security{ + name = "Confiscated Items"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/security/armory, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"NV" = ( +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/landmark{ + name = "tdome1" + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/tdome/tdome1) +"NW" = ( +/obj/structure/bed/chair/shuttle, +/turf/simulated/shuttle/floor/black, +/area/shuttle/escape) +"NX" = ( +/obj/structure/closet/bombclosetsecurity, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/window/reinforced, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"NY" = ( +/obj/structure/table/woodentable, +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 9 + }, +/obj/item/flame/lighter/zippo, +/obj/item/storage/fancy/cigarettes, +/turf/unsimulated/floor{ + icon_state = "carpet" + }, +/area/centcom/restaurant) +"Oa" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/structure/table/glass, +/obj/item/reagent_containers/spray/cleaner, +/obj/item/reagent_containers/spray/cleaner{ + desc = "Someone has crossed out the 'Space' from Space Cleaner and written in Chemistry. Scrawled on the back is, 'Okay, whoever filled this with polytrinic acid, it was only funny the first time. It was hard enough replacing the CMO's first cat!'"; + name = "Chemistry Cleaner" + }, +/obj/item/reagent_containers/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + name = "Surgery Cleaner"; + pixel_x = 2; + pixel_y = 2 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"Ob" = ( +/obj/effect/floor_decal/derelict/d11, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"Oc" = ( +/obj/effect/floor_decal/corner/red{ + dir = 10 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"Od" = ( +/obj/machinery/computer/teleporter, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"Oe" = ( +/obj/item/clothing/glasses/sunglasses/sechud/tactical, +/obj/item/clothing/gloves/tactical, +/obj/item/clothing/head/helmet/tactical, +/obj/item/clothing/mask/balaclava/tactical, +/obj/item/clothing/shoes/boots/tactical, +/obj/item/clothing/suit/armor/tactical, +/obj/item/clothing/under/tactical, +/obj/item/storage/belt/security/tactical, +/obj/structure/closet{ + desc = "It's a storage unit for standard-issue attire."; + icon_closed = "syndicate1"; + icon_opened = "syndicate1open"; + icon_state = "syndicate1"; + name = "tactical equipment" + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/item/storage/backpack/dufflebag/syndie/ammo, +/obj/item/storage/backpack/satchel/sec, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"Of" = ( +/obj/effect/floor_decal/industrial/outline, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"Oh" = ( +/obj/machinery/computer/arcade/battle, +/obj/effect/floor_decal/borderfloorblack{ + dir = 6 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/orange/bordercorner2{ + dir = 6 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"Oi" = ( +/obj/machinery/computer/secure_data{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 5 + }, +/obj/machinery/camera/network/crescent, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"Oj" = ( +/obj/machinery/door/airlock{ + name = "Unisex Restrooms" + }, +/turf/unsimulated/floor/steel, +/area/centcom/bathroom) +"Om" = ( +/obj/structure/table/rack, +/obj/item/gun/ballistic/automatic/p90, +/obj/item/gun/ballistic/automatic/p90, +/obj/item/gun/ballistic/automatic/p90, +/obj/item/gun/ballistic/automatic/p90, +/obj/item/gun/ballistic/automatic/p90, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"On" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-21" + }, +/turf/unsimulated/floor/steel, +/area/centcom/terminal) +"Op" = ( +/obj/machinery/door/airlock/freezer{ + name = "Kitchen cold room" + }, +/obj/map_helper/access_helper/airlock/station/service/kitchen, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/bar) +"Oq" = ( +/obj/structure/table/glass, +/obj/machinery/chemical_dispenser/ert, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 10 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"Or" = ( +/obj/structure/table/rack, +/obj/item/clothing/gloves/arm_guard/laserproof, +/obj/item/clothing/shoes/leg_guard/laserproof, +/obj/item/clothing/suit/armor/laserproof, +/obj/item/clothing/head/helmet/ablative, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/camera/network/crescent, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"Os" = ( +/obj/item/stool/padded, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"Ot" = ( +/obj/structure/sign/warning{ + name = "\improper STAND AWAY FROM TRACK EDGE" + }, +/turf/unsimulated/wall, +/area/centcom/terminal) +"Ou" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"Ow" = ( +/obj/effect/floor_decal/industrial/warning/dust, +/obj/structure/railing{ + dir = 1 + }, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"Ox" = ( +/obj/structure/handrail, +/turf/simulated/shuttle/floor, +/area/shuttle/escape) +"Oz" = ( +/obj/structure/fans/tiny, +/obj/spawner/window/low_wall/reinforced/electrochromic/full/firelocks{ + id = "emergency_security" + }, +/turf/simulated/floor, +/area/shuttle/escape) +"OA" = ( +/obj/machinery/tele_pad, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"OD" = ( +/obj/effect/floor_decal/industrial/outline, +/obj/structure/closet/secure_closet/nanotrasen_security{ + desc = "This locker is filled silly stickers and some other serious Nanotrasen ones. It is lazily labeled 'The big cat'." + }, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"OF" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 6 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"OH" = ( +/obj/structure/table/steel_reinforced, +/obj/item/smes_coil, +/obj/item/smes_coil, +/obj/item/t_scanner/advanced, +/obj/item/t_scanner/advanced, +/obj/item/stack/material/phoron, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"OJ" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/centcom/specops/dock) +"OL" = ( +/obj/machinery/computer/cryopod/ert{ + pixel_y = 32 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"OM" = ( +/obj/structure/table/reinforced, +/obj/item/healthanalyzer/advanced, +/obj/item/healthanalyzer/advanced, +/obj/item/healthanalyzer/advanced, +/obj/item/healthanalyzer/advanced, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"OO" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 1 + }, +/obj/machinery/camera/network/crescent, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"OR" = ( +/turf/simulated/floor/tiled/techfloor/grid, +/area/centcom/specops/dock) +"OU" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Locker Room" + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/bathroom) +"OZ" = ( +/obj/structure/handrail{ + dir = 1 + }, +/turf/simulated/shuttle/floor/darkred, +/area/shuttle/escape) +"Pa" = ( +/obj/effect/floor_decal/industrial/warning/dust/corner, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/light/flamp/noshade, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"Pb" = ( +/obj/effect/floor_decal/derelict/d3, +/obj/effect/floor_decal/industrial/warning/dust, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"Pd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/obj/structure/shuttle/engine/heater{ + dir = 8 + }, +/turf/simulated/shuttle/wall/voidcraft, +/area/shuttle/specops/engine) +"Ph" = ( +/obj/structure/handrail{ + dir = 1 + }, +/obj/machinery/button/windowtint{ + id = "emergency_security"; + pixel_x = 8; + pixel_y = -24 + }, +/turf/simulated/shuttle/floor/darkred, +/area/shuttle/escape) +"Pj" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 6 + }, +/obj/structure/table/woodentable, +/obj/item/reagent_containers/food/drinks/flask/barflask{ + pixel_x = -4; + pixel_y = 8 + }, +/obj/item/tape_recorder, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/command) +"Pk" = ( +/turf/unsimulated/wall/planetary/virgo3b, +/area/centcom/control) +"Pm" = ( +/obj/machinery/atmospherics/pipe/tank/phoron{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/red, +/turf/simulated/floor/plating, +/area/shuttle/specops/engine) +"Pn" = ( +/obj/machinery/sleeper{ + dir = 4 + }, +/turf/simulated/shuttle/floor, +/area/shuttle/escape) +"Po" = ( +/obj/effect/floor_decal/derelict/d13, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"Pp" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/borderfloorblack{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 6 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"Pq" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 10 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"Ps" = ( +/obj/machinery/newscaster/security_unit{ + pixel_y = 30 + }, +/obj/structure/table/reinforced, +/obj/item/gun/ballistic/shotgun/pump/combat{ + name = "Discipline" + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"Pt" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/living) +"Pu" = ( +/obj/structure/bed/padded, +/obj/item/bedsheet/green, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"Pv" = ( +/turf/unsimulated/floor/wood, +/area/centcom/specops) +"Pw" = ( +/obj/structure/table/standard, +/obj/machinery/computer/skills{ + pixel_y = 2 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/turf/unsimulated/floor/steel, +/area/centcom/command) +"Py" = ( +/obj/item/stool/padded, +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = 30 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"Pz" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"PA" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/ids, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"PB" = ( +/obj/machinery/door_timer/cell_3{ + id = "CellC1"; + name = "Cell 1"; + pixel_y = 28 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/unsimulated/floor/steel, +/area/centcom/holding) +"PC" = ( +/obj/structure/bed/chair/office/dark, +/obj/machinery/button/remote/blast_door{ + desc = "A remote control switch for port-side blast doors."; + id = "CentComPort"; + name = "Security Doors"; + pixel_x = -12; + pixel_y = -25; + req_access = list(101) + }, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"PD" = ( +/obj/structure/filingcabinet/tall, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 5 + }, +/turf/unsimulated/floor/steel, +/area/centcom/command) +"PE" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 6 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/purple/bordercorner2, +/obj/effect/floor_decal/corner/purple/bordercorner2{ + dir = 6 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/control) +"PG" = ( +/obj/item/tape_recorder, +/obj/structure/table/reinforced, +/obj/effect/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 10 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"PI" = ( +/obj/machinery/flasher/portable, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"PM" = ( +/obj/structure/closet/l3closet/virology, +/obj/item/clothing/mask/gas, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"PN" = ( +/obj/machinery/vending/snack, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"PO" = ( +/obj/structure/bed/chair/office/light, +/turf/unsimulated/floor/steel, +/area/centcom/command) +"PQ" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-06"; + pixel_y = 8 + }, +/obj/structure/table/glass, +/turf/unsimulated/floor/steel, +/area/centcom/main_hall) +"PR" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 6 + }, +/turf/unsimulated/floor/steel, +/area/centcom/command) +"PS" = ( +/obj/structure/bed/chair/office/dark, +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = 26 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"PT" = ( +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "freezerfloor" + }, +/area/centcom/bathroom) +"PU" = ( +/obj/machinery/computer/communications{ + dir = 4 + }, +/turf/simulated/shuttle/floor/white, +/area/shuttle/escape) +"PV" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/item/cell/hyper, +/obj/item/cell/hyper, +/obj/item/cell/hyper, +/obj/item/cell/hyper, +/obj/item/cell/hyper, +/obj/item/cell/hyper, +/obj/item/cell/hyper, +/obj/item/cell/hyper, +/obj/item/cell/hyper, +/obj/item/cell/hyper, +/obj/item/cell/hyper, +/obj/item/cell/hyper, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"PW" = ( +/obj/machinery/door/airlock/medical{ + name = "Virology Access"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/medical/virology, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"PY" = ( +/obj/structure/table/reinforced, +/obj/machinery/holoplant{ + pixel_y = 6 + }, +/turf/simulated/shuttle/floor/darkred, +/area/shuttle/escape) +"Qa" = ( +/obj/structure/table/steel, +/obj/item/storage/firstaid/regular, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/bathroom) +"Qb" = ( +/obj/structure/table/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/tool/crowbar, +/obj/item/storage/belt/utility, +/obj/item/storage/toolbox/electrical{ + pixel_x = 1; + pixel_y = 6 + }, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"Qc" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 1 + }, +/obj/item/radio/intercom{ + dir = 1; + frequency = 1475; + name = "Station Intercom (Security)"; + pixel_y = 27 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"Qd" = ( +/obj/machinery/vending/blood, +/turf/simulated/shuttle/floor, +/area/shuttle/escape) +"Qg" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/command) +"Qi" = ( +/obj/machinery/atmospherics/component/unary/freezer, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/machinery/camera/network/crescent, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"Qk" = ( +/obj/structure/table/woodentable, +/obj/item/reagent_containers/food/snacks/cheeseburger{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/reagent_containers/food/snacks/cheeseburger, +/turf/unsimulated/floor/wood, +/area/centcom/restaurant) +"Qm" = ( +/obj/machinery/vending/cola{ + name = "hacked Robust Softdrinks"; + prices = list() + }, +/turf/unsimulated/floor/wood, +/area/centcom/specops) +"Qp" = ( +/obj/structure/table/standard, +/obj/machinery/computer/med_data/laptop, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"Qq" = ( +/turf/unsimulated/wall, +/area/centcom/command) +"Qr" = ( +/turf/unsimulated/floor{ + icon_state = "freezer" + }, +/area/centcom/security) +"Qs" = ( +/obj/structure/table/rack, +/obj/structure/window/reinforced, +/obj/item/gun/ballistic/shotgun/pump/combat, +/obj/item/gun/ballistic/shotgun/pump/combat, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"Qu" = ( +/obj/structure/sign/nanotrasen, +/turf/unsimulated/wall, +/area/centcom/control) +"Qv" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/mirror{ + dir = 4; + pixel_x = -32 + }, +/turf/unsimulated/floor{ + icon_state = "freezer" + }, +/area/centcom/bathroom) +"Qw" = ( +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/turf/unsimulated/floor{ + icon_state = "freezerfloor" + }, +/area/centcom/bathroom) +"Qy" = ( +/obj/structure/table/marble, +/obj/machinery/microwave{ + pixel_x = -3; + pixel_y = 6 + }, +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/control) +"Qz" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/glasses/hud/health{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/clothing/glasses/hud/health{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"QA" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/phoron, +/obj/effect/floor_decal/industrial/outline/red, +/turf/simulated/floor/plating, +/area/shuttle/specops/engine) +"QC" = ( +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "carpet" + }, +/area/centcom/control) +"QD" = ( +/obj/structure/bed/chair/bay/shuttle{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/turretid/lethal{ + control_area = /area/shuttle/specops/general; + pixel_x = -32; + req_access = list(103) + }, +/obj/machinery/button/flasher{ + dir = 4; + id = "breach_flash"; + pixel_x = -24; + pixel_y = 26 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/specops/cockpit) +"QE" = ( +/obj/structure/table/woodentable, +/obj/machinery/cash_register/civilian, +/turf/unsimulated/floor/wood, +/area/centcom/bar) +"QF" = ( +/obj/machinery/door/blast/regular{ + id = "thunderdomeaxe"; + name = "Axe Supply" + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/tdome/tdome1) +"QG" = ( +/obj/structure/bed/chair/shuttle{ + dir = 8 + }, +/turf/simulated/shuttle/floor/white, +/area/shuttle/escape) +"QH" = ( +/obj/structure/sign/nanotrasen, +/turf/unsimulated/wall, +/area/centcom/main_hall) +"QJ" = ( +/obj/structure/table/rack, +/obj/item/gun/energy/laser, +/obj/item/gun/energy/laser, +/obj/item/gun/energy/laser, +/obj/item/gun/energy/laser, +/obj/item/gun/energy/laser, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"QM" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-22" + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 6 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 6 + }, +/obj/machinery/newscaster{ + pixel_x = 29 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"QO" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/brigdoor{ + req_access = list(63); + req_one_access = list(1); + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"QP" = ( +/obj/machinery/turretid/stun{ + check_access = 0; + check_anomalies = 0; + check_records = 0; + control_area = "\improper CentCom Control"; + pixel_x = -28; + pixel_y = -28; + req_access = list(101) + }, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"QS" = ( +/obj/structure/closet/l3closet/virology, +/obj/item/clothing/mask/gas, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"QT" = ( +/obj/machinery/door/airlock/glass_external{ + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/external_airlock, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"QU" = ( +/obj/machinery/camera/network/crescent{ + dir = 4 + }, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"QW" = ( +/obj/structure/closet/walllocker/autolok_wall{ + pixel_y = -26 + }, +/obj/machinery/light{ + dir = 4; + use_power = 0; + old_wall = 1 + }, +/turf/simulated/shuttle/floor/white, +/area/shuttle/escape) +"QX" = ( +/obj/machinery/shieldwallgen, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"QZ" = ( +/obj/machinery/computer/ship/helm{ + dir = 8 + }, +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/tiled/dark, +/area/shuttle/specops/cockpit) +"Ra" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 1 + }, +/turf/unsimulated/floor/steel, +/area/centcom/main_hall) +"Rc" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/table/rack, +/obj/item/gun/energy/gun/nuclear, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"Re" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/control) +"Rf" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled/dark, +/area/shuttle/specops/general) +"Rg" = ( +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = -32 + }, +/obj/structure/bed/chair/bay/shuttle{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/specops/general) +"Rh" = ( +/obj/structure/bed/chair, +/turf/unsimulated/floor/steel, +/area/centcom/main_hall) +"Ri" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/machinery/door/airlock/glass/security{ + name = "Security"; + req_access = list(); + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/security/department, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"Rj" = ( +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 6 + }, +/turf/unsimulated/floor/steel, +/area/centcom/main_hall) +"Rk" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = -32 + }, +/obj/structure/bed/chair/bay/shuttle{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/specops/general) +"Rl" = ( +/obj/effect/floor_decal/corner_techfloor_grid, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/control) +"Rm" = ( +/obj/machinery/computer/secure_data{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/blue/border, +/obj/effect/floor_decal/borderfloorblack/corner2, +/obj/effect/floor_decal/corner/blue/bordercorner2, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"Rn" = ( +/obj/effect/floor_decal/industrial/outline, +/obj/structure/bed/chair, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/unsimulated/floor/steel, +/area/centcom/main_hall) +"Ro" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/unsimulated/floor/steel, +/area/centcom/main_hall) +"Rp" = ( +/obj/structure/table/rack, +/obj/item/hardsuit_module/device/drill, +/obj/item/hardsuit_module/device/drill, +/obj/item/hardsuit_module/maneuvering_jets, +/obj/item/hardsuit_module/maneuvering_jets, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"Rq" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 5 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/command) +"Rr" = ( +/obj/machinery/optable, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/medical) +"Rs" = ( +/obj/item/reagent_containers/food/drinks/cans/cola, +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/yellow/diagonal, +/obj/effect/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"Rv" = ( +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 4 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"Rw" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"Rx" = ( +/obj/machinery/light{ + old_wall = 1; + use_power = 0 + }, +/obj/machinery/status_display{ + pixel_y = -32 + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/escape) +"Ry" = ( +/obj/structure/flora/pottedplant, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 5 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/purple/bordercorner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/bordercorner2{ + dir = 5 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/control) +"RA" = ( +/obj/structure/bed/chair/shuttle, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/escape) +"RE" = ( +/obj/structure/closet/l3closet/virology, +/obj/item/clothing/mask/gas, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"RF" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/structure/filingcabinet/tall, +/turf/unsimulated/floor/steel, +/area/centcom/command) +"RG" = ( +/obj/machinery/door/airlock/glass/security{ + id_tag = "innerS"; + name = "Colonial Security Airlock"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/security/department, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"RH" = ( +/obj/structure/closet/crate/bin, +/turf/unsimulated/floor/wood, +/area/centcom/restaurant) +"RL" = ( +/obj/item/radio/intercom{ + dir = 1; + frequency = 1443; + name = "Spec Ops Intercom"; + pixel_y = -28 + }, +/obj/structure/cable/green, +/obj/machinery/power/apc/alarms_hidden/west_mount, +/turf/simulated/floor/tiled/dark, +/area/shuttle/specops/cockpit) +"RN" = ( +/obj/item/storage/box/evidence, +/obj/item/folder/red, +/obj/structure/table/reinforced, +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"RP" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorblack/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/bordercorner{ + dir = 1 + }, +/obj/machinery/button/remote/blast_door{ + id = "FrontlockC2"; + name = "Checkpoint Shielding"; + pixel_x = -35; + pixel_y = -8; + req_access = list(63); + req_one_access = list(1) + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"RQ" = ( +/obj/machinery/door/airlock{ + name = "Unit 2" + }, +/turf/unsimulated/floor{ + icon_state = "freezer" + }, +/area/centcom/security) +"RS" = ( +/obj/structure/bed/padded, +/obj/item/bedsheet/green, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/green/border, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"RV" = ( +/obj/structure/table/standard, +/obj/item/hand_labeler, +/obj/item/reagent_containers/glass/beaker/large, +/obj/item/reagent_containers/glass/beaker/sulphuric, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"RW" = ( +/obj/machinery/door/airlock/security{ + id_tag = "front"; + name = "Security"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/security/department, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"RX" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/hypospray, +/obj/item/reagent_containers/hypospray, +/obj/item/reagent_containers/hypospray, +/obj/item/reagent_containers/hypospray, +/obj/item/reagent_containers/hypospray, +/obj/item/reagent_containers/hypospray, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"RY" = ( +/obj/structure/memorial/small/right, +/turf/unsimulated/floor/steel{ + icon_state = "asteroidfloor" + }, +/area/centcom/main_hall) +"Sa" = ( +/obj/machinery/camera/network/crescent, +/turf/unsimulated/floor/steel, +/area/centcom/living) +"Sc" = ( +/turf/unsimulated/wall, +/area/centcom/restaurant) +"Sd" = ( +/obj/machinery/telecomms/broadcaster/preset_cent, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"Sg" = ( +/obj/structure/bed/chair/shuttle{ + dir = 8 + }, +/obj/structure/closet/walllocker/emergsuit_wall{ + pixel_y = 32 + }, +/turf/simulated/shuttle/floor, +/area/shuttle/escape) +"Sh" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/unsimulated/floor/steel, +/area/centcom/command) +"Si" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/pen, +/obj/machinery/door/window/brigdoor, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 6 + }, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"Sj" = ( +/obj/machinery/chem_master, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"Sl" = ( +/obj/machinery/portable_atmospherics/powered/scrubber, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"Sm" = ( +/obj/structure/table/reinforced, +/obj/machinery/computer/skills, +/turf/unsimulated/floor/steel, +/area/centcom/command) +"Sn" = ( +/obj/structure/closet/crate/bin, +/turf/unsimulated/floor/steel, +/area/centcom/main_hall) +"So" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-22" + }, +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "carpet" + }, +/area/centcom/restaurant) +"Sp" = ( +/turf/simulated/shuttle/floor, +/area/shuttle/escape) +"Sr" = ( +/obj/structure/table/steel_reinforced, +/obj/item/clothing/gloves/yellow, +/obj/item/clothing/gloves/yellow, +/obj/item/clothing/gloves/yellow, +/obj/item/clothing/gloves/yellow, +/obj/item/clothing/gloves/yellow, +/obj/item/clothing/gloves/yellow, +/obj/item/storage/belt/utility/full, +/obj/item/storage/belt/utility/full, +/obj/item/storage/belt/utility/full, +/obj/item/storage/belt/utility/full, +/obj/item/storage/belt/utility/full, +/obj/item/storage/belt/utility/full, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"Ss" = ( +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 10 + }, +/turf/unsimulated/floor/steel, +/area/centcom/main_hall) +"St" = ( +/obj/structure/table/rack, +/obj/item/hardsuit_module/mounted/egun, +/obj/item/hardsuit_module/mounted/egun, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"Sv" = ( +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/structure/bed/chair/comfy/brown{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon_state = "carpet" + }, +/area/centcom/restaurant) +"Sw" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 4 + }, +/turf/simulated/shuttle/plating/airless/carry, +/area/shuttle/escape) +"Sx" = ( +/obj/structure/undies_wardrobe, +/turf/unsimulated/floor/wood, +/area/centcom/specops) +"Sz" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 6 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"SA" = ( +/obj/structure/table/woodentable, +/obj/item/reagent_containers/food/snacks/fries, +/turf/unsimulated/floor/wood, +/area/centcom/restaurant) +"SC" = ( +/obj/machinery/computer/card, +/obj/effect/floor_decal/borderfloorblack{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 9 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"SD" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/machinery/computer/card, +/turf/unsimulated/floor/steel, +/area/centcom/command) +"SG" = ( +/obj/structure/table/standard, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stock_parts/scanning_module{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/stock_parts/scanning_module, +/obj/machinery/light{ + dir = 4 + }, +/obj/item/clothing/glasses/omnihud/rnd, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"SI" = ( +/obj/structure/table/rack, +/obj/item/gun/ballistic/automatic/battlerifle, +/obj/item/gun/ballistic/automatic/battlerifle, +/obj/item/gun/ballistic/automatic/battlerifle, +/obj/item/gun/ballistic/automatic/battlerifle, +/obj/item/gun/ballistic/automatic/battlerifle, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"SJ" = ( +/obj/structure/table/glass, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/turf/unsimulated/floor/steel, +/area/centcom/command) +"SK" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/green/bordercorner2{ + dir = 10 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"SM" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/obj/item/folder/red_hos, +/turf/unsimulated/floor{ + icon_state = "carpet" + }, +/area/centcom/command) +"SN" = ( +/obj/machinery/computer/rdconsole/core{ + dir = 4 + }, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"SQ" = ( +/obj/structure/table/rack, +/obj/item/gun/ballistic/shotgun/pump/combat, +/obj/item/gun/ballistic/shotgun/pump/combat, +/obj/item/gun/ballistic/shotgun/pump/combat, +/obj/item/gun/ballistic/shotgun/pump/combat, +/obj/item/gun/ballistic/shotgun/pump/combat, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"SW" = ( +/obj/spawner/window/low_wall/reinforced/full, +/turf/unsimulated/floor{ + name = "plating" + }, +/area/centcom/evac) +"SY" = ( +/obj/structure/table/woodentable, +/obj/item/reagent_containers/food/snacks/meatballspagetti, +/turf/unsimulated/floor/wood, +/area/centcom/restaurant) +"SZ" = ( +/obj/machinery/atm{ + pixel_x = -26 + }, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"Tb" = ( +/obj/machinery/camera/network/crescent, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 1 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/control) +"Tc" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/multi_tile/glass, +/turf/unsimulated/floor/steel, +/area/centcom/command) +"Te" = ( +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/blue/border, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloorblack/corner2, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"Tf" = ( +/obj/machinery/door/airlock/security{ + name = "Security"; + req_one_access = null + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"Tg" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/ammo_magazine/a9mm/top_mount/rubber, +/obj/item/ammo_magazine/a9mm/top_mount/rubber, +/obj/item/ammo_magazine/a9mm/top_mount/rubber, +/obj/item/ammo_magazine/a9mm/top_mount/rubber, +/obj/item/ammo_magazine/a9mm/top_mount/rubber, +/obj/item/ammo_magazine/a9mm/top_mount/rubber, +/obj/item/ammo_magazine/a9mm/top_mount/rubber, +/obj/item/ammo_magazine/a9mm/top_mount/rubber, +/obj/item/ammo_magazine/a9mm/top_mount/rubber, +/obj/item/ammo_magazine/a9mm/top_mount/rubber, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"Th" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/machinery/button/remote/blast_door{ + id = "TelelockdownC"; + name = "Teleporter Full Lockdown"; + pixel_x = 6; + pixel_y = -5; + req_access = list(63); + req_one_access = list(1) + }, +/obj/item/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/machinery/camera/network/crescent, +/turf/unsimulated/floor/steel, +/area/centcom/command) +"Tk" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/effect/floor_decal/corner_steel_grid{ + dir = 10 + }, +/obj/machinery/computer/transhuman/resleeving, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"Tm" = ( +/obj/machinery/porta_turret/crescent{ + density = 1 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"Tn" = ( +/obj/machinery/transhuman/synthprinter, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"To" = ( +/obj/structure/table/glass, +/obj/machinery/chemical_dispenser/full, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 9 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 9 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"Tq" = ( +/obj/machinery/camera/network/crescent, +/turf/unsimulated/floor{ + icon_state = "freezer" + }, +/area/centcom/bathroom) +"Tr" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/bordercorner{ + dir = 1 + }, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"Tt" = ( +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/blue/border, +/obj/effect/floor_decal/borderfloorblack/corner2, +/obj/effect/floor_decal/corner/blue/bordercorner2, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"Tv" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 1 + }, +/obj/machinery/turretid/stun{ + check_access = 0; + check_anomalies = 0; + check_records = 0; + control_area = "\improper CentCom Security"; + pixel_y = 32; + req_access = list(101); + req_one_access = list(101) + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"Tz" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 6 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2, +/obj/effect/floor_decal/corner/green/bordercorner2, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"TA" = ( +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon_state = "freezer" + }, +/area/centcom/security) +"TB" = ( +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/space) +"TD" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/bordercorner{ + dir = 4 + }, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"TE" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/unsimulated/floor/steel, +/area/centcom/main_hall) +"TG" = ( +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/tdome/tdomeobserve) +"TI" = ( +/obj/machinery/computer/ship/sensors{ + dir = 8 + }, +/obj/structure/table/steel_reinforced, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/specops/cockpit) +"TJ" = ( +/obj/machinery/vending/snack, +/turf/unsimulated/floor/wood, +/area/centcom/restaurant) +"TK" = ( +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/blue/border, +/obj/effect/floor_decal/borderfloorblack/corner2, +/obj/effect/floor_decal/corner/blue/bordercorner2, +/obj/machinery/camera/network/crescent{ + dir = 10 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"TN" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"TR" = ( +/obj/structure/closet/crate/freezer, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/control) +"TV" = ( +/obj/machinery/computer/crew{ + dir = 4 + }, +/turf/simulated/shuttle/floor/white, +/area/shuttle/escape) +"TW" = ( +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 1 + }, +/turf/unsimulated/floor/steel, +/area/centcom/living) +"TX" = ( +/obj/structure/table/reinforced, +/obj/machinery/microwave, +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/blue/border, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"TZ" = ( +/obj/machinery/computer/arcade/orion_trail, +/obj/effect/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/orange/bordercorner2{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"Ua" = ( +/obj/machinery/door/firedoor, +/turf/unsimulated/floor/steel, +/area/centcom/command) +"Ue" = ( +/obj/structure/table/standard, +/obj/item/surgical/hemostat, +/obj/item/surgical/cautery, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 9 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 9 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"Uh" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/orange/bordercorner2{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"Ui" = ( +/obj/machinery/light{ + dir = 8; + use_power = 0; + old_wall = 1 + }, +/turf/simulated/shuttle/floor/white, +/area/shuttle/escape) +"Uj" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/control) +"Uk" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 6 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/bathroom) +"Un" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 10 + }, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"Up" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/unsimulated/floor/steel, +/area/centcom/command) +"Us" = ( +/obj/machinery/mecha_part_fabricator/pros, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"Uu" = ( +/obj/machinery/vending/sovietsoda, +/turf/unsimulated/floor/wood, +/area/centcom/restaurant) +"Uw" = ( +/obj/effect/floor_decal/industrial/outline, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"Uy" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/computer/transhuman/resleeving, +/obj/item/book/manual/resleeving, +/obj/item/storage/box/backup_kit, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"UA" = ( +/turf/unsimulated/wall, +/area/tdome/tdomeadmin) +"UB" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/turf/unsimulated/floor/steel, +/area/centcom/command) +"UD" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/storage/vest/tactical, +/obj/item/clothing/suit/storage/vest/tactical, +/obj/item/clothing/suit/storage/vest/tactical, +/obj/item/clothing/suit/storage/vest/tactical, +/obj/item/clothing/suit/storage/vest/tactical, +/obj/item/clothing/suit/storage/vest/tactical, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/clothing/suit/storage/vest/tactical, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"UF" = ( +/obj/structure/bed/padded, +/obj/item/bedsheet/captain, +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 9 + }, +/turf/unsimulated/floor{ + icon_state = "carpet" + }, +/area/centcom/control) +"UH" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/table/rack, +/obj/item/gun/energy/netgun, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"UI" = ( +/obj/effect/floor_decal/rust/part_rusted3, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"UJ" = ( +/obj/structure/table/steel, +/obj/item/storage/box/bodybags, +/obj/item/storage/box/bodybags, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/medical) +"UM" = ( +/obj/machinery/r_n_d/server/centcom, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/command) +"UP" = ( +/obj/item/stool/padded, +/obj/effect/floor_decal/corner/yellow/diagonal, +/obj/effect/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"UT" = ( +/obj/structure/table/rack, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/ammo_magazine/a44/speedloader, +/obj/item/ammo_magazine/a44/speedloader, +/obj/item/ammo_magazine/a44/speedloader, +/obj/item/ammo_magazine/a44/speedloader, +/obj/item/ammo_magazine/a44/speedloader, +/obj/item/ammo_magazine/a44/speedloader, +/obj/item/ammo_magazine/a44/speedloader, +/obj/item/ammo_magazine/a44/speedloader, +/obj/item/gun/ballistic/revolver/combat, +/obj/item/gun/ballistic/revolver/combat, +/obj/item/gun/ballistic/revolver/combat, +/obj/item/gun/ballistic/revolver/combat, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"UW" = ( +/obj/machinery/porta_turret/crescent{ + density = 1 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"UY" = ( +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/tdome/tdomeadmin) +"Va" = ( +/obj/structure/table/woodentable, +/obj/item/reagent_containers/food/snacks/meatsteak, +/turf/unsimulated/floor/wood, +/area/centcom/restaurant) +"Vb" = ( +/obj/machinery/computer/security{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/effect/floor_decal/borderfloorblack{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 6 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"Vd" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"Ve" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"Vf" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"Vh" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"Vi" = ( +/obj/structure/table/standard, +/obj/machinery/recharger, +/obj/item/book/codex, +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = 26 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Vj" = ( +/obj/structure/table/steel_reinforced, +/obj/item/storage/box/survival/comp, +/obj/item/storage/box/survival/comp, +/obj/item/storage/box/survival/comp, +/obj/item/storage/box/survival/comp, +/obj/item/storage/box/survival/comp, +/obj/item/storage/box/survival/comp, +/obj/item/storage/box/survival/comp, +/obj/item/storage/box/survival/comp, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"Vm" = ( +/obj/structure/handrail{ + dir = 1 + }, +/obj/structure/closet/walllocker/emergsuit_wall{ + pixel_y = -26 + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/escape) +"Vn" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/turf/unsimulated/floor/steel, +/area/centcom/command) +"Vq" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 1 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"Vr" = ( +/obj/structure/table/glass, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/turf/unsimulated/floor/steel, +/area/centcom/command) +"Vu" = ( +/obj/spawner/window/low_wall/reinforced/full, +/turf/unsimulated/floor{ + name = "plating" + }, +/area/tdome/tdomeobserve) +"Vw" = ( +/obj/structure/table/rack, +/obj/item/hardsuit_module/device/rcd, +/obj/item/hardsuit_module/device/rcd, +/obj/item/hardsuit_module/device/plasmacutter, +/obj/item/hardsuit_module/device/plasmacutter, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"Vx" = ( +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 6 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/command) +"Vy" = ( +/obj/machinery/door/airlock/centcom{ + name = "SpecOps Hangar"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/centcom/ert, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops/dock) +"Vz" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/green/bordercorner2{ + dir = 6 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"VA" = ( +/obj/structure/table/rack, +/obj/item/hardsuit/ert, +/obj/item/clothing/accessory/storage/black_vest, +/turf/unsimulated/floor/wood, +/area/centcom/specops) +"VC" = ( +/obj/machinery/telecomms/broadcaster/preset_cent, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/command) +"VD" = ( +/obj/structure/table/standard, +/obj/item/storage/box/empslite{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/storage/box/flashbangs{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/item/storage/box/empslite, +/obj/item/storage/box/flashbangs{ + pixel_x = -2; + pixel_y = -2 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"VE" = ( +/obj/effect/floor_decal/rust/mono_rusted3, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"VH" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-21" + }, +/obj/machinery/camera/network/crescent, +/turf/unsimulated/floor{ + icon_state = "freezerfloor" + }, +/area/centcom/bathroom) +"VI" = ( +/obj/structure/table/rack, +/obj/structure/window/reinforced, +/obj/item/ammo_magazine/a5_7mm/harpy_smg/ap, +/obj/item/ammo_magazine/a5_7mm/harpy_smg/ap, +/obj/item/ammo_magazine/a5_7mm/harpy_smg/ap, +/obj/item/ammo_magazine/a5_7mm/harpy_smg/ap, +/obj/item/gun/ballistic/automatic/combat, +/obj/item/gun/ballistic/automatic/combat, +/obj/item/gun/ballistic/automatic/combat, +/obj/item/gun/ballistic/automatic/combat, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"VM" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/armor/vest/ert/command, +/obj/item/clothing/head/helmet/ert/command, +/obj/item/storage/backpack/ert/commander, +/turf/unsimulated/floor/wood, +/area/centcom/specops) +"VN" = ( +/obj/item/storage/box/gloves{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/box/masks, +/obj/structure/table/glass, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"VP" = ( +/obj/structure/table/rack, +/obj/item/clothing/gloves/arm_guard/bulletproof, +/obj/item/clothing/shoes/leg_guard/bulletproof, +/obj/item/clothing/suit/armor/bulletproof/alt, +/obj/item/clothing/head/helmet/ballistic, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"VQ" = ( +/obj/machinery/computer/secure_data{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/blue/border, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 9 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"VU" = ( +/obj/effect/floor_decal/derelict/d8, +/obj/effect/floor_decal/industrial/warning/dust, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"VV" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/gun/energy/taser, +/obj/item/gun/energy/taser, +/obj/item/gun/energy/taser, +/obj/item/gun/energy/taser, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"VW" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"VY" = ( +/obj/machinery/shipsensors{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/full, +/turf/simulated/floor/plating, +/area/shuttle/specops/general) +"Wb" = ( +/obj/structure/table/reinforced, +/obj/item/tape_recorder, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"Wd" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"Wg" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/obj/structure/closet/secure_closet/hop, +/turf/unsimulated/floor/steel, +/area/centcom/command) +"Wj" = ( +/obj/structure/handrail, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/escape) +"Wk" = ( +/obj/structure/sign/warning/caution, +/turf/unsimulated/wall, +/area/centcom/evac) +"Wl" = ( +/obj/structure/closet/emcloset, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/camera/network/crescent{ + dir = 10 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/control) +"Wn" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/structure/table/standard, +/obj/item/reagent_containers/blood/OPlus{ + pixel_x = 4; + pixel_y = 2 + }, +/obj/item/reagent_containers/blood/OMinus{ + pixel_x = -5; + pixel_y = -1 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"Wp" = ( +/obj/machinery/computer/pod{ + id = "thunderdome"; + name = "Thunderdome Blast Door Control" + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/tdome/tdomeadmin) +"Wq" = ( +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/structure/flora/pottedplant{ + icon_state = "plant-24" + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/living) +"Wr" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"Wt" = ( +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/turf/simulated/floor/plating, +/area/centcom/specops/dock) +"Wu" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 1 + }, +/turf/unsimulated/floor/steel, +/area/centcom/holding) +"Wv" = ( +/obj/structure/table/woodentable, +/obj/item/reagent_containers/food/snacks/bigbiteburger, +/turf/unsimulated/floor/wood, +/area/centcom/restaurant) +"Wy" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/multi_tile/glass, +/obj/map_helper/access_helper/airlock/station/medical/department, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"WC" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 4 + }, +/obj/machinery/camera/network/crescent, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"WD" = ( +/obj/spawner/window/low_wall/reinforced/full, +/turf/unsimulated/floor{ + name = "plating" + }, +/area/tdome/tdomeadmin) +"WI" = ( +/turf/unsimulated/floor{ + icon_state = "freezer" + }, +/area/centcom/bathroom) +"WK" = ( +/turf/unsimulated/wall, +/area/centcom/security) +"WM" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"WP" = ( +/obj/structure/filingcabinet/chestdrawer{ + desc = "A large drawer filled with autopsy reports."; + name = "Autopsy Reports" + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/medical) +"WQ" = ( +/obj/machinery/vending/snack, +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "carpet" + }, +/area/centcom/restaurant) +"WS" = ( +/obj/machinery/vending/cigarette, +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 10 + }, +/turf/unsimulated/floor{ + icon_state = "carpet" + }, +/area/centcom/restaurant) +"WT" = ( +/obj/machinery/vending/cigarette, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeobserve) +"WV" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"WW" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + dir = 1; + frequency = 1380; + id_tag = "specops_hangar_dock"; + pixel_y = -28; + req_one_access = list(103) + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/centcom/specops/dock) +"WX" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/structure/closet/secure_closet/medical3, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"WZ" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 6 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 6 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"Xa" = ( +/obj/machinery/status_display{ + pixel_x = -31 + }, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"Xd" = ( +/turf/unsimulated/floor/steel, +/area/centcom/security) +"Xe" = ( +/obj/structure/table/standard, +/obj/item/tape_recorder, +/obj/item/megaphone, +/obj/item/packageWrap, +/obj/item/storage/box, +/obj/item/hand_labeler, +/obj/item/universal_translator, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"Xf" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/hatch{ + name = "Power Management"; + req_one_access = list(103) + }, +/turf/simulated/floor/plating, +/area/centcom/specops/dock) +"Xg" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"Xh" = ( +/obj/machinery/door/blast/regular{ + id = "ArmouryC5"; + name = "Armoury" + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/control) +"Xi" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/machinery/camera/network/crescent, +/turf/unsimulated/floor/steel, +/area/centcom/command) +"Xj" = ( +/obj/effect/floor_decal/industrial/outline, +/turf/unsimulated/floor/steel, +/area/centcom/main_hall) +"Xn" = ( +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/blue/border, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"Xp" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/storage/box/shotgunammo/large, +/obj/item/storage/box/shotgunammo/large, +/obj/item/storage/box/shotgunammo/large, +/obj/item/storage/box/shotgunammo/large, +/obj/item/storage/box/shotgunammo/large, +/obj/item/storage/box/shotgunammo/large, +/obj/item/storage/box/shotgunammo/large, +/obj/item/storage/box/shotgunammo/large, +/obj/item/storage/box/shotgunammo/large, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"Xq" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/windowtint{ + id = "emergency_cockpit"; + pixel_x = -24; + pixel_y = 6 + }, +/obj/machinery/keycard_auth{ + pixel_x = -24; + pixel_y = -8 + }, +/obj/item/folder/blue, +/obj/item/radio, +/obj/item/radio{ + pixel_x = 2; + pixel_y = 2 + }, +/turf/simulated/shuttle/floor/white, +/area/shuttle/escape) +"Xr" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/head/greenbandana, +/obj/effect/floor_decal/borderfloorblack{ + dir = 5 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 5 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"Xs" = ( +/obj/structure/bed/chair/shuttle{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4; + use_power = 0; + old_wall = 1 + }, +/turf/simulated/shuttle/floor, +/area/shuttle/escape) +"Xv" = ( +/obj/effect/floor_decal/rust, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"XA" = ( +/obj/item/storage/box/handcuffs{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/handcuffs, +/obj/structure/table/steel_reinforced, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"XC" = ( +/obj/machinery/door/blast/regular{ + id = "thunderdomehea"; + name = "Heavy Supply" + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/tdome/tdome1) +"XD" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-08" + }, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"XF" = ( +/obj/structure/sign/department/operational, +/turf/unsimulated/wall, +/area/centcom/medical) +"XH" = ( +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/turf/unsimulated/floor/steel, +/area/centcom/living) +"XJ" = ( +/obj/structure/table/standard, +/obj/item/reagent_containers/food/drinks/bottle/small/beer, +/obj/item/reagent_containers/food/drinks/bottle/small/beer, +/obj/item/reagent_containers/food/drinks/bottle/small/beer, +/obj/item/flame/lighter/zippo, +/obj/item/storage/fancy/cigarettes, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeobserve) +"XN" = ( +/obj/machinery/vending/security, +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"XO" = ( +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = 30 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 6 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"XQ" = ( +/obj/machinery/door/blast/regular{ + id = "ArmouryC"; + name = "Armoury" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"XS" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/ammo_magazine/a5_56mm/ap, +/obj/item/ammo_magazine/a5_56mm/ap, +/obj/item/ammo_magazine/a5_56mm, +/obj/item/ammo_magazine/a5_56mm, +/obj/item/ammo_magazine/a5_56mm, +/obj/item/ammo_magazine/a5_56mm, +/obj/item/ammo_magazine/a5_56mm, +/obj/item/ammo_magazine/a5_56mm, +/obj/item/gun/ballistic/automatic/sts35, +/obj/item/gun/ballistic/automatic/sts35, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"XT" = ( +/obj/machinery/camera/network/crescent, +/turf/unsimulated/floor/steel, +/area/centcom/command) +"XU" = ( +/obj/item/reagent_containers/food/condiment/small/peppermill{ + pixel_x = 2; + pixel_y = 6 + }, +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/yellow/diagonal, +/obj/effect/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"XV" = ( +/obj/machinery/bodyscanner{ + dir = 8 + }, +/obj/effect/floor_decal/corner_steel_grid{ + dir = 10 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"XW" = ( +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "TelelockdownC"; + name = "Security Doors"; + opacity = 0 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/living) +"XX" = ( +/obj/machinery/computer/med_data{ + dir = 4 + }, +/obj/machinery/camera/network/crescent, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"XY" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/structure/filingcabinet/tall, +/turf/unsimulated/floor/steel, +/area/centcom/command) +"XZ" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 4 + }, +/turf/unsimulated/floor{ + icon_state = "carpet" + }, +/area/centcom/command) +"Ya" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/machinery/camera/network/crescent{ + dir = 4 + }, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"Yd" = ( +/obj/machinery/lathe/autolathe{ + desc = "Your typical Autolathe. It appears to have much more options than your regular one, however..."; + name = "Unlocked Autolathe" + }, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"Ye" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 9 + }, +/obj/machinery/turretid/stun{ + check_access = 0; + check_anomalies = 0; + check_records = 0; + control_area = "\improper CentCom Living Quarters"; + pixel_y = 32; + req_access = list(101); + req_one_access = list(101) + }, +/turf/unsimulated/floor/steel, +/area/centcom/living) +"Yh" = ( +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "CentComPort"; + name = "Security Doors"; + opacity = 0 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/unsimulated/floor/steel, +/area/centcom/main_hall) +"Yi" = ( +/obj/structure/table/reinforced, +/obj/item/storage/belt/medical/emt, +/obj/item/storage/belt/medical/emt, +/obj/item/storage/belt/medical/emt, +/obj/item/storage/belt/medical/emt, +/obj/item/storage/belt/medical/emt, +/obj/item/storage/belt/medical/emt, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"Yl" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/effect/floor_decal/borderfloorwhite/corner2, +/obj/effect/floor_decal/corner/paleblue/bordercorner2, +/obj/structure/table/glass, +/obj/item/storage/firstaid/o2, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"Ym" = ( +/obj/structure/table/steel_reinforced, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"Yn" = ( +/turf/unsimulated/floor{ + icon_state = "freezerfloor" + }, +/area/centcom/bathroom) +"Yo" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/centcom/specops/dock) +"Yp" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 4 + }, +/turf/unsimulated/floor/steel, +/area/centcom/main_hall) +"Yq" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/item/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 27 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/control) +"Yr" = ( +/turf/unsimulated/wall, +/area/space) +"Yt" = ( +/obj/machinery/door/airlock/centcom{ + name = "Commander"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/centcom/ert, +/turf/unsimulated/floor/wood, +/area/centcom/specops) +"Yu" = ( +/obj/structure/reagent_dispensers/water_cooler/full, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 10 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/purple/bordercorner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/purple/bordercorner2{ + dir = 8 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/control) +"Yv" = ( +/obj/structure/table/reinforced, +/obj/machinery/microwave, +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"Yy" = ( +/obj/machinery/door/airlock/centcom{ + name = "Nanotrasen Offices"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/centcom, +/turf/unsimulated/floor/steel, +/area/centcom/command) +"Yz" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "residential"; + name = "Security Door"; + opacity = 0 + }, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"YA" = ( +/obj/item/clothing/glasses/sunglasses/sechud/tactical, +/obj/item/clothing/glasses/sunglasses/sechud/tactical, +/obj/item/clothing/glasses/sunglasses/sechud/tactical, +/obj/item/clothing/glasses/sunglasses/sechud/tactical, +/obj/structure/table/steel_reinforced, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"YB" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/turf/unsimulated/floor/steel, +/area/centcom/command) +"YC" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 10 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"YE" = ( +/obj/structure/table/standard, +/obj/machinery/recharger, +/obj/item/cell/device/weapon{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/cell/device/weapon{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/cell/device/weapon, +/obj/item/cell/device/weapon{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/item/cell/device/weapon{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/cell/device/weapon{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/cell/device/weapon{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/cell/device/weapon{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/cell/device/weapon{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/cell/device/weapon{ + pixel_x = -2; + pixel_y = -2 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"YF" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 10 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"YG" = ( +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 6 + }, +/turf/unsimulated/floor/steel, +/area/centcom/living) +"YH" = ( +/obj/structure/table/glass, +/obj/item/defib_kit/compact/loaded, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"YI" = ( +/obj/structure/table/standard{ + desc = "It's a table, it has something scratched on it 'I fuck the squirrel on this table'." + }, +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet{ + dir = 5 + }, +/turf/unsimulated/floor{ + icon_state = "carpet" + }, +/area/centcom/control) +"YJ" = ( +/obj/machinery/power/rtg/fake_gen, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/centcom/specops/dock) +"YK" = ( +/obj/structure/railing, +/obj/machinery/light/flamp/noshade, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"YL" = ( +/obj/structure/cable, +/obj/machinery/power/apc/alarms_hidden/south_mount, +/turf/simulated/floor/plating, +/area/centcom/specops/dock) +"YM" = ( +/obj/structure/table/rack, +/obj/item/clothing/mask/gas{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/clothing/mask/gas{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/gas{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/extinguisher_cabinet{ + pixel_x = 5; + pixel_y = 28 + }, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"YN" = ( +/obj/item/stool/padded, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"YO" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 5 + }, +/obj/machinery/door/window/brigdoor/northright{ + req_access = list(63); + req_one_access = list(1) + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "FrontlockC2"; + name = "Security Door"; + opacity = 0 + }, +/obj/machinery/computer/skills, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"YP" = ( +/turf/unsimulated/floor/steel, +/area/centcom/holding) +"YQ" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/blue/border, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"YS" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 6 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"YU" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/unsimulated/floor/steel, +/area/centcom/command) +"YV" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-10" + }, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"YX" = ( +/obj/structure/table/rack, +/obj/item/flash, +/obj/item/flash, +/obj/item/clothing/accessory/storage/brown_vest, +/obj/item/clothing/accessory/storage/brown_vest, +/obj/item/clothing/accessory/storage/brown_vest, +/obj/item/clothing/accessory/storage/brown_vest, +/obj/item/clothing/accessory/storage/brown_vest, +/obj/item/clothing/accessory/storage/brown_vest, +/obj/item/clothing/accessory/storage/brown_drop_pouches, +/obj/item/clothing/accessory/storage/brown_drop_pouches, +/obj/item/clothing/accessory/storage/brown_drop_pouches, +/obj/item/clothing/accessory/storage/brown_drop_pouches, +/obj/item/clothing/accessory/storage/brown_drop_pouches, +/obj/item/clothing/accessory/storage/brown_drop_pouches, +/obj/item/gun/energy/gun/martin, +/obj/item/gun/energy/gun/martin, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"Zb" = ( +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/blue/bordercorner, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"Zc" = ( +/obj/item/stool/padded, +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/orange/border, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"Zd" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/item/storage/box/teargas, +/obj/item/storage/box/teargas, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"Ze" = ( +/turf/simulated/floor/plating, +/area/centcom/specops/dock) +"Zf" = ( +/obj/item/clothing/accessory/holster/armpit, +/obj/item/clothing/accessory/holster/armpit, +/obj/item/clothing/accessory/holster/armpit, +/obj/item/clothing/accessory/holster/armpit, +/obj/item/clothing/accessory/holster/armpit, +/obj/item/clothing/accessory/holster/armpit, +/obj/structure/table/steel_reinforced, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"Zh" = ( +/obj/structure/memorial/small/left, +/turf/unsimulated/floor/steel{ + icon_state = "asteroidfloor" + }, +/area/centcom/main_hall) +"Zi" = ( +/obj/machinery/camera/network/crescent{ + dir = 10 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/control) +"Zj" = ( +/obj/machinery/button/remote/blast_door{ + id = "ArmouryC"; + name = "Armoury Access"; + pixel_y = -28; + req_access = list(3) + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"Zk" = ( +/obj/landmark{ + name = "tdome2" + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/tdome/tdome1) +"Zl" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/blue/bordercorner2, +/turf/unsimulated/floor/steel, +/area/centcom/command) +"Zm" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/orange/bordercorner2{ + dir = 10 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"Zn" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/l3closet/security, +/turf/unsimulated/floor/steel, +/area/centcom/security) +"Zq" = ( +/obj/item/folder/white, +/obj/structure/table/standard, +/obj/item/disk/tech_disk, +/obj/item/disk/tech_disk, +/obj/item/disk/design_disk, +/obj/item/disk/design_disk, +/obj/item/reagent_containers/dropper{ + pixel_y = -4 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 10 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 10 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/control) +"Zs" = ( +/turf/unsimulated/wall, +/area/centcom/main_hall) +"Zv" = ( +/obj/effect/blocker, +/turf/simulated/floor/tiled/white, +/area/centcom/specops) +"Zx" = ( +/obj/machinery/atmospherics/component/unary/cryo_cell, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 5 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 5 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"Zy" = ( +/obj/machinery/light{ + dir = 4; + use_power = 0 + }, +/obj/structure/closet/firecloset/full/double, +/turf/simulated/shuttle/floor/darkred, +/area/shuttle/escape) +"ZA" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/structure/table/glass, +/obj/item/storage/firstaid/fire, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"ZC" = ( +/obj/machinery/door/airlock/medical{ + name = "Morgue"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/medical/morgue, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/medical) +"ZG" = ( +/obj/machinery/disease2/diseaseanalyser, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/medical) +"ZH" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 8 + }, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"ZJ" = ( +/obj/machinery/door/airlock, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/security) +"ZK" = ( +/obj/machinery/door/airlock/vault/bolted{ + id_tag = "the_end"; + name = "RESTRICTED"; + req_one_access = null + }, +/obj/machinery/door/blast/regular{ + id = "ADMINFUN"; + name = "RESTRICTED" + }, +/obj/map_helper/access_helper/airlock/station/command/vault, +/turf/simulated/floor/reinforced, +/area/centcom/security) +"ZL" = ( +/obj/item/stool/padded, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/bathroom) +"ZM" = ( +/obj/machinery/power/pointdefense, +/turf/simulated/floor/plating/eris/under, +/area/shuttle/escape) +"ZN" = ( +/obj/structure/sign/department/armory, +/turf/unsimulated/wall, +/area/centcom/control) +"ZP" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"ZQ" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/turf/unsimulated/floor/steel, +/area/centcom/command) +"ZT" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/centcom/control) +"ZU" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/structure/table/woodentable{ + desc = "It's a table..it has some scratch marks 'the commander likes to fuck me here'." + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 6 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/command) +"ZV" = ( +/obj/effect/floor_decal/corner_steel_grid{ + dir = 1 + }, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"ZZ" = ( +/obj/machinery/computer/secure_data{ + dir = 8 + }, +/turf/unsimulated/floor/steel, +/area/centcom/control) + +(1,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(2,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +dy +BP +"} +(3,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(4,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(5,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(6,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(7,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(8,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(9,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(10,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(11,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(12,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(13,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(14,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(15,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(16,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(17,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(18,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(19,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(20,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(21,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(22,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(23,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(24,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(25,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(26,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(27,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(28,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(29,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(30,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(31,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(32,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(33,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(34,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(35,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(36,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(37,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(38,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(39,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(40,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(41,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(42,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(43,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(44,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(45,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(46,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(47,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(48,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(49,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(50,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(51,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(52,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(53,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(54,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(55,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(56,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(57,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(58,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(59,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(60,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(61,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(62,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(63,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(64,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +pO +JP +JP +JP +JP +JP +JP +JP +JP +JP +JP +JP +JP +JP +JP +JP +JP +JP +JP +pO +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(65,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +iH +AF +AF +AF +AF +AF +AF +AF +AF +AF +AF +AF +AF +AF +AF +AF +AF +AF +AF +iH +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(66,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +iH +AF +AF +AF +AF +AF +AF +jQ +jQ +Fl +Fl +Fl +jQ +jQ +AF +AF +AF +AF +AF +iH +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(67,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +iH +AF +AF +AF +AF +AF +ZM +Fl +Xq +TV +PU +im +FX +Fl +ZM +AF +AF +AF +AF +iH +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(68,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +iH +AF +AF +AF +AF +Ef +jQ +wG +QG +QG +QG +QG +mG +wG +jQ +Jr +AF +AF +AF +iH +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(69,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +iH +AF +AF +AF +AF +jQ +jQ +jQ +qk +in +yz +in +QW +jQ +jQ +jQ +AF +AF +AF +iH +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(70,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +iH +AF +AF +AF +AF +jQ +bV +wG +mb +mb +Kg +mb +mb +wG +bV +jQ +AF +AF +AF +iH +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(71,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +iH +AF +AF +AF +AF +jQ +Wj +uV +Ui +pa +yz +pa +Ui +uV +gS +jQ +AF +AF +AF +iH +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(72,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +iH +AF +AF +AF +AF +jQ +oz +yz +Ew +NW +yz +Ew +NW +yz +ag +jQ +AF +AF +AF +iH +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(73,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +Ic +lD +lD +lD +lD +lD +lD +lD +lD +lD +lD +lD +lD +lD +lD +lD +lD +Ic +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +iH +AF +AF +AF +AF +oL +RA +yz +Ew +NW +yz +Ew +NW +yz +Dm +oL +AF +AF +AF +iH +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(74,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +Ic +MD +tC +tC +tC +tC +tC +tC +tC +tC +tC +tC +tC +tC +tC +tC +iX +Ic +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +iH +AF +AF +AF +AF +oL +NW +yz +Ew +NW +yz +Ew +NW +yz +Dm +oL +AF +AF +AF +iH +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(75,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +Ic +pG +Pa +Vf +Vf +Vf +Xv +Vf +vQ +gE +Vf +Vf +Vf +Vf +Vf +dM +Gv +Ic +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +iH +AF +AF +AF +AF +oL +RA +yz +Ew +NW +yz +Ew +NW +yz +Dm +oL +AF +AF +AF +iH +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(76,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +Ic +pG +Ow +vc +vc +vc +vc +vc +Hw +dz +Cx +vc +vc +vc +vc +Dl +Gv +Ic +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +iH +AF +AF +AF +AF +jQ +oz +yz +Ew +NW +yz +Ew +NW +yz +ag +jQ +AF +AF +AF +iH +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(77,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +Ic +pG +Ow +vc +vc +vc +vc +vc +aR +tJ +UI +vc +DC +DC +vc +Dl +Gv +Ic +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +iH +AF +AF +AF +AF +jQ +Gg +yz +yz +yz +yz +yz +yz +yz +Jg +jQ +AF +AF +AF +iH +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(78,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +Ic +pG +Ow +vc +vc +DC +vc +vc +zS +Ns +vc +VE +vc +vc +vc +Dl +Gv +Ic +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +iH +AF +AF +AF +AF +jQ +al +vR +Zy +ov +yz +yz +PY +qm +va +jQ +AF +AF +AF +iH +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(79,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +Ic +pG +Ow +vc +vc +DC +vc +vc +Ob +Pb +vc +vc +vc +vc +yp +Dl +Gv +Ic +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +pO +AF +AF +AF +AF +jQ +jQ +AA +AA +wG +gg +Vm +wG +Oz +Oz +jQ +AF +AF +AF +pO +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(80,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +Ic +pG +uz +DC +vc +vc +vc +vc +ep +jZ +vc +DC +vc +vc +vc +Di +Gv +Ic +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +iH +AF +AF +AF +AF +jQ +Ne +mU +gX +mE +CG +CG +Oz +ze +OZ +jQ +AF +AF +AF +iH +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(81,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +Ic +pG +Ow +vc +vc +vc +vc +vc +Po +rD +vc +vc +vc +vc +vc +Dl +Gv +Ic +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +iH +AF +AF +AF +AF +jQ +Ox +Sp +dx +mE +CG +CG +Oz +nb +Ph +jQ +AF +AF +AF +iH +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(82,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +Ic +pG +Ow +vc +vc +vc +vc +vc +CL +BO +DC +vc +vc +vc +vc +Dl +Gv +Ic +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +iH +AF +AF +AF +AF +iC +mA +Sp +dx +jQ +lo +Jg +jQ +nU +OZ +xj +AF +AF +AF +iH +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(83,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +Ic +pG +Ow +vc +vc +vc +vc +vc +dn +on +vc +vc +yp +vc +DC +gO +Gv +Ic +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +iH +AF +AF +AF +AF +iC +Pn +Sp +Sp +Cw +CG +CG +uq +lM +OZ +xj +AF +AF +AF +iH +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(84,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +Ic +pG +Ow +vc +DC +vc +yp +vc +iz +VU +vc +vc +vc +vc +vc +Dl +Gv +Ic +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +iH +AF +AF +AF +AF +jQ +qH +Dp +Qd +jQ +Gg +Jg +jQ +gb +kX +jQ +AF +AF +AF +iH +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(85,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +Ic +pG +Ow +vc +vc +vc +vc +vc +Ee +tb +vc +DC +vc +vc +vc +Dl +Gv +Ic +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +iH +AF +AF +AF +AF +jQ +Sg +Xs +wG +wG +ID +No +jQ +FB +ya +jQ +AF +AF +AF +iH +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(86,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +Ic +pG +Ow +vc +vc +vc +DC +vc +Hw +tb +vc +vc +vc +vc +yp +Dl +Gv +Ic +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +iH +AF +AF +AF +AF +jQ +jQ +jQ +wG +CG +CG +Rx +jQ +jQ +jQ +jQ +AF +AF +AF +iH +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(87,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +Ic +pG +MP +Un +vc +vc +DC +Bn +CT +mS +Un +vc +vc +vc +Bn +cg +Gv +Ic +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +iH +AF +AF +AF +AF +Sw +Sw +jQ +jQ +CG +CG +CG +jQ +jQ +Sw +Sw +AF +AF +AF +iH +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(88,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +Ic +pG +BD +mS +ZH +lm +ZH +Nl +vc +vc +Nt +ZH +MM +ZH +CT +YK +Gv +Ic +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +iH +AF +AF +AF +AF +AF +AF +Sw +wG +BC +CD +jT +wG +Sw +AF +AF +AF +AF +AF +iH +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(89,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +Ic +DQ +xx +xx +xx +xx +xx +xx +vc +vc +xx +xx +xx +xx +xx +xx +ZV +Ic +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +iH +AF +AF +AF +AF +AF +AF +AF +AF +JB +JB +JB +AF +AF +AF +AF +AF +AF +AF +iH +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(90,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +vc +vc +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +LX +LX +LX +LX +LX +SW +SW +SW +LX +Ot +CO +CO +CO +CO +CO +CO +CO +CO +CO +CO +CO +CO +CO +CO +CO +CO +CO +CO +Ot +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(91,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +Ic +vc +vc +Ic +Ic +Ic +vc +vc +DC +vc +vc +vc +LX +eu +vc +Wk +vc +vc +vc +vc +tS +JR +JB +JB +JB +JB +JB +JB +JB +JB +JB +JB +JB +JB +JB +JB +JB +JB +JB +JB +iH +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(92,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +Ic +DC +vc +vc +vc +DC +vc +vc +vc +vc +vc +vc +QT +wi +wi +tp +wi +wi +wi +wi +wi +GJ +JB +JB +JB +JB +JB +JB +JB +JB +JB +JB +JB +JB +JB +JB +JB +JB +JB +JB +iH +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(93,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +Ic +yt +vc +vc +vc +vc +vc +yp +vc +vc +vc +vc +QT +wi +wi +QT +wi +wi +wi +wi +wi +GJ +JB +JB +JB +JB +JB +JB +MH +Zs +Dr +Yp +Zs +MH +JB +JB +JB +JB +JB +JB +iH +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(94,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +Ic +Ic +Ic +Ic +Ic +Ic +vc +vc +vc +vc +DC +vc +LX +vc +vc +Wk +vc +vc +vc +vc +vc +iH +On +tl +le +le +le +On +MH +Fn +aM +aM +Fn +MH +On +le +le +le +tl +On +iH +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(95,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +Ic +Ic +Ic +Ic +Ic +Ic +Ic +LX +HX +HX +LX +vc +vc +LX +HX +HX +iH +vN +vN +vN +vN +vN +vN +MH +Dr +Dr +Dr +Dr +MH +vN +vN +vN +vN +vN +vN +iH +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(96,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +LX +Fh +Fh +LX +tS +tS +LX +Fh +Fh +iH +BP +BP +BP +BP +BP +BP +MH +Dr +Dr +Dr +Dr +MH +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(97,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +LX +LX +LX +LX +LX +LX +LX +LX +LX +iH +BP +BP +BP +BP +BP +BP +MH +Dr +Dr +Dr +Dr +MH +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(98,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +MH +Dr +Dr +Dr +Dr +MH +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(99,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +MH +Dr +Dr +Dr +Dr +MH +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(100,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +UA +UA +UA +UA +UA +UA +UA +UA +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +MH +Dr +Dr +Dr +Dr +MH +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(101,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +UA +UA +UA +UA +UA +UA +UA +UA +xr +xr +xr +xr +xr +yK +UA +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +MH +Dr +Dr +Dr +Dr +MH +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(102,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +UA +rC +rC +Gm +Gm +UA +UA +UA +As +As +As +As +As +As +UA +UA +UA +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +MH +Dr +Dr +Dr +Dr +MH +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(103,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +UA +TG +TG +TG +qo +UA +ef +QF +Zk +Zk +Zk +Zk +Zk +Zk +XC +aL +UA +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +MH +GN +Dr +Dr +Dr +MH +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(104,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +UA +TG +TG +TG +wU +UA +ef +QF +Zk +bb +Zk +Zk +bb +Zk +XC +aL +UA +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +MH +Dr +Dr +Dr +Xj +MH +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(105,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +UA +TG +TG +TG +wU +UA +ef +QF +Zk +Zk +EX +Zk +Zk +Zk +XC +aL +UA +BP +ft +ft +ft +ft +ft +ft +ft +BP +BP +BP +ft +ft +ft +ft +ft +ft +ft +BP +BP +BP +BP +BP +BP +BP +MH +gq +Dr +Dr +Xj +MH +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(106,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +UA +TG +TG +TG +TG +UA +ef +QF +Zk +bb +Zk +Zk +bb +Zk +XC +aL +UA +Ic +ft +zR +fX +fX +fX +rd +ft +BP +BP +BP +ft +Ue +uG +Wn +me +sw +ft +BP +BP +BP +BP +BP +BP +BP +MH +pj +Dr +Dr +Xj +MH +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(107,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +UA +Gz +Gz +bk +TG +UA +ef +QF +Zk +Zk +Zk +Zk +Zk +Zk +XC +aL +UA +Ic +ft +Os +dw +dw +dw +ei +ft +BP +BP +BP +ft +Kd +dw +jB +Rv +vt +ft +BP +BP +BP +BP +BP +BP +BP +Zs +cq +Dr +Dr +Xj +WK +WK +WK +WK +WK +WK +WK +WK +WK +WK +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(108,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +UA +UA +UA +UA +AZ +UA +UA +UA +hM +hM +hM +hM +hM +hM +UA +UA +UA +Ic +ft +hp +dw +dw +YN +nX +ft +BP +BP +BP +ft +FH +dw +JZ +Ft +eV +ft +BP +BP +BP +BP +BP +BP +BP +Zs +Rn +Dr +Dr +Xj +nh +dj +lp +Iy +bu +WK +Em +pw +xE +WK +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(109,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +UA +WT +oV +oV +oV +Vu +IQ +Ec +Ec +Ec +Ec +Ec +Ec +IQ +UA +Ic +Ic +ft +Pu +dw +dw +dw +RS +ft +BP +BP +BP +ft +uF +dw +DA +Ft +uK +ft +BP +BP +BP +BP +BP +BP +BP +Zs +uR +Dr +Dr +Xj +Of +fD +RP +Bx +Xn +WK +HR +Bx +Lg +WK +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(110,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +UA +XJ +sz +oV +sz +Vu +Ec +Ec +Ec +Ec +Ec +Ec +Ec +Ec +UA +Ic +Ic +ft +Pu +dw +dw +dw +RS +ft +BP +BP +BP +ft +rR +za +GF +rr +lx +ft +BP +BP +BP +BP +BP +BP +BP +Zs +tn +Dr +Dr +Dr +Of +YO +yh +Bx +cD +WK +OO +Bx +dl +WK +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(111,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +UA +xN +sz +lJ +sz +Vu +Ec +Ec +Ec +Ec +Ec +Ec +Ec +Ec +UA +Ic +Ic +ft +sN +zx +dw +Vz +sM +ft +BP +BP +BP +ft +ft +ft +ft +yY +XF +ft +ft +ft +ft +ft +ft +ft +ft +ft +Dr +Dr +Dr +Dr +nh +dj +DF +gp +nc +nH +Bx +ri +Bx +WK +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(112,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +UA +XJ +sz +Be +sz +Vu +Ec +Ec +Ec +Ec +Ec +Ec +Ec +Ec +UA +Ic +Ic +ft +ft +Bj +HQ +Bj +Bj +ft +BP +BP +BP +ft +To +En +Oq +dw +rW +gW +ft +Bq +kR +aD +me +me +tz +ft +CF +CF +CF +Ih +WK +WK +WK +WK +WK +WK +WK +WK +nH +WK +Zs +Zs +Zs +Zs +Zs +Zs +Zs +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(113,1,1) = {" +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +UA +Lx +sz +lJ +sz +Vu +Ec +Ec +Ec +Ec +Ec +Ec +Ec +Ec +UA +Ic +Ic +ft +IS +SK +dw +Jz +lz +ft +ft +ft +ft +ft +GX +Ge +YH +dw +dw +qV +ft +rb +Ge +HO +dw +dw +lj +ft +mq +Dr +Dr +Dr +MH +Rh +Dr +Dr +sI +sI +sp +sI +Dr +Dr +sI +sI +sI +sI +BK +Sn +Zs +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(114,1,1) = {" +tT +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Zs +Zs +Zs +Zs +UA +oV +sz +oV +sz +Vu +Ec +Ec +Ec +Ec +Ec +Ec +Ec +Ec +UA +Ic +Ic +ft +VN +dw +dw +dw +IY +ft +Xg +gu +Ve +ft +Kh +dw +BG +dw +dw +IN +ft +oy +dw +if +dw +dw +lj +ft +Dr +Dr +Dr +Dr +MH +Rh +Dx +Ni +Ni +Ni +Ni +Ni +Ni +Ni +Ni +Ni +Ni +Ni +Ra +Dr +Zs +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(115,1,1) = {" +tT +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Zs +bg +Dr +Dr +UA +oV +oV +oV +oV +Vu +Ec +Ec +Ec +Ec +Ec +Ec +Ec +Ec +UA +Ic +Ic +ft +ZG +dw +dw +dw +dw +PW +dw +dw +dw +PW +dw +dw +dw +dw +dw +WX +Bj +rb +Ge +Gc +dw +dw +lj +Bj +Dr +Dr +Dr +Dr +MH +Rh +DX +od +od +od +od +od +Me +Me +od +od +od +od +TE +Dr +Zs +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(116,1,1) = {" +tT +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Zs +Dr +Dr +Dr +fr +oV +oV +oV +oV +Vu +Ec +Ec +Ec +sC +jA +Ec +Ec +Ec +UA +Ic +Ic +ft +NG +pr +eh +eh +Tz +ft +QS +PM +RE +ft +uo +Ft +dw +jB +Rv +wN +Bj +Vq +ap +cH +dw +dw +Jq +Bj +Dr +Dr +Dr +Dr +MH +GN +DX +od +ky +dg +dg +dg +dg +dg +dg +dg +ky +od +TE +Dr +Zs +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(117,1,1) = {" +tT +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Zs +Dr +Dr +Dr +WD +oV +oV +oV +oV +Vu +Ec +Ec +Ec +Ec +Ec +Ec +Ec +Ec +UA +Ic +Ic +ft +dv +IY +fS +Mm +AT +ft +ft +ft +ft +ft +Fe +Kn +dw +XV +Ft +dw +Wy +dw +dw +dw +dw +dw +dw +mi +Dr +Dr +Dr +Dr +FT +Dr +DX +od +dq +wE +wE +wE +wE +wE +wE +wE +dq +od +TE +Dr +Zs +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(118,1,1) = {" +tT +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Zs +Dr +Dr +Dr +WD +oV +sz +oV +sz +Vu +Ec +Ec +Ec +Ec +Ec +Ec +Ec +Ec +UA +Ic +Ic +ft +Lr +dw +dw +dw +dA +ft +AB +lK +gy +ft +Tk +Ft +dw +gQ +Ft +dw +vO +dw +dw +dw +dw +dw +dw +tI +Dr +Dr +Dr +Dr +qn +Dr +DX +Me +dq +wE +wE +wE +nr +jm +ox +wE +dq +Me +TE +Ro +Zs +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(119,1,1) = {" +tT +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Zs +GN +Dr +Dr +WD +Lx +sz +lJ +sz +Vu +Ec +Ec +Ec +Ec +Ec +Ec +Ec +Ec +UA +Ic +Ic +ft +yU +Tz +md +jo +WZ +ft +xW +ug +Kk +ft +Kb +Ft +dw +HH +rr +Yl +ft +Ae +dw +dw +dw +dw +BM +vS +Dr +Dr +Dr +Dr +MH +pN +DX +od +dq +wE +wE +wE +Zh +jm +wE +wE +dq +od +TE +Ro +Zs +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(120,1,1) = {" +tT +Ic +Ic +Ic +Ic +Ic +TB +TB +TB +TB +TB +TB +TB +TB +TB +TB +Ic +TB +TB +TB +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +Ic +Ic +Ic +Zs +Dr +Dr +Dr +UA +oV +sz +Be +sz +Vu +Ec +Ec +Ec +Ec +Ec +Ec +Ec +Ec +UA +Ic +Ic +ft +ft +ft +ft +ft +ft +ft +Qi +qG +Jq +ft +ge +Ft +dw +dw +dw +ZA +ft +rb +dw +dw +dw +dw +eV +ft +ia +Dr +Dr +Dr +MH +pz +DX +od +dq +wE +wE +wE +RY +jm +wE +ox +dq +od +TE +Ro +Zs +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(121,1,1) = {" +tT +Ic +Ic +Ic +Ic +Ic +TB +TB +TB +TB +TB +TB +TB +TB +TB +TB +TB +TB +TB +TB +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +cf +OR +OR +OR +OR +OR +OR +OR +OR +OR +OR +OR +OR +aG +Ic +Ic +Ic +Zs +Dr +Dr +Dr +UA +Lx +sz +lJ +sz +Vu +Ec +Ec +Ec +Ec +Ec +Ec +Ec +Ec +UA +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +ft +Zx +jr +dw +dw +dw +Sz +Nn +JJ +Oa +qf +ft +sT +gl +Ki +lw +qx +QM +ft +Dr +Dr +Dr +Dr +FT +Dr +DX +Me +dq +wE +dg +wE +ot +jm +wE +wE +dq +Me +TE +Ro +Zs +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(122,1,1) = {" +tT +Ic +Ic +Ic +Ic +Ic +TB +TB +TB +TB +TB +TB +TB +TB +TB +TB +Ic +TB +TB +TB +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +cf +OR +OR +fF +hS +hS +hS +hS +hS +fF +OR +OR +OR +aG +Ic +Ic +Ic +Zs +Dr +Dr +Dr +UA +oV +oV +oV +sz +Vu +Ec +Ec +Ec +Ec +Ec +Ec +Ec +Ec +UA +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +ft +ft +ZC +ft +Qq +Qq +Qq +Qq +Qq +Qq +Qq +Qq +Qq +Qq +Qq +Qq +Qq +Qq +Qq +pb +Dr +Dr +Dr +qn +Dr +DX +od +dq +wE +wE +wE +wE +wE +wE +wE +dq +od +TE +Dr +Zs +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(123,1,1) = {" +tT +Ic +Ic +Ic +Ic +Ic +TB +TB +TB +TB +TB +TB +TB +TB +TB +TB +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +cf +OR +OR +fF +jt +qq +qq +Ja +Pd +fF +OR +OR +OR +aG +Ic +Ic +Ic +Zs +Dr +Dr +Dr +UA +HT +ko +oV +oV +Vu +IQ +Ec +Ec +Ec +Ec +Ec +Ec +IQ +UA +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +ft +UJ +wY +WP +Qq +ui +UB +RF +sR +ih +JG +Qq +JM +Sh +Sh +Sh +Sh +Cb +HN +Dr +Dr +Dr +Dr +MH +GN +DX +od +ky +dg +dg +dg +dg +dg +dg +dg +ky +od +TE +Dr +Zs +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(124,1,1) = {" +tT +Ic +Ic +Ic +Ic +Ic +TB +TB +TB +TB +TB +TB +TB +TB +TB +TB +Ic +TB +TB +TB +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +cf +OR +OR +fF +jH +rO +zO +Jl +Pm +fF +OR +OR +OR +aG +Ic +Ic +Ic +Zs +Dr +Dr +Dr +UA +UA +UA +Au +UA +UA +UA +hM +hM +hM +hM +hM +hM +UA +UA +UA +Ic +Ic +Ic +Ic +Ic +Ic +Ic +ft +cv +CH +ux +Qq +Vn +hx +sm +sm +PO +kq +Qq +lX +sm +sm +sm +sm +km +HN +Dr +Dr +Dr +Dr +MH +Rh +DX +od +od +od +od +od +Me +Me +od +od +od +od +TE +Dr +Zs +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(125,1,1) = {" +tT +Ic +Ic +Ic +Ic +Ic +TB +TB +TB +TB +TB +TB +TB +TB +TB +TB +TB +TB +TB +TB +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +cf +OR +dY +fF +jO +ss +CB +KC +QA +fF +dY +OR +OR +aG +Ic +Ic +Ic +Zs +Dr +Dr +Dr +UA +rq +UY +UY +UA +zA +QF +fO +fO +fO +fO +fO +fO +XC +AL +UA +Ic +WK +WK +WK +WK +WK +WK +ft +EQ +ct +Rr +Qq +di +sm +sm +sm +sm +kY +Qq +XT +sm +sm +sm +sm +sm +HN +Dr +Dr +Dr +Dr +MH +Rh +xU +jI +jI +jI +jI +jI +jI +jI +jI +jI +jI +jI +ns +Dr +Zs +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(126,1,1) = {" +Ic +Ic +Ic +Ic +Ic +Ic +TB +TB +TB +TB +TB +TB +TB +TB +TB +TB +Ic +TB +TB +TB +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +cf +OR +ez +gt +kW +st +gt +fF +fF +gt +ez +OR +OR +aG +Ic +Ic +Ic +Zs +Dr +Dr +Dr +UA +qu +UY +UY +UA +zA +QF +fO +NV +fO +fO +NV +fO +XC +AL +UA +Ic +WK +HU +Fu +eB +BU +WK +ft +cv +CH +JU +Qq +qv +sm +sm +sm +sm +sm +cb +sm +sm +sm +sm +sm +sm +Tc +Dr +Dr +Dr +Dr +MH +Rh +Dr +Dr +kP +kP +kP +kP +Dr +Dr +kP +kP +kP +kP +Dr +Sn +Zs +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(127,1,1) = {" +Ic +Ic +Ic +Ic +Ic +Ic +TB +TB +TB +TB +TB +TB +TB +TB +TB +TB +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +cf +OR +eZ +gK +lF +sQ +CC +KN +QD +RL +eZ +OR +OR +aG +Ic +Ic +Ic +Zs +Dr +Dr +Dr +UA +lG +UY +UY +UA +zA +QF +fO +fO +ay +fO +fO +fO +XC +AL +UA +Ic +WK +WK +WK +eB +kv +WK +ft +cv +CH +FY +Qq +rJ +YU +sm +sm +sm +sm +Ua +sm +sm +sm +sm +sm +sm +Ua +Dr +Dr +Dr +Dr +Sc +Sc +Sc +Sc +rp +rp +rp +rp +Sc +Sc +rp +rp +rp +DZ +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(128,1,1) = {" +Ic +Ic +Ic +Ic +Ic +Ic +TB +TB +TB +TB +TB +TB +TB +TB +TB +TB +TB +TB +TB +TB +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +cf +OR +eZ +hF +lF +tZ +DV +KO +QZ +TI +eZ +OR +WW +aG +Ic +Ic +Ic +Zs +Dr +Dr +Dr +UA +UY +UY +UY +UA +zA +QF +fO +NV +fO +fO +NV +fO +XC +AL +UA +Ic +WK +WK +WK +eB +BU +WK +ft +fz +zP +yd +Qq +cJ +sm +ex +Da +sm +my +Qq +ls +Vr +SJ +sm +sm +sm +HN +Dr +Dr +Dr +Dr +Ro +Sc +Ml +mh +mh +mh +mh +mh +mh +uk +mh +mh +mh +iN +iP +nA +mg +fh +LW +fA +ws +fh +jp +MJ +fh +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(129,1,1) = {" +Ic +Ic +Ic +Ic +Ic +Ic +TB +TB +TB +TB +TB +TB +TB +TB +TB +TB +TB +TB +TB +TB +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +cf +OR +eZ +ez +nm +uE +DV +Lw +Lw +DV +ez +OR +OR +aG +Ic +Ic +Ic +Zs +Dr +Dr +Dr +UA +Wp +UY +UY +UA +zA +QF +fO +fO +fO +fO +fO +fO +XC +AL +UA +Ic +WK +pM +HU +eB +BU +WK +ft +ft +ft +ft +Qq +fu +iM +fL +hi +sm +hA +Qq +no +hx +jS +sm +sm +sm +gY +Dr +Dr +Dr +Dr +PQ +Sc +og +mh +pS +pS +mh +mh +mh +pS +pS +mh +mh +iN +jK +nA +nn +fh +wL +yc +yc +Op +yB +yB +fh +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(130,1,1) = {" +Ic +Ic +Ic +Ic +Ic +Ic +TB +TB +TB +TB +TB +TB +TB +TB +TB +TB +TB +TB +TB +TB +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +cf +OR +eZ +eZ +lF +tZ +EH +Mb +Rf +eZ +VY +OR +OR +aG +Ic +Ic +Ic +Zs +GN +Dr +Dr +UA +UY +UY +UY +UA +UA +UA +As +As +As +As +As +As +UA +UA +UA +Ic +WK +WK +WK +WK +WK +WK +Zs +bg +Dr +bg +Qq +yo +iM +wf +hd +sm +sm +Yy +sm +PO +jS +sm +sm +sm +HN +GN +Dr +Dr +Dr +Ro +Sc +yC +Mt +SA +nl +rs +mh +Mt +gs +lv +rs +mh +iN +QE +nA +qR +fh +mH +yc +BJ +fh +jy +hU +fh +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(131,1,1) = {" +Ic +Ic +Ic +Ic +Ic +Ic +TB +TB +TB +TB +TB +TB +TB +TB +TB +TB +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +cf +OR +ez +eZ +oa +uJ +ET +Mg +Rg +eZ +ez +OR +OR +aG +Ic +Ic +Ic +Zs +Dr +Dr +Dr +UA +UY +UY +UY +UY +UY +UA +Ii +Ii +Ii +Ii +Ii +yK +UA +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Zs +Dr +Dr +Dr +Qq +pp +iM +FC +ek +sm +my +Qq +HY +vL +jS +sm +sm +sm +gY +Dr +Dr +Dr +Dr +Sc +Sc +pT +Mt +Qk +Wv +rs +mh +Mt +SY +mI +rs +mh +iN +bh +nA +aQ +fh +cz +yc +CI +fh +fh +fh +fh +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(132,1,1) = {" +Ic +Ic +Ic +Ic +Ic +Ic +TB +TB +TB +TB +TB +TB +TB +TB +TB +TB +TB +TB +TB +TB +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +cf +OR +fC +eZ +oB +ve +EY +Mg +Rg +eZ +fC +OR +OR +aG +Ic +Ic +Zs +Zs +Dr +Dr +Dr +Zs +Zs +Zs +Zs +Zs +Zs +Zs +Zs +Zs +Zs +Zs +Zs +Zs +Zs +Zs +Zs +Zs +Zs +Zs +Zs +Zs +Zs +Zs +QH +Dr +Dr +Dr +Qq +YB +sm +fg +Aq +sm +hA +Qq +lf +mM +nt +sm +sm +sm +HN +Dr +Dr +Dr +Dr +Sc +gf +mh +mh +aI +aI +mh +mh +mh +aI +aI +mh +mh +iN +KY +nA +lC +fh +fs +yc +da +fh +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(133,1,1) = {" +Ic +Ic +Ic +Ic +Ic +Ic +TB +TB +TB +TB +TB +TB +TB +TB +TB +TB +TB +TB +TB +TB +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +cf +OR +OR +eZ +pt +wP +FN +Mg +Rk +eZ +OR +OR +OR +aG +Ic +Ic +Zs +bg +Dr +Dr +Dr +Dr +BK +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +BK +Dr +Dr +Dr +CE +Dr +Dr +Dr +Qq +rJ +YU +sm +sm +sm +sm +cb +sm +sm +sm +sm +sm +sm +Tc +Dr +Dr +Dr +Dr +rp +RH +mh +mh +mh +mh +mh +mh +mh +mh +mh +mh +mh +iN +ho +nA +nA +Ch +yc +yc +sc +fh +Ic +Ic +Ic +Ic +Ic +Ic +sV +sV +sV +sV +sV +vI +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(134,1,1) = {" +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +cf +OR +OR +ez +eZ +ez +GB +ez +eZ +ez +OR +OR +OR +aG +Ic +Ic +Zs +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +CE +Dr +Dr +wH +Qq +Fw +sm +sm +sm +sm +sm +Ua +sm +sm +sm +sm +sm +sm +Ua +Dr +Dr +Dr +Dr +rp +JC +mh +mh +pS +pS +mh +mh +mh +mh +mh +mh +mh +mh +mh +mh +Sc +fh +fh +fh +fh +fh +Ic +Ic +Ic +Ic +Ic +Ic +sV +mu +zH +WI +Qv +vI +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(135,1,1) = {" +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +cf +OR +OR +fC +eZ +wQ +HI +MS +eZ +fC +OR +OR +OR +aG +Ic +Ic +Zs +bg +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +CE +Dr +Dr +Dr +Qq +XY +sm +sm +sm +sm +zc +Qq +rt +sm +sm +sm +sm +sm +HN +Dr +Dr +Dr +Dr +qM +mh +mh +Mt +Hf +gm +rs +mh +mh +mh +mh +mh +mh +mh +mh +np +Sc +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +sV +sV +sV +qE +WI +vI +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(136,1,1) = {" +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +cf +OR +OR +OR +eZ +zi +lF +Nd +eZ +OR +OR +OR +OR +aG +Ic +Ic +xa +xa +kk +kk +xa +es +es +es +es +es +es +lR +lR +es +sB +sB +es +lR +lR +es +lR +lR +es +es +es +es +es +es +Qu +qn +qn +qn +Qq +Vn +vL +sm +sm +vL +pB +Qq +xB +sm +sm +sm +sm +hV +HN +Dr +Dr +Dr +Dr +Sc +mh +mh +Mt +xh +Va +rs +mh +mh +mh +mh +mh +mh +mh +mh +Uu +Sc +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +sV +mu +kb +WI +WI +vI +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(137,1,1) = {" +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +cf +OR +OR +OR +pW +ez +Ig +ez +pW +OR +OR +OR +OR +aG +aG +aG +aG +xa +eQ +eQ +es +UF +xS +Jx +es +Tm +Ld +Ld +MN +Ld +Ld +Ld +Ld +Ld +MN +Ld +Ld +Ld +Ld +Tm +lR +sF +MN +uC +es +Dr +Dr +Dr +Qq +Pw +ZQ +sm +sm +oA +xb +Qq +JM +fe +aJ +fe +fe +wJ +HN +Dr +Dr +Dr +Dr +rp +og +mh +mh +aI +aI +mh +mh +mh +mh +mh +mh +mh +mh +mh +TJ +Sc +Ic +Ic +Ic +Ic +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +Tq +vI +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(138,1,1) = {" +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +cf +OR +OR +OR +OR +OR +IT +OJ +OJ +OJ +OJ +OJ +OJ +Xf +Yo +Yo +YL +xa +eQ +eQ +es +ff +QC +cC +Ix +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +lR +He +Ld +Sd +es +Dr +Dr +Dr +Qq +Qq +Qq +sm +ac +Qq +Qq +sV +sV +sV +sV +sV +sV +sV +sV +tn +Dr +Dr +Dr +rp +Ml +mh +mh +mh +mh +mh +mh +mh +mh +mh +mh +mh +mh +mh +sx +Sc +WK +WK +WK +WK +ga +pY +ga +pY +ga +pY +ga +pY +ga +pY +ga +WI +vI +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(139,1,1) = {" +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +cf +OR +OR +OR +OR +OR +OR +OR +OR +OR +OR +OR +OR +aG +YJ +YJ +Ze +xa +eQ +eQ +es +es +es +es +es +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +xv +Ld +Ld +hE +es +Dr +Dr +Dr +Qq +IC +jw +jw +jw +jw +KW +sV +uA +uA +uA +uA +uA +KK +sV +Ay +Dr +Dr +Dr +Sc +Sc +Sc +Sc +rp +rp +rp +Sc +Sc +Mp +qd +un +rp +rp +Sc +Sc +Sc +UW +QU +Xd +UW +ga +yL +ga +yL +ga +yL +ga +yL +ga +yL +ga +WI +vI +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(140,1,1) = {" +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +aG +aG +aG +aG +aG +aG +aG +aG +aG +Vy +Wt +Vy +aG +aG +aG +aG +aG +xa +eQ +eQ +es +UF +xS +zd +Ix +Ld +Ld +Ld +es +es +lR +lR +xv +lR +lR +es +es +Ld +Ld +Ld +lR +EL +Ld +cG +es +Dr +Dr +Dr +Qq +jw +Jj +Ip +Ip +At +jw +sV +MR +xL +xL +xL +xL +xL +sV +Dr +Dr +Dr +Dr +qn +vy +Dr +Dr +Dr +Dr +Dr +BK +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Yz +Xd +Uw +Uw +Xd +rF +XH +XH +XH +XH +XH +XH +XH +XH +fP +Jw +WI +vI +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(141,1,1) = {" +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +xa +Nf +Nf +Nf +xa +Ic +Ic +Ic +Ic +xa +eQ +eQ +es +ff +QC +lh +es +Ld +Ld +Ld +lR +DS +Ld +Ld +Ld +XD +kA +Il +es +Ld +Ld +Ld +lR +ly +Ld +hZ +es +Dr +Dr +Dr +Qq +jw +Ly +Fo +pH +ma +jw +sV +ZL +ZL +ZL +xL +xL +xL +OU +Dr +Dr +Dr +Dr +qn +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Yz +Xd +Uw +Uw +Xd +rF +MI +MI +MI +MI +MI +MI +MI +MI +bj +ga +sV +vI +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(142,1,1) = {" +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +xa +xa +xa +xa +xa +xa +Nf +Nf +Nf +xa +xa +xa +xa +xa +eI +eQ +eQ +es +es +es +es +es +Ld +Ld +Ld +lR +Ou +Ou +Ld +Ld +Ld +Dh +Dh +es +Ld +Ld +Ld +es +es +es +es +es +Dr +Dr +Dr +Qq +tU +Ly +SM +sW +ma +jw +sV +wv +wv +xL +xL +go +Qa +sV +Dr +Dr +Dr +Dr +qn +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Yz +Xd +Uw +Uw +Xd +rF +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +jM +DJ +WI +vI +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(143,1,1) = {" +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +xa +gZ +jJ +mD +ev +eI +Nf +Nf +Nf +Nf +Nf +Nf +Nf +Nf +Ia +eQ +eQ +es +UF +xS +zd +Ix +Ld +Ld +Ld +lR +ZZ +IP +Ld +Ld +Ld +Ld +Ld +es +Ld +Ld +Ld +lR +Ld +MN +Od +es +Dr +Dr +Dr +Qq +jw +Ly +XZ +Fo +ma +jw +sV +sV +sV +PT +PT +sV +sV +sV +Dr +Dr +Dr +Dr +sV +sV +sV +sV +sV +sV +Oj +sV +sV +Sc +qd +un +rp +rp +Sc +Sc +WK +vm +vm +vm +vm +WK +yL +ga +yL +ga +yL +ga +yL +ga +yL +ga +WI +vI +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(144,1,1) = {" +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +xa +Nf +Nf +Nf +Nf +Nh +Nf +Nf +Nf +Nf +Nf +Nf +Nf +Nf +Ia +eQ +eQ +es +ff +QC +lh +es +Ld +Ld +Ld +lR +XX +xk +Ld +Ld +Ld +Ld +yi +es +ht +Ld +Ld +xv +Ld +Ld +Az +es +Dr +Dr +Dr +Qq +Gx +Ly +gG +jf +ma +jw +sV +oi +Yn +Yn +Yn +Yn +eN +sV +GN +Dr +Dr +Dr +sV +FE +mJ +mJ +gF +Ba +iE +lT +sV +Ml +mh +mh +mh +mh +mh +Ml +WK +UW +Uw +Uw +UW +WK +pY +ga +pY +ga +pY +ga +pY +ga +pY +ga +WI +vI +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(145,1,1) = {" +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +xa +xa +xa +xa +xa +xa +Nf +Nf +Nf +xa +xa +xa +xa +xa +xa +bz +bz +es +es +es +es +es +ht +Ld +Ld +lR +Dh +Dh +Ld +eq +CN +Ld +Ld +es +Ld +Ld +Ld +lR +Ld +Ld +OA +es +Dr +Dr +Dr +Qq +cF +bJ +tw +tw +Er +nv +sV +Mh +Yn +Yn +Yn +sq +Yn +sV +Dr +Dr +Dr +Dr +sV +ou +iE +iE +iE +iE +iE +wK +sV +Bi +mh +mh +Mt +Jf +Jf +rs +WK +dj +MO +sO +dj +WK +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +Tq +vI +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(146,1,1) = {" +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +xa +It +sD +cX +bi +xa +xK +Nf +cc +xa +dQ +fI +AG +Jd +es +es +es +es +UF +xS +zd +Ix +Ld +Ld +Ld +lR +My +Ld +Ld +iv +CN +Ld +QP +es +Ld +Ld +Ld +es +es +es +es +Qu +Dr +Dr +Dr +Qq +Mq +bJ +kh +kh +Er +Mi +sV +VH +Yn +Yn +Yn +Yn +dV +sV +Hu +Dr +Dr +Dr +Oj +iE +iE +iE +iE +iE +iE +iE +Oj +mh +mh +mh +Mt +Jf +Jf +rs +WK +SC +hj +Gk +Db +WK +Ic +Ic +Ic +Ic +Ic +Ic +sV +mu +kb +WI +WI +vI +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(147,1,1) = {" +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +xa +xJ +Nf +Nf +Nf +kZ +Nf +Nf +Nf +hk +Nf +Nf +Nf +KV +es +xG +xG +es +ff +QC +lh +es +Ld +Ld +Ld +es +yl +EA +Ld +oZ +Vd +Ld +Ld +lR +Ld +Ld +Ld +Fp +Ld +Tm +lR +Tm +Dr +Dr +Dr +Qq +cF +bJ +Mr +Mr +Er +aY +sV +Mh +Yn +Yn +Yn +sq +Yn +sV +Dr +Dr +Dr +Dr +sV +iE +Uk +iE +Uk +iE +Uk +iE +sV +LC +mh +mh +mh +mh +mh +mh +WK +rH +Bx +Bx +wX +WK +Ic +Ic +Ic +Ic +Ic +Ic +sV +sV +sV +Df +WI +vI +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(148,1,1) = {" +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +xa +RX +Nf +jg +rB +kZ +Nf +Nf +Nf +hk +Gw +Ed +Nf +zB +es +oN +oN +es +es +es +es +es +Ld +Ld +Ld +Qu +dp +zw +Ld +Ld +Ld +Ld +Ld +xv +Ld +Ld +Ld +xv +Ld +Ld +it +Ld +Dr +Dr +Dr +Qq +Gx +Ly +Fo +rA +ma +jw +sV +oi +Yn +Yn +Yn +Yn +rZ +sV +Dr +Dr +Dr +Dr +sV +gn +sV +sS +sV +Ij +sV +Lj +sV +yv +mh +mh +mh +mh +mh +mh +WK +qL +YS +dh +cu +WK +Ic +Ic +Ic +Ic +Ic +Ic +sV +mu +zH +WI +om +vI +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(149,1,1) = {" +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +xa +qj +Nf +Qz +Cv +kZ +Nf +Nf +Nf +hk +Nf +Nf +Nf +YX +es +oN +oN +es +UF +xS +zd +Ix +Ld +Ld +Ld +es +BF +mo +xZ +Ld +Ld +Ld +Tm +lR +Ld +Ld +Ld +tk +ht +Tm +lR +Tm +Dr +Dr +Dr +Qq +jw +Ly +oW +gG +ma +jw +sV +sV +sV +ja +ja +sV +sV +sV +Dr +Dr +Dr +Dr +sV +ib +sV +ib +sV +ib +sV +eJ +sV +Hv +mh +mh +Mt +Jf +Jf +rs +WK +nH +WK +WK +WK +WK +Ic +Ic +Ic +Ic +Ic +Ic +sV +sV +sV +sV +sV +vI +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(150,1,1) = {" +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +xa +Gr +Nf +OM +Yi +kZ +Nf +Nf +Nf +hk +Ym +Aj +Jb +Sr +es +oN +oN +es +ff +QC +lh +es +Ld +Ld +Ld +es +lR +lR +lR +lR +lR +lR +lR +es +Ld +Ld +Ld +es +xv +lR +es +Qu +Dr +Dr +Dr +Qq +tU +Ly +DK +Kx +ma +jw +sV +KR +FZ +Yn +Yn +Qw +qg +sV +Dr +Dr +Dr +Dr +sV +sV +sV +sV +sV +sV +sV +sV +sV +pT +mh +mh +Mt +Jf +Jf +rs +WK +az +WM +KQ +Ev +WK +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(151,1,1) = {" +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +xa +uZ +Nf +Hr +jv +kZ +Nf +Nf +Nf +hk +OH +Vj +hh +Iw +es +yF +Rl +es +es +es +es +es +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +es +Ld +QP +oY +lR +Dr +Dr +Dr +Qq +jw +Ly +zv +AM +ma +jw +sV +KR +FZ +Yn +Yn +Qw +qg +sV +Dr +Dr +Dr +Dr +rp +NY +Sv +So +WQ +xR +Ca +Ca +WS +mh +mh +mh +mh +mh +mh +mh +WK +hW +Bx +Bx +EZ +WK +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(152,1,1) = {" +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +xa +Sj +Nf +wo +zC +kZ +Nf +Nf +Nf +hk +vi +id +If +If +es +Ke +rL +oF +UF +xS +zd +Ix +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +xv +Ld +PC +gc +lR +Dr +Dr +Dr +Qq +jw +Ez +FK +FK +du +jw +sV +KR +FZ +Yn +Yn +Qw +qg +sV +Dr +Dr +Dr +Dr +rp +FI +IL +Dz +Dz +hK +hK +hK +KP +mh +mh +mh +mh +mh +mh +RH +WK +Qc +Bx +Bx +TX +WK +WK +WK +WK +WK +WK +WK +WK +WK +WK +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(153,1,1) = {" +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +xa +yq +Nf +Nf +Nf +kZ +Nf +Nf +Nf +hk +gv +KB +Sl +Sl +es +AP +BT +es +YI +QC +lh +es +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Tm +es +vW +wc +es +es +Dr +Dr +Dr +Qq +KW +jw +jw +jw +jw +wa +sV +KR +FZ +Nm +Nm +Qw +qg +sV +Dr +Dr +Dr +Dr +rp +bn +qr +bK +bK +bK +bK +bK +nf +mh +mh +mh +mh +mh +mh +np +WK +Bx +YS +JN +Ib +WK +ew +Bx +Bx +Bx +Bx +Bx +Bx +Bx +WK +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(154,1,1) = {" +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +xa +mT +Dy +mW +hD +xa +xK +Nf +cc +xa +BS +KB +QX +QX +es +fl +oN +es +es +es +es +es +Ld +Ld +Ld +ZN +Xh +Xh +Xh +JE +WK +WK +WK +WK +WK +WK +WK +WK +WK +WK +WK +WK +qn +qn +qn +Qq +Qq +Qq +Qq +Qq +Qq +Qq +sV +sV +sV +sV +sV +sV +sV +sV +qn +qn +qn +qn +Sc +rp +rp +rp +Sc +Sc +Sc +rp +rp +rp +Sc +MG +Sc +rp +rp +rp +WK +nH +WK +WK +WK +WK +nH +WK +WK +WK +WK +WK +WK +nH +WK +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(155,1,1) = {" +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +xa +xa +xa +xa +xa +xa +xa +Nf +Nf +Nf +xa +xa +xa +xa +xa +es +JF +oN +oN +oN +oN +xY +es +Ld +Ld +Ld +es +oN +oN +ds +WK +Kq +LY +cW +LY +aP +WK +cn +cn +Fb +Fb +Fb +WK +Dr +Dr +Dr +qn +Dr +BK +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +BK +Dr +Dr +qn +Dr +Dr +Dr +Dr +qn +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +BK +Dr +Dr +Dr +Dr +Dr +Dr +Xj +Xj +Xj +dj +lp +vz +Bx +WK +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(156,1,1) = {" +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +xa +fQ +Nf +Lh +Nf +Lt +xa +Nf +Nf +Nf +xa +ue +Bw +PV +Vw +es +JF +zk +oN +oN +pe +xY +es +ht +Ld +Ld +es +oN +oN +oN +WK +JW +Bx +qb +Bx +ke +WK +Bx +Bx +Bx +Bx +Bx +WK +Dr +Dr +Dr +qn +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +qn +Dr +Dr +Dr +Dr +qn +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Xj +IA +lt +Bx +Te +WK +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(157,1,1) = {" +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +xa +Mz +Nf +Nf +Nf +DN +xa +Eg +Nf +Nf +xa +Nf +Nf +Nf +qI +es +es +es +es +es +es +es +es +Ld +Ld +Ld +es +mN +oN +Ea +WK +kI +kI +kI +kI +kI +WK +ed +yy +Bx +Gd +wm +WK +bg +Dr +Dr +qn +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +qn +Dr +Dr +Dr +Dr +qn +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +Dr +AQ +dj +Oi +fZ +Bx +WK +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(158,1,1) = {" +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +xa +UH +Nf +Nf +Nf +Nf +Oc +Nf +Nf +Nf +Wd +Nf +Nf +Nf +St +es +zu +Gs +Gs +Gs +Gs +Gs +lR +Ld +Ld +Ld +es +oN +oN +oN +ny +Bx +Bx +Bx +Bx +zt +WK +WK +DU +vU +DU +WK +WK +WK +WK +WK +WK +WK +WK +WK +WK +WK +WK +wp +pA +pA +wp +dj +dj +dj +WK +Eh +qn +qn +qn +WK +WK +WK +WK +WK +WK +zm +Et +WK +wp +Xd +Ma +wp +WK +WK +WK +WK +WK +WK +ga +ga +LB +LB +LB +ga +ga +Qq +Qq +Qq +jq +Qq +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(159,1,1) = {" +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +xa +au +Nf +Qs +xw +Nf +Oc +Nf +Nf +Nf +Wd +Nf +Nf +Nf +IG +es +UP +UP +Gs +UP +UP +Gs +lR +Ld +Ld +Ld +es +Tm +oN +oN +ny +Bx +Bx +ts +Bx +Bx +WK +JW +dF +Bx +AD +SI +nD +Dg +Dg +Dg +WK +rg +YP +Mx +YP +GC +aS +WK +TD +Zb +WK +rx +Ac +hw +dj +Dr +Dr +Dr +Dr +WK +CJ +EO +vw +hC +WK +el +tr +WK +so +Xd +Xd +GW +WK +Hd +SZ +MZ +Xa +WK +AQ +TW +TW +TW +TW +TW +AQ +ga +Ye +FF +sm +Qq +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(160,1,1) = {" +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +xa +sH +Nf +dH +XA +Nf +Oc +Nf +Nf +Nf +DI +zg +Nf +Nf +Rp +es +XU +Cc +Gs +Cc +Cc +Gs +lR +Ld +Ld +Ld +es +es +Qu +es +WK +pc +Bx +Hg +Bx +Bx +WK +SQ +Bx +Bx +Bx +Bx +Bx +Bx +Bx +Bx +WK +dS +YP +bO +Hy +YP +bv +WK +LS +iR +WK +rv +ir +nO +dj +Dr +Dr +Dr +Dr +WK +cT +AW +Bx +gI +WK +wj +cD +si +NR +Xd +Xd +qF +WK +FQ +Xd +Xd +Xd +WK +fw +MI +MI +MI +MI +MI +mj +HN +SD +sm +Zl +Qq +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(161,1,1) = {" +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +xa +aw +Nf +IZ +ea +Nf +Oc +Nf +Nf +Nf +lB +NQ +Nf +Nf +CW +es +Rs +Cc +Gs +Rs +xi +Gs +Ld +Ld +Ld +Ld +es +Qy +gh +IO +WK +pi +Bx +Bx +Bx +Bx +gN +Bx +Bx +sP +sP +sP +sP +sP +sP +Bx +WK +AI +AI +AI +PB +YP +II +WK +LS +Xd +zb +Xd +Xd +mR +dj +GN +Dr +Dr +Dr +WK +cT +AW +Bx +Bx +NA +Bx +Bx +Tf +Xd +Xd +Xd +Xd +dI +Xd +Xd +Xd +Xd +WK +YG +MI +gH +MI +gH +MI +mj +HN +Th +Up +ju +Qq +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(162,1,1) = {" +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +xa +XS +Nf +nV +Bb +Nf +Oc +Nf +Nf +Nf +kS +qQ +Nf +Nf +wr +es +Jn +UP +Gs +UP +UP +Gs +Ld +Ld +Ld +Ld +es +EJ +qp +ME +WK +zV +Bx +Bx +Bx +Bx +gN +Bx +Bx +sP +sP +sP +sP +sP +sP +Bx +WK +dS +YP +bO +Wu +YP +vK +WK +Ap +CX +WK +EN +Xd +PA +dj +Dr +Dr +Dr +Dr +WK +cT +AW +Bx +TK +WK +hW +Tt +si +wB +tB +tB +yw +WK +tR +Xd +Xd +Xd +WK +Gi +MI +gH +MI +gH +MI +mj +HN +ax +Sm +ju +Qq +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(163,1,1) = {" +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +xa +jl +Nf +VI +uW +Nf +Oc +Nf +Nf +Nf +vv +Zf +Nf +Nf +ki +es +vG +Gs +Gs +Gs +Gs +Gs +Ld +Ld +Ld +Ld +nJ +qp +qp +Ny +WK +Xp +Bx +Tg +Bx +Bx +WK +Lu +Bx +Bx +Bx +Bx +Bx +Bx +Bx +Bx +WK +gL +YP +KJ +YP +YP +bP +WK +LS +WV +WK +rc +sg +gJ +dj +Dr +Dr +Dr +Dr +WK +KH +gj +Bx +OF +WK +pk +Xn +WK +By +Rw +uv +YF +WK +WK +WK +WK +dI +WK +YG +MI +gH +MI +gH +MI +mj +HN +dk +Up +ju +Qq +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(164,1,1) = {" +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +xa +VV +Nf +UT +YA +Nf +Oc +Nf +Nf +Nf +Wd +Nf +Nf +Nf +Yd +es +Lq +Gs +Gs +Gs +Gs +Gs +lR +Ld +Ld +Ld +nJ +qp +qp +xX +WK +Bx +Bx +rV +Bx +Rc +WK +Om +dT +Bx +YE +Zd +VD +rw +Wr +yZ +WK +AI +AI +AI +cN +YP +Bz +si +CS +WV +WK +dj +mQ +dj +wp +Fr +JV +JV +Yh +wp +WK +WK +ca +LK +WK +VW +cD +WK +jF +LL +LL +VQ +WK +Cn +dj +YV +Xd +WK +fw +MI +MI +MI +MI +MI +mj +HN +xM +sm +ju +Qq +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(165,1,1) = {" +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +xa +fK +Nf +Nf +Nf +Nf +Oc +Nf +Nf +Nf +Wd +Nf +Nf +Nf +cP +es +oE +Gs +Gs +ik +Gs +Gs +lR +Ld +Ld +Ld +nJ +qp +qp +sA +WK +Ej +Bx +Gy +Bx +Rc +WK +WK +WK +gN +JE +WK +WK +WK +XQ +kg +WK +dS +YP +bO +Wu +YP +YP +cA +Xd +iR +WK +nh +Uw +Uw +Uw +Ss +Dr +Dr +Rj +vV +Xd +WK +Md +ee +WK +VW +Bx +nH +Bx +XO +Cq +Bx +mz +Bx +dj +Jo +Xd +WK +AQ +TW +TW +TW +TW +TW +AQ +HN +HZ +sm +Wg +Qq +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(166,1,1) = {" +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +xa +Nq +Nf +Nf +Nf +Nf +xa +Eg +Nf +Nf +xa +Nf +Nf +Nf +ZP +es +zN +Gs +Gs +UP +Gs +jP +lR +XD +Ld +Ld +MT +qp +qp +KG +WK +fi +Bx +Bx +Bx +Oe +WK +oH +sr +bm +Qg +pl +Mj +HN +kU +Zj +WK +bI +YP +cS +kE +kT +YP +rn +Xd +Xd +Ji +Xd +Xd +Xd +Xd +Ss +Xj +Xj +Rj +vV +UW +si +QO +dj +WK +Tv +kH +WK +WK +WK +WK +WK +WK +vn +dj +dj +dj +WK +Ie +EC +XW +XW +XW +EC +cY +HN +Xi +sm +ec +Qq +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(167,1,1) = {" +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +xa +aV +Nf +Bf +mn +Jm +xa +Nf +Nf +Nf +xa +fG +df +te +cy +es +es +es +es +es +es +es +es +es +nL +DH +es +es +uY +es +WK +aZ +Bx +Bx +Bx +Oe +WK +MK +bm +bm +bm +bm +qS +HN +hY +CX +WK +WK +WK +WK +WK +WK +WK +WK +hY +CX +WK +Bd +Xd +Xd +Xd +Ss +Xj +Xj +Rj +vV +Xd +RW +Bx +Bx +RG +Bx +Bx +na +Bx +Bx +Bx +NH +WK +ew +dj +oX +Bx +WK +Pt +FA +FA +FA +FA +FA +fV +HN +pq +sm +ec +Qq +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(168,1,1) = {" +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +xa +xa +xa +xa +xa +xa +xa +Pv +Pv +Pv +xa +xa +xa +xa +xa +es +wb +Bt +Bt +Bt +Bt +Zq +es +ti +ED +nY +es +eY +ED +Uj +WK +sj +Bx +Ep +Bx +Oe +WK +iT +bm +pI +jd +bF +dE +HN +CS +iR +JE +ml +LJ +LJ +Ya +LJ +LJ +LJ +Tr +iR +WK +Cy +bE +yJ +Uw +Ss +Xj +Xj +Rj +vV +Xd +RW +Bx +Bx +RG +Bx +Bx +na +Bx +Bx +Bx +NH +WK +Bx +dj +JO +Bx +WK +Pt +FA +eo +FA +eo +FA +fV +Qq +PD +sm +PR +Qq +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(169,1,1) = {" +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +xa +fn +Pv +Pv +Pv +Pv +Pv +hR +xa +BP +BP +es +cL +il +kL +kL +Bh +KM +es +Yq +ED +Wl +es +ED +ED +Zi +WK +Bx +Bx +UD +Bx +Oe +WK +wS +bm +IW +Bk +yg +bm +HA +Xd +Xd +kV +Xd +Xd +Xd +Xd +Xd +Xd +Xd +Xd +Xd +zb +Xd +th +Si +Uw +Ss +Xj +Xj +Rj +vV +UW +si +iV +dj +WK +tF +Tt +WK +dj +na +na +dj +WK +WK +WK +WK +ZJ +WK +WK +WK +WK +WK +WK +ga +ga +Qq +Qq +eG +Qq +Qq +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(170,1,1) = {" +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Yr +Yr +Yr +Yr +Yr +xa +kQ +nP +Ai +Pv +Ai +nP +kQ +xa +BP +BP +es +tV +bs +ng +SN +ZT +xC +es +zL +ED +dG +es +TR +rM +zK +WK +nz +Bx +Dc +Bx +Oe +WK +lA +bm +FD +qa +Vx +ah +HN +hY +CX +Ng +Ms +TN +TN +TN +TD +Xd +Zb +TN +pC +WK +kf +HG +dj +Uw +Ss +Dr +Dr +Rj +vV +Xd +WK +PS +vl +WK +pk +Xn +dj +ro +Bx +Bx +Uh +dr +wC +Yv +Zm +Bx +TZ +WK +qz +WK +qz +WK +Ic +Qq +iJ +gM +gM +Km +Qq +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(171,1,1) = {" +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +xa +kQ +nP +Ai +Pv +Ai +nP +kQ +xa +BP +BP +es +Tb +bs +Ld +Ga +ZT +Cz +es +es +nL +es +es +es +es +es +WK +bH +Bx +Bx +Bx +ty +WK +yG +bm +bm +bm +bm +qS +HN +LS +WV +WK +WK +WK +WK +WK +LS +WK +WV +WK +WK +WK +WK +WK +WK +wp +MQ +pU +pU +kl +wp +WK +WK +HS +kc +WK +Ky +Xn +dj +fN +Bx +Of +Bx +Bx +Bx +Bx +Bx +Bx +Zc +WK +CQ +WK +RQ +WK +Ic +Qq +hH +gM +gM +VC +Qq +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(172,1,1) = {" +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +xa +kQ +nP +Ai +Pv +Ai +nP +kQ +xa +BP +BP +es +bC +bs +Js +dd +ZT +xf +lR +dZ +ED +Yu +es +BP +BP +BP +WK +QJ +Bx +Bx +Bx +ty +WK +kM +Rq +bm +ZU +AK +Pj +HN +LS +WV +WK +cK +LJ +LJ +LJ +Tr +Xd +jR +LJ +ol +LF +HV +xl +rK +WK +MI +MI +MI +MI +WK +sb +nN +Bx +tm +dj +VW +Xn +dj +gB +Bx +Of +Bx +Bx +Pz +Pz +Pz +Bx +Ls +WK +Qr +Qr +Qr +WK +Ic +Qq +gM +gM +gM +lL +Qq +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(173,1,1) = {" +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +xa +Sx +Pv +Pv +Pv +Pv +Pv +Qm +xa +BP +BP +es +cm +Re +JH +JH +vs +ED +Cl +ED +ED +Zi +es +BP +WK +WK +WK +qc +Bx +EI +Bx +cM +WK +WK +WK +iU +WK +WK +WK +WK +LS +WV +WK +Vi +Xd +Xd +Xd +mV +mV +Xd +Xd +Ar +JS +Eq +iu +rK +WK +Sa +MI +MI +MI +WK +Ps +Bx +Bx +MY +dj +wj +Xn +dj +dc +Bx +Of +Bx +nd +Wb +aC +BN +ul +Bx +nQ +Qr +Qr +JX +WK +Ic +Qq +Dq +gM +gM +eg +Qq +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(174,1,1) = {" +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +xa +xa +xa +xa +xa +Pv +Pv +Pv +xa +xa +xa +xa +xa +es +wR +dX +SG +Bc +Bc +or +lR +Ry +ED +PE +es +BP +WK +NE +gk +Bx +Bx +EI +Bx +cM +WK +PI +Im +Xd +uf +lQ +lQ +dj +LS +WV +WK +Kt +Xd +Xd +Xd +Ds +yR +BX +Xd +WV +JS +Eq +iu +rK +WK +MV +MI +MI +MI +WK +ne +Bx +Bx +Bx +lY +Bx +Xn +dj +Is +Bx +Of +Bx +nd +aC +aC +HB +ul +pv +WK +em +Qr +Qr +WK +Ic +Qq +xe +gM +gM +UM +Qq +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(175,1,1) = {" +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +xa +Zv +sk +Nf +Nf +Nf +Nf +Nf +Nf +Nf +Nf +Nf +Nf +es +es +lR +lR +lR +lR +es +es +lR +nI +lR +es +es +WK +WK +WK +ni +Bx +EI +Bx +xP +WK +PI +Im +Xd +uf +lQ +lQ +dj +CS +WV +WK +Mu +Xd +Xd +Xd +Xd +Ds +BX +Xd +WV +JS +Eq +iu +rK +WK +MI +MI +MI +MI +WK +rT +Bx +Bx +Rm +dj +Bx +Xn +dj +aH +Bx +Of +Bx +Bx +oX +oX +oX +Bx +Zc +WK +em +Qr +LV +WK +Ic +Qq +Qq +Qq +Qq +Qq +Qq +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(176,1,1) = {" +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +xa +xa +xa +OL +Nf +Nf +Nf +Nf +Nf +Nf +Nf +Nf +Nf +es +Lv +eR +Ld +kJ +Qp +RV +lV +qi +Ld +ai +do +jE +hz +zJ +WK +nu +Bx +Bx +Bx +Bx +iA +ak +Xd +Xd +Xd +Xd +Xd +bQ +Xd +jR +Ri +Tr +Xd +LU +BY +Xd +yR +BX +Xd +jR +yI +Xd +iu +rK +WK +rN +Id +Id +rN +WK +rI +Bx +sn +Vb +dj +Bx +OF +dj +Xr +nx +tj +zD +Bx +ob +KF +zD +Bx +Oh +WK +WK +yn +WK +WK +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(177,1,1) = {" +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +xa +Zv +sk +Nf +Nf +Nf +Nf +Nf +Nf +Nf +Nf +Nf +Nf +es +av +kr +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +ZT +yb +WK +ae +Bx +Bx +Bx +Bx +iA +Xd +Xd +Xd +Xd +Xd +Xd +bQ +Xd +Zb +xn +TD +Xd +LU +uu +Xd +Ds +BX +Xd +Zb +rz +Xd +iu +rK +WK +ga +bA +dK +ga +WK +WK +NU +WK +WK +WK +Go +dj +WK +WK +WK +WK +dj +zW +dj +WK +dj +zW +dj +WK +Hq +TA +DB +WK +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(178,1,1) = {" +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +xa +xa +xa +xa +xa +Hp +Yt +Hp +xa +xa +xa +lS +lS +es +lE +wq +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +Ld +nT +uO +WK +sf +Bx +LG +Bx +Bx +JE +Zn +Xd +Xd +Xd +Xd +Xd +dj +hY +WV +WK +Ap +Xd +Xd +Xd +Xd +Ds +BX +Xd +WV +JS +Eq +iu +OD +WK +Fv +Cd +Cd +Lp +WK +Pq +Bx +WM +YC +WK +Bx +WM +RN +LA +PG +WK +aX +Bx +jj +WK +aX +Bx +jj +WK +Qr +TA +Qr +WK +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(179,1,1) = {" +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +xa +xa +wy +Pv +Pv +Pv +bX +xa +am +Nf +Nf +es +fH +pV +Ld +Ld +Ld +Ld +Ld +Ld +Ld +pg +Ld +Ld +Hs +Uy +WK +Or +Bx +LG +Bx +VP +WK +wd +Xd +Xd +Xd +Xd +Xd +dj +LS +WV +WK +Xe +Xd +Xd +Xd +Ds +Ll +BX +Xd +FJ +JS +Eq +iu +rK +WK +Bp +xF +xF +NC +WK +hf +Bx +Bx +sL +WK +WC +Bx +Bx +Pz +YQ +WK +lr +Bx +hQ +WK +lr +Bx +hQ +WK +Hq +TA +DB +WK +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(180,1,1) = {" +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +xa +xa +VM +Pv +Pv +Pv +VA +xa +iO +Nf +Nf +es +Us +Vh +Ld +Ld +Ld +Ld +Ld +Ld +Ld +BV +Ld +Ld +xp +Tn +WK +ND +Bx +LG +Bx +VP +WK +YM +Fm +Mk +Xd +NX +Xd +dj +LS +WV +WK +qe +Xd +Xd +Xd +ir +ir +Xd +Xd +PN +JS +Eq +iu +rK +WK +Gp +xF +xF +NC +WK +ta +Bx +Bx +sL +WK +XN +Bx +GD +aC +os +WK +lr +Bx +hQ +WK +lr +Bx +hQ +WK +jC +TA +Qr +WK +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(181,1,1) = {" +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +xa +xa +LZ +ar +NI +Hk +yT +xa +Nj +Nf +Nf +es +Gh +Vh +Ld +wh +Qb +uT +wg +Ld +Ld +pg +Ld +Ld +fm +HD +WK +ND +Bx +LG +Bx +VP +WK +lO +FR +bD +ie +NX +MF +dj +DG +GZ +WK +wF +TN +TN +TN +TN +TN +TN +TN +pX +ce +Py +pK +rK +WK +KD +lu +lu +Wq +WK +mf +Jt +Jt +xd +WK +mf +Jt +Jt +oj +Pp +WK +cl +tj +wD +WK +cl +tj +wD +WK +Hq +TA +DB +WK +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(182,1,1) = {" +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +GK +GK +GK +GK +GK +GK +GK +GK +GK +GK +GK +Pk +Pk +Pk +Pk +Pk +Pk +Pk +Pk +Pk +Pk +Pk +Pk +Pk +Pk +Pk +vP +vP +vP +vP +vP +vP +vP +vP +vP +vP +ZK +vP +vP +vP +vP +vP +vP +vP +vP +vP +vP +vP +vP +vP +vP +vP +vP +vP +vP +vP +vP +oK +oK +oK +oK +vP +vP +vP +vP +vP +vP +vP +vP +vP +vP +vP +vP +vP +vP +vP +vP +vP +vP +vP +vP +vP +vP +vP +vP +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(183,1,1) = {" +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Qq +Qq +Qq +Qq +qZ +Qq +Qq +Qq +Qq +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(184,1,1) = {" +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Qq +ip +xy +Qq +mF +Qq +xy +ip +Qq +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(185,1,1) = {" +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Qq +xy +xy +xy +xy +xy +xy +xy +Qq +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(186,1,1) = {" +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Qq +xy +xy +xy +xy +xy +xy +xy +Qq +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(187,1,1) = {" +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Qq +ip +xy +xy +yW +xy +xy +ip +Qq +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(188,1,1) = {" +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Qq +xy +xy +xy +xy +xy +xy +xy +Qq +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(189,1,1) = {" +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Qq +xy +xy +xy +xy +xy +xy +xy +Qq +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(190,1,1) = {" +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Qq +ip +xy +xy +ip +xy +xy +ip +Qq +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(191,1,1) = {" +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Qq +Qq +Qq +Qq +Qq +Qq +Qq +Qq +Qq +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} +(192,1,1) = {" +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +Ic +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +BP +"} diff --git a/maps/victory/levels/misc.dmm b/maps/victory/levels/misc.dmm new file mode 100644 index 000000000000..6116ef6612b6 --- /dev/null +++ b/maps/victory/levels/misc.dmm @@ -0,0 +1,39452 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/obj/structure/holostool, +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_meetinghall) +"ae" = ( +/obj/structure/bed/chair/holochair{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"al" = ( +/obj/structure/holostool, +/turf/simulated/floor/holofloor/desert, +/area/holodeck/source_picnicarea) +"ap" = ( +/obj/structure/bed/chair/holochair, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_courtroom) +"au" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 8 + }, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_picnicarea) +"av" = ( +/obj/effect/floor_decal/corner/red/full{ + dir = 8 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"az" = ( +/obj/effect/floor_decal/corner/green{ + dir = 9 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_emptycourt) +"aD" = ( +/obj/effect/floor_decal/sign/dock/two, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_chess) +"aQ" = ( +/obj/effect/floor_decal/corner/green/full{ + dir = 8 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"aV" = ( +/turf/simulated/floor/holofloor/tiled, +/area/space) +"ba" = ( +/obj/item/beach_ball, +/turf/simulated/floor/holofloor/beach/sand, +/area/holodeck/source_beach) +"bb" = ( +/obj/item/chess/wking, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_chess) +"bh" = ( +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_boxingcourt) +"bn" = ( +/obj/structure/table/holotable, +/obj/item/clothing/gloves/boxing/hologlove, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/holodorm/source_boxing) +"bw" = ( +/obj/machinery/door/window/holowindoor{ + dir = 1; + name = "Jury Box" + }, +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 9 + }, +/obj/effect/floor_decal/carpet{ + dir = 5 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"bz" = ( +/obj/structure/flora/grass/brown, +/turf/simulated/floor/holofloor/snow, +/area/holodeck/holodorm/source_snow) +"bF" = ( +/obj/effect/floor_decal/sign/dock/one, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_checker) +"bL" = ( +/obj/structure/flora/grass/brown, +/obj/structure/flora/tree/dead, +/turf/simulated/floor/holofloor/snow, +/area/holodeck/holodorm/source_snow) +"bV" = ( +/obj/structure/table/woodentable/holotable, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_meetinghall) +"ch" = ( +/obj/structure/holostool, +/obj/structure/window/reinforced/holowindow{ + dir = 4 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"ci" = ( +/obj/effect/overlay/palmtree_r, +/turf/simulated/floor/holofloor/beach/sand, +/area/holodeck/holodorm/source_beach) +"cq" = ( +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_chess) +"cw" = ( +/obj/structure/bed/chair/holochair{ + dir = 4 + }, +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/holodorm/source_seating) +"cz" = ( +/obj/item/chess/wpawn, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_chess) +"cI" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/shuttle/floor, +/area/shuttle/supply) +"cJ" = ( +/turf/space, +/area/space) +"cU" = ( +/obj/structure/holostool, +/obj/effect/floor_decal/carpet, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_meetinghall) +"dp" = ( +/obj/effect/floor_decal/sign/dock/one, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_chess) +"dt" = ( +/obj/structure/bed/chair/holochair{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/holodorm/source_seating) +"dR" = ( +/obj/structure/table/holotable, +/obj/item/clothing/gloves/boxing/hologlove{ + icon_state = "boxinggreen"; + item_state = "boxinggreen" + }, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/holodorm/source_boxing) +"el" = ( +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"eE" = ( +/obj/item/clothing/glasses/sunglasses, +/turf/simulated/floor/holofloor/beach/sand, +/area/holodeck/source_beach) +"eI" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/unsimulated/wall, +/area/space) +"fi" = ( +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_emptycourt) +"fw" = ( +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_theatre) +"fC" = ( +/obj/structure/holostool, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 6 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_theatre) +"fM" = ( +/obj/structure/table/holotable, +/obj/effect/floor_decal/corner/red/full{ + dir = 1 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_thunderdomecourt) +"fP" = ( +/obj/effect/floor_decal/corner/white/full, +/obj/effect/floor_decal/corner/white{ + dir = 4 + }, +/obj/item/chess/wknight, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_chess) +"fQ" = ( +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"gh" = ( +/obj/structure/shuttle/engine/propulsion{ + icon_state = "burst_r" + }, +/turf/simulated/shuttle/plating/airless/carry{ + dir = 1 + }, +/area/shuttle/supply) +"gm" = ( +/obj/effect/floor_decal/sign/c, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_chess) +"gp" = ( +/obj/structure/lattice, +/obj/structure/railing, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/holofloor/space, +/area/space) +"gH" = ( +/obj/structure/closet/crate, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/suppy) +"gI" = ( +/obj/effect/floor_decal/sign/c, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_checker) +"gL" = ( +/turf/simulated/floor/holofloor/reinforced, +/area/holodeck/source_plating) +"gX" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/holofloor/space, +/area/space) +"hu" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/lattice, +/turf/simulated/floor/holofloor/space, +/area/space) +"hw" = ( +/obj/structure/holostool, +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet{ + dir = 6 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_meetinghall) +"hL" = ( +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 6 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/holodorm/source_seating) +"hP" = ( +/obj/effect/shuttle_landmark/transit{ + base_area = /area/space; + base_turf = /turf/space/transit/east; + landmark_tag = "escape_transit"; + name = "Escape Shuttle Transit" + }, +/turf/space/transit/east, +/area/space) +"hU" = ( +/obj/item/chess/bbishop, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_chess) +"hX" = ( +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 9 + }, +/obj/effect/floor_decal/carpet{ + dir = 10 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_meetinghall) +"hZ" = ( +/obj/effect/floor_decal/corner/white/full, +/obj/effect/floor_decal/corner/white{ + dir = 4 + }, +/obj/item/chess/wpawn, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_chess) +"id" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/unsimulated/wall, +/area/space) +"il" = ( +/obj/structure/bed/chair/holochair{ + dir = 1 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"ix" = ( +/obj/structure/bed/chair/holochair{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"iz" = ( +/obj/structure/holostool, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_boxingcourt) +"iQ" = ( +/obj/machinery/status_display/supply_display, +/turf/unsimulated/wall, +/area/centcom/suppy) +"jh" = ( +/obj/structure/window/reinforced/holowindow/disappearing, +/obj/effect/floor_decal/corner/red/full{ + dir = 4 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_thunderdomecourt) +"jr" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-06" + }, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_meetinghall) +"jC" = ( +/obj/structure/window/reinforced/holowindow, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_boxingcourt) +"jL" = ( +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_courtroom) +"jY" = ( +/turf/simulated/floor/holofloor/wood, +/area/holodeck/holodorm/source_seating) +"kh" = ( +/obj/effect/step_trigger/lost_in_space, +/turf/space/transit/east, +/area/space) +"kr" = ( +/turf/simulated/floor/holofloor/wood, +/area/holodeck/holodorm/source_basic) +"kt" = ( +/obj/structure/window/reinforced/holowindow/disappearing{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/full{ + dir = 1 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_thunderdomecourt) +"kv" = ( +/obj/effect/step_trigger/teleporter/random, +/obj/effect/step_trigger/teleporter/random, +/turf/space, +/area/space) +"kB" = ( +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_thunderdomecourt) +"kC" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_picnicarea) +"kS" = ( +/obj/machinery/door/airlock/glass_external{ + frequency = 1380; + icon_state = "door_locked"; + id_tag = "supply_shuttle_hatch"; + locked = 1; + name = "Shuttle Hatch"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/external_airlock, +/turf/simulated/shuttle/floor, +/area/shuttle/supply) +"la" = ( +/obj/effect/floor_decal/corner/blue/full{ + dir = 1 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_boxingcourt) +"ls" = ( +/obj/effect/floor_decal/corner/red/full{ + dir = 1 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_emptycourt) +"lJ" = ( +/turf/simulated/floor/holofloor/beach/sand, +/area/holodeck/holodorm/source_beach) +"lK" = ( +/obj/item/chess/wrook, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_chess) +"lV" = ( +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_boxingcourt) +"lZ" = ( +/obj/effect/floor_decal/corner/white/full, +/obj/effect/floor_decal/corner/white{ + dir = 4 + }, +/obj/item/chess/wbishop, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_chess) +"ma" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/holofloor/space, +/area/space) +"md" = ( +/obj/item/chess/wknight, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_chess) +"me" = ( +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 10 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/holodorm/source_seating) +"mg" = ( +/obj/structure/lattice, +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/holofloor/space, +/area/space) +"mm" = ( +/obj/structure/holostool, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 5 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_meetinghall) +"mp" = ( +/obj/effect/floor_decal/corner/red/full{ + dir = 8 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_boxingcourt) +"mA" = ( +/obj/structure/flora/ausbushes/brflowers, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_picnicarea) +"mE" = ( +/obj/landmark{ + name = "Holocarp Spawn" + }, +/turf/simulated/floor/holofloor/reinforced, +/area/holodeck/source_wildlife) +"mH" = ( +/obj/effect/overlay/coconut, +/turf/simulated/floor/holofloor/beach/sand, +/area/holodeck/holodorm/source_beach) +"mJ" = ( +/obj/structure/catwalk, +/obj/structure/bed/chair/sofa/black/right, +/turf/simulated/floor/holofloor/reinforced, +/area/space) +"ni" = ( +/obj/effect/floor_decal/corner/green/full{ + dir = 4 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_emptycourt) +"nv" = ( +/obj/structure/bed/holobed, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/holodorm/source_basic) +"nx" = ( +/obj/structure/flora/ausbushes/brflowers, +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_picnicarea) +"nD" = ( +/obj/effect/floor_decal/corner/white/full, +/obj/effect/floor_decal/corner/white{ + dir = 4 + }, +/obj/item/chess/brook, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_chess) +"nP" = ( +/obj/structure/table/woodentable/holotable, +/obj/structure/window/reinforced/holowindow, +/obj/structure/window/reinforced/holowindow{ + dir = 8 + }, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_courtroom) +"nV" = ( +/obj/effect/floor_decal/corner/green{ + dir = 6 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_emptycourt) +"oi" = ( +/turf/space, +/area/space) +"oo" = ( +/obj/effect/floor_decal/corner/green{ + dir = 6 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_boxingcourt) +"os" = ( +/obj/structure/lattice, +/turf/simulated/floor/holofloor/space, +/area/space) +"oF" = ( +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_emptycourt) +"oM" = ( +/turf/simulated/floor/holofloor/snow, +/area/holodeck/holodorm/source_snow) +"pb" = ( +/obj/structure/lattice, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/holofloor/space, +/area/space) +"pg" = ( +/obj/structure/bed/chair/holochair{ + dir = 4 + }, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/holodorm/source_basic) +"pz" = ( +/obj/effect/floor_decal/corner/white/full, +/obj/effect/floor_decal/corner/white{ + dir = 4 + }, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_chess) +"pA" = ( +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_boxingcourt) +"pQ" = ( +/turf/simulated/shuttle/floor, +/area/shuttle/supply) +"pW" = ( +/obj/machinery/door/window/holowindoor{ + name = "Red Team"; + dir = 4 + }, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_emptycourt) +"qb" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad" + }, +/obj/machinery/door/airlock/glass_external{ + frequency = 1380; + icon_state = "door_locked"; + id_tag = "supply_shuttle_hatch"; + locked = 1; + name = "Shuttle Hatch"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/external_airlock, +/turf/simulated/shuttle/plating, +/area/shuttle/supply) +"qd" = ( +/obj/item/chess/brook, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_chess) +"qf" = ( +/obj/effect/floor_decal/sign/b, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_chess) +"qg" = ( +/obj/structure/bed/chair/holochair{ + dir = 1 + }, +/obj/effect/floor_decal/carpet, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/holodorm/source_seating) +"qy" = ( +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"qF" = ( +/obj/machinery/door/window/holowindoor{ + name = "Red Team"; + dir = 4 + }, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_thunderdomecourt) +"ra" = ( +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_thunderdomecourt) +"rh" = ( +/obj/machinery/door/window/holowindoor{ + name = "Red Team"; + dir = 4 + }, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_basketball) +"rC" = ( +/obj/structure/table/woodentable/holotable, +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"rI" = ( +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/holodorm/source_boxing) +"rJ" = ( +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_chess) +"rN" = ( +/obj/structure/table/woodentable/holotable, +/turf/simulated/floor/holofloor/desert, +/area/holodeck/source_picnicarea) +"sg" = ( +/obj/structure/holostool, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_meetinghall) +"sk" = ( +/obj/structure/table/woodentable/holotable, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"sp" = ( +/obj/structure/holostool, +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_theatre) +"sL" = ( +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_theatre) +"sM" = ( +/obj/structure/table/holotable, +/obj/item/clothing/head/helmet/thunderdome, +/obj/item/clothing/suit/armor/tdome/green, +/obj/item/clothing/under/color/green, +/obj/item/holo/esword/green, +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_thunderdomecourt) +"sN" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/landmark{ + name = "Catgirl Spawn" + }, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/holodorm/source_garden) +"sP" = ( +/obj/effect/floor_decal/corner/green/full{ + dir = 1 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"sR" = ( +/obj/structure/railing, +/obj/structure/lattice, +/turf/simulated/floor/holofloor/space, +/area/space) +"sW" = ( +/obj/effect/floor_decal/corner/green{ + dir = 6 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_thunderdomecourt) +"sZ" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + frequency = 1380; + id_tag = "supply_shuttle"; + pixel_x = -25; + req_one_access = list(13,31); + tag_door = "supply_shuttle_hatch" + }, +/turf/simulated/shuttle/floor, +/area/shuttle/supply) +"te" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/unsimulated/wall, +/area/space) +"tt" = ( +/obj/structure/bed/chair/holochair{ + dir = 1 + }, +/obj/effect/floor_decal/carpet, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"tv" = ( +/turf/unsimulated/wall, +/area/space) +"tF" = ( +/turf/simulated/floor/holofloor/snow, +/area/holodeck/source_snowfield) +"tM" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/lattice, +/turf/simulated/floor/holofloor/space, +/area/space) +"tQ" = ( +/obj/structure/window/reinforced/holowindow{ + dir = 4 + }, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_boxingcourt) +"tU" = ( +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/holofloor/desert, +/area/holodeck/source_desert) +"tZ" = ( +/obj/structure/holostool, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_thunderdomecourt) +"ub" = ( +/obj/effect/floor_decal/corner/blue/full, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_boxingcourt) +"ue" = ( +/obj/structure/catwalk, +/obj/structure/bed/chair/sofa/black/left{ + dir = 1 + }, +/turf/simulated/floor/holofloor/reinforced, +/area/space) +"ur" = ( +/obj/structure/table/holotable, +/obj/effect/floor_decal/corner/green/full, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_thunderdomecourt) +"uJ" = ( +/obj/structure/catwalk, +/obj/structure/bed/chair/sofa/black/left, +/turf/simulated/floor/holofloor/reinforced, +/area/space) +"uT" = ( +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/suppy) +"uZ" = ( +/obj/item/checker/blackking, +/obj/item/checker/blackking, +/obj/item/checker/blackking, +/obj/item/checker/blackking, +/obj/item/checker/blackking, +/obj/item/checker/blackking, +/obj/item/checker/blackking, +/obj/item/checker/blackking, +/obj/item/checker/blackking, +/obj/item/checker/blackking, +/obj/item/checker/blackking, +/obj/item/checker/blackking, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_checker) +"vb" = ( +/obj/structure/window/reinforced/holowindow, +/obj/machinery/door/window/holowindoor{ + base_state = "right"; + dir = 1; + icon_state = "right"; + name = "Witness Box" + }, +/obj/structure/bed/chair/holochair, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_courtroom) +"vk" = ( +/obj/structure/flora/grass/green, +/turf/simulated/floor/holofloor/snow, +/area/holodeck/source_snowfield) +"vq" = ( +/obj/structure/bed/chair/holochair{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet/corners{ + dir = 9 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"vt" = ( +/obj/structure/flora/ausbushes/brflowers, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_picnicarea) +"vu" = ( +/obj/effect/floor_decal/sign/a, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_checker) +"vA" = ( +/obj/structure/window/reinforced/holowindow{ + dir = 8 + }, +/obj/structure/table/woodentable/holotable, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_courtroom) +"vR" = ( +/obj/structure/holostool, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_emptycourt) +"vV" = ( +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"vX" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/turf/simulated/floor/holofloor/desert, +/area/holodeck/holodorm/source_desert) +"wb" = ( +/obj/effect/floor_decal/corner/green{ + dir = 9 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_thunderdomecourt) +"wm" = ( +/obj/structure/bed/chair/holochair{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 10 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"wr" = ( +/obj/effect/floor_decal/sign/dock/two, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_checker) +"ww" = ( +/obj/structure/holostool, +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 10 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_meetinghall) +"wH" = ( +/obj/structure/lattice, +/obj/structure/railing, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/holofloor/space, +/area/space) +"wJ" = ( +/obj/effect/floor_decal/corner/red/full{ + dir = 8 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_emptycourt) +"wU" = ( +/obj/effect/floor_decal/corner/blue/full{ + dir = 8 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_boxingcourt) +"xb" = ( +/obj/structure/window/reinforced/holowindow{ + dir = 1 + }, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_boxingcourt) +"xe" = ( +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_picnicarea) +"xh" = ( +/obj/effect/floor_decal/sign/dock/three, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_checker) +"xo" = ( +/obj/machinery/door/window/holowindoor{ + base_state = "right"; + icon_state = "right"; + name = "Green Team"; + dir = 4 + }, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_emptycourt) +"xq" = ( +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_theatre) +"xu" = ( +/obj/structure/flora/grass/brown, +/turf/simulated/floor/holofloor/snow, +/area/holodeck/source_snowfield) +"xv" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_picnicarea) +"xw" = ( +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"xz" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/turf/unsimulated/wall, +/area/space) +"xI" = ( +/obj/structure/window/reinforced/holowindow{ + dir = 1 + }, +/obj/structure/window/reinforced/holowindow{ + dir = 8 + }, +/obj/structure/table/woodentable/holotable, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_courtroom) +"xL" = ( +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 9 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_theatre) +"xO" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/lattice, +/turf/simulated/floor/holofloor/space, +/area/space) +"yg" = ( +/obj/structure/bed/chair/holochair{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 6 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"yl" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_picnicarea) +"ym" = ( +/obj/structure/window/reinforced/holowindow/disappearing, +/obj/effect/floor_decal/corner/red/full, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_thunderdomecourt) +"yp" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/holofloor/space, +/area/space) +"yt" = ( +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_emptycourt) +"yG" = ( +/obj/structure/holostool, +/obj/structure/window/reinforced/holowindow{ + dir = 4 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_thunderdomecourt) +"zA" = ( +/obj/structure/flora/grass/green, +/turf/simulated/floor/holofloor/snow, +/area/holodeck/holodorm/source_snow) +"zE" = ( +/obj/structure/flora/grass/green, +/obj/structure/flora/tree/pine, +/turf/simulated/floor/holofloor/snow, +/area/holodeck/holodorm/source_snow) +"zJ" = ( +/obj/structure/railing, +/turf/simulated/floor/holofloor/space, +/area/space) +"Aa" = ( +/obj/effect/floor_decal/sign/dock/three, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_chess) +"Ad" = ( +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/holofloor/desert, +/area/holodeck/holodorm/source_desert) +"Ai" = ( +/obj/landmark{ + name = "Wolfgirl Spawn" + }, +/turf/simulated/floor/holofloor/snow, +/area/holodeck/holodorm/source_snow) +"Ao" = ( +/obj/structure/shuttle/engine/propulsion, +/obj/effect/shuttle_landmark{ + base_area = /area/space; + base_turf = /turf/simulated/floor/airless/ceiling; + landmark_tag = "supply_cc"; + name = "Centcom Supply Depot" + }, +/turf/simulated/shuttle/plating/airless/carry{ + dir = 1 + }, +/area/shuttle/supply) +"At" = ( +/turf/simulated/floor/holofloor/desert, +/area/holodeck/source_picnicarea) +"AA" = ( +/obj/effect/overlay/palmtree_r, +/turf/simulated/floor/holofloor/beach/sand, +/area/holodeck/source_beach) +"AC" = ( +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 6 + }, +/obj/effect/floor_decal/carpet{ + dir = 10 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_theatre) +"AP" = ( +/obj/structure/window/reinforced, +/turf/unsimulated/wall, +/area/space) +"AS" = ( +/obj/effect/step_trigger/teleporter/random, +/turf/space, +/area/space) +"AT" = ( +/turf/simulated/floor/holofloor/beach/sand, +/area/holodeck/source_beach) +"AV" = ( +/obj/structure/flora/ausbushes/ywflowers, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/holodorm/source_garden) +"AZ" = ( +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_theatre) +"Bj" = ( +/turf/simulated/floor/holofloor/space, +/area/space) +"Bk" = ( +/turf/simulated/floor/holofloor/space, +/area/holodeck/holodorm/source_space) +"Bm" = ( +/obj/structure/lattice, +/obj/structure/railing, +/turf/simulated/floor/holofloor/space, +/area/space) +"BA" = ( +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_boxingcourt) +"BG" = ( +/obj/effect/floor_decal/corner/white/full, +/obj/effect/floor_decal/corner/white{ + dir = 4 + }, +/obj/item/chess/bking, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_chess) +"BJ" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/holofloor/space, +/area/space) +"BS" = ( +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_thunderdomecourt) +"BU" = ( +/obj/structure/holostool, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"Cp" = ( +/obj/machinery/door/window/holowindoor{ + dir = 1; + name = "Green Corner" + }, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_boxingcourt) +"Cs" = ( +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet{ + dir = 5 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/holodorm/source_seating) +"Ct" = ( +/turf/unsimulated/wall, +/area/centcom/suppy) +"CA" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/unsimulated/wall, +/area/space) +"CD" = ( +/turf/simulated/floor/holofloor/reinforced, +/area/holodeck/source_wildlife) +"CF" = ( +/obj/structure/table/woodentable/holotable, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"Dl" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_picnicarea) +"DA" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/turf/simulated/floor/holofloor/desert, +/area/holodeck/source_desert) +"DE" = ( +/obj/item/beach_ball/holoball, +/obj/effect/floor_decal/corner/red{ + dir = 10 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"DX" = ( +/obj/structure/table/holotable, +/obj/item/clothing/gloves/boxing/hologlove, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_boxingcourt) +"Ef" = ( +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 9 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/holodorm/source_seating) +"Ej" = ( +/obj/effect/floor_decal/corner/white/full, +/obj/effect/floor_decal/corner/white{ + dir = 4 + }, +/obj/item/chess/bbishop, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_chess) +"Ek" = ( +/obj/machinery/door/window/holowindoor{ + base_state = "right"; + icon_state = "right"; + dir = 4 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_courtroom) +"Eu" = ( +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_courtroom) +"ES" = ( +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_emptycourt) +"EX" = ( +/turf/simulated/floor/holofloor/lino, +/area/holodeck/source_meetinghall) +"EZ" = ( +/obj/structure/table/holotable, +/obj/machinery/readybutton, +/obj/effect/floor_decal/corner/green/full{ + dir = 4 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_thunderdomecourt) +"Fa" = ( +/obj/structure/table/rack/holorack_legacy, +/obj/item/clothing/under/dress/dress_saloon, +/obj/item/clothing/head/pin/flower, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_theatre) +"Fb" = ( +/turf/simulated/floor/holofloor/desert, +/area/holodeck/holodorm/source_desert) +"Fs" = ( +/obj/item/chess/bpawn, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_chess) +"FK" = ( +/obj/effect/floor_decal/sign/b, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_checker) +"FM" = ( +/obj/structure/holostool, +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_meetinghall) +"FN" = ( +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_checker) +"FS" = ( +/obj/effect/floor_decal/carpet{ + dir = 5 + }, +/obj/effect/floor_decal/carpet{ + dir = 6 + }, +/obj/effect/floor_decal/carpet{ + dir = 9 + }, +/obj/effect/floor_decal/carpet{ + dir = 10 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_meetinghall) +"Gh" = ( +/obj/structure/catwalk, +/obj/structure/table/holotable, +/turf/simulated/floor/holofloor/reinforced, +/area/space) +"Gi" = ( +/obj/item/chess/bqueen, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_chess) +"Gl" = ( +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 5 + }, +/obj/effect/floor_decal/carpet{ + dir = 9 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_theatre) +"Gr" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_picnicarea) +"Gz" = ( +/obj/structure/flora/ausbushes/brflowers, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_picnicarea) +"GA" = ( +/obj/item/paper{ + info = "You're not supposed to be here."; + name = "unnerving letter" + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/suppy) +"GF" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/effect/floor_decal/spline/fancy/wood, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_picnicarea) +"Hb" = ( +/obj/effect/floor_decal/corner/white/full, +/obj/effect/floor_decal/corner/white{ + dir = 4 + }, +/obj/item/chess/wrook, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_chess) +"Ho" = ( +/obj/effect/floor_decal/corner/red/full{ + dir = 1 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"HA" = ( +/obj/structure/table/woodentable/holotable, +/obj/structure/window/reinforced/holowindow, +/obj/structure/window/reinforced/holowindow{ + dir = 4 + }, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_courtroom) +"HJ" = ( +/obj/structure/shuttle/engine/propulsion{ + icon_state = "burst_l" + }, +/turf/simulated/shuttle/plating/airless/carry{ + dir = 1 + }, +/area/shuttle/supply) +"HS" = ( +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 5 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"HU" = ( +/obj/effect/floor_decal/corner/green/full, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"HY" = ( +/obj/structure/shuttle/engine/heater, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/airless, +/area/shuttle/supply) +"Ie" = ( +/obj/item/checker/redking, +/obj/item/checker/redking, +/obj/item/checker/redking, +/obj/item/checker/redking, +/obj/item/checker/redking, +/obj/item/checker/redking, +/obj/item/checker/redking, +/obj/item/checker/redking, +/obj/item/checker/redking, +/obj/item/checker/redking, +/obj/item/checker/redking, +/obj/item/checker/redking, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_checker) +"Il" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_theatre) +"Im" = ( +/obj/structure/table/holotable, +/obj/item/clothing/gloves/boxing/hologlove{ + icon_state = "boxinggreen"; + item_state = "boxinggreen" + }, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_boxingcourt) +"Io" = ( +/obj/structure/shuttle/engine/propulsion, +/turf/simulated/shuttle/plating/airless/carry{ + dir = 1 + }, +/area/shuttle/supply) +"Ir" = ( +/obj/structure/catwalk, +/turf/simulated/floor/holofloor/reinforced, +/area/space) +"IB" = ( +/obj/effect/overlay/palmtree_l, +/obj/effect/overlay/coconut, +/turf/simulated/floor/holofloor/beach/sand, +/area/holodeck/source_beach) +"IC" = ( +/obj/structure/holostool, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_theatre) +"IK" = ( +/obj/effect/floor_decal/carpet{ + dir = 5 + }, +/obj/effect/floor_decal/carpet{ + dir = 6 + }, +/obj/effect/floor_decal/carpet{ + dir = 10 + }, +/obj/effect/floor_decal/carpet{ + dir = 9 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_theatre) +"IU" = ( +/turf/simulated/floor/holofloor/reinforced, +/area/holodeck/holodorm/source_off) +"Jj" = ( +/obj/structure/window/reinforced/holowindow/disappearing{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/full{ + dir = 8 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_thunderdomecourt) +"Jl" = ( +/turf/simulated/floor/holofloor/desert, +/area/holodeck/source_desert) +"Jn" = ( +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_basketball) +"Jt" = ( +/obj/effect/floor_decal/corner/blue/full{ + dir = 4 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_boxingcourt) +"Kb" = ( +/obj/landmark{ + name = "Holocarp Spawn Random" + }, +/turf/simulated/floor/holofloor/space, +/area/holodeck/source_space) +"Le" = ( +/obj/effect/floor_decal/corner/green{ + dir = 5 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"Lf" = ( +/obj/item/inflatable_duck, +/turf/simulated/floor/holofloor/beach/sand, +/area/holodeck/source_beach) +"Lm" = ( +/obj/structure/holohoop, +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"Ly" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/holofloor/space, +/area/space) +"LA" = ( +/obj/effect/floor_decal/corner/green/full, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_emptycourt) +"LB" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-06" + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_theatre) +"LR" = ( +/obj/effect/floor_decal/corner/red/full{ + dir = 4 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"LU" = ( +/obj/structure/catwalk, +/obj/structure/bed/chair/sofa/black/right{ + dir = 1 + }, +/turf/simulated/floor/holofloor/reinforced, +/area/space) +"Me" = ( +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_meetinghall) +"Mg" = ( +/obj/effect/overlay/palmtree_l, +/turf/simulated/floor/holofloor/beach/sand, +/area/holodeck/holodorm/source_beach) +"MC" = ( +/obj/structure/bed/chair/holochair, +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/holodorm/source_seating) +"MH" = ( +/turf/unsimulated/beach/sand{ + icon_state = "beach" + }, +/area/holodeck/holodorm/source_beach) +"MO" = ( +/obj/structure/table/woodentable/holotable, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_courtroom) +"MS" = ( +/turf/simulated/floor/holofloor/beach/water, +/area/holodeck/source_beach) +"Nr" = ( +/obj/structure/flora/ausbushes/ywflowers, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_picnicarea) +"Ns" = ( +/obj/effect/floor_decal/corner/green{ + dir = 9 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"Nz" = ( +/obj/effect/floor_decal/corner/white/full, +/obj/effect/floor_decal/corner/white{ + dir = 4 + }, +/obj/item/chess/bpawn, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_chess) +"NL" = ( +/turf/unsimulated/beach/sand{ + icon_state = "beach" + }, +/area/holodeck/source_beach) +"NZ" = ( +/obj/structure/holostool, +/obj/effect/floor_decal/carpet, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_theatre) +"Ob" = ( +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_picnicarea) +"Ov" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/shuttle/floor, +/area/shuttle/supply) +"Oy" = ( +/obj/effect/floor_decal/corner/green{ + dir = 6 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"Oz" = ( +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_meetinghall) +"OA" = ( +/turf/simulated/floor/holofloor/space, +/area/holodeck/source_space) +"OK" = ( +/obj/machinery/door/window/holowindoor{ + base_state = "right"; + icon_state = "right"; + name = "Green Team"; + dir = 4 + }, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_thunderdomecourt) +"OR" = ( +/obj/structure/holohoop{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"Pg" = ( +/obj/structure/window/reinforced/holowindow{ + dir = 1 + }, +/obj/structure/table/woodentable/holotable, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_courtroom) +"Pj" = ( +/obj/effect/floor_decal/corner/white/full, +/obj/effect/floor_decal/corner/white{ + dir = 4 + }, +/obj/item/chess/bknight, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_chess) +"Pl" = ( +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"PG" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 4 + }, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_picnicarea) +"PK" = ( +/obj/structure/flora/tree/dead, +/turf/simulated/floor/holofloor/snow, +/area/holodeck/source_snowfield) +"PR" = ( +/obj/machinery/door/window/holowindoor{ + dir = 4 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_courtroom) +"PS" = ( +/obj/item/checker/black, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_checker) +"Ql" = ( +/obj/structure/table/woodentable/holotable, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/holodorm/source_basic) +"Qp" = ( +/obj/effect/floor_decal/corner/green/full{ + dir = 4 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"Qu" = ( +/obj/effect/floor_decal/corner/white/full, +/obj/effect/floor_decal/corner/white{ + dir = 4 + }, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_checker) +"QY" = ( +/obj/structure/bed/chair/holochair{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"Rn" = ( +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"RG" = ( +/obj/item/chess/bknight, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_chess) +"RK" = ( +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 5 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_theatre) +"RS" = ( +/turf/simulated/shuttle/wall, +/area/shuttle/supply) +"RW" = ( +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/holodorm/source_boxing) +"Ss" = ( +/obj/structure/bed/chair/holochair{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"St" = ( +/obj/structure/window/reinforced/holowindow{ + dir = 4 + }, +/obj/structure/flora/pottedplant{ + icon_state = "plant-10" + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_courtroom) +"SA" = ( +/obj/structure/flora/ausbushes/brflowers, +/obj/effect/floor_decal/spline/fancy/wood/corner, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_picnicarea) +"SC" = ( +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_checker) +"SD" = ( +/obj/structure/holostool, +/obj/structure/window/reinforced/holowindow{ + dir = 4 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_emptycourt) +"SE" = ( +/obj/structure/window/reinforced/holowindow{ + dir = 4 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_courtroom) +"SO" = ( +/obj/structure/window/reinforced/holowindow, +/obj/machinery/door/window/holowindoor{ + dir = 1; + name = "Court Reporter's Box" + }, +/obj/structure/bed/chair/holochair, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_courtroom) +"ST" = ( +/obj/item/clothing/glasses/sunglasses, +/turf/simulated/floor/holofloor/beach/sand, +/area/holodeck/holodorm/source_beach) +"Tg" = ( +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 9 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"Ti" = ( +/obj/effect/floor_decal/corner/green{ + dir = 6 + }, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/holodorm/source_boxing) +"Tz" = ( +/obj/structure/bed/chair/holochair{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 9 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"TA" = ( +/obj/structure/holostool, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_theatre) +"TN" = ( +/obj/machinery/door/window/holowindoor{ + base_state = "right"; + dir = 2; + icon_state = "right"; + name = "Red Corner" + }, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_boxingcourt) +"TS" = ( +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"TZ" = ( +/obj/structure/flora/ausbushes/brflowers, +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 1 + }, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_picnicarea) +"Uf" = ( +/obj/structure/bed/chair/holochair{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 6 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"Uk" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/unsimulated/wall, +/area/space) +"Up" = ( +/obj/structure/bed/chair/holochair{ + dir = 8 + }, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/holodorm/source_basic) +"Us" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "QMLoad2" + }, +/turf/simulated/shuttle/floor, +/area/shuttle/supply) +"UC" = ( +/obj/structure/holostool, +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 10 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_theatre) +"UY" = ( +/obj/machinery/door/window/holowindoor{ + base_state = "right"; + icon_state = "right"; + name = "Green Team"; + dir = 4 + }, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_basketball) +"Vf" = ( +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_emptycourt) +"Vg" = ( +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 5 + }, +/obj/effect/floor_decal/carpet{ + dir = 6 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_meetinghall) +"Vj" = ( +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_meetinghall) +"Vm" = ( +/obj/landmark/costume/random, +/obj/structure/table/rack/holorack_legacy, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_theatre) +"Vr" = ( +/obj/structure/table/holotable, +/obj/item/clothing/head/helmet/thunderdome, +/obj/item/clothing/suit/armor/tdome/red, +/obj/item/clothing/under/color/red, +/obj/item/holo/esword/red, +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_thunderdomecourt) +"Vv" = ( +/obj/structure/table/holotable, +/obj/machinery/readybutton, +/obj/effect/floor_decal/corner/red/full{ + dir = 8 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_thunderdomecourt) +"Vx" = ( +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_emptycourt) +"Vy" = ( +/obj/structure/holostool, +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 9 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_meetinghall) +"VZ" = ( +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/holodorm/source_garden) +"We" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "QMLoad2" + }, +/obj/machinery/door/airlock/glass_external{ + frequency = 1380; + icon_state = "door_locked"; + id_tag = "supply_shuttle_hatch"; + locked = 1; + name = "Shuttle Hatch"; + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/external_airlock, +/turf/simulated/shuttle/plating, +/area/shuttle/supply) +"Ws" = ( +/obj/structure/holostool, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_meetinghall) +"Wx" = ( +/obj/item/checker/red, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_checker) +"WG" = ( +/obj/structure/flora/grass/both, +/turf/simulated/floor/holofloor/snow, +/area/holodeck/source_snowfield) +"WL" = ( +/obj/structure/table/woodentable/holotable, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/holodorm/source_seating) +"WW" = ( +/obj/effect/floor_decal/corner/green/full{ + dir = 4 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_boxingcourt) +"Xf" = ( +/obj/structure/flora/tree/pine, +/turf/simulated/floor/holofloor/snow, +/area/holodeck/source_snowfield) +"Xj" = ( +/obj/effect/floor_decal/corner/red{ + dir = 10 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"Xq" = ( +/obj/structure/table/woodentable/holotable, +/obj/structure/window/reinforced/holowindow, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_courtroom) +"Xu" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_picnicarea) +"Xx" = ( +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_boxingcourt) +"Xz" = ( +/obj/structure/flora/grass/both, +/turf/simulated/floor/holofloor/snow, +/area/holodeck/holodorm/source_snow) +"XH" = ( +/obj/item/chess/wbishop, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_chess) +"XI" = ( +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"XJ" = ( +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_thunderdomecourt) +"XX" = ( +/obj/structure/window/reinforced/holowindow{ + dir = 8 + }, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_boxingcourt) +"Yj" = ( +/turf/space/transit/east, +/area/space) +"Ys" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad" + }, +/turf/simulated/shuttle/floor, +/area/shuttle/supply) +"Yx" = ( +/obj/structure/window/reinforced/holowindow/disappearing{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green{ + dir = 5 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_thunderdomecourt) +"Yz" = ( +/obj/structure/bed/chair/holochair{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 10 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"YP" = ( +/obj/structure/holostool, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/turf/simulated/floor/holofloor/carpet{ + dir = 8 + }, +/area/holodeck/source_meetinghall) +"YW" = ( +/obj/effect/floor_decal/sign/a, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_chess) +"Zk" = ( +/obj/effect/floor_decal/corner/white/full, +/obj/effect/floor_decal/corner/white{ + dir = 4 + }, +/obj/item/chess/wqueen, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_chess) +"ZB" = ( +/obj/effect/floor_decal/corner/red/full, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"ZS" = ( +/turf/simulated/floor/holofloor/beach/water, +/area/holodeck/holodorm/source_beach) +"ZW" = ( +/obj/structure/catwalk, +/obj/structure/holostool, +/turf/simulated/floor/holofloor/reinforced, +/area/space) +"ZY" = ( +/obj/structure/window/reinforced/holowindow/disappearing, +/obj/effect/floor_decal/corner/red{ + dir = 10 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_thunderdomecourt) + +(1,1,1) = {" +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(2,1,1) = {" +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(3,1,1) = {" +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(4,1,1) = {" +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(5,1,1) = {" +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(6,1,1) = {" +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(7,1,1) = {" +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(8,1,1) = {" +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(9,1,1) = {" +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(10,1,1) = {" +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(11,1,1) = {" +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(12,1,1) = {" +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(13,1,1) = {" +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(14,1,1) = {" +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(15,1,1) = {" +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(16,1,1) = {" +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(17,1,1) = {" +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(18,1,1) = {" +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(19,1,1) = {" +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(20,1,1) = {" +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(21,1,1) = {" +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(22,1,1) = {" +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(23,1,1) = {" +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(24,1,1) = {" +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(25,1,1) = {" +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(26,1,1) = {" +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(27,1,1) = {" +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(28,1,1) = {" +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(29,1,1) = {" +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(30,1,1) = {" +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(31,1,1) = {" +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(32,1,1) = {" +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(33,1,1) = {" +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(34,1,1) = {" +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(35,1,1) = {" +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(36,1,1) = {" +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(37,1,1) = {" +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(38,1,1) = {" +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(39,1,1) = {" +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(40,1,1) = {" +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(41,1,1) = {" +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(42,1,1) = {" +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(43,1,1) = {" +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(44,1,1) = {" +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(45,1,1) = {" +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(46,1,1) = {" +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(47,1,1) = {" +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(48,1,1) = {" +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(49,1,1) = {" +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(50,1,1) = {" +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(51,1,1) = {" +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(52,1,1) = {" +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(53,1,1) = {" +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(54,1,1) = {" +oi +AS +AS +AS +AS +AS +AS +AS +AS +AS +AS +AS +AS +AS +AS +AS +AS +AS +AS +AS +AS +AS +AS +AS +AS +AS +kv +AS +AS +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(55,1,1) = {" +oi +AS +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +AS +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(56,1,1) = {" +oi +AS +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +AS +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(57,1,1) = {" +oi +AS +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +AS +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(58,1,1) = {" +oi +AS +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +AS +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(59,1,1) = {" +oi +AS +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +AS +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(60,1,1) = {" +oi +AS +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +AS +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(61,1,1) = {" +oi +AS +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +kh +kh +kh +kh +kh +kh +kh +kh +kh +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +AS +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(62,1,1) = {" +oi +AS +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +kh +Yj +Yj +Yj +Yj +Yj +Yj +Yj +kh +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +AS +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(63,1,1) = {" +oi +AS +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +kh +Yj +Yj +Yj +Yj +Yj +Yj +Yj +kh +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +AS +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(64,1,1) = {" +oi +AS +Yj +Yj +Yj +Yj +Yj +Yj +Yj +kh +kh +kh +Yj +Yj +Yj +Yj +Yj +Yj +Yj +kh +kh +kh +Yj +Yj +Yj +Yj +Yj +Yj +AS +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(65,1,1) = {" +oi +AS +Yj +Yj +Yj +Yj +Yj +Yj +Yj +kh +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +kh +Yj +Yj +Yj +Yj +Yj +Yj +AS +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(66,1,1) = {" +oi +AS +Yj +Yj +Yj +Yj +Yj +Yj +Yj +kh +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +kh +Yj +Yj +Yj +Yj +Yj +Yj +AS +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(67,1,1) = {" +oi +AS +Yj +Yj +Yj +Yj +Yj +Yj +Yj +kh +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +kh +Yj +Yj +Yj +Yj +Yj +Yj +AS +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(68,1,1) = {" +oi +AS +Yj +Yj +Yj +Yj +Yj +Yj +Yj +kh +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +kh +Yj +Yj +Yj +Yj +Yj +Yj +AS +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(69,1,1) = {" +oi +AS +Yj +Yj +Yj +Yj +Yj +Yj +Yj +kh +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +kh +Yj +Yj +Yj +Yj +Yj +Yj +AS +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(70,1,1) = {" +oi +AS +Yj +Yj +Yj +Yj +Yj +Yj +Yj +kh +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +kh +Yj +Yj +Yj +Yj +Yj +Yj +AS +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(71,1,1) = {" +oi +AS +Yj +Yj +Yj +Yj +Yj +Yj +Yj +kh +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +kh +Yj +Yj +Yj +Yj +Yj +Yj +AS +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(72,1,1) = {" +oi +AS +Yj +Yj +Yj +Yj +Yj +Yj +Yj +kh +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +kh +Yj +Yj +Yj +Yj +Yj +Yj +AS +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(73,1,1) = {" +oi +AS +Yj +Yj +Yj +Yj +Yj +Yj +Yj +kh +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +kh +Yj +Yj +Yj +Yj +Yj +Yj +AS +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(74,1,1) = {" +oi +AS +Yj +Yj +Yj +Yj +Yj +Yj +Yj +kh +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +kh +Yj +Yj +Yj +Yj +Yj +Yj +AS +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(75,1,1) = {" +oi +AS +Yj +Yj +Yj +Yj +Yj +Yj +Yj +kh +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +kh +Yj +Yj +Yj +Yj +Yj +Yj +AS +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(76,1,1) = {" +oi +AS +Yj +Yj +Yj +Yj +Yj +Yj +Yj +kh +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +kh +Yj +Yj +Yj +Yj +Yj +Yj +AS +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(77,1,1) = {" +oi +AS +Yj +Yj +Yj +Yj +Yj +Yj +Yj +kh +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +kh +Yj +Yj +Yj +Yj +Yj +Yj +AS +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(78,1,1) = {" +oi +AS +Yj +Yj +Yj +Yj +Yj +Yj +Yj +kh +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +kh +Yj +Yj +Yj +Yj +Yj +Yj +AS +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(79,1,1) = {" +oi +AS +Yj +Yj +Yj +Yj +Yj +Yj +Yj +kh +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +kh +Yj +Yj +Yj +Yj +Yj +Yj +AS +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(80,1,1) = {" +oi +AS +Yj +Yj +Yj +Yj +Yj +Yj +Yj +kh +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +kh +Yj +Yj +Yj +Yj +Yj +Yj +AS +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(81,1,1) = {" +oi +AS +Yj +Yj +Yj +Yj +Yj +Yj +Yj +kh +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +kh +Yj +Yj +Yj +Yj +Yj +Yj +AS +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(82,1,1) = {" +oi +AS +Yj +Yj +Yj +Yj +Yj +Yj +Yj +kh +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +kh +Yj +Yj +Yj +Yj +Yj +Yj +AS +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(83,1,1) = {" +oi +AS +Yj +Yj +Yj +Yj +Yj +Yj +Yj +kh +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +kh +Yj +Yj +Yj +Yj +Yj +Yj +AS +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(84,1,1) = {" +oi +AS +Yj +Yj +Yj +Yj +Yj +Yj +Yj +kh +kh +kh +Yj +Yj +Yj +hP +Yj +Yj +Yj +kh +kh +kh +Yj +Yj +Yj +Yj +Yj +Yj +AS +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(85,1,1) = {" +oi +AS +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +kh +kh +kh +kh +kh +kh +kh +kh +kh +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +AS +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(86,1,1) = {" +oi +AS +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +AS +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(87,1,1) = {" +oi +AS +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +AS +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(88,1,1) = {" +oi +AS +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +AS +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(89,1,1) = {" +oi +AS +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +AS +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(90,1,1) = {" +oi +AS +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +AS +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(91,1,1) = {" +oi +AS +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +Yj +AS +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(92,1,1) = {" +oi +kv +AS +AS +AS +AS +AS +AS +AS +AS +AS +AS +AS +AS +AS +AS +AS +AS +AS +AS +AS +AS +AS +AS +AS +AS +AS +AS +AS +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(93,1,1) = {" +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(94,1,1) = {" +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(95,1,1) = {" +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(96,1,1) = {" +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(97,1,1) = {" +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(98,1,1) = {" +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(99,1,1) = {" +AS +AS +AS +AS +AS +AS +AS +AS +AS +AS +AS +AS +AS +AS +AS +AS +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(100,1,1) = {" +AS +oi +Ct +Ct +Ct +Ct +Ct +Ct +Ct +Ct +Ct +Ct +Ct +oi +oi +AS +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(101,1,1) = {" +AS +oi +Ct +gH +gH +uT +gH +gH +gH +uT +gH +gH +Ct +oi +oi +AS +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(102,1,1) = {" +AS +oi +Ct +uT +uT +uT +uT +uT +uT +uT +uT +uT +Ct +oi +oi +AS +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(103,1,1) = {" +AS +oi +Ct +gH +gH +uT +gH +gH +gH +uT +gH +gH +Ct +oi +oi +AS +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(104,1,1) = {" +AS +oi +Ct +uT +uT +uT +uT +GA +uT +uT +uT +uT +Ct +oi +oi +AS +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(105,1,1) = {" +AS +oi +Ct +gH +gH +uT +gH +gH +gH +uT +gH +gH +Ct +oi +oi +AS +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(106,1,1) = {" +AS +oi +iQ +uT +uT +uT +uT +uT +uT +uT +uT +uT +iQ +oi +oi +AS +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(107,1,1) = {" +AS +oi +RS +RS +RS +We +kS +RS +kS +qb +RS +RS +RS +oi +oi +AS +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(108,1,1) = {" +AS +oi +RS +pQ +cI +Us +pQ +sZ +pQ +Ys +cI +RS +RS +HJ +oi +AS +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(109,1,1) = {" +AS +oi +RS +pQ +pQ +Us +pQ +pQ +pQ +Ys +pQ +pQ +HY +Io +oi +AS +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(110,1,1) = {" +AS +oi +RS +pQ +pQ +Us +pQ +pQ +pQ +Ys +pQ +pQ +HY +Ao +oi +AS +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(111,1,1) = {" +AS +oi +RS +pQ +pQ +pQ +pQ +pQ +pQ +pQ +pQ +pQ +HY +Io +oi +AS +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(112,1,1) = {" +AS +oi +RS +pQ +Ov +pQ +pQ +pQ +pQ +pQ +Ov +RS +RS +gh +oi +AS +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(113,1,1) = {" +AS +oi +RS +RS +RS +RS +RS +RS +RS +RS +RS +RS +RS +oi +oi +AS +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(114,1,1) = {" +AS +AS +AS +AS +AS +AS +AS +AS +AS +AS +AS +AS +AS +AS +AS +AS +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(115,1,1) = {" +tv +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +tv +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +tv +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +tv +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(116,1,1) = {" +AP +Jl +Jl +Jl +Jl +Jl +Jl +Jl +Jl +Jl +DA +te +OA +OA +OA +OA +OA +OA +OA +OA +OA +OA +te +rJ +rJ +rJ +rJ +rJ +rJ +Aa +aD +dp +rJ +Uk +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(117,1,1) = {" +AP +Jl +Jl +tU +Jl +Jl +Jl +Jl +Jl +Jl +Jl +te +OA +OA +OA +Kb +OA +OA +OA +OA +Kb +OA +te +rJ +nD +Fs +pz +cq +pz +cq +hZ +lK +YW +Uk +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(118,1,1) = {" +AP +Jl +Jl +Jl +Jl +DA +Jl +Jl +tU +Jl +Jl +te +OA +OA +OA +OA +OA +OA +OA +OA +OA +OA +te +rJ +RG +Nz +cq +pz +cq +pz +cz +fP +qf +Uk +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(119,1,1) = {" +AP +DA +Jl +Jl +Jl +Jl +Jl +Jl +Jl +Jl +Jl +te +OA +Kb +OA +OA +OA +OA +Kb +OA +OA +OA +te +rJ +Ej +Fs +pz +cq +pz +cq +hZ +XH +gm +Uk +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(120,1,1) = {" +AP +Jl +Jl +Jl +Jl +Jl +Jl +Jl +Jl +Jl +tU +te +OA +OA +OA +OA +OA +OA +OA +OA +OA +OA +te +rJ +Gi +Nz +cq +pz +cq +pz +cz +Zk +rJ +Uk +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(121,1,1) = {" +AP +Jl +Jl +Jl +DA +Jl +Jl +tU +Jl +Jl +Jl +te +OA +OA +OA +OA +OA +OA +OA +OA +OA +OA +te +rJ +BG +Fs +pz +cq +pz +cq +hZ +bb +rJ +Uk +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(122,1,1) = {" +AP +Jl +Jl +Jl +Jl +DA +Jl +Jl +Jl +Jl +Jl +te +OA +OA +OA +Kb +OA +OA +OA +OA +Kb +OA +te +rJ +hU +Nz +cq +pz +cq +pz +cz +lZ +rJ +Uk +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(123,1,1) = {" +AP +Jl +Jl +Jl +Jl +Jl +Jl +Jl +Jl +Jl +Jl +te +OA +OA +OA +OA +OA +OA +OA +OA +OA +OA +te +rJ +Pj +Fs +pz +cq +pz +cq +hZ +md +rJ +Uk +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(124,1,1) = {" +AP +Jl +tU +Jl +Jl +Jl +Jl +Jl +Jl +Jl +Jl +te +OA +Kb +OA +OA +OA +OA +Kb +OA +OA +OA +te +rJ +qd +Nz +cq +pz +cq +pz +cz +Hb +rJ +Uk +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(125,1,1) = {" +AP +Jl +Jl +Jl +Jl +Jl +Jl +DA +Jl +Jl +tU +te +OA +OA +OA +OA +OA +OA +OA +OA +OA +OA +te +rJ +rJ +rJ +rJ +rJ +rJ +rJ +rJ +rJ +rJ +Uk +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(126,1,1) = {" +tv +CA +CA +CA +CA +CA +CA +CA +CA +CA +CA +tv +CA +CA +CA +CA +CA +CA +CA +CA +CA +CA +tv +CA +CA +CA +CA +CA +CA +CA +CA +CA +CA +tv +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(127,1,1) = {" +AP +Ob +Nr +xe +kC +At +At +xv +xe +Nr +Ob +te +tF +tF +tF +tF +tF +tF +tF +xu +tF +tF +te +SC +SC +SC +SC +SC +SC +xh +wr +bF +SC +Uk +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(128,1,1) = {" +AP +Dl +xe +Nr +nx +At +At +vt +Nr +xe +Dl +te +tF +WG +tF +tF +tF +tF +tF +tF +vk +tF +te +SC +Qu +Wx +Qu +FN +Qu +PS +Qu +PS +vu +Uk +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(129,1,1) = {" +AP +Ob +Nr +SA +GF +At +At +Xu +TZ +Nr +Ob +te +tF +tF +tF +PK +tF +tF +tF +tF +tF +tF +te +SC +Wx +Qu +Wx +Qu +FN +Qu +PS +Qu +FK +Uk +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(130,1,1) = {" +AP +Dl +xe +kC +At +At +At +At +xv +xe +Dl +te +tF +tF +tF +tF +vk +tF +tF +tF +PK +tF +te +SC +Qu +Wx +Qu +FN +Qu +PS +Qu +PS +gI +Uk +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(131,1,1) = {" +AP +Ob +Nr +nx +al +rN +rN +al +vt +Nr +Ob +te +tF +tF +tF +Xf +tF +tF +WG +tF +tF +xu +te +SC +Wx +Qu +Wx +Qu +FN +Qu +PS +Qu +SC +Uk +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(132,1,1) = {" +AP +Ob +xe +kC +al +rN +rN +al +xv +xe +Ob +te +tF +tF +tF +tF +tF +tF +tF +xu +tF +tF +te +SC +Qu +Wx +Qu +FN +Qu +PS +Qu +PS +SC +Uk +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(133,1,1) = {" +AP +Dl +Nr +nx +At +At +At +At +vt +Nr +Dl +te +tF +WG +tF +tF +tF +tF +PK +tF +vk +tF +te +SC +Wx +Qu +Wx +Qu +FN +Qu +PS +Qu +SC +Uk +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(134,1,1) = {" +AP +Ob +xe +au +Gz +yl +yl +Gz +PG +xe +Ob +te +tF +tF +tF +tF +tF +tF +tF +tF +tF +tF +te +SC +Qu +Wx +Qu +FN +Qu +PS +Qu +PS +SC +Uk +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(135,1,1) = {" +AP +Dl +Nr +xe +Nr +xe +xe +Nr +xe +xe +Dl +te +tF +tF +Xf +tF +vk +tF +tF +tF +PK +tF +te +SC +Wx +Qu +Wx +Qu +FN +Qu +PS +Qu +SC +Uk +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(136,1,1) = {" +AP +Ob +xe +Nr +mA +Gr +Gr +mA +Nr +Nr +Ob +te +tF +tF +tF +tF +tF +tF +WG +tF +tF +xu +te +Ie +SC +SC +SC +SC +SC +SC +SC +SC +uZ +Uk +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(137,1,1) = {" +tv +CA +CA +CA +CA +CA +CA +CA +CA +CA +CA +tv +CA +CA +CA +CA +CA +CA +CA +CA +CA +CA +tv +CA +CA +CA +CA +CA +CA +CA +CA +CA +CA +tv +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(138,1,1) = {" +AP +Fa +fw +fw +Il +AZ +AZ +AZ +AZ +AZ +LB +te +Oz +Oz +Oz +EX +FS +FS +EX +EX +EX +EX +te +Bj +Bj +Bj +zJ +Ir +Ir +hu +os +Bj +Bj +Uk +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(139,1,1) = {" +AP +Vm +fw +fw +Il +AZ +AZ +AZ +AZ +AZ +AZ +te +Oz +Oz +Oz +EX +Vy +aa +aa +aa +ww +EX +te +Bj +Bj +os +sR +Ir +Ir +yp +Bj +Bj +Bj +Uk +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(140,1,1) = {" +AP +Vm +fw +fw +Il +xL +sp +sp +sp +UC +AZ +te +Oz +hX +bV +EX +FM +sg +sg +sg +cU +EX +te +Bj +Bj +Bj +sR +Ir +Ir +yp +Bj +os +os +Uk +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(141,1,1) = {" +AP +Vm +fw +fw +Il +sL +IC +IC +IC +NZ +AZ +te +Oz +Me +bV +EX +FM +sg +sg +sg +cU +EX +te +Bj +os +xO +gp +Ir +Ir +ma +Ly +os +Bj +Uk +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(142,1,1) = {" +AP +Vm +fw +fw +Il +sL +IC +IC +IC +NZ +AZ +te +Oz +Me +bV +EX +FM +sg +sg +sg +cU +EX +te +Bj +zJ +mJ +Ir +Ir +Ir +Ir +ue +hu +os +Uk +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(143,1,1) = {" +AP +Vm +fw +fw +Il +sL +IC +IC +IC +NZ +AZ +te +Oz +Me +bV +EX +FM +sg +sg +sg +cU +EX +te +Bj +zJ +uJ +Ir +Ir +Ir +Ir +LU +hu +Bj +Uk +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(144,1,1) = {" +AP +Vm +fw +fw +Il +sL +IC +IC +IC +NZ +AZ +te +Oz +Vg +bV +EX +FM +sg +sg +sg +cU +EX +te +Bj +Bj +pb +wH +ZW +ZW +gX +BJ +os +Bj +Uk +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(145,1,1) = {" +AP +Vm +fw +fw +Il +RK +TA +TA +TA +fC +AZ +te +Oz +Oz +Oz +EX +mm +Ws +Ws +YP +hw +EX +te +Bj +Bj +Bj +Bm +Gh +Gh +mg +os +os +os +Uk +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(146,1,1) = {" +AP +Vm +fw +fw +Il +AZ +AZ +AZ +AZ +AZ +AZ +te +Oz +Oz +Oz +EX +EX +EX +EX +EX +EX +EX +te +Bj +Bj +os +os +tM +BJ +Bj +Bj +os +Bj +Uk +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(147,1,1) = {" +AP +Vm +fw +fw +Gl +xq +xq +xq +xq +AC +IK +te +jr +Oz +Oz +Vj +Vj +Vj +Vj +Vj +Vj +Vj +te +Bj +Bj +Bj +Bj +Bj +Bj +Bj +Bj +Bj +Bj +Uk +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(148,1,1) = {" +tv +CA +CA +CA +CA +CA +CA +CA +CA +CA +CA +tv +CA +CA +CA +CA +CA +CA +CA +CA +CA +CA +tv +CA +CA +CA +CA +CA +CA +CA +CA +CA +CA +tv +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(149,1,1) = {" +AP +jL +jL +jL +jL +jL +jL +jL +jL +jL +jL +xz +Jn +Jn +Jn +Jn +Jn +Jn +Jn +Jn +Jn +Jn +te +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +Uk +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(150,1,1) = {" +AP +St +PR +SE +SE +SE +SE +SE +Ek +SE +St +xz +BU +BU +Jn +BU +BU +BU +BU +Jn +BU +BU +te +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +Uk +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(151,1,1) = {" +AP +MO +Eu +Eu +SO +Tg +rC +ae +Pl +ae +wm +xz +ch +ch +rh +ch +ch +ch +ch +UY +ch +ch +te +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +Uk +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(152,1,1) = {" +AP +MO +Eu +MO +nP +qy +CF +il +TS +il +tt +xz +av +xw +xw +xw +ZB +aQ +Ns +Ns +Ns +HU +te +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +Uk +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(153,1,1) = {" +AP +MO +Eu +ap +Xq +qy +TS +TS +TS +il +tt +xz +vV +fQ +fQ +fQ +Xj +Le +fQ +fQ +fQ +XI +te +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +Uk +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(154,1,1) = {" +AP +MO +Eu +MO +HA +qy +CF +il +TS +il +tt +xz +av +xw +vV +fQ +Xj +Le +fQ +XI +Ns +HU +te +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +Uk +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(155,1,1) = {" +AP +MO +Eu +Eu +vb +HS +sk +Ss +el +Ss +Uf +xz +Lm +fQ +vV +fQ +DE +Le +fQ +XI +fQ +OR +te +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +Uk +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(156,1,1) = {" +AP +MO +Eu +xI +vA +vA +vA +vA +vA +vA +vA +xz +Ho +Rn +vV +fQ +Xj +Le +fQ +XI +Oy +Qp +te +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +Uk +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(157,1,1) = {" +AP +MO +Eu +Pg +Tz +QY +QY +QY +QY +Yz +MO +xz +vV +fQ +fQ +fQ +Xj +Le +fQ +fQ +fQ +XI +te +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +Uk +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(158,1,1) = {" +AP +MO +Eu +bw +vq +ix +ix +ix +ix +yg +MO +xz +Ho +Rn +Rn +Rn +LR +sP +Oy +Oy +Oy +Qp +te +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +Uk +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(159,1,1) = {" +tv +CA +CA +CA +CA +CA +CA +CA +CA +CA +CA +tv +CA +CA +CA +CA +CA +CA +CA +CA +CA +CA +tv +CA +CA +CA +CA +CA +CA +CA +CA +CA +CA +tv +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(160,1,1) = {" +AP +CD +CD +CD +CD +CD +CD +CD +CD +CD +CD +xz +AT +AT +AT +AT +AT +AT +AT +NL +MS +MS +te +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +Uk +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(161,1,1) = {" +AP +CD +mE +CD +CD +CD +CD +CD +CD +mE +CD +xz +AT +AT +AT +AT +AT +AT +AT +NL +MS +MS +te +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +Uk +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(162,1,1) = {" +AP +CD +CD +CD +CD +CD +CD +CD +CD +CD +CD +xz +AT +AA +AT +AT +AT +AT +AT +NL +MS +MS +te +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +Uk +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(163,1,1) = {" +AP +CD +CD +CD +mE +CD +CD +mE +CD +CD +CD +xz +AT +AT +AT +AT +AT +AT +AT +NL +MS +MS +te +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +Uk +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(164,1,1) = {" +AP +CD +CD +CD +CD +CD +CD +CD +CD +CD +CD +xz +AT +AT +AT +ba +AT +AT +AT +NL +MS +MS +te +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +Uk +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(165,1,1) = {" +AP +CD +CD +CD +CD +CD +CD +CD +CD +CD +CD +xz +AT +AT +AT +AT +AT +AT +AT +NL +MS +MS +te +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +Uk +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(166,1,1) = {" +AP +CD +CD +CD +mE +CD +CD +mE +CD +CD +CD +xz +AT +AT +eE +AT +AT +AT +AT +NL +MS +MS +te +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +Uk +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(167,1,1) = {" +AP +CD +CD +CD +CD +CD +CD +CD +CD +CD +CD +xz +AT +AT +IB +AT +Lf +AT +AT +NL +MS +MS +te +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +Uk +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(168,1,1) = {" +AP +CD +mE +CD +CD +CD +CD +CD +CD +mE +CD +xz +AT +AT +AT +AT +AT +AT +AT +NL +MS +MS +te +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +Uk +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(169,1,1) = {" +AP +CD +CD +CD +CD +CD +CD +CD +CD +CD +CD +xz +AT +AT +AT +AT +AT +AT +AT +NL +MS +MS +te +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +Uk +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(170,1,1) = {" +tv +CA +CA +CA +CA +CA +CA +CA +CA +CA +CA +tv +CA +CA +CA +CA +CA +CA +CA +CA +CA +CA +tv +CA +CA +CA +CA +CA +CA +CA +CA +CA +CA +Uk +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(171,1,1) = {" +AP +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +xz +kB +kB +kB +kB +kB +kB +kB +kB +kB +kB +Uk +eI +eI +eI +tv +eI +eI +eI +tv +eI +eI +eI +tv +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(172,1,1) = {" +AP +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +xz +tZ +tZ +kB +tZ +tZ +tZ +tZ +kB +tZ +tZ +te +kr +kr +kr +xz +Ad +Fb +Fb +xz +jY +jY +jY +Uk +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(173,1,1) = {" +AP +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +xz +yG +yG +qF +yG +yG +yG +yG +OK +yG +yG +te +pg +kr +nv +xz +Fb +Fb +vX +xz +Ef +cw +me +Uk +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(174,1,1) = {" +AP +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +xz +Vv +ra +ra +ra +ym +Jj +wb +wb +wb +ur +te +Ql +kr +Ql +xz +Fb +Fb +Fb +xz +MC +WL +qg +Uk +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(175,1,1) = {" +AP +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +xz +Vr +BS +BS +BS +ZY +Yx +BS +BS +BS +sM +te +Up +kr +kr +xz +Fb +Ad +Fb +xz +MC +WL +qg +Uk +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(176,1,1) = {" +AP +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +xz +Vr +BS +BS +BS +ZY +Yx +BS +BS +BS +sM +te +Ql +kr +nv +xz +Fb +Fb +Fb +xz +Cs +dt +hL +Uk +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(177,1,1) = {" +AP +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +xz +Vr +BS +BS +BS +ZY +Yx +BS +BS +BS +sM +te +Ql +kr +Ql +xz +vX +Fb +Fb +xz +jY +jY +jY +Uk +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(178,1,1) = {" +AP +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +xz +Vr +BS +BS +BS +ZY +Yx +BS +BS +BS +sM +Uk +CA +CA +CA +tv +CA +CA +CA +tv +CA +CA +CA +tv +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(179,1,1) = {" +AP +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +xz +Vr +BS +BS +BS +ZY +Yx +BS +BS +BS +sM +te +ci +MH +ZS +xz +VZ +AV +VZ +xz +bn +RW +RW +Uk +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(180,1,1) = {" +AP +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +xz +fM +XJ +XJ +XJ +jh +kt +sW +sW +sW +EZ +te +lJ +MH +ZS +xz +AV +VZ +AV +xz +rI +rI +rI +Uk +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(181,1,1) = {" +tv +CA +CA +CA +CA +CA +CA +CA +CA +CA +CA +tv +CA +CA +CA +CA +CA +CA +CA +CA +CA +CA +te +mH +MH +ZS +xz +VZ +sN +VZ +xz +RW +RW +RW +Uk +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(182,1,1) = {" +AP +ES +ES +ES +ES +ES +ES +ES +ES +ES +ES +xz +DX +pA +pA +pA +pA +pA +pA +pA +pA +pA +te +ST +MH +ZS +xz +AV +VZ +AV +xz +RW +RW +RW +Uk +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(183,1,1) = {" +AP +vR +vR +ES +vR +vR +vR +vR +ES +vR +vR +xz +DX +pA +pA +iz +iz +iz +iz +pA +pA +pA +te +Mg +MH +ZS +xz +VZ +AV +VZ +xz +Ti +Ti +Ti +Uk +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(184,1,1) = {" +AP +SD +SD +pW +SD +SD +SD +SD +xo +SD +SD +xz +pA +pA +pA +tQ +tQ +tQ +tQ +pA +pA +pA +te +lJ +MH +ZS +xz +AV +VZ +AV +xz +RW +RW +dR +Uk +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(185,1,1) = {" +AP +wJ +oF +oF +oF +oF +az +az +az +az +LA +xz +pA +pA +TN +mp +Xx +Xx +BA +xb +iz +pA +Uk +CA +CA +CA +tv +CA +CA +CA +tv +CA +CA +CA +tv +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(186,1,1) = {" +AP +fi +yt +yt +yt +yt +yt +yt +yt +yt +Vx +xz +pA +iz +jC +lV +wU +ub +bh +xb +iz +pA +te +bL +oM +zA +xz +IU +IU +IU +xz +Bk +Bk +Bk +Uk +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(187,1,1) = {" +AP +fi +yt +yt +yt +yt +yt +yt +yt +yt +Vx +xz +pA +iz +jC +lV +la +Jt +bh +xb +iz +pA +te +oM +Ai +oM +xz +IU +IU +IU +xz +Bk +Bk +Bk +Uk +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(188,1,1) = {" +AP +fi +yt +yt +yt +yt +yt +yt +yt +yt +Vx +xz +pA +iz +jC +BA +oo +oo +WW +Cp +pA +pA +te +oM +bz +oM +xz +IU +IU +IU +xz +Bk +Bk +Bk +Uk +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(189,1,1) = {" +AP +fi +yt +yt +yt +yt +yt +yt +yt +yt +Vx +xz +pA +pA +pA +XX +XX +XX +XX +pA +pA +pA +te +oM +zE +oM +xz +IU +IU +IU +xz +Bk +Bk +Bk +Uk +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +cJ +cJ +cJ +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(190,1,1) = {" +AP +fi +yt +yt +yt +yt +yt +yt +yt +yt +Vx +xz +pA +pA +pA +iz +iz +iz +iz +pA +pA +Im +te +oM +oM +oM +xz +IU +IU +IU +xz +Bk +Bk +Bk +Uk +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(191,1,1) = {" +AP +ls +Vf +Vf +Vf +Vf +nV +nV +nV +nV +ni +xz +pA +pA +pA +pA +pA +pA +pA +pA +pA +Im +te +oM +oM +Xz +xz +IU +IU +IU +xz +Bk +Bk +Bk +Uk +oi +oi +oi +cJ +cJ +cJ +cJ +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} +(192,1,1) = {" +tv +id +id +id +id +id +id +id +id +id +id +tv +id +id +id +id +id +id +id +id +id +id +tv +id +id +id +tv +id +id +id +tv +id +id +id +tv +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +"} diff --git a/maps/victory/levels/transit.dmm b/maps/victory/levels/transit.dmm new file mode 100644 index 000000000000..12df36b7f267 --- /dev/null +++ b/maps/victory/levels/transit.dmm @@ -0,0 +1,37735 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aA" = ( +/obj/effect/shuttle_landmark/transit/victory/civvie, +/turf/space, +/area/space) +"aZ" = ( +/obj/structure/bed/chair/holochair{ + dir = 1 + }, +/turf/simulated/floor/holofloor/wood, +/area/houseboat/holodeck/gaming) +"by" = ( +/turf/space/transit/west, +/area/space) +"di" = ( +/obj/structure/bed/holobed, +/turf/simulated/floor/holofloor/wood, +/area/houseboat/holodeck/bunking) +"dL" = ( +/turf/simulated/floor/holofloor/desert, +/area/houseboat/holodeck/desert) +"dP" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 4 + }, +/turf/simulated/floor/holofloor/grass, +/area/houseboat/holodeck/picnic) +"ed" = ( +/obj/structure/table/woodentable/holotable, +/turf/simulated/floor/holofloor/desert, +/area/houseboat/holodeck/picnic) +"eu" = ( +/turf/simulated/floor/holofloor/desert, +/area/houseboat/holodeck/picnic) +"fg" = ( +/turf/simulated/floor/holofloor/tiled, +/area/houseboat/holodeck/basketball) +"fk" = ( +/obj/effect/floor_decal/corner/green{ + dir = 5 + }, +/turf/simulated/floor/holofloor/tiled, +/area/houseboat/holodeck/basketball) +"fz" = ( +/turf/simulated/floor/holofloor/beach/sand, +/area/houseboat/holodeck/beach) +"fY" = ( +/obj/structure/flora/ausbushes/brflowers, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/holofloor/grass, +/area/houseboat/holodeck/picnic) +"gS" = ( +/obj/effect/overlay/palmtree_r, +/turf/simulated/floor/holofloor/beach/sand, +/area/houseboat/holodeck/beach) +"hJ" = ( +/obj/structure/table/woodentable/holotable, +/turf/simulated/floor/holofloor/wood, +/area/houseboat/holodeck/bunking) +"ia" = ( +/turf/simulated/floor/holofloor/wood, +/area/houseboat/holodeck/bunking) +"ip" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/unsimulated/wall, +/area/space) +"iL" = ( +/obj/structure/holohoop, +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/turf/simulated/floor/holofloor/tiled, +/area/houseboat/holodeck/basketball) +"je" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/turf/unsimulated/wall, +/area/space) +"jD" = ( +/obj/effect/step_trigger/lost_in_space/shuttle, +/turf/unsimulated/wall/seperator, +/area/space) +"jX" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/unsimulated/wall, +/area/space) +"km" = ( +/turf/space/transit/east, +/area/space) +"kW" = ( +/turf/simulated/floor/holofloor/wood, +/area/houseboat/holodeck/gaming) +"lb" = ( +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/turf/simulated/floor/holofloor/tiled, +/area/houseboat/holodeck/basketball) +"lP" = ( +/obj/effect/shuttle_landmark/transit/victory/excursion, +/turf/space/transit/east, +/area/space) +"mb" = ( +/turf/unsimulated/wall/seperator{ + name = "Unified Dimensions for All Shuttles to Land" + }, +/area/space) +"me" = ( +/obj/effect/shuttle_landmark/transit/victory/courser, +/turf/space/transit/east, +/area/space) +"mh" = ( +/turf/simulated/floor/holofloor/beach/water, +/area/houseboat/holodeck/beach) +"mx" = ( +/obj/effect/step_trigger/lost_in_space/shuttle, +/turf/space/transit/west, +/area/space) +"mT" = ( +/obj/effect/shuttle_landmark/transit/rift/specops, +/turf/space/transit/west, +/area/space) +"ns" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/turf/simulated/floor/holofloor/desert, +/area/houseboat/holodeck/desert) +"oa" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/unsimulated/wall, +/area/space) +"oo" = ( +/obj/structure/flora/ausbushes/brflowers, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/holofloor/grass, +/area/houseboat/holodeck/picnic) +"oz" = ( +/obj/structure/flora/ausbushes/brflowers, +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 1 + }, +/turf/simulated/floor/holofloor/grass, +/area/houseboat/holodeck/picnic) +"oL" = ( +/obj/effect/overlay/palmtree_l, +/obj/effect/overlay/coconut, +/turf/simulated/floor/holofloor/beach/sand, +/area/houseboat/holodeck/beach) +"pg" = ( +/turf/simulated/floor/holofloor/snow, +/area/houseboat/holodeck/snow) +"qF" = ( +/turf/unsimulated/beach/sand{ + icon_state = "beach" + }, +/area/houseboat/holodeck/beach) +"qN" = ( +/obj/effect/shuttle_landmark/transit/victory/emt, +/turf/space/transit/east, +/area/space) +"qR" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/holofloor/grass, +/area/houseboat/holodeck/picnic) +"rT" = ( +/turf/space, +/area/space) +"sz" = ( +/turf/space/bluespace, +/area/space) +"tp" = ( +/turf/simulated/floor/holofloor/desert, +/area/houseboat/holodeck/picnic) +"tF" = ( +/obj/effect/floor_decal/corner/red/full{ + dir = 8 + }, +/turf/simulated/floor/holofloor/tiled, +/area/houseboat/holodeck/basketball) +"uF" = ( +/turf/simulated/floor/reinforced/airless{ + name = "outer hull" + }, +/area/space) +"vq" = ( +/obj/effect/shuttle_landmark/transit{ + base_area = /area/space; + base_turf = /turf/space/transit/east; + landmark_tag = "belter_transit"; + name = "Belter Transit" + }, +/turf/space/transit/east, +/area/space) +"vr" = ( +/obj/structure/flora/ausbushes/brflowers, +/obj/effect/floor_decal/spline/fancy/wood/corner, +/turf/simulated/floor/holofloor/grass, +/area/houseboat/holodeck/picnic) +"vt" = ( +/obj/effect/step_trigger/lost_in_space, +/turf/space, +/area/space) +"wQ" = ( +/turf/simulated/floor/holofloor/space, +/area/houseboat/holodeck/space) +"xr" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/unsimulated/wall, +/area/space) +"xM" = ( +/obj/structure/flora/grass/green, +/turf/simulated/floor/holofloor/snow, +/area/houseboat/holodeck/snow) +"ya" = ( +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/holofloor/desert, +/area/houseboat/holodeck/desert) +"yp" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/unsimulated/wall, +/area/space) +"yv" = ( +/obj/structure/holostool, +/turf/simulated/floor/holofloor/desert, +/area/houseboat/holodeck/picnic) +"yR" = ( +/obj/effect/floor_decal/corner/green/full, +/turf/simulated/floor/holofloor/tiled, +/area/houseboat/holodeck/basketball) +"zt" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/unsimulated/wall, +/area/space) +"zU" = ( +/turf/unsimulated/wall, +/area/space) +"As" = ( +/obj/item/beach_ball, +/turf/simulated/floor/holofloor/beach/sand, +/area/houseboat/holodeck/beach) +"AW" = ( +/obj/effect/shuttle_landmark/transit/victory/trade, +/turf/space/transit/east, +/area/space) +"CQ" = ( +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/turf/simulated/floor/holofloor/tiled, +/area/houseboat/holodeck/basketball) +"Dq" = ( +/obj/effect/floor_decal/corner/red{ + dir = 10 + }, +/turf/simulated/floor/holofloor/tiled, +/area/houseboat/holodeck/basketball) +"EB" = ( +/obj/effect/step_trigger/lost_in_space, +/turf/space/transit/east, +/area/space) +"EC" = ( +/obj/item/beach_ball/holoball, +/turf/simulated/floor/holofloor/tiled, +/area/houseboat/holodeck/basketball) +"Fc" = ( +/obj/structure/flora/tree/dead, +/turf/simulated/floor/holofloor/snow, +/area/houseboat/holodeck/snow) +"FB" = ( +/obj/effect/step_trigger/thrower{ + affect_ghosts = 1; + direction = 8; + name = "thrower_escapeshuttletop(left)"; + tiles = 0 + }, +/turf/space/transit/east, +/area/space) +"GP" = ( +/obj/structure/table/woodentable/holotable, +/turf/simulated/floor/holofloor/wood, +/area/houseboat/holodeck/gaming) +"Hb" = ( +/obj/structure/holohoop{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/turf/simulated/floor/holofloor/tiled, +/area/houseboat/holodeck/basketball) +"Ho" = ( +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/turf/simulated/floor/holofloor/tiled, +/area/houseboat/holodeck/thunderdome) +"Hp" = ( +/obj/structure/bed/chair/holochair, +/turf/simulated/floor/holofloor/wood, +/area/houseboat/holodeck/gaming) +"Ht" = ( +/obj/effect/shuttle_landmark/transit{ + base_area = /area/space; + base_turf = /turf/space/transit/east; + landmark_tag = "escapepod1_transit"; + name = "Escapepod 1 Transit" + }, +/turf/space/transit/west, +/area/space) +"HS" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/holofloor/grass, +/area/houseboat/holodeck/picnic) +"HX" = ( +/obj/effect/floor_decal/corner/red/full{ + dir = 1 + }, +/turf/simulated/floor/holofloor/tiled, +/area/houseboat/holodeck/basketball) +"HZ" = ( +/obj/effect/step_trigger/lost_in_space/shuttle, +/turf/space/transit/east, +/area/space) +"It" = ( +/obj/structure/window/reinforced, +/turf/unsimulated/wall, +/area/space) +"IL" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/holofloor/grass, +/area/houseboat/holodeck/picnic) +"IO" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/turf/simulated/floor/holofloor/grass, +/area/houseboat/holodeck/picnic) +"Jy" = ( +/obj/effect/step_trigger/thrower{ + affect_ghosts = 1; + direction = 8; + name = "thrower_escapeshuttletop(left)"; + tiles = 0 + }, +/turf/space/transit/west, +/area/space) +"Kf" = ( +/obj/structure/flora/grass/both, +/turf/simulated/floor/holofloor/snow, +/area/houseboat/holodeck/snow) +"KZ" = ( +/obj/structure/holostool, +/turf/simulated/floor/holofloor/wood, +/area/houseboat/holodeck/bunking) +"Mc" = ( +/obj/effect/shuttle_landmark/transit{ + base_area = /area/space; + base_turf = /turf/space; + docking_controller = null; + landmark_tag = "tether_excursion_space"; + name = "Excursion Space" + }, +/turf/space, +/area/space) +"Mg" = ( +/obj/structure/table/holotable, +/obj/item/clothing/head/helmet/thunderdome, +/obj/item/clothing/suit/armor/tdome/green, +/obj/item/clothing/under/color/green, +/obj/item/holo/esword/green, +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/turf/simulated/floor/holofloor/tiled, +/area/houseboat/holodeck/thunderdome) +"Nf" = ( +/turf/space/sandyscroll, +/area/space) +"Nk" = ( +/obj/structure/flora/ausbushes/brflowers, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/holofloor/grass, +/area/houseboat/holodeck/picnic) +"Pe" = ( +/obj/effect/floor_decal/corner/green/full{ + dir = 4 + }, +/turf/simulated/floor/holofloor/tiled, +/area/houseboat/holodeck/basketball) +"Pk" = ( +/obj/effect/shuttle_landmark/transit/victory/pirate, +/turf/space, +/area/space) +"PT" = ( +/turf/simulated/floor/holofloor/reinforced, +/area/houseboat/holodeck/off) +"PX" = ( +/obj/effect/step_trigger/lost_in_space, +/turf/space/transit/west, +/area/space) +"Si" = ( +/obj/effect/shuttle_landmark/transit/victory/mining, +/turf/space/transit/east, +/area/space) +"US" = ( +/obj/machinery/porta_turret, +/turf/simulated/floor/reinforced/airless{ + name = "outer hull" + }, +/area/space) +"UW" = ( +/obj/structure/flora/tree/pine, +/turf/simulated/floor/holofloor/snow, +/area/houseboat/holodeck/snow) +"Wd" = ( +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/turf/simulated/floor/holofloor/tiled, +/area/houseboat/holodeck/thunderdome) +"Wy" = ( +/turf/unsimulated/wall/seperator, +/area/space) +"Xj" = ( +/turf/space/basic, +/area/space) +"YW" = ( +/turf/simulated/floor/holofloor/tiled, +/area/houseboat/holodeck/thunderdome) +"Zd" = ( +/obj/effect/step_trigger/thrower{ + affect_ghosts = 1; + direction = 4; + name = "thrower_escapeshuttletop(right)"; + tiles = 0 + }, +/turf/space/transit/east, +/area/space) +"ZS" = ( +/obj/structure/table/holotable, +/obj/item/clothing/head/helmet/thunderdome, +/obj/item/clothing/suit/armor/tdome/red, +/obj/item/clothing/under/color/red, +/obj/item/holo/esword/red, +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/turf/simulated/floor/holofloor/tiled, +/area/houseboat/holodeck/thunderdome) + +(1,1,1) = {" +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(2,1,1) = {" +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +Wy +mx +mx +mx +mx +mx +mx +mx +mx +mx +mx +mx +mx +mx +mx +mx +mx +mx +mx +mx +mx +Wy +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +Wy +rT +rT +zU +jX +jX +jX +jX +jX +zU +jX +jX +jX +jX +jX +zU +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(3,1,1) = {" +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +Wy +mx +by +by +by +by +by +by +by +by +by +by +by +by +by +by +by +by +by +by +mx +Wy +HZ +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +HZ +Wy +rT +rT +It +fz +gS +qF +mh +mh +ip +vr +fY +IL +IL +oz +yp +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(4,1,1) = {" +Wy +rT +rT +vt +vt +vt +vt +vt +vt +vt +vt +vt +vt +vt +vt +vt +vt +vt +vt +vt +vt +vt +rT +rT +Wy +rT +rT +vt +vt +vt +vt +vt +vt +vt +vt +vt +vt +vt +vt +vt +vt +vt +vt +vt +vt +vt +rT +rT +Wy +km +km +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +km +km +Wy +mx +by +by +by +by +by +by +by +by +by +by +by +by +by +by +by +by +by +by +mx +Wy +HZ +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +HZ +Wy +rT +rT +It +fz +As +qF +mh +mh +ip +IO +yv +ed +yv +qR +yp +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(5,1,1) = {" +Wy +rT +rT +vt +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +vt +rT +rT +Wy +rT +rT +vt +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +vt +rT +rT +Wy +km +km +EB +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +EB +km +km +Wy +mx +by +by +by +by +by +by +by +by +by +by +by +by +by +by +by +by +by +by +mx +Wy +HZ +km +km +km +km +km +km +km +km +km +km +FB +FB +FB +FB +FB +FB +km +km +km +km +km +km +km +km +km +km +HZ +Wy +rT +rT +It +fz +fz +qF +mh +mh +ip +eu +yv +ed +yv +oo +yp +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(6,1,1) = {" +Wy +rT +rT +vt +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +vt +rT +rT +Wy +rT +rT +vt +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +vt +rT +rT +Wy +km +km +EB +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +EB +km +km +Wy +mx +by +by +by +by +by +by +by +by +by +by +by +by +by +by +by +by +by +by +mx +Wy +HZ +km +km +km +km +km +km +km +km +km +FB +FB +km +km +km +km +FB +FB +km +km +km +km +km +km +km +km +km +HZ +Wy +rT +rT +It +fz +fz +qF +mh +mh +ip +eu +eu +tp +eu +qR +yp +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(7,1,1) = {" +Wy +rT +rT +vt +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +vt +rT +rT +Wy +rT +rT +vt +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +vt +rT +rT +Wy +km +km +EB +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +EB +km +km +Wy +mx +by +by +by +by +by +Jy +Jy +Jy +Jy +Jy +Jy +Jy +by +by +by +by +by +by +mx +Wy +HZ +km +km +km +km +km +km +km +km +km +FB +km +km +km +km +km +km +FB +km +km +km +km +km +km +km +km +km +HZ +Wy +rT +rT +It +fz +oL +qF +mh +mh +ip +HS +HS +Nk +Nk +dP +yp +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(8,1,1) = {" +Wy +rT +rT +vt +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +vt +rT +rT +Wy +rT +rT +vt +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +vt +rT +rT +Wy +km +km +EB +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +EB +km +km +Wy +mx +by +by +by +by +by +Jy +by +by +Ht +by +by +Jy +by +by +by +by +by +by +mx +Wy +HZ +km +km +km +km +km +km +km +km +km +FB +km +km +km +km +km +km +FB +km +km +km +km +km +km +km +km +km +HZ +Wy +rT +rT +zU +zt +zt +zt +zt +zt +zU +zt +zt +zt +zt +zt +zU +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(9,1,1) = {" +Wy +rT +rT +vt +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +vt +rT +rT +Wy +rT +rT +vt +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +vt +rT +rT +Wy +km +km +EB +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +EB +km +km +Wy +mx +by +by +by +by +by +Jy +by +by +by +by +by +Jy +by +by +by +by +by +by +mx +Wy +HZ +km +km +km +km +km +km +km +km +km +FB +km +km +km +km +km +km +FB +km +km +km +km +km +km +km +km +km +HZ +Wy +rT +rT +It +Kf +pg +pg +pg +pg +ip +wQ +wQ +wQ +wQ +wQ +yp +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(10,1,1) = {" +Wy +rT +rT +vt +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +vt +rT +rT +Wy +rT +rT +vt +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +vt +rT +rT +Wy +km +km +EB +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +EB +km +km +Wy +mx +by +by +by +by +by +Jy +by +by +by +by +by +Jy +by +by +by +by +by +by +mx +Wy +HZ +km +km +km +km +km +km +km +km +km +FB +km +km +km +km +km +km +FB +km +km +km +km +km +km +km +km +km +HZ +Wy +rT +rT +It +pg +pg +Fc +pg +pg +ip +wQ +wQ +wQ +wQ +wQ +yp +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(11,1,1) = {" +Wy +rT +rT +vt +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +vt +rT +rT +Wy +rT +rT +vt +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +vt +rT +rT +Wy +km +km +EB +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +EB +km +km +Wy +mx +by +by +by +by +by +Jy +by +by +by +by +by +Jy +by +by +by +by +by +by +mx +Wy +HZ +km +km +km +km +FB +FB +FB +FB +FB +FB +km +km +km +km +km +km +FB +FB +FB +FB +FB +FB +km +km +km +km +HZ +Wy +rT +rT +It +pg +pg +pg +xM +pg +ip +wQ +wQ +wQ +wQ +wQ +yp +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(12,1,1) = {" +Wy +rT +rT +vt +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +vt +rT +rT +Wy +rT +rT +vt +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +vt +rT +rT +Wy +km +km +EB +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +EB +km +km +Wy +mx +by +by +by +by +by +Jy +by +by +by +by +by +Jy +by +by +by +by +by +by +mx +Wy +HZ +km +km +km +FB +FB +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +FB +FB +km +km +km +HZ +Wy +rT +rT +It +pg +pg +UW +pg +pg +ip +wQ +wQ +wQ +wQ +wQ +yp +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(13,1,1) = {" +Wy +rT +rT +vt +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +vt +rT +rT +Wy +rT +rT +vt +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +vt +rT +rT +Wy +km +km +EB +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +EB +km +km +Wy +mx +by +by +by +by +by +Jy +by +by +by +by +by +Jy +by +by +by +by +by +by +mx +Wy +HZ +km +km +km +FB +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +FB +km +km +km +HZ +Wy +rT +rT +It +pg +pg +pg +pg +pg +ip +wQ +wQ +wQ +wQ +wQ +yp +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(14,1,1) = {" +Wy +rT +rT +vt +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +vt +rT +rT +Wy +rT +rT +vt +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +vt +rT +rT +Wy +km +km +EB +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +EB +km +km +Wy +mx +by +by +by +by +by +Jy +by +by +by +by +by +Jy +by +by +by +by +by +by +mx +Wy +HZ +km +km +km +FB +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +FB +km +km +km +HZ +Wy +rT +rT +zU +zt +zt +zt +zt +zt +zU +zt +zt +zt +zt +zt +zU +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(15,1,1) = {" +Wy +rT +rT +vt +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +vt +rT +rT +Wy +rT +rT +vt +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +vt +rT +rT +Wy +km +km +EB +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +EB +km +km +Wy +mx +by +by +by +by +by +Jy +by +by +by +by +by +Jy +by +by +by +by +by +by +mx +Wy +HZ +km +km +km +FB +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +FB +km +km +km +HZ +Wy +rT +rT +It +ya +dL +dL +dL +dL +ip +di +di +di +di +di +yp +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(16,1,1) = {" +Wy +rT +rT +vt +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +vt +rT +rT +Wy +rT +rT +vt +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +vt +rT +rT +Wy +km +km +EB +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +EB +km +km +Wy +mx +by +by +by +by +by +Jy +by +by +by +by +by +Jy +by +by +by +by +by +by +mx +Wy +HZ +km +km +km +FB +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +FB +km +km +km +HZ +Wy +rT +rT +It +dL +dL +ns +dL +dL +ip +ia +ia +ia +ia +ia +yp +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(17,1,1) = {" +Wy +rT +rT +vt +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +vt +rT +rT +Wy +rT +rT +vt +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +vt +rT +rT +Wy +km +km +EB +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +EB +km +km +Wy +mx +by +by +by +by +by +Jy +by +by +by +by +by +Jy +by +by +by +by +by +by +mx +Wy +HZ +km +km +km +FB +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +FB +km +km +km +HZ +Wy +rT +rT +It +dL +dL +dL +dL +dL +ip +ia +ia +ia +KZ +hJ +yp +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(18,1,1) = {" +Wy +rT +rT +vt +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +vt +rT +rT +Wy +rT +rT +vt +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +vt +rT +rT +Wy +km +km +EB +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +EB +km +km +Wy +mx +by +by +by +by +by +Jy +by +by +by +by +by +Jy +by +by +by +by +by +by +mx +Wy +HZ +km +km +km +FB +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +FB +km +km +km +HZ +Wy +rT +rT +It +dL +dL +dL +dL +dL +ip +ia +ia +ia +KZ +hJ +yp +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(19,1,1) = {" +Wy +rT +rT +vt +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +vt +rT +rT +Wy +rT +rT +vt +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +vt +rT +rT +Wy +km +km +EB +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +EB +km +km +Wy +mx +by +by +by +by +by +Jy +by +by +by +by +by +Jy +by +by +by +by +by +by +mx +Wy +HZ +km +km +km +FB +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +FB +km +km +km +HZ +Wy +rT +rT +It +dL +ns +dL +dL +ya +ip +ia +ia +ia +ia +ia +yp +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(20,1,1) = {" +Wy +rT +rT +vt +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +vt +rT +rT +Wy +rT +rT +vt +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +vt +rT +rT +Wy +km +km +EB +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +EB +km +km +Wy +mx +by +by +by +by +by +Jy +by +by +by +by +by +Jy +by +by +by +by +by +by +mx +Wy +HZ +km +km +km +FB +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +FB +km +km +km +HZ +Wy +rT +rT +zU +oa +oa +oa +oa +oa +zU +oa +oa +oa +oa +oa +zU +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(21,1,1) = {" +Wy +rT +rT +vt +rT +rT +rT +rT +rT +Pk +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +vt +rT +rT +Wy +rT +rT +vt +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +vt +rT +rT +Wy +km +km +EB +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +EB +km +km +Wy +mx +by +by +by +by +by +Jy +by +by +by +by +by +Jy +by +by +by +by +by +by +mx +Wy +HZ +km +km +km +FB +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +FB +km +km +km +HZ +Wy +rT +rT +It +kW +kW +kW +kW +kW +je +PT +PT +PT +PT +PT +yp +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(22,1,1) = {" +Wy +rT +rT +vt +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +vt +rT +rT +Wy +rT +rT +vt +rT +rT +rT +rT +rT +Mc +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +vt +rT +rT +Wy +km +km +EB +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +EB +km +km +Wy +mx +by +by +by +by +by +Jy +Jy +Jy +Jy +Jy +Jy +Jy +by +by +by +by +by +by +mx +Wy +HZ +km +km +km +FB +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +FB +km +km +km +HZ +Wy +rT +rT +It +kW +Hp +GP +aZ +kW +je +PT +PT +PT +PT +PT +yp +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(23,1,1) = {" +Wy +rT +rT +vt +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +vt +rT +rT +Wy +rT +rT +vt +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +vt +rT +rT +Wy +km +km +EB +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +EB +km +km +Wy +mx +by +by +by +by +by +by +by +by +by +by +by +by +by +by +by +by +by +by +mx +Wy +HZ +km +km +km +FB +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +FB +km +km +km +HZ +Wy +rT +rT +It +kW +Hp +GP +aZ +kW +je +PT +PT +PT +PT +PT +yp +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(24,1,1) = {" +Wy +rT +rT +vt +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +vt +rT +rT +Wy +rT +rT +vt +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +vt +rT +rT +Wy +km +km +EB +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +EB +km +km +Wy +mx +by +by +by +by +by +by +by +by +by +by +by +by +by +by +by +by +by +by +mx +Wy +HZ +km +km +km +FB +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +FB +km +km +km +HZ +Wy +rT +rT +It +kW +Hp +GP +aZ +kW +je +PT +PT +PT +PT +PT +yp +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(25,1,1) = {" +Wy +rT +rT +vt +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +vt +rT +rT +Wy +rT +rT +vt +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +vt +rT +rT +Wy +km +km +EB +km +km +km +km +km +km +km +km +Si +km +km +km +km +km +km +km +km +EB +km +km +Wy +mx +by +by +by +by +by +by +by +by +by +by +by +by +by +by +by +by +by +by +mx +Wy +HZ +km +km +km +FB +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +FB +km +km +km +HZ +Wy +rT +rT +It +kW +kW +kW +kW +kW +je +PT +PT +PT +PT +PT +yp +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(26,1,1) = {" +Wy +rT +rT +vt +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +vt +rT +rT +Wy +rT +rT +vt +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +vt +rT +rT +Wy +km +km +EB +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +EB +km +km +Wy +mx +by +by +by +by +by +by +by +by +by +by +by +by +by +by +by +by +by +by +mx +Wy +HZ +km +km +km +FB +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +FB +km +km +km +HZ +Wy +rT +rT +zU +zt +zt +zt +zt +zt +zU +zt +zt +zt +zt +zt +zU +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(27,1,1) = {" +Wy +rT +rT +vt +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +vt +rT +rT +Wy +rT +rT +vt +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +vt +rT +rT +Wy +km +km +EB +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +EB +km +km +Wy +mx +by +by +by +by +by +by +by +by +by +by +by +by +by +by +by +by +by +by +mx +Wy +HZ +km +km +km +FB +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +FB +km +km +km +HZ +Wy +rT +rT +It +CQ +Dq +fg +fk +lb +je +ZS +YW +YW +YW +Mg +yp +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(28,1,1) = {" +Wy +rT +rT +vt +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +vt +rT +rT +Wy +rT +rT +vt +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +vt +rT +rT +Wy +km +km +EB +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +EB +km +km +Wy +mx +mx +mx +mx +mx +mx +mx +mx +mx +mx +mx +mx +mx +mx +mx +mx +mx +mx +mx +mx +Wy +HZ +km +km +FB +FB +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +FB +FB +km +km +HZ +Wy +rT +rT +It +tF +Dq +fg +fk +yR +je +Ho +YW +YW +YW +Wd +yp +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(29,1,1) = {" +Wy +rT +rT +vt +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +vt +rT +rT +Wy +rT +rT +vt +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +vt +rT +rT +Wy +km +km +EB +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +EB +km +km +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +HZ +km +km +FB +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +FB +km +km +HZ +Wy +rT +rT +It +iL +Dq +EC +fk +Hb +je +Ho +YW +YW +YW +Wd +yp +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(30,1,1) = {" +Wy +rT +rT +vt +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +vt +rT +rT +Wy +rT +rT +vt +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +vt +rT +rT +Wy +km +km +EB +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +EB +km +km +Wy +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +Wy +HZ +km +km +FB +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +AW +km +FB +km +km +HZ +Wy +rT +rT +It +HX +Dq +fg +fk +Pe +je +Ho +YW +YW +YW +Wd +yp +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(31,1,1) = {" +Wy +rT +rT +vt +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +vt +rT +rT +Wy +rT +rT +vt +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +vt +rT +rT +Wy +km +km +EB +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +EB +km +km +Wy +HZ +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +HZ +Wy +HZ +km +km +FB +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +FB +km +km +HZ +Wy +rT +rT +It +CQ +Dq +fg +fk +lb +je +ZS +YW +YW +YW +Mg +yp +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(32,1,1) = {" +Wy +rT +rT +vt +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +vt +rT +rT +Wy +rT +rT +vt +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +vt +rT +rT +Wy +km +km +EB +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +EB +km +km +Wy +HZ +km +km +km +FB +FB +FB +FB +FB +FB +FB +FB +FB +FB +km +km +km +km +km +HZ +Wy +HZ +km +km +FB +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +FB +km +km +HZ +Wy +rT +rT +zU +xr +xr +xr +xr +xr +zU +xr +xr +xr +xr +xr +zU +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(33,1,1) = {" +Wy +rT +rT +vt +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +vt +rT +rT +Wy +rT +rT +vt +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +vt +rT +rT +Wy +km +km +EB +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +EB +km +km +Wy +HZ +km +km +km +FB +km +km +km +km +km +km +km +km +FB +FB +km +km +km +km +HZ +Wy +HZ +km +km +FB +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +FB +km +km +HZ +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(34,1,1) = {" +Wy +rT +rT +vt +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +vt +rT +rT +Wy +rT +rT +vt +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +vt +rT +rT +Wy +km +km +EB +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +EB +km +km +Wy +HZ +km +km +km +FB +km +km +km +km +km +km +km +km +km +FB +FB +km +km +km +HZ +Wy +HZ +km +km +FB +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +FB +km +km +HZ +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(35,1,1) = {" +Wy +rT +rT +vt +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +vt +rT +rT +Wy +rT +rT +vt +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +vt +rT +rT +Wy +km +km +EB +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +EB +km +km +Wy +HZ +km +km +km +FB +km +km +km +km +km +km +km +km +km +km +FB +FB +km +km +HZ +Wy +HZ +km +km +FB +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +FB +km +km +HZ +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(36,1,1) = {" +Wy +rT +rT +vt +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +vt +rT +rT +Wy +rT +rT +vt +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +vt +rT +rT +Wy +km +km +EB +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +EB +km +km +Wy +HZ +km +km +km +FB +km +km +km +km +km +km +km +km +km +km +km +FB +km +km +HZ +Wy +HZ +km +km +FB +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +FB +km +km +HZ +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(37,1,1) = {" +Wy +rT +rT +vt +vt +vt +vt +vt +vt +vt +vt +vt +vt +vt +vt +vt +vt +vt +vt +vt +vt +vt +rT +rT +Wy +rT +rT +vt +vt +vt +vt +vt +vt +vt +vt +vt +vt +vt +vt +vt +vt +vt +vt +vt +vt +vt +rT +rT +Wy +km +km +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +km +km +Wy +HZ +km +km +km +FB +km +km +km +km +km +km +km +km +km +km +km +FB +km +km +HZ +Wy +HZ +km +km +FB +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +FB +km +km +HZ +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(38,1,1) = {" +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +Wy +HZ +km +km +km +FB +km +km +km +km +qN +km +km +km +km +km +km +FB +km +km +HZ +Wy +HZ +km +km +FB +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +FB +km +km +HZ +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(39,1,1) = {" +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +Wy +HZ +km +km +km +FB +km +km +km +km +km +km +km +km +km +km +km +FB +km +km +HZ +Wy +HZ +km +km +FB +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +FB +km +km +HZ +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(40,1,1) = {" +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +HZ +km +km +km +FB +km +km +km +km +km +km +km +km +km +km +km +FB +km +km +HZ +Wy +HZ +km +km +FB +FB +FB +FB +FB +FB +FB +FB +FB +FB +FB +FB +FB +FB +FB +FB +FB +FB +FB +FB +FB +FB +km +km +HZ +Wy +rT +rT +rT +rT +uF +uF +uF +uF +uF +uF +uF +uF +uF +uF +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(41,1,1) = {" +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +Wy +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +Wy +HZ +km +km +km +FB +km +km +km +km +km +km +km +km +km +km +km +FB +km +km +HZ +Wy +HZ +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +HZ +Wy +rT +rT +rT +rT +uF +uF +uF +uF +uF +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(42,1,1) = {" +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +Wy +HZ +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +HZ +Wy +HZ +km +km +km +FB +FB +km +km +km +km +km +km +km +km +km +km +FB +km +km +HZ +Wy +HZ +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +HZ +Wy +rT +rT +rT +rT +uF +uF +uF +uF +uF +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(43,1,1) = {" +Wy +rT +rT +vt +vt +vt +vt +vt +vt +vt +vt +vt +vt +vt +vt +vt +vt +vt +vt +vt +vt +vt +rT +rT +Wy +HZ +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +HZ +Wy +HZ +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +HZ +Wy +HZ +km +km +km +km +FB +FB +km +km +km +km +km +km +FB +FB +FB +FB +km +km +HZ +Wy +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +Wy +rT +rT +rT +rT +uF +uF +uF +uF +uF +rT +rT +rT +sz +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(44,1,1) = {" +Wy +rT +rT +vt +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +vt +rT +rT +Wy +HZ +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +HZ +Wy +HZ +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +HZ +Wy +HZ +km +km +km +km +km +FB +FB +km +km +km +km +km +FB +km +km +km +km +km +HZ +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +rT +rT +rT +rT +uF +uF +uF +uF +uF +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(45,1,1) = {" +Wy +rT +rT +vt +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +vt +rT +rT +Wy +HZ +km +km +km +km +km +Zd +Zd +Zd +Zd +Zd +Zd +Zd +Zd +Zd +Zd +Zd +Zd +km +km +km +km +HZ +Wy +HZ +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +HZ +Wy +HZ +km +km +km +km +km +km +FB +km +km +km +km +km +FB +km +km +km +km +km +HZ +Wy +by +by +by +by +by +by +by +by +by +by +by +by +by +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +uF +uF +uF +uF +uF +rT +rT +rT +Nf +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(46,1,1) = {" +Wy +rT +rT +vt +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +vt +rT +rT +Wy +HZ +km +km +km +km +km +Zd +km +km +km +km +km +km +km +km +km +km +Zd +km +km +km +km +HZ +Wy +HZ +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +HZ +Wy +HZ +km +km +km +km +km +km +FB +km +km +km +km +km +FB +km +km +km +km +km +HZ +Wy +by +by +PX +PX +PX +PX +PX +PX +PX +PX +PX +by +by +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +uF +US +uF +uF +uF +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(47,1,1) = {" +Wy +rT +rT +vt +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +vt +rT +rT +Wy +HZ +km +km +km +km +km +Zd +km +km +km +km +km +km +km +km +km +km +Zd +km +km +km +km +HZ +Wy +HZ +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +HZ +Wy +HZ +km +km +km +km +km +km +FB +km +km +km +km +km +FB +km +km +km +km +km +HZ +Wy +by +by +PX +by +by +by +by +by +by +by +PX +by +by +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +uF +uF +uF +uF +uF +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(48,1,1) = {" +Wy +rT +rT +vt +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +vt +rT +rT +Wy +HZ +km +km +km +km +km +Zd +km +km +km +km +km +km +km +km +km +km +Zd +km +km +km +km +HZ +Wy +HZ +km +km +km +km +km +km +km +Zd +Zd +Zd +Zd +Zd +Zd +Zd +km +km +km +km +km +km +km +HZ +Wy +HZ +km +km +km +km +km +km +FB +FB +km +km +km +FB +FB +km +km +km +km +km +HZ +Wy +by +by +PX +by +by +by +by +by +by +by +PX +by +by +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +uF +uF +uF +uF +uF +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(49,1,1) = {" +Wy +rT +rT +vt +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +vt +rT +rT +Wy +HZ +km +km +km +km +km +Zd +km +km +km +km +km +km +km +km +km +km +Zd +km +km +km +km +HZ +Wy +HZ +km +km +km +km +km +km +km +Zd +km +km +km +km +km +Zd +km +km +km +km +km +km +km +HZ +Wy +HZ +km +km +km +km +km +km +km +FB +FB +FB +FB +FB +km +km +km +km +km +km +HZ +Wy +by +PX +PX +by +by +by +by +by +by +by +PX +PX +by +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +uF +uF +uF +uF +uF +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(50,1,1) = {" +Wy +rT +rT +vt +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +vt +rT +rT +Wy +HZ +km +km +km +km +km +Zd +km +km +km +km +km +km +km +km +km +km +Zd +km +km +km +km +HZ +Wy +HZ +km +km +km +km +km +km +km +Zd +km +km +km +km +km +Zd +km +km +km +km +km +km +km +HZ +Wy +HZ +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +HZ +Wy +by +PX +by +by +by +by +by +by +by +by +by +PX +by +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +uF +uF +uF +uF +uF +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(51,1,1) = {" +Wy +rT +rT +vt +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +vt +rT +rT +Wy +HZ +km +km +km +km +km +Zd +km +km +km +km +km +km +km +km +km +km +Zd +km +km +km +km +HZ +Wy +HZ +km +km +km +km +km +km +km +Zd +km +km +km +km +km +Zd +km +km +km +km +km +km +km +HZ +Wy +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +Wy +by +PX +by +by +by +by +by +by +by +by +by +PX +by +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +uF +US +uF +uF +uF +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(52,1,1) = {" +Wy +rT +rT +vt +rT +rT +rT +rT +rT +rT +aA +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +vt +rT +rT +Wy +HZ +km +km +km +km +km +Zd +km +km +km +km +km +km +km +km +km +km +Zd +km +km +km +km +HZ +Wy +HZ +km +km +km +km +km +km +km +Zd +km +km +km +km +km +Zd +km +km +km +km +km +km +km +HZ +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +by +PX +by +by +by +by +by +by +by +by +by +PX +by +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +uF +uF +uF +uF +uF +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(53,1,1) = {" +Wy +rT +rT +vt +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +vt +rT +rT +Wy +HZ +km +km +km +km +km +Zd +km +km +km +km +km +km +km +km +km +km +Zd +km +km +km +km +HZ +Wy +HZ +km +km +km +km +km +km +km +Zd +km +km +km +km +km +Zd +km +km +km +km +km +km +km +HZ +Wy +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +jD +Wy +Wy +by +PX +by +by +by +by +by +by +by +by +by +PX +by +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +uF +uF +uF +uF +uF +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(54,1,1) = {" +Wy +rT +rT +vt +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +vt +rT +rT +Wy +HZ +km +km +km +km +km +Zd +km +km +km +km +km +km +km +km +km +km +Zd +km +km +km +km +HZ +Wy +HZ +km +km +km +km +km +km +km +Zd +km +km +km +km +km +Zd +km +km +km +km +km +km +km +HZ +Wy +HZ +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +jD +Wy +Wy +by +PX +by +by +by +by +by +by +by +by +by +PX +by +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +uF +uF +uF +uF +uF +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(55,1,1) = {" +Wy +rT +rT +vt +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +vt +rT +rT +Wy +HZ +km +km +km +km +km +Zd +km +km +km +km +km +km +km +km +km +km +Zd +km +km +km +km +HZ +Wy +HZ +km +km +km +km +km +km +km +Zd +km +km +km +km +km +Zd +km +km +km +km +km +km +km +HZ +Wy +HZ +km +km +km +FB +FB +FB +FB +FB +FB +FB +FB +FB +FB +FB +km +km +km +jD +Wy +Wy +by +PX +by +by +by +by +by +by +by +by +by +PX +by +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +uF +uF +uF +uF +uF +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(56,1,1) = {" +Wy +rT +rT +vt +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +vt +rT +rT +Wy +HZ +km +km +km +km +km +Zd +km +km +km +km +km +km +km +km +km +km +Zd +km +km +km +km +HZ +Wy +HZ +km +km +km +km +km +km +km +Zd +km +km +km +km +km +Zd +km +km +km +km +km +km +km +HZ +Wy +HZ +km +km +km +FB +km +km +km +km +km +km +km +km +km +FB +km +km +km +jD +Wy +Wy +by +PX +by +by +by +by +by +by +by +by +by +PX +by +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +uF +uF +uF +uF +uF +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(57,1,1) = {" +Wy +rT +rT +vt +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +vt +rT +rT +Wy +HZ +km +km +km +km +km +Zd +km +km +km +km +km +km +km +km +km +km +Zd +km +km +km +km +HZ +Wy +HZ +km +km +km +km +km +km +km +Zd +km +km +km +km +km +Zd +km +km +km +km +km +km +km +HZ +Wy +HZ +km +km +km +FB +km +km +km +km +km +km +km +km +km +FB +km +km +km +jD +Wy +Wy +by +PX +by +by +by +by +by +by +by +by +by +PX +by +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +uF +uF +uF +uF +uF +uF +uF +uF +uF +uF +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(58,1,1) = {" +Wy +rT +rT +vt +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +vt +rT +rT +Wy +HZ +km +km +km +km +km +Zd +km +km +km +km +km +km +km +km +km +km +Zd +km +km +km +km +HZ +Wy +HZ +km +km +km +km +km +km +km +Zd +km +km +vq +km +km +Zd +km +km +km +km +km +km +km +HZ +Wy +HZ +km +km +km +FB +km +km +km +km +km +km +km +km +km +FB +km +km +km +jD +Wy +Wy +by +PX +PX +by +by +by +by +by +by +by +PX +PX +by +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(59,1,1) = {" +Wy +rT +rT +vt +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +vt +rT +rT +Wy +HZ +km +km +km +km +km +Zd +km +km +km +km +km +km +km +km +km +km +Zd +km +km +km +km +HZ +Wy +HZ +km +km +km +km +km +km +km +Zd +Zd +Zd +Zd +Zd +Zd +Zd +km +km +km +km +km +km +km +HZ +Wy +HZ +km +km +km +FB +km +km +km +km +km +km +km +km +km +FB +km +km +km +jD +Wy +Wy +by +by +PX +by +by +by +by +by +by +by +PX +by +by +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(60,1,1) = {" +Wy +rT +rT +vt +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +vt +rT +rT +Wy +HZ +km +km +km +km +km +Zd +km +lP +km +km +km +km +km +km +km +km +Zd +km +km +km +km +HZ +Wy +HZ +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +HZ +Wy +HZ +km +km +km +FB +km +km +km +km +km +km +km +km +km +FB +km +km +km +jD +Wy +Wy +by +by +PX +by +by +by +by +by +by +by +PX +by +by +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(61,1,1) = {" +Wy +rT +rT +vt +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +vt +rT +rT +Wy +HZ +km +km +km +km +km +Zd +km +km +km +km +km +km +km +km +km +km +Zd +km +km +km +km +HZ +Wy +HZ +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +HZ +Wy +HZ +km +km +km +FB +km +km +km +km +km +km +km +km +km +FB +km +km +km +jD +Wy +Wy +by +by +PX +PX +by +mT +by +by +by +PX +PX +by +by +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(62,1,1) = {" +Wy +rT +rT +vt +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +vt +rT +rT +Wy +HZ +km +km +km +km +km +Zd +km +km +km +km +km +km +km +km +km +km +Zd +km +km +km +km +HZ +Wy +HZ +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +HZ +Wy +HZ +km +km +km +FB +km +km +km +km +km +km +km +km +km +FB +km +km +km +jD +Wy +Wy +by +by +by +PX +by +by +by +by +by +PX +by +by +by +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(63,1,1) = {" +Wy +rT +rT +vt +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +vt +rT +rT +Wy +HZ +km +km +km +km +km +Zd +km +km +km +km +km +km +km +km +km +km +Zd +km +km +km +km +HZ +Wy +HZ +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +HZ +Wy +HZ +km +km +km +FB +km +km +km +km +km +km +km +me +km +FB +km +km +km +jD +Wy +Wy +by +by +by +PX +PX +PX +PX +PX +PX +PX +by +by +by +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(64,1,1) = {" +Wy +rT +rT +vt +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +vt +rT +rT +Wy +HZ +km +km +km +km +km +Zd +km +km +km +km +km +km +km +km +km +km +Zd +km +km +km +km +HZ +Wy +HZ +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +HZ +Wy +HZ +km +km +km +FB +km +km +km +km +km +km +km +km +km +FB +km +km +km +jD +Wy +Wy +by +by +by +by +by +by +by +by +by +by +by +by +by +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(65,1,1) = {" +Wy +rT +rT +vt +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +vt +rT +rT +Wy +HZ +km +km +km +km +km +Zd +km +km +km +km +km +km +km +km +km +km +Zd +km +km +km +km +HZ +Wy +HZ +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +HZ +Wy +HZ +km +km +km +FB +km +km +km +km +km +km +km +km +km +FB +km +km +km +jD +Wy +Wy +by +by +by +by +by +by +by +by +by +by +by +by +by +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(66,1,1) = {" +Wy +rT +rT +vt +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +vt +rT +rT +Wy +HZ +km +km +km +km +km +Zd +km +km +km +km +km +km +km +km +km +km +Zd +km +km +km +km +HZ +Wy +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +Wy +HZ +km +km +km +FB +FB +km +km +km +km +km +km +km +FB +FB +km +km +km +jD +Wy +Wy +by +by +by +by +by +by +by +by +by +by +by +by +by +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(67,1,1) = {" +Wy +rT +rT +vt +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +vt +rT +rT +Wy +HZ +km +km +km +km +km +Zd +km +km +km +km +km +km +km +km +km +km +Zd +km +km +km +km +HZ +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +HZ +km +km +km +km +FB +FB +km +km +km +km +km +FB +FB +km +km +km +km +jD +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(68,1,1) = {" +Wy +rT +rT +vt +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +vt +rT +rT +Wy +HZ +km +km +km +km +km +Zd +km +km +km +km +km +km +km +km +km +km +Zd +km +km +km +km +HZ +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +HZ +km +km +km +km +km +FB +km +km +km +km +km +FB +km +km +km +km +km +jD +Wy +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(69,1,1) = {" +Wy +rT +rT +vt +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +vt +rT +rT +Wy +HZ +km +km +km +km +km +Zd +km +km +km +km +km +km +km +km +km +km +Zd +km +km +km +km +HZ +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +HZ +km +km +km +km +km +FB +km +km +km +km +km +FB +km +km +km +km +km +jD +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(70,1,1) = {" +Wy +rT +rT +vt +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +vt +rT +rT +Wy +HZ +km +km +km +km +km +Zd +Zd +Zd +Zd +Zd +Zd +Zd +Zd +Zd +Zd +Zd +Zd +km +km +km +km +HZ +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +HZ +km +km +km +km +km +FB +km +km +km +km +km +FB +km +km +km +km +km +jD +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(71,1,1) = {" +Wy +rT +rT +vt +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +vt +rT +rT +Wy +HZ +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +HZ +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +HZ +km +km +km +km +km +FB +km +km +km +km +km +FB +km +km +km +km +km +jD +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(72,1,1) = {" +Wy +rT +rT +vt +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +vt +rT +rT +Wy +HZ +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +HZ +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +HZ +km +km +km +km +km +FB +km +km +km +km +km +FB +km +km +km +km +km +jD +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(73,1,1) = {" +Wy +rT +rT +vt +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +vt +rT +rT +Wy +HZ +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +HZ +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +HZ +km +km +km +km +km +FB +km +km +km +km +km +FB +km +km +km +km +km +jD +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +rT +rT +rT +mb +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(74,1,1) = {" +Wy +rT +rT +vt +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +vt +rT +rT +Wy +HZ +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +HZ +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +HZ +km +km +km +km +km +FB +FB +km +km +km +FB +FB +km +km +km +km +km +jD +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(75,1,1) = {" +Wy +rT +rT +vt +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +vt +rT +rT +Wy +HZ +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +HZ +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +HZ +km +km +km +km +km +km +FB +km +km +km +FB +km +km +km +km +km +km +jD +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(76,1,1) = {" +Wy +rT +rT +vt +vt +vt +vt +vt +vt +vt +vt +vt +vt +vt +vt +vt +vt +vt +vt +vt +vt +vt +rT +rT +Wy +HZ +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +HZ +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +HZ +km +km +km +km +km +km +FB +FB +FB +FB +FB +km +km +km +km +km +km +jD +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(77,1,1) = {" +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +HZ +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +jD +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(78,1,1) = {" +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +km +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +HZ +jD +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(79,1,1) = {" +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(80,1,1) = {" +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(81,1,1) = {" +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(82,1,1) = {" +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(83,1,1) = {" +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +rT +rT +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(84,1,1) = {" +Wy +rT +rT +rT +rT +rT +rT +rT +Wy +Wy +Wy +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +rT +rT +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(85,1,1) = {" +Wy +rT +rT +rT +rT +rT +rT +Wy +Wy +rT +rT +Wy +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +rT +rT +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(86,1,1) = {" +Wy +rT +rT +rT +rT +rT +Wy +Wy +rT +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(87,1,1) = {" +Wy +rT +rT +rT +rT +rT +Wy +rT +rT +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(88,1,1) = {" +Wy +rT +rT +rT +rT +rT +Wy +rT +rT +rT +Wy +rT +Wy +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +Wy +Wy +Wy +Wy +Wy +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(89,1,1) = {" +Wy +rT +rT +rT +rT +rT +Wy +rT +rT +rT +Wy +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +rT +Wy +Wy +rT +Wy +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(90,1,1) = {" +Wy +rT +rT +rT +rT +rT +Wy +rT +rT +rT +Wy +Wy +Wy +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +Wy +Wy +Wy +rT +Wy +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(91,1,1) = {" +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +Wy +Wy +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(92,1,1) = {" +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(93,1,1) = {" +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +Wy +Wy +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(94,1,1) = {" +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +Wy +rT +Wy +Wy +Wy +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +Wy +Wy +rT +rT +rT +Wy +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(95,1,1) = {" +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +Wy +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(96,1,1) = {" +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +rT +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(97,1,1) = {" +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +rT +rT +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(98,1,1) = {" +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +rT +rT +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +Wy +Wy +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(99,1,1) = {" +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +rT +rT +rT +rT +Wy +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +Wy +rT +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(100,1,1) = {" +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +rT +rT +rT +Wy +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +rT +rT +Wy +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(101,1,1) = {" +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +Wy +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +rT +rT +Wy +Wy +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(102,1,1) = {" +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +Wy +rT +rT +Wy +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(103,1,1) = {" +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +Wy +Wy +Wy +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(104,1,1) = {" +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +Wy +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(105,1,1) = {" +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +Wy +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +Wy +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(106,1,1) = {" +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +Wy +rT +rT +Wy +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +Wy +Wy +Wy +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(107,1,1) = {" +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +rT +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(108,1,1) = {" +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +Wy +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +Wy +rT +rT +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(109,1,1) = {" +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +rT +rT +Wy +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +Wy +rT +Wy +rT +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(110,1,1) = {" +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +rT +Wy +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +rT +rT +Wy +rT +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(111,1,1) = {" +Wy +rT +rT +rT +rT +rT +rT +Wy +Wy +rT +Wy +Wy +rT +Wy +Wy +Wy +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +Wy +rT +rT +rT +rT +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +Wy +rT +rT +rT +Wy +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(112,1,1) = {" +Wy +rT +rT +rT +rT +Wy +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +Wy +rT +rT +rT +Wy +Wy +rT +rT +rT +rT +rT +rT +rT +rT +Wy +Wy +Wy +Wy +Wy +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(113,1,1) = {" +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +Wy +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(114,1,1) = {" +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(115,1,1) = {" +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +Xj +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(116,1,1) = {" +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(117,1,1) = {" +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +Wy +Wy +Wy +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(118,1,1) = {" +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +Wy +Wy +rT +Wy +rT +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(119,1,1) = {" +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +rT +rT +rT +Wy +rT +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(120,1,1) = {" +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +Wy +Wy +Wy +Wy +rT +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(121,1,1) = {" +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(122,1,1) = {" +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(123,1,1) = {" +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(124,1,1) = {" +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(125,1,1) = {" +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(126,1,1) = {" +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(127,1,1) = {" +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(128,1,1) = {" +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(129,1,1) = {" +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(130,1,1) = {" +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(131,1,1) = {" +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(132,1,1) = {" +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(133,1,1) = {" +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(134,1,1) = {" +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +Wy +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(135,1,1) = {" +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(136,1,1) = {" +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(137,1,1) = {" +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(138,1,1) = {" +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(139,1,1) = {" +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(140,1,1) = {" +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(141,1,1) = {" +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(142,1,1) = {" +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(143,1,1) = {" +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(144,1,1) = {" +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(145,1,1) = {" +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(146,1,1) = {" +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(147,1,1) = {" +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(148,1,1) = {" +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(149,1,1) = {" +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(150,1,1) = {" +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(151,1,1) = {" +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(152,1,1) = {" +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(153,1,1) = {" +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(154,1,1) = {" +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(155,1,1) = {" +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(156,1,1) = {" +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(157,1,1) = {" +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(158,1,1) = {" +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(159,1,1) = {" +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(160,1,1) = {" +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(161,1,1) = {" +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(162,1,1) = {" +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(163,1,1) = {" +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(164,1,1) = {" +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(165,1,1) = {" +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(166,1,1) = {" +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(167,1,1) = {" +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(168,1,1) = {" +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(169,1,1) = {" +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(170,1,1) = {" +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(171,1,1) = {" +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(172,1,1) = {" +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(173,1,1) = {" +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(174,1,1) = {" +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(175,1,1) = {" +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(176,1,1) = {" +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(177,1,1) = {" +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(178,1,1) = {" +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(179,1,1) = {" +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(180,1,1) = {" +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(181,1,1) = {" +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(182,1,1) = {" +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(183,1,1) = {" +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(184,1,1) = {" +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(185,1,1) = {" +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(186,1,1) = {" +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(187,1,1) = {" +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(188,1,1) = {" +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(189,1,1) = {" +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(190,1,1) = {" +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(191,1,1) = {" +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} +(192,1,1) = {" +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +rT +"} diff --git a/maps/victory/sectors.dm b/maps/victory/sectors.dm new file mode 100644 index 000000000000..4907cd3a2df9 --- /dev/null +++ b/maps/victory/sectors.dm @@ -0,0 +1,56 @@ +////////////////////////////////////////////////////////////////////////// +// There is literally a dm file for victory shuttles, why are these here// +////////////////////////////////////////////////////////////////////////// +// EXCURSION SHUTTLE DATA +/obj/overmap/entity/visitable/ship/landable/excursion/victory + name = "Excursion Shuttle" + desc = "A modified Excursion shuttle thats seen in use of the Marksman fleet of Nanotrasen." + color = "#72388d" //Purple + fore_dir = WEST + vessel_mass = 10000 + vessel_size = SHIP_SIZE_SMALL + shuttle = "Excursion Shuttle" + +//Courser Shuttle Data +/obj/overmap/entity/visitable/ship/landable/courser/victory + name = "Courser Scouting Vessel" + desc = "Where there's a cannon, there's a way." + color = "#af3e97" //Pinkish Purple + fore_dir = EAST + vessel_mass = 8000 + vessel_size = SHIP_SIZE_SMALL + shuttle = "Courser Scouting Vessel" + +// Public Civilian Shuttle + +/obj/overmap/entity/visitable/ship/landable/civvie/victory + name = "Civilian Transport" + desc = "A basic, but slow, transport to ferry civilian to and from the ship." + fore_dir = EAST + vessel_mass = 15000 + vessel_size = SHIP_SIZE_SMALL + shuttle = "Civilian Transport" + + + +// Mining Shuttle + +/obj/overmap/entity/visitable/ship/landable/mining/victory + name = "Mining Shuttle" + desc = "It ain't much, but it's honest work." + color = "#ba7d4b" //Tan + fore_dir = WEST + vessel_mass = 7000 + vessel_size = SHIP_SIZE_SMALL + shuttle = "Mining Shuttle" + +//EMT Shuttle + +/obj/overmap/entity/visitable/ship/landable/emt/victory + name = "Dart EMT Shuttle" + desc = "The budget didn't allow for flashing lights." + color = "#00a5f2" //Light Blue + fore_dir = EAST + vessel_mass = 9000 + vessel_size = SHIP_SIZE_SMALL + shuttle = "Dart EMT Shuttle" diff --git a/maps/victory/shuttles.dm b/maps/victory/shuttles.dm new file mode 100644 index 000000000000..032feaa21b84 --- /dev/null +++ b/maps/victory/shuttles.dm @@ -0,0 +1,156 @@ +//////////////////////////////////////// +// Victory custom shuttle implemnetations +//////////////////////////////////////// + +/obj/machinery/computer/shuttle_control/victory_backup + name = "victory backup shuttle control console" + shuttle_tag = "Victory Backup" + req_one_access = list(ACCESS_COMMAND_BRIDGE,ACCESS_GENERAL_PILOT) + +/obj/machinery/computer/shuttle_control/multi/mercenary + name = "vessel control console" + shuttle_tag = "Mercenary" + req_one_access = list(ACCESS_FACTION_SYNDICATE) + +/obj/machinery/computer/shuttle_control/multi/ninja + name = "vessel control console" + shuttle_tag = "Ninja" + //req_one_access = list() + +/obj/machinery/computer/shuttle_control/multi/skipjack + name = "vessel control console" + shuttle_tag = "Skipjack" + //req_one_access = list() + +/obj/machinery/computer/shuttle_control/multi/specops + name = "vessel control console" + shuttle_tag = "NDV Phantom" + req_one_access = list(ACCESS_CENTCOM_ERT) + +/obj/machinery/computer/shuttle_control/multi/trade + name = "vessel control console" + shuttle_tag = "Trade" + req_one_access = list(ACCESS_FACTION_TRADER) + +// EXCURSION SHUTTLE DATA + +/datum/shuttle/autodock/overmap/excursion/victory + name = "Excursion Shuttle" + warmup_time = 0 + shuttle_area = list(/area/shuttle/excursion/victory) + shuttle_area = list(/area/shuttle/excursion/cockpit, /area/shuttle/excursion/general, /area/shuttle/excursion/cargo) + current_location = "victory_excursion_hangar" + docking_controller_tag = "expshuttle_docker" + landmark_transition = "nav_transit_exploration" + move_time = 20 + +/area/shuttle/excursion/victory + name = "Excursion Shuttle" + icon_state = "shuttle" + +/obj/machinery/computer/shuttle_control/explore/excursion + name = "short jump console" + shuttle_tag = "Excursion Shuttle" + req_one_access = list(ACCESS_GENERAL_PILOT) + +// COURSER SHUTTLE DATA + +/datum/shuttle/autodock/overmap/courser/victory + name = "Courser Scouting Vessel" + warmup_time = 0 + shuttle_area = list(/area/shuttle/courser/cockpit, /area/shuttle/courser/general, /area/shuttle/courser/battery) + //shuttle_area = list(/area/shuttle/excursion/cockpit, /area/shuttle/excursion/general, /area/shuttle/excursion/cargo) + current_location = "victory_courser_hangar" + docking_controller_tag = "courser_docker" + landmark_transition = "nav_transit_courser" + move_time = 15 + +/area/shuttle/courser + name = "Courser Scouting Vessel" + icon_state = "shuttle" + +/obj/machinery/computer/shuttle_control/explore/courser + name = "short jump console" + shuttle_tag = "Courser Scouting Vessel" + req_one_access = list(ACCESS_GENERAL_PILOT) + +// Public Civilian Shuttle + +/datum/shuttle/autodock/overmap/civvie/victory + name = "Civilian Transport" + warmup_time = 10 + shuttle_area = list(/area/shuttle/civvie/cockpit, /area/shuttle/civvie/general) + current_location = "victory_civvie_home" + docking_controller_tag = "civvie_docker" + landmark_transition = "nav_transit_civvie" + fuel_consumption = 10 + move_time = 30 + +/area/shuttle/civvie + name = "Civilian Transport" + icon_state = "shuttle" + +/obj/machinery/computer/shuttle_control/explore/civvie + name = "civilian jump console" + shuttle_tag = "Civilian Transport" + + +// Mining Shuttle + +/datum/shuttle/autodock/overmap/mining/victory + name = "Mining Shuttle" + warmup_time = 10 + shuttle_area = list(/area/shuttle/mining_ship/general) + current_location = "victory_mining_port" + docking_controller_tag = "mining_docker" + landmark_transition = "nav_transit_mining" + move_time = 30 + +/area/shuttle/mining + name = "Mining Shuttle" + icon_state = "shuttle" + +/obj/machinery/computer/shuttle_control/explore/mining + name = "mining jump console" + shuttle_tag = "Mining Shuttle" + +//EMT Shuttle +/datum/shuttle/autodock/overmap/emt/victory + name = "Dart EMT Shuttle" + warmup_time = 5 + shuttle_area = list(/area/shuttle/emt/general, /area/shuttle/emt/cockpit) + current_location = "victory_emt_dock" + docking_controller_tag = "emt_shuttle_docker" + landmark_transition = "nav_transit_emt" + move_time = 20 + +/area/shuttle/emt + name = "Dart EMT Shuttle" + icon_state = "shuttle" + +/obj/machinery/computer/shuttle_control/explore/emt + name = "EMT jump console" + shuttle_tag = "Dart EMT Shuttle" + +////////////////////////////////////////////////////////////// +// Escape shuttle and pods +/datum/shuttle/autodock/ferry/emergency/escape/victory + name = "Escape" + location = FERRY_LOCATION_OFFSITE + shuttle_area = /area/shuttle/escape + warmup_time = 10 + landmark_offsite = "escape_cc" + landmark_station = "escape_victory" + landmark_transition = "escape_transit" + move_time = SHUTTLE_TRANSIT_DURATION_RETURN + +// Supply shuttle +/datum/shuttle/autodock/ferry/supply/cargo/victory + name = "Supply" + location = FERRY_LOCATION_OFFSITE + shuttle_area = /area/shuttle/supply + warmup_time = 10 + landmark_offsite = "supply_cc" + landmark_station = "supply_dock" + docking_controller_tag = "supply_shuttle" + flags = SHUTTLE_FLAGS_PROCESS|SHUTTLE_FLAGS_SUPPLY diff --git a/maps/victory/telecomms.dm b/maps/victory/telecomms.dm new file mode 100644 index 000000000000..048a6d21e95b --- /dev/null +++ b/maps/victory/telecomms.dm @@ -0,0 +1,57 @@ +/obj/machinery/telecomms/relay/preset/victory/deck_one + id = "Deck Relay 1" + autolinkers = list("tb1_relay") + +/obj/machinery/telecomms/relay/preset/centcom/victory/deck_one + +/obj/machinery/telecomms/relay/preset/victory/deck_two + id = "Deck Relay 2" + autolinkers = list("tb2_relay") + +/obj/machinery/telecomms/relay/preset/centcom/victory/deck_two + +/obj/machinery/telecomms/relay/preset/victory/deck_three + id = "Deck Relay 3" + autolinkers = list("tb3_relay") + +/obj/machinery/telecomms/relay/preset/centcom/victory/deck_three + +/obj/machinery/telecomms/relay/preset/victory/deck_four + id = "Deck Relay 4" + autolinkers = list("tb4_relay") + +/obj/machinery/telecomms/relay/preset/centcom/victory/deck_four + +// #### Hub #### +/obj/machinery/telecomms/hub/preset/victory + id = "Hub" + network = "tcommsat" + autolinkers = list("hub", + "tb1_relay", "tb2_relay", "tb3_relay", "tb4_relay","c_relay", "m_relay", "r_relay", "sci_o_relay", "ud_relay", + "science", "medical", "supply", "service", "common", "command", "engineering", "security", "explorer", "unused", + "hb_relay", "receiverA", "broadcasterA" + ) + +/obj/machinery/telecomms/receiver/preset_right/victory +// id = "victory_rx" + freq_listening = list(AI_FREQ, SCI_FREQ, MED_FREQ, SUP_FREQ, SRV_FREQ, COMM_FREQ, ENG_FREQ, SEC_FREQ, ENT_FREQ, EXP_FREQ) + +/obj/machinery/telecomms/broadcaster/preset_right/victory +// id = "victory_tx" + +/obj/machinery/telecomms/bus/preset_two/victory + freq_listening = list(SUP_FREQ, SRV_FREQ, EXP_FREQ) + +/obj/machinery/telecomms/server/presets/service/victory + freq_listening = list(SRV_FREQ, EXP_FREQ) + autolinkers = list("service", "explorer") + +// Telecommunications Satellite + +/obj/item/multitool/victory_buffered + name = "pre-linked multitool (tether hub)" + desc = "This multitool has already been linked to the Tether telecomms hub and can be used to configure one (1) relay." + +/obj/item/multitool/victory_buffered/Initialize(mapload) + . = ..() + buffer = locate(/obj/machinery/telecomms/hub/preset/victory) diff --git a/maps/victory/victory-areas.dm b/maps/victory/victory-areas.dm new file mode 100644 index 000000000000..eced23429320 --- /dev/null +++ b/maps/victory/victory-areas.dm @@ -0,0 +1,184 @@ + +/area/victory/surfacebase + name = "Surface Base" + +/area/victory/surfacebase/outside + name = "Outside - Surface" + sound_env = MOUNTAINS + is_outside = OUTSIDE_YES + +/area/victory/surfacebase/outside/outside1 + icon_state = "outside1" + +/area/victory/surfacebase/outside/outside2 + icon_state = "outside2" + +/area/victory/surfacebase/outside/outside3 + icon_state = "outside3" + +/area/victory/surfacebase/outside/empty + name = "Outside - Empty Area" + +/area/victory/surfacebase/outside/wilderness + name = "Outside - Wilderness" + icon_state = "invi" + +/area/victory/surfacebase/temple + name = "Outside - Wilderness" // ToDo: Make a way to hide spoiler areas off the list of areas ghosts can jump to. + icon_state = "red" +/area/victory/surfacebase/crash + name = "Outside - Wilderness" // ToDo: Make a way to hide spoiler areas off the list of areas ghosts can jump to. + icon_state = "yellow" +/area/victory/surfacebase/tram + name = "\improper Tram Station" + icon_state = "dk_yellow" + area_flags = AREA_FLAG_ERODING +/area/victory/surfacebase/atrium_one + name = "\improper Atrium First Floor" + icon_state = "dk_yellow" +/area/victory/surfacebase/atrium_two + name = "\improper Atrium Second Floor" + icon_state = "dk_yellow" +/area/victory/surfacebase/atrium_three + name = "\improper Atrium Third Floor" + icon_state = "dk_yellow" +/area/victory/surfacebase/north_stairs_one + name = "\improper North Stairwell First Floor" + icon_state = "dk_yellow" +/area/victory/surfacebase/north_stairs_two + name = "\improper North Stairwell Second Floor" + icon_state = "dk_yellow" +/area/victory/surfacebase/north_stairs_three + name = "\improper North Stairwell Third Floor" + icon_state = "dk_yellow" +/area/victory/surfacebase/public_garden_one + name = "\improper Public Garden First Floor" + icon_state = "green" +/area/victory/surfacebase/public_garden_two + name = "\improper Public Garden Second Floor" + icon_state = "green" +/area/victory/surfacebase/public_garden_three + name = "\improper Public Garden Third Floor" + icon_state = "green" +/area/victory/surfacebase/public_garden + name = "\improper Public Garden" + icon_state = "purple" +/area/victory/surfacebase/bar_backroom + name = "\improper Bar Backroom" + icon_state = "red" + sound_env = SMALL_SOFTFLOOR +/area/victory/surfacebase/fishing_garden + name = "\improper Fish Pond" + icon_state = "blue" +/area/victory/surfacebase/sauna + name = "\improper Public Sauna" + icon_state = "green" +/area/victory/surfacebase/lounge + name = "\improper Station Lounge" + icon_state = "purple" +// /area/victory/surfacebase/east_stairs_one //This is just part of a lower hallway +/area/victory/surfacebase/east_stairs_two + name = "\improper East Stairwell Second Floor" + icon_state = "dk_yellow" +// /area/victory/surfacebase/east_stairs_three //This is just part of an upper hallway +/area/victory/surfacebase/emergency_storage + icon_state = "emergencystorage" +/area/victory/surfacebase/emergency_storage/panic_shelter + name = "\improper Panic Shelter Emergency Storage" +/area/victory/surfacebase/emergency_storage/rnd + name = "\improper RnD Emergency Storage" +/area/victory/surfacebase/emergency_storage/atmos + name = "\improper Atmospherics Emergency Storage" +/area/victory/surfacebase/emergency_storage/atrium + name = "\improper Atrium Emergency Storage" +// Main mining area +/area/victory/surfacebase/mining_main + icon_state = "outpost_mine_main" +/area/victory/surfacebase/mining_main/airlock + name = "\improper Mining Airlock" +/area/victory/surfacebase/mining_main/storage + name = "\improper Mining Gear Storage" +/area/victory/surfacebase/mining_main/uxstorage + name = "\improper Mining Secondary Storage" +/area/victory/surfacebase/mining_main/ore + name = "\improper Mining Ore Storage" +/area/victory/surfacebase/mining_main/eva + name = "\improper Mining EVA" +/area/victory/surfacebase/mining_main/break_room + name = "\improper Mining Crew Area" +/area/victory/surfacebase/mining_main/refinery + name = "\improper Mining Refinery" +/area/victory/surfacebase/mining_main/external + name = "\improper Mining Refinery" +/area/victory/surfacebase/mining_main/bathroom + name = "\improper Mining Bathroom" +/area/victory/surfacebase/mining_main/lobby + name = "\improper Mining Lobby" +// Solars map areas +/area/victory/outpost/solars_outside + name = "\improper Solar Farm" + is_outside = OUTSIDE_YES +/area/victory/outpost/solars_shed + name = "\improper Solar Farm Shed" +//Surface med +/area/victory/surfacebase/medical + icon_state = "medical" +/area/victory/surfacebase/medical/lobby + name = "\improper Surface Medical Lobby" +/area/victory/surfacebase/medical/triage + name = "\improper Surface Triage" +/area/victory/surfacebase/medical/first_aid_west + name = "\improper First Aid West" +//Surface sec +/area/victory/surfacebase/security + icon_state = "security" +/area/victory/surfacebase/security/breakroom + name = "\improper Surface Security Break Room" +/area/victory/surfacebase/security/lobby + name = "\improper Surface Security Lobby" +/area/victory/surfacebase/security/common + name = "\improper Surface Security Room" +/area/victory/surfacebase/security/armory + name = "\improper Surface Armory" +/area/victory/surfacebase/security/checkpoint + name = "\improper Surface Checkpoint Office" +/area/victory/surfacebase/security/hallway + name = "\improper Surface Checkpoint Hallway" +//Misc +/area/victory/surfacebase/shuttle_pad + name = "\improper Victory Shuttle Pad" +/area/victory/surfacebase/reading_room + name = "\improper Reading Room" +/area/victory/surfacebase/vacant_site + name = "\improper Vacant Site" + +/area/victory/station/public_meeting_room + name = "Public Meeting Room" + icon_state = "blue" + sound_env = SMALL_SOFTFLOOR + nightshift_level = NIGHTSHIFT_LEVEL_PUBLIC_FACILITIES + +/area/victory/surfacebase + name = "Victory Debug Surface" + +/area/victory/transit + name = "Victory Debug Transit" + requires_power = 0 + +/area/victory/space + name = "Victory Debug Space" + requires_power = 0 + +/area/victory/station/stairs_three + name = "\improper Station Stairwell Third Floor" + icon_state = "dk_yellow" + +/area/victory/station/stairs_four + name = "\improper Station Stairwell Fourth Floor" + icon_state = "dk_yellow" +/area/victory/station/dock_one + name = "\improper Dock One" + icon_state = "dk_yellow" +/area/victory/station/dock_two + name = "\improper Dock Two" + icon_state = "dk_yellow" diff --git a/maps/victory/victory-overmap.dm b/maps/victory/victory-overmap.dm new file mode 100644 index 000000000000..24e69861f3ca --- /dev/null +++ b/maps/victory/victory-overmap.dm @@ -0,0 +1,27 @@ +/obj/overmap/entity/visitable/ship/victory + name = "NSV Victory" // Name of the location on the overmap. + desc = "The Victory is one of the many ships that is a part of the NDV Marksmans Fleet in this sector" + + scanner_desc = @{"[i]Registration[/i]: NSV Victory +[i]Class[/i]: Science Vessel +[i]Transponder[/i]: Transmitting (CIV), Nanotrasen IFF +[b]Notice[/b]: Nanotrasen Vessel, authorized personnel only"} + + icon_state = "ship" + vessel_mass = 12500 // temporarily buffed by 2x due to vorestation fucking up large gas thruster code + burn_delay = 2 SECONDS + fore_dir = EAST // Which direction the ship/z-level is facing. It will move dust particles from that direction when moving. + base = TRUE // Honestly unsure what this does but it seems the main sector or "Map" we're at has this so here it stays + // The waypoints that are avaliable once you are at this Navpoint + initial_generic_waypoints = list("nav_capitalship_docking2", "victory_excursion_hangar", "victory_space_SW", "victory_mining_port") + + initial_restricted_waypoints = list( + "Excursion Shuttle" = list("victory_excursion_hangar"), + "Courser Scouting Vessel" = list("victory_courser_hangar"), + "Hammerhead Patrol Barge" = list("victory_hammerhead_hangar"), + "Civilian Transport" = list("victory_civvie_home"), + "Dart EMT Shuttle" = list("victory_emt_dock"), + "Beruang Trade Ship" = list("victory_annex_dock"), + "Mining Shuttle" = list("victory_mining_port"), + "NDV Quicksilver" = list("victory_specops_dock") + ) diff --git a/maps/victory/victory-sectors.dm b/maps/victory/victory-sectors.dm new file mode 100644 index 000000000000..6020ea339821 --- /dev/null +++ b/maps/victory/victory-sectors.dm @@ -0,0 +1,14 @@ + +/obj/overmap/entity/visitable/sector/centcom_victory + name = "NDV Marksman" + desc = "The NDV Marksman is a Nanotrasen supercarrier that serves as the flagship for the eponymous Marksman Fleet." + scanner_desc = @{"[i]Information[/i]: The NDV Marksman is a Nanotrasen supercarrier that serves as the flagship for the eponymous Marksman Fleet."} + in_space = 1 + known = TRUE + icon = 'icons/modules/overmap/tiled.dmi' + icon_state = "fleet" + color = "#007396" + + initial_restricted_waypoints = list( + "NDV Quicksilver" = list("specops_hangar") + ) diff --git a/maps/victory/victory-shuttle-landmarks.dm b/maps/victory/victory-shuttle-landmarks.dm new file mode 100644 index 000000000000..b4aac48a6e7f --- /dev/null +++ b/maps/victory/victory-shuttle-landmarks.dm @@ -0,0 +1,161 @@ +/* +Preset landmarks from Victory. Still in use for a few maps. At some point need to remap these but +right now its not a big priority - Bloop 2022 + + */ + +// Shared landmark for docking at the station + +/obj/effect/shuttle_landmark/automatic/station_dockpoint1 + name = "Station Docking Point 1" + landmark_tag = "nav_station_docking1" + docking_controller = "deck4_dockarm1" + base_turf = /turf/space + base_area = /area/space + +/obj/effect/shuttle_landmark/automatic/station_dockpoint2 + name = "NSV Victory - Docking Arm 2" + landmark_tag = "nav_capitalship_docking2" + docking_controller = "deck4_dockarm2" + base_turf = /turf/space + base_area = /area/space + + +// Exclusive landmark for docking at the station + +/obj/effect/shuttle_landmark/victory/deck4/civvie + name = "NSV Victory - Civilian Transport Dock" + landmark_tag = "victory_civvie_home" + docking_controller = "civvie_dock" + base_turf = /turf/space + base_area = /area/space + +/obj/effect/shuttle_landmark/victory/deck4/specops + name = "NSV Victory - Special Operations Dock" + landmark_tag = "victory_specops_dock" + docking_controller = "victory_specops_dock" + base_turf = /turf/space + base_area = /area/space + +/obj/effect/shuttle_landmark/victory/deck3/emt + name = "NSV Victory - EMT Shuttle Dock" + landmark_tag = "victory_emt_dock" + docking_controller = "emt_shuttle_dock" + base_turf = /turf/space + base_area = /area/space + +/obj/effect/shuttle_landmark/victory/deck2/mining + name = "NSV Victory Mining Dock" + landmark_tag = "victory_mining_port" + base_turf = /turf/space + base_area = /area/space + +/obj/effect/shuttle_landmark/victory/deck2/trade + name = "NSV Victory Annex Dock" + landmark_tag = "victory_annex_dock" + docking_controller = "victory_annex_dock" + base_turf = /turf/space + base_area = /area/space + +// Shared landmark for docking *inside* the station + + +// Exclusive landmark for docking *inside* the station + +/obj/effect/shuttle_landmark/victory/deck4/excursion + name = "NSV Victory - Excursion Hangar" + landmark_tag = "victory_excursion_hangar" + docking_controller = "expshuttle_dock" + base_turf = /turf/simulated/floor/tiled/techfloor/grid + base_area = /area/exploration/excursion_dock + +/obj/effect/shuttle_landmark/victory/deck4/courser + name = "NSV Victory - Courser Hangar" + landmark_tag = "victory_courser_hangar" + docking_controller = "courser_dock" + base_turf = /turf/simulated/floor/tiled/techfloor/grid + base_area = /area/exploration/courser_dock + +/obj/effect/shuttle_landmark/victory/deck4/hammerhead + name = "NSV Victory - Hammerhead Hangar" + landmark_tag = "rift_hammerhead_hangar" + docking_controller = "hammerhead_docker" + base_turf = /turf/simulated/floor/tiled/techfloor/grid + base_area = /area/security/hammerhead_bay + +// ON STATION NAV POINTS + +/obj/effect/shuttle_landmark/victory/deck4/excursion_space + name = "Near NSV Victory (SW)" + landmark_tag = "victory_space_SW" + base_turf = /turf/space + base_area = /area/space + +/obj/effect/shuttle_landmark/victory/deck3/port + name = "Near NSV Victory (Port Deck 3)" + landmark_tag = "victory_space_port_3" + base_turf = /turf/space + base_area = /area/space + +/obj/effect/shuttle_landmark/victory/deck3/starboard + name = "Near NSV Victory (Starboard Deck 3)" + landmark_tag = "victory_space_starboard_3" + base_turf = /turf/space + base_area = /area/space + +/obj/effect/shuttle_landmark/victory/deck2/port + name = "Near NSV Victory (Port Deck 2)" + landmark_tag = "victory_space_port_2" + base_turf = /turf/space + base_area = /area/space + +/obj/effect/shuttle_landmark/victory/deck2/starboard + name = "Near NSV Victory (Starboard Deck 2)" + landmark_tag = "victory_space_starboard_2" + base_turf = /turf/space + base_area = /area/space + +/obj/effect/shuttle_landmark/victory/deck1/port + name = "Near NSV Victory (Port Deck 1)" + landmark_tag = "victory_space_port_1" + base_turf = /turf/space + base_area = /area/space + +/obj/effect/shuttle_landmark/victory/deck1/starboard + name = "Near NSV Victory (Starboard Deck 1)" + landmark_tag = "victory_space_starboard_1" + base_turf = /turf/space + base_area = /area/space + +// OFF-STATION NAV POINTS + + +// TRANSIT NAV POINTS + +/obj/effect/shuttle_landmark/transit/victory/excursion + name = "In transit" + landmark_tag = "nav_transit_exploration" + +/obj/effect/shuttle_landmark/transit/victory/courser + name = "In transit" + landmark_tag = "nav_transit_courser" + +/obj/effect/shuttle_landmark/transit/victory/pirate + name = "In transit" + landmark_tag = "nav_transit_pirate" + +/obj/effect/shuttle_landmark/transit/victory/civvie + name = "In transit" + landmark_tag = "nav_transit_civvie" + +/obj/effect/shuttle_landmark/transit/victory/mining + name = "In transit" + landmark_tag = "nav_transit_mining" + +/obj/effect/shuttle_landmark/transit/victory/trade + name = "In transit" + landmark_tag = "nav_transit_trade" + +/obj/effect/shuttle_landmark/transit/victory/emt + name = "In transit" + landmark_tag = "nav_transit_emt" diff --git a/maps/victory/victory-turbolifts.dm b/maps/victory/victory-turbolifts.dm new file mode 100644 index 000000000000..08ed226fbfb4 --- /dev/null +++ b/maps/victory/victory-turbolifts.dm @@ -0,0 +1,15 @@ + +/obj/turbolift_map_holder/victory + name = "Victory Climber" + depth = 4 + lift_size_x = 3 + lift_size_y = 1 + icon = 'icons/obj/turbolift_preview_3x3.dmi' + wall_type = null // Don't make walls + + areas_to_use = list( + /area/turbolift/t_ship/level1, + /area/turbolift/t_ship/level2, + /area/turbolift/t_ship/level3, + /area/turbolift/t_ship/level4 + ) diff --git a/maps/victory/victory.dm b/maps/victory/victory.dm new file mode 100644 index 000000000000..14d91c30c28e --- /dev/null +++ b/maps/victory/victory.dm @@ -0,0 +1,222 @@ +/datum/map/station/victory + id = "victory" + name = "World - Victory" + levels = list( + /datum/map_level/victory/ship/deck_one, + /datum/map_level/victory/ship/deck_two, + /datum/map_level/victory/ship/deck_three, + /datum/map_level/victory/ship/deck_four, + /datum/map_level/victory/misc, + /datum/map_level/victory/transit, + /datum/map_level/victory/flagship, + ) + width = 192 + height = 192 + world_width = 192 + world_height = 192 + lateload = list( + /datum/map/sector/debrisfield_192, + /datum/map/sector/piratebase_192, + /datum/map/sector/mining_192, + /datum/map/sector/gaia_192, + /datum/map/sector/frozen_192, + /datum/map/sector/wasteland_192, + /datum/map/sector/tradeport_192, + /datum/map/sector/lavaland_192, + /datum/map/sector/miaphus_192, + /datum/map/sector/roguemining_192/one, + ) + + // todo: remove after dev is done + allow_random_draw = FALSE + + //* LEGACY BELOW *// + + legacy_assert_shuttle_datums = list( + /datum/shuttle/autodock/overmap/excursion/victory, + /datum/shuttle/autodock/ferry/emergency/escape/victory, + /datum/shuttle/autodock/ferry/supply/cargo/victory, + /datum/shuttle/autodock/overmap/emt/victory, + /datum/shuttle/autodock/overmap/mining/victory, + /datum/shuttle/autodock/overmap/civvie/victory, + /datum/shuttle/autodock/overmap/courser/victory, + /datum/shuttle/autodock/ferry/belter, + ) + + full_name = "NSV Victory" + + use_overmap = TRUE + overmap_size = 60 + overmap_event_areas = 50 + usable_email_tlds = list("victory.nt") + + station_name = "NSV Victory" + station_short = "Victory" + dock_name = "NDV Marksman" + dock_type = "space" + boss_name = "Central Command" + boss_short = "CentCom" + company_name = "Nanotrasen" + company_short = "NT" + starsys_name = "Sigmar Concord" + + shuttle_docked_message = "This is the %dock_name% calling to the NSV Victory. The scheduled crew transfer shuttle has docked with the NSV Victory. Departing crew should board the shuttle within %ETD%." + shuttle_leaving_dock = "The transfer shuttle has left the ship. Estimate %ETA% until the shuttle arrives at the %dock_name%." + shuttle_called_message = "This is the %dock_name% calling to the NSV Victory. A scheduled crew transfer to the %dock_name% is commencing. Those departing should proceed to the shuttle bay within %ETA%." + shuttle_recall_message = "The scheduled crew transfer has been cancelled." + shuttle_name = "Crew Hands Transfer" + emergency_shuttle_docked_message = "The evacuation shuttle has arrived at the ship. You have approximately %ETD% to board the shuttle." + emergency_shuttle_leaving_dock = "The emergency shuttle has left the station. Estimate %ETA% until the shuttle arrives at %dock_name%." + emergency_shuttle_called_message = "An emergency evacuation has begun, and an off-schedule shuttle has been called. It will arrive at the hanger bay in approximately %ETA%." + emergency_shuttle_recall_message = "The evacuation shuttle has been recalled." + + station_networks = list( + NETWORK_CARGO, + NETWORK_CIRCUITS, + NETWORK_CIVILIAN, + NETWORK_COMMAND, + NETWORK_ENGINE, + NETWORK_ENGINEERING, + NETWORK_EXPLORATION, + //NETWORK_DEFAULT, //Is this even used for anything? Robots show up here, but they show up in ROBOTS network too, + NETWORK_MEDICAL, + NETWORK_MINE, + NETWORK_OUTSIDE, + NETWORK_RESEARCH, + NETWORK_RESEARCH_OUTPOST, + NETWORK_ROBOTS, + NETWORK_SECURITY, + NETWORK_TCOMMS, + "Victory", + ) + secondary_networks = list( + NETWORK_ERT, + NETWORK_MERCENARY, + NETWORK_THUNDER, + NETWORK_COMMUNICATORS, + NETWORK_ALARM_ATMOS, + NETWORK_ALARM_POWER, + NETWORK_ALARM_FIRE, + NETWORK_TRADE_STATION + ) + + bot_patrolling = FALSE + + allowed_spawns = list(LATEJOIN_METHOD_ARRIVALS_SHUTTLE,LATEJOIN_METHOD_GATEWAY,LATEJOIN_METHOD_CRYOGENIC_STORAGE,LATEJOIN_METHOD_ROBOT_STORAGE,"Beruang Trading Corp Cryo") + spawnpoint_died = /datum/spawnpoint/arrivals + spawnpoint_left = /datum/spawnpoint/arrivals + spawnpoint_stayed = /datum/spawnpoint/cryo + + meteor_strike_areas = null + + unit_test_exempt_areas = list( + /area/vacant/vacant_site, + /area/vacant/vacant_site/east, + /area/solar/) + unit_test_exempt_from_atmos = list( + /area/engineering/atmos/intake, + /area/tcommsat/chamber, + /area/engineering/engineering_airlock, + /area/solar/) + +// For making the 4-in-1 holomap, we calculate some offsets +/// Width and height of compiled in victory z levels. +#define VICTORY_MAP_SIZE 192 +/// 40px central gutter between columns +#define VICTORY_HOLOMAP_CENTER_GUTTER 20 +/// 100 +#define VICTORY_HOLOMAP_MARGIN_X ((HOLOMAP_ICON_SIZE - (2*VICTORY_MAP_SIZE) - VICTORY_HOLOMAP_CENTER_GUTTER) / 2) +/// 60 +#define VICTORY_HOLOMAP_MARGIN_Y ((HOLOMAP_ICON_SIZE - (3*VICTORY_MAP_SIZE)) / 2) +// We have a bunch of stuff common to the station z levels + +/datum/map_level/victory/ship + flags = LEGACY_LEVEL_STATION|LEGACY_LEVEL_CONTACT|LEGACY_LEVEL_PLAYER|LEGACY_LEVEL_CONSOLES + persistence_allowed = TRUE + +/datum/map_level/victory/ship/deck_one + id = "VictoryDeck1" + name = "Victory - Deck 1" + display_id = "victory-deck-1" + display_name = "NSV Victory - Engineering Deck" + absolute_path = "maps/victory/levels/deck1.dmm" + traits = list( + ZTRAIT_STATION, + ZTRAIT_FACILITY_SAFETY, + ) + base_turf = /turf/space + link_above = /datum/map_level/victory/ship/deck_two + flags = LEGACY_LEVEL_STATION|LEGACY_LEVEL_CONTACT|LEGACY_LEVEL_PLAYER|LEGACY_LEVEL_CONSOLES + +/datum/map_level/victory/ship/deck_two + id = "VictoryDeck2" + name = "Victory - Deck 2" + display_id = "victory-deck-2" + display_name = "NSV Victory - Service Deck" + absolute_path = "maps/victory/levels/deck2.dmm" + traits = list( + ZTRAIT_STATION, + ZTRAIT_FACILITY_SAFETY, + ZTRAIT_LEGACY_BELTER_DOCK, + ) + base_turf = /turf/simulated/open + link_above = /datum/map_level/victory/ship/deck_three + link_below = /datum/map_level/victory/ship/deck_one + flags = LEGACY_LEVEL_STATION|LEGACY_LEVEL_CONTACT|LEGACY_LEVEL_PLAYER|LEGACY_LEVEL_CONSOLES + +/datum/map_level/victory/ship/deck_three + id = "VictoryDeck3" + name = "Victory - Deck 3" + display_id = "victory-deck-3" + display_name = "NSV Victory - Operations Deck" + absolute_path = "maps/victory/levels/deck3.dmm" + traits = list( + ZTRAIT_STATION, + ZTRAIT_FACILITY_SAFETY, + ) + base_turf = /turf/simulated/open + link_above = /datum/map_level/victory/ship/deck_four + link_below = /datum/map_level/victory/ship/deck_two + flags = LEGACY_LEVEL_STATION|LEGACY_LEVEL_CONTACT|LEGACY_LEVEL_PLAYER|LEGACY_LEVEL_CONSOLES + +/datum/map_level/victory/ship/deck_four + id = "VictoryDeck4" + name = "Victory - Deck 4" + display_id = "victory-deck-4" + display_name = "NSV Victory - Command Deck" + absolute_path = "maps/victory/levels/deck4.dmm" + traits = list( + ZTRAIT_STATION, + ZTRAIT_FACILITY_SAFETY, + ) + base_turf = /turf/simulated/open + link_below = /datum/map_level/victory/ship/deck_three + flags = LEGACY_LEVEL_STATION|LEGACY_LEVEL_CONTACT|LEGACY_LEVEL_PLAYER|LEGACY_LEVEL_CONSOLES + +/datum/map_level/victory/flagship + id = "VictoryFlagship" + name = "Victory - Centcom / Flagship" + display_id = "victory-flagship" + display_name = "NSV Victory - Flagship Offboarding" + absolute_path = "maps/victory/levels/flagship.dmm" + flags = LEGACY_LEVEL_ADMIN|LEGACY_LEVEL_CONTACT + +/datum/map_level/victory/transit + id = "VictoryTransit" + name = "Victory - Ships / Static Transit" + absolute_path = "maps/victory/levels/transit.dmm" + traits = list( + ZTRAIT_LEGACY_BELTER_TRANSIT, + ) + flags = LEGACY_LEVEL_ADMIN + +/datum/map_level/victory/misc + id = "VictoryMisc" + name = "Victory - Misc" + absolute_path = "maps/victory/levels/misc.dmm" + flags = LEGACY_LEVEL_ADMIN + +#undef VICTORY_MAP_SIZE +#undef VICTORY_HOLOMAP_CENTER_GUTTER +#undef VICTORY_HOLOMAP_MARGIN_X +#undef VICTORY_HOLOMAP_MARGIN_Y From 882f8de286c0ca293a1abdeb8d987f77424ccd4e Mon Sep 17 00:00:00 2001 From: Athena148 <140056159+Athena148@users.noreply.github.com> Date: Mon, 23 Sep 2024 12:45:22 -0400 Subject: [PATCH 19/20] On The Shoulders of Giants (#6737) --- citadel.dme | 4 + .../derelict/derelict.dm/derelict_flora.dm | 380 ++++++++++++++++++ .../derelict/derelict.dm/derelict_horrors.dm | 134 ++++++ .../derelict/derelict.dm/derelict_props.dm | 349 ++++++++++++++++ .../derelict.dm/derelict_structures.dm | 135 +++++++ .../derelict/derelict.dmi/32x32 props.dmi | Bin 0 -> 7344 bytes .../derelict/derelict.dmi/64x64 props.dmi | Bin 0 -> 1134 bytes .../derelict/derelict.dmi/96x96 props.dmi | Bin 0 -> 422 bytes .../derelict/derelict.dmi/cave_walls.dmi | Bin 0 -> 7504 bytes .../derelict.dmi/derelict_doors 96x96.dmi | Bin 0 -> 1673 bytes .../derelict/derelict.dmi/derelict_doors.dmi | Bin 0 -> 2902 bytes .../derelict/derelict.dmi/derelict_flora.dmi | Bin 0 -> 110573 bytes .../derelict.dmi/derelict_horrors.dmi | Bin 0 -> 204230 bytes .../derelict/derelict.dmi/derelict_props.dmi | Bin 0 -> 30384 bytes .../derelict/derelict.dmi/derelict_tiles.dmi | Bin 0 -> 34257 bytes .../derelict/derelict.dmi/derelict_walls.dmi | Bin 0 -> 3783 bytes 16 files changed, 1002 insertions(+) create mode 100644 code/game/content/factions/derelict/derelict.dm/derelict_flora.dm create mode 100644 code/game/content/factions/derelict/derelict.dm/derelict_horrors.dm create mode 100644 code/game/content/factions/derelict/derelict.dm/derelict_props.dm create mode 100644 code/game/content/factions/derelict/derelict.dm/derelict_structures.dm create mode 100644 code/game/content/factions/derelict/derelict.dmi/32x32 props.dmi create mode 100644 code/game/content/factions/derelict/derelict.dmi/64x64 props.dmi create mode 100644 code/game/content/factions/derelict/derelict.dmi/96x96 props.dmi create mode 100644 code/game/content/factions/derelict/derelict.dmi/cave_walls.dmi create mode 100644 code/game/content/factions/derelict/derelict.dmi/derelict_doors 96x96.dmi create mode 100644 code/game/content/factions/derelict/derelict.dmi/derelict_doors.dmi create mode 100644 code/game/content/factions/derelict/derelict.dmi/derelict_flora.dmi create mode 100644 code/game/content/factions/derelict/derelict.dmi/derelict_horrors.dmi create mode 100644 code/game/content/factions/derelict/derelict.dmi/derelict_props.dmi create mode 100644 code/game/content/factions/derelict/derelict.dmi/derelict_tiles.dmi create mode 100644 code/game/content/factions/derelict/derelict.dmi/derelict_walls.dmi diff --git a/citadel.dme b/citadel.dme index 66a5e0291145..ebb131160109 100644 --- a/citadel.dme +++ b/citadel.dme @@ -1090,6 +1090,10 @@ #include "code\game\content\factions\corporations\nanotrasen\nanotrasen-supply\supplies.dm" #include "code\game\content\factions\corporations\nanotrasen\nanotrasen-supply\vehicles.dm" #include "code\game\content\factions\corporations\nanotrasen\nanotrasen-supply\voidsuits.dm" +#include "code\game\content\factions\derelict\derelict.dm\derelict_flora.dm" +#include "code\game\content\factions\derelict\derelict.dm\derelict_horrors.dm" +#include "code\game\content\factions\derelict\derelict.dm\derelict_props.dm" +#include "code\game\content\factions\derelict\derelict.dm\derelict_structures.dm" #include "code\game\content\factions\orion\iwl\armor.dm" #include "code\game\content\factions\orion\iwl\guns.dm" #include "code\game\content\factions\orion\iwl\head.dm" diff --git a/code/game/content/factions/derelict/derelict.dm/derelict_flora.dm b/code/game/content/factions/derelict/derelict.dm/derelict_flora.dm new file mode 100644 index 000000000000..f68fd88cb355 --- /dev/null +++ b/code/game/content/factions/derelict/derelict.dm/derelict_flora.dm @@ -0,0 +1,380 @@ +// Walls + +/datum/material/alienalloy/hardenedstone + id = "hardenedstone" + name = "hardenedstone" + + // Becomes "[display_name] wall" in the UI. + display_name = "hardened stone" + + icon_base = 'code/game/content/factions/derelict/derelict.dmi/cave_walls.dmi' + icon_colour = "#422d0e" + wall_stripe_icon = null // leave null + +/turf/simulated/wall/event/cave_wall + icon = 'code/game/content/factions/derelict/derelict.dmi/cave_walls.dmi' + material_outer = /datum/material/alienalloy/hardenedstone + name = "cave wall" + desc = "A wall consisting of impenetrable rock. No way you're getting past this without heavy excavation equipment." + description_info = "No way you can get past this..." + block_tele = TRUE + integrity_enabled = 0 + + +// Floors + +/turf/simulated/floor/event/grass + footstep_sounds = list("human" = list( + 'sound/effects/footstep/asteroid1.ogg', + 'sound/effects/footstep/asteroid2.ogg', + 'sound/effects/footstep/asteroid3.ogg', + 'sound/effects/footstep/asteroid4.ogg')) + +/turf/simulated/floor/event/desert + footstep_sounds = list("human" = list( + 'sound/effects/footstep/asteroid1.ogg', + 'sound/effects/footstep/asteroid2.ogg', + 'sound/effects/footstep/asteroid3.ogg', + 'sound/effects/footstep/asteroid4.ogg')) + +/turf/simulated/floor/event/crystal_floor + name = "crystal patch" + icon = 'code/game/content/factions/derelict/derelict.dmi/derelict_flora.dmi' + icon_state = "crystal_floor" + integrity_enabled = 0 + +/turf/simulated/floor/event/grass/dirt1 + name = "dirt" + icon = 'code/game/content/factions/derelict/derelict.dmi/derelict_flora.dmi' + icon_state = "dirt1" + integrity_enabled = 0 + footstep_sounds = list("human" = list( + 'sound/effects/footstep/asteroid1.ogg', + 'sound/effects/footstep/asteroid2.ogg', + 'sound/effects/footstep/asteroid3.ogg', + 'sound/effects/footstep/asteroid4.ogg')) + + +/turf/simulated/floor/event/grass/dirt2 + name = "dirt" + icon = 'code/game/content/factions/derelict/derelict.dmi/derelict_flora.dmi' + icon_state = "dirt2" + integrity_enabled = 0 + footstep_sounds = list("human" = list( + 'sound/effects/footstep/asteroid1.ogg', + 'sound/effects/footstep/asteroid2.ogg', + 'sound/effects/footstep/asteroid3.ogg', + 'sound/effects/footstep/asteroid4.ogg')) + + +/turf/simulated/floor/event/cave1 + name = "cave floor" + icon = 'code/game/content/factions/derelict/derelict.dmi/derelict_flora.dmi' + icon_state = "cave1" + integrity_enabled = 0 + +/turf/simulated/floor/event/grass/grass1 + name = "grass" + icon = 'code/game/content/factions/derelict/derelict.dmi/derelict_flora.dmi' + icon_state = "grass1" + integrity_enabled = 0 + footstep_sounds = list("human" = list( + 'sound/effects/footstep/asteroid1.ogg', + 'sound/effects/footstep/asteroid2.ogg', + 'sound/effects/footstep/asteroid3.ogg', + 'sound/effects/footstep/asteroid4.ogg')) + +/turf/simulated/floor/event/desert/desert1 + name = "sand" + icon = 'code/game/content/factions/derelict/derelict.dmi/derelict_flora.dmi' + icon_state = "desert1" + integrity_enabled = 0 + footstep_sounds = list("human" = list( + 'sound/effects/footstep/asteroid1.ogg', + 'sound/effects/footstep/asteroid2.ogg', + 'sound/effects/footstep/asteroid3.ogg', + 'sound/effects/footstep/asteroid4.ogg')) + +/turf/simulated/floor/event/desert/desert2 + name = "sand" + icon = 'code/game/content/factions/derelict/derelict.dmi/derelict_flora.dmi' + icon_state = "desert2" + integrity_enabled = 0 + footstep_sounds = list("human" = list( + 'sound/effects/footstep/asteroid1.ogg', + 'sound/effects/footstep/asteroid2.ogg', + 'sound/effects/footstep/asteroid3.ogg', + 'sound/effects/footstep/asteroid4.ogg')) + +/turf/simulated/floor/event/desert/desert3 + name = "sand" + icon = 'code/game/content/factions/derelict/derelict.dmi/derelict_flora.dmi' + icon_state = "desert3" + integrity_enabled = 0 + footstep_sounds = list("human" = list( + 'sound/effects/footstep/asteroid1.ogg', + 'sound/effects/footstep/asteroid2.ogg', + 'sound/effects/footstep/asteroid3.ogg', + 'sound/effects/footstep/asteroid4.ogg')) + +/turf/simulated/floor/event/desert/crust1 + name = "rocky sand" + icon = 'code/game/content/factions/derelict/derelict.dmi/derelict_flora.dmi' + icon_state = "crust1" + integrity_enabled = 0 + footstep_sounds = list("human" = list( + 'sound/effects/footstep/asteroid1.ogg', + 'sound/effects/footstep/asteroid2.ogg', + 'sound/effects/footstep/asteroid3.ogg', + 'sound/effects/footstep/asteroid4.ogg')) + +/turf/simulated/floor/event/desert/crust2 + name = "rocky sand" + icon = 'code/game/content/factions/derelict/derelict.dmi/derelict_flora.dmi' + icon_state = "crust2" + integrity_enabled = 0 + footstep_sounds = list("human" = list( + 'sound/effects/footstep/asteroid1.ogg', + 'sound/effects/footstep/asteroid2.ogg', + 'sound/effects/footstep/asteroid3.ogg', + 'sound/effects/footstep/asteroid4.ogg')) + +/turf/simulated/floor/event/desert/crust3 + name = "rocky sand" + icon = 'code/game/content/factions/derelict/derelict.dmi/derelict_flora.dmi' + icon_state = "crust3" + integrity_enabled = 0 + footstep_sounds = list("human" = list( + 'sound/effects/footstep/asteroid1.ogg', + 'sound/effects/footstep/asteroid2.ogg', + 'sound/effects/footstep/asteroid3.ogg', + 'sound/effects/footstep/asteroid4.ogg')) + +/turf/simulated/floor/event/desert/dirt1 + name = "dirt" + icon = 'code/game/content/factions/derelict/derelict.dmi/derelict_flora.dmi' + icon_state = "desert_dirt1" + integrity_enabled = 0 + footstep_sounds = list("human" = list( + 'sound/effects/footstep/asteroid1.ogg', + 'sound/effects/footstep/asteroid2.ogg', + 'sound/effects/footstep/asteroid3.ogg', + 'sound/effects/footstep/asteroid4.ogg')) + +/turf/simulated/floor/event/desert/dirt2 + name = "dirt" + icon = 'code/game/content/factions/derelict/derelict.dmi/derelict_flora.dmi' + icon_state = "desert_dirt2" + integrity_enabled = 0 + footstep_sounds = list("human" = list( + 'sound/effects/footstep/asteroid1.ogg', + 'sound/effects/footstep/asteroid2.ogg', + 'sound/effects/footstep/asteroid3.ogg', + 'sound/effects/footstep/asteroid4.ogg')) + +/turf/simulated/floor/event/desert/dirt3 + name = "dirt" + icon = 'code/game/content/factions/derelict/derelict.dmi/derelict_flora.dmi' + icon_state = "desert_dirt3" + integrity_enabled = 0 + footstep_sounds = list("human" = list( + 'sound/effects/footstep/asteroid1.ogg', + 'sound/effects/footstep/asteroid2.ogg', + 'sound/effects/footstep/asteroid3.ogg', + 'sound/effects/footstep/asteroid4.ogg')) + +// Decals + +/obj/effect/decal/event/crystal_small + icon = 'code/game/content/factions/derelict/derelict.dmi/derelict_flora.dmi' + icon_state = "crystal_small" + integrity_enabled = 0 + +/obj/effect/decal/event/mound_small + name = "small mound" + icon = 'code/game/content/factions/derelict/derelict.dmi/derelict_flora.dmi' + icon_state = "mound_small" + integrity_enabled = 0 + +/obj/effect/decal/event/mound_medium + name = "chunky mound" + icon = 'code/game/content/factions/derelict/derelict.dmi/derelict_flora.dmi' + icon_state = "mound_medium" + integrity_enabled = 0 + +/obj/effect/decal/event/mound_large + name = "large mound" + icon = 'code/game/content/factions/derelict/derelict.dmi/derelict_flora.dmi' + icon_state = "mound_large" + integrity_enabled = 0 + +// Rocks + +/obj/stucture/flora/rock/crystal_medium + name = "large crystal" + icon = 'code/game/content/factions/derelict/derelict.dmi/derelict_flora.dmi' + icon_state = "crystal_medium" + integrity_enabled = 0 + light_power = 2 + light_range = 2 + light_color = "#9966cc" + +/obj/stucture/flora/rock/crystal_large + name = "hefty crystal" + icon = 'code/game/content/factions/derelict/derelict.dmi/derelict_flora.dmi' + icon_state = "crystal_large" + integrity_enabled = 0 + light_power = 3 + light_range = 4 + light_color = "#9966cc" + +/obj/structure/flora/rock/rock1 + icon = 'code/game/content/factions/derelict/derelict.dmi/derelict_flora.dmi' + icon_state = "rock1" + +/obj/structure/flora/rock/rock2 + icon = 'code/game/content/factions/derelict/derelict.dmi/derelict_flora.dmi' + icon_state = "rock2" + +/obj/structure/flora/rock/rock3 + icon = 'code/game/content/factions/derelict/derelict.dmi/derelict_flora.dmi' + icon_state = "rock3" + +/obj/structure/flora/rock/rock4 + icon = 'code/game/content/factions/derelict/derelict.dmi/derelict_flora.dmi' + icon_state = "rock4" + +// Grass + +/obj/structure/flora/grass/event + name = "grass" + icon = 'code/game/content/factions/derelict/derelict.dmi/derelict_flora.dmi' + anchored = 1 + density = 0 + opacity = 0 + +/obj/structure/flora/grass/event/sparse_grass1 + icon_state = "sparsegrass1" + +/obj/structure/flora/grass/event/sparse_grass2 + icon_state = "sparsegrass2" + +/obj/structure/flora/grass/event/sparse_grass3 + icon_state = "sparse_grass3" + +/obj/structure/flora/grass/event/full_grass1 + icon_state = "fullgrass1" + +/obj/structure/flora/grass/event/full_grass2 + icon_state = "fullgrass2" + +/obj/structure/flora/grass/event/full_grass3 + icon_state = "fullgrass3" + +/obj/structure/flora/grass/event/leafy_bush1 + icon_state = "leafybush1" + +/obj/structure/flora/grass/event/leafy_bush2 + icon_state = "leafybush2" + +/obj/structure/flora/grass/event/leafy_bush3 + icon_state = "leafy_bush3" + +/obj/structure/flora/grass/event/grassy_bush1 + icon_state = "grassybush1" + +/obj/structure/flora/grass/event/stalky_bush1 + icon_state = "stalkybush1" + +/obj/structure/flora/grass/event/bush1 + icon_state = "bush1" + +/obj/structure/flora/grass/event/reed_bush1 + icon_state = "reedbush1" + +/obj/structure/flora/grass/event/ferny_bush1 + icon_state = "fernybush1" + +/obj/structure/flora/grass/event/sunny_bush1 + icon_state = "sunnybush1" + +/obj/structure/flora/grass/event/generic_bush1 + icon_state = "genericbush1" + +/obj/structure/flora/grass/event/point_bush1 + icon_state = "pointybush1" + +/obj/structure/flora/grass/event/lavender_grass1 + icon_state = "lavendergrass1" + +/obj/structure/flora/grass/event/yellow_flowers1 + icon_state = "ywflowers1" + +/obj/structure/flora/grass/event/bright_flowers1 + icon_state = "brflowers1" + +/obj/structure/flora/grass/event/purple_flowers1 + icon_state = "ppflowers1" + +/obj/structure/flora/grass/event/heavy_grass1 + icon_state = "heavygrass_1" + +/obj/structure/flora/grass/event/heavy_grass2 + icon_state = "heavygrass_2" + +/obj/structure/flora/grass/event/heavy_grass3 + icon_state = "heavygrass_3" + +/obj/structure/flora/grass/event/heavy_grass4 + icon_state = "heavygrass_4" + +/obj/structure/flora/grass/event/heavy_grass5 + icon_state = "heavygrass5" + +/obj/structure/flora/grass/event/cactus1 + icon_state = "cactus_1" + name = "cactus" + +/obj/structure/flora/grass/event/cactus2 + icon_state = "cactus_2" + name = "cactus" + +/obj/structure/flora/grass/event/cactus3 + icon_state = "cactus_3" + name = "cactus" + +/obj/structure/flora/grass/event/cactus4 + icon_state = "cactus_4" + name = "cactus" + +/obj/structure/flora/grass/event/cactus5 + icon_state = "cactus_5" + name = "cactus" + +/obj/structure/flora/grass/event/cacti1 + icon_state = "cacti_1" + name = "cacti" + +/obj/structure/flora/grass/event/cacti2 + icon_state = "cacti_2" + name = "cacti" + +// Trees + +/obj/structure/flora/tree/tree1 + icon = 'code/game/content/factions/derelict/derelict.dmi/derelict_flora.dmi' + icon_state = "tree_1" + +/obj/structure/flora/tree/tree2 + icon = 'code/game/content/factions/derelict/derelict.dmi/derelict_flora.dmi' + icon_state = "tree_2" + +/obj/structure/flora/tree/tree3 + icon = 'code/game/content/factions/derelict/derelict.dmi/derelict_flora.dmi' + icon_state = "tree_3" + +/obj/structure/flora/tree/tree4 + icon = 'code/game/content/factions/derelict/derelict.dmi/derelict_flora.dmi' + icon_state = "tree_4" + + diff --git a/code/game/content/factions/derelict/derelict.dm/derelict_horrors.dm b/code/game/content/factions/derelict/derelict.dm/derelict_horrors.dm new file mode 100644 index 000000000000..5dff0fd76478 --- /dev/null +++ b/code/game/content/factions/derelict/derelict.dm/derelict_horrors.dm @@ -0,0 +1,134 @@ +// Contains the special mobs for the Derelict. +// Most of these creatures are made or evolved with a substance named 'Ether.' +// I won't explain what Ether is here, but it has interesting effects on life. + + +/mob/living/simple_mob/animal/event/derelict/horror + name = "horror" + icon = 'code/game/content/factions/derelict/derelict.dmi/derelict_horrors.dmi' + desc = "A hulking creature, towering above the usual person. Its five glowing blue eyes shine in the darkness, and its claws practically glow with some sort of energy." + icon_state = "horror" + icon_living = "horror" + icon_dead = "horror_dead" + maxHealth = 400 + health = 400 + icon_scale_x = 1.1 + icon_scale_y = 1.1 + movement_cooldown = 3 + legacy_melee_damage_lower = 30 + legacy_melee_damage_upper = 30 + base_attack_cooldown = 8 + attack_sound = 'sound/mobs/biomorphs/drone_attack.ogg' + ai_holder_type = /datum/ai_holder/polaris/simple_mob/event + +/mob/living/simple_mob/animal/event/derelict/geist + name = "geist" + icon = 'code/game/content/factions/derelict/derelict.dmi/derelict_horrors.dmi' + desc = "A floating orb of barely contained energy. It moves through the air with some sort of purpose, and fills the area around it with static electricity. Physical objects seem to just phase through it without issue, maybe energy would be different...?" + icon_state = "geist" + icon_living = "geist" + maxHealth = 200 + health = 200 + armor_legacy_mob = list( + "melee" = 100, + "bullet" = 100, + "laser" = 0, + "energy" = 0, + "bomb" = 100, + "bio" = 100, + "rad" = 100, + ) + movement_cooldown = 10 + legacy_melee_damage_lower = 0 + legacy_melee_damage_upper = 0 + base_attack_cooldown = 10 + projectiletype = /obj/projectile/temp/hot + ai_holder_type = /datum/ai_holder/polaris/simple_mob/ranged/kiting/threatening + +/mob/living/simple_mob/animal/event/derelict/swarm + name = "!" + icon = 'code/game/content/factions/derelict/derelict.dmi/derelict_horrors.dmi' + desc = "What looks like a... Glowing butterfly? No, that can't be right. Its form warps eratically, as if its out of sync with reality. Energy seems to just... Pass through it, and you can't seem to hit it. Ballistic weaponry may work." + icon_state = "swarm" + icon_living = "swarm" + maxHealth = 150 + health = 150 + armor_legacy_mob = list( + "melee" = 100, + "bullet" = 0, + "laser" = 100, + "energy" = 100, + "bomb" = 100, + "bio" = 100, + "rad" = 100, + ) + movement_cooldown = 1 + legacy_melee_damage_lower = 15 + legacy_melee_damage_upper = 15 + base_attack_cooldown = 6 + attack_sound = 'sound/effects/stealthoff.ogg' + ai_holder_type = /datum/ai_holder/polaris/simple_mob/event + +/mob/living/simple_mob/animal/event/derelict/phantom + name = "?" + icon = 'code/game/content/factions/derelict/derelict.dmi/derelict_horrors.dmi' + desc = "Something isn't right. It's as if the shadows themselves have manifested into physical being, looking at it for too long causes whispers to start building up in your head. Oddly, projectiles just... Pass through whatever this might be, melee might work better." + icon_state = "phantom" + icon_living = "phantom" + maxHealth = 250 + health = 250 + armor_legacy_mob = list( + "melee" = 0, + "bullet" = 100, + "laser" = 100, + "energy" = 100, + "bomb" = 100, + "bio" = 100, + "rad" = 100, + ) + movement_cooldown = 3 + legacy_melee_damage_lower = 25 + legacy_melee_damage_upper = 25 + base_attack_cooldown = 9 + attack_sound = 'sound/effects/stealthoff.ogg' + ai_holder_type = /datum/ai_holder/polaris/simple_mob/event + +/mob/living/simple_mob/animal/event/derelict/vortex + name = "%%$%&" + icon = 'code/game/content/factions/derelict/derelict.dmi/derelict_horrors.dmi' + desc = "A swirling mass of matter that doesn't seem to be entirely within reality. It discharges incessant amounts of black energy that wreak havoc on the nervous system. Any projectiles seem to just phase through it, melee might work better." + icon_state = "vortex" + icon_living = "vortex" + maxHealth = 150 + health = 150 + armor_legacy_mob = list( + "melee" = 0, + "bullet" = 100, + "laser" = 100, + "energy" = 100, + "bomb" = 100, + "bio" = 100, + "rad" = 100, + ) + movement_cooldown = 6 + legacy_melee_damage_lower = 25 + legacy_melee_damage_upper = 25 + base_attack_cooldown = 11 + attack_sound = 'sound/effects/stealthoff.ogg' + ai_holder_type = /datum/ai_holder/polaris/simple_mob/ranged/kiting/threatening + projectiletype = /obj/projectile/beam/stun + +/mob/living/simple_mob/animal/event/derelict/hallucination + name = "WE SEE YOU" + icon = 'code/game/content/factions/derelict/derelict.dmi/derelict_horrors.dmi' + desc = "Its form shimmers eratically, it doesn't even have a head, just a glowing ball of fire that doesn't stop burning. Your attacks don't even make it flinch. IT SEES YOU. IT KNOWS YOU. DON'T TRY TO RUN." + icon_state = "hallucination" + icon_living = "hallucination" + maxHealth = 300 + health = 300 + icon_scale_x = 1.2 + icon_scale_y = 1.2 + movement_cooldown = 2 + base_attack_cooldown = 8 + attack_sound = 'sound/hallucinations/growl1.ogg' + ai_holder_type = /datum/ai_holder/polaris/simple_mob/event diff --git a/code/game/content/factions/derelict/derelict.dm/derelict_props.dm b/code/game/content/factions/derelict/derelict.dm/derelict_props.dm new file mode 100644 index 000000000000..3d5730eb6a64 --- /dev/null +++ b/code/game/content/factions/derelict/derelict.dm/derelict_props.dm @@ -0,0 +1,349 @@ +/obj/structure/event/prop + name = "derelict machinery" + desc = "Ancient machinery that may have once served a purpose ages ago." + icon = 'code/game/content/factions/derelict/derelict.dmi/derelict_props.dmi' + density = 1 + anchored = 1 + allow_unanchor = 0 + integrity_enabled = 0 + +/obj/item/event/prop/ + name = "derelict machinery" + desc = "Ancient machinery that may have once served a purpose ages ago." + icon = 'code/game/content/factions/derelict/derelict.dmi/derelict_props.dmi' + density = 0 + anchored = 0 + integrity_enabled = 0 + +// Props + +/obj/structure/event/prop/jarshelf + icon_state = "jarshelf" + name = "derelict shelf" + desc = "An ancient shelf that seemed to have once been stocked with vials. Different runes mark each of the shelves." + +/obj/structure/event/prop/overgrown_pod + icon_state = "overgrown_pod" + name = "overgrown pod" + desc = "Some sort of pod like structure that has long since ran out of its emergency power-source. Colorful vegetation spills out of the pods interior, whatever it once held is long gone." + +/obj/structure/event/prop/active_pod + icon_state = "active_pod" + name = "active pod" + desc = "Despite the fading condition of this machine, it still seems to contain something that faintly wriggles around, held in an unbreakable stasis." + +/obj/structure/event/prop/active_pod2 + icon_state = "active_pod2" + name = "active pod" + desc = "Despite the fading condition of this machine, it still seems to contain something that faintly wriggles around, held in an unbreakable stasis." + +/obj/structure/event/prop/active_pod3 + icon_state = "active_pod3" + name = "active pod" + desc = "Despite the fading condition of this machine, it still seems to contain something that faintly wriggles around, held in an unbreakable stasis." + +/obj/structure/event/prop/empty_pod + icon_state = "empty_pod" + name = "empty pod" + desc = "An empty pod that ran out of power a long time ago." + +/obj/structure/event/prop/broken_pod + icon_state = "broken_pod" + name = "shattered pod" + desc = "A pod like structure that's been torn to shreds. Claw marks and other various damage covers what remains of its alloy, the destruction looks recent." + +/obj/structure/event/prop/flesh_pod + icon_state = "flesh_pod" + name = "blood filled pod" + desc = "A pod that looks like it's filled with blood and flesh. You swear you saw it move..." + +/obj/structure/event/prop/terminal1 + icon_state = "terminal1" + name = "ancient terminal" + desc = "An ancient terminal adorned with multiple odd symbols. You can vaguely see how it might have once worked, but now it's a depowered husk." + +/obj/structure/event/prop/terminal2 + icon_state = "terminal2" + name = "derelict console" + desc = "This console might have worked once. Now, it's as good as useless considering the impenetrable alloy it's made of." + +/obj/structure/event/prop/terminal3 + icon_state = "terminal3" + name = "derelict mainframe" + desc = "A bulky terminal that might have once served as some important interface or uplink. Good luck getting it to work now..." + +/obj/structure/event/prop/processor1 + icon_state = "processor1" + name = "ancient processor" + desc = "A machine responsible for once processing information. Though you can't quite be sure..." + +/obj/structure/event/prop/processor2 + icon_state = "processor2" + name = "derelict processor" + desc = "A large machine that could process large amounts of information at once. Now? Completely useless without power and maintenance." + +/obj/item/event/prop/rectangle1 + icon_state = "rectangle1" + name = "odd rectangle" + desc = "Some sort of odd rectangle... You can't quite figure out what it could have been used for." + +/obj/item/event/prop/rectangle2 + icon_state = "rectangle2" + name = "ancient device" + desc = "A smaller device that appears lighter than the rest. Its front might serve as some sort of interface, or port. Might be important!" + +/obj/structure/event/prop/case1 + icon_state = "case1" + name = "bulky case" + desc = "A large and heavy storage crate. You can't appear to figure out how to open it..." + +/obj/item/event/prop/case2 + icon_state = "case2" + name = "small case" + desc = "A much smaller case, you still can't figure out how to get it open. " + +/obj/item/event/prop/battery1 + icon_state = "battery1" + name = "drained battery" + desc = "A pretty heavy battery! Whatever energy source it once held has long since been discharged." + +/obj/item/event/prop/laptop1 + icon_state = "laptop1" + name = "ancient laptop" + desc = "Some sort of... Laptop? Or something that looks like a laptop. You can faintly make out a screen and a bunch of strange runes that might serve as keys. Weird." + +/obj/item/event/prop/laptop2 + icon_state = "laptop2" + name = "derelict laptop" + desc = "Another machine that bears close resemblance to some sort of laptop. Doesn't appear to function. Typical." + +/obj/structure/event/prop/crate1 + icon_state = "crate1" + name = "ancient crate" + desc = "A ancient crate, really fucking heavy!" + +/obj/structure/event/prop/crate_stack + icon_state = "crate_stack" + name = "ancient crate stack" + desc = "As if one super heavy crate wasn't enough... Now there's two!" + +/obj/structure/event/prop/server1 + icon_state = "server1" + name = "ancient server" + desc = "An ancient rectangular machine that has an egregious amount of tubes and pipes coming out of it. Long since depowered." + +/obj/structure/event/prop/server2 + icon_state = "server2" + name = "derelict server" + desc = "A impossibly heavy box-like device covered with tubes and pipes, as well as strange wires. Sadly, it is depowered." + +/obj/structure/event/prop/hub1 + icon_state = "hub1" + name = "derelict machine hub" + desc = "If you were looking for a network hub, this'd definitely be it. There's no indication if it's active or not." + +/obj/structure/event/prop/chair + icon_state = "chair" + name = "large chair" + desc = "A large chair, fit for something that was clearly humanoid. It'd be best to NOT sit in it." + +/obj/structure/event/prop/survey + icon_state = "survey" + name = "survey device" + desc = "A hand automated device that scans the area around it, sending a reading to whoever the operator is." + +/obj/structure/event/prop/measure + icon_state = "measure" + name = "measuring device" + desc = "Some sort of measuring device, controlled by a remote operator. What is it measuring? Who knows!" + +/obj/structure/event/prop/light1 + icon_state = "light1" + name = "zone light" + desc = "An emergency light that runs on a backup power source, meant to provide light to an area. Why does it have to be red?" + light_color = "#961717" + light_power = 2 + light_range = 7 + +/obj/structure/event/prop/light2 + icon_state = "light2" + name = "lighting emplacement" + desc = "A proper lighting tube, mounted onto a tripod. Runs on emergency power linked to a power source in the area." + light_power = 2 + light_range = 6 + +/obj/structure/event/prop/light3 + icon_state = "light3" + name = "lighting emplacement" + desc = "A proper lighting tube, mounted onto a tripod. Runs on emergency power linked to a power source in the area." + light_power = 2 + light_range = 6 + +/obj/structure/event/prop/tank + icon_state = "tank" + name = "storage tank" + desc = "A common storage tank, maybe holding some liquid. You can't quite tell" + +/obj/structure/event/prop/welding_tank + icon_state = "weldtank" + name = "welding fuel tank" + desc = "A large tank holding a significant amount of welder fuel. Best not to light any sparks around this." + +/obj/structure/event/prop/water_tank + icon_state = "watertank" + name = "water tank" + desc = "A vessel that holds an industrial amount of drinking water. Might be used for coolant, or just something to drink." + +/obj/structure/event/prop/kevlon_roll + icon_state = "kevlon" + name = "kevlon rack" + desc = "A rack with some sort of orange roll hitched onto it. What's it even do?" + allow_unanchor = 1 + +/obj/structure/event/prop/wire + icon_state = "wire" + name = "safety wire" + desc = "A small safety wire, dedicated to cordoning off areas." + density = 0 + +/obj/structure/event/prop/campfire + icon_state = "campfire" + name = "campfire" + desc = "A small, homely campfire." + +/obj/structure/event/prop/cat_clock + icon_state = "cat_clock_motion" + name = "cat clock" + desc = "These creepy things should have been forgotten centuries ago." + density = 0 + +/obj/structure/event/prop/blue_barrel + icon_state = "barrel_blue" + name = "blue barrel" + desc = "A standard storage barrel." + allow_unanchor = 1 + +/obj/structure/event/prop/green_barrel + icon_state = "barrel_green" + name = "green barrel" + desc = "A standard storage barrel." + allow_unanchor = 1 + +/obj/structure/event/prop/red_barrel + icon_state = "barrel_red" + name = "red barrel" + desc = "A standard storage barrel." + allow_unanchor = 1 + +/obj/structure/event/prop/yellow_barrel + icon_state = "barrel_yellow" + name = "yellow barrel" + desc = "A standard storage barrel." + allow_unanchor = 1 + +/obj/structure/event/prop/white_barrel + icon_state = "barrel_white" + name = "white barrel" + desc = "A standard storage barrel." + allow_unanchor = 1 + +/obj/structure/event/prop/derelict_tube1 + icon_state = "tube1" + name = "derelict tube" + desc = "A mysterious tube shaped object." + allow_unanchor = 1 + +/obj/structure/event/prop/derelict_tube2 + icon_state = "tube2" + name = "ancient tube" + desc = "A mysterious tube shaped object." + allow_unanchor = 1 + +/obj/structure/event/prop/derelict_collumn + icon_state = "collumn" + name = "derelict collumn" + desc = "A dim collumn. Looks odd." + allow_unanchor = 1 + +// 32x32 Props + +/obj/structure/event/prop/fuel_crawler + icon = 'code/game/content/factions/derelict/derelict.dmi/32x32 props.dmi' + icon_state = "crawler_fuel" + name = "fuel crawler" + desc = "A large crawler vehicle, designed to carry various types of fuel long distances." + bounds = "64,32" + bound_height = 64 + bound_width = 64 + +/obj/structure/event/prop/crawler + icon = 'code/game/content/factions/derelict/derelict.dmi/32x32 props.dmi' + icon_state = "crawler" + name = "crawler" + desc = "A old and tested ATV design commonly seen throughout the frontier. Hard to break, easy to maintain and able to be fitted for about any role you can think of." + bounds = "64,32" + bound_height = 64 + bound_width = 64 + +/obj/structure/event/prop/covered_crawler + icon = 'code/game/content/factions/derelict/derelict.dmi/32x32 props.dmi' + icon_state = "crawler_covered" + name = "cargo crawler" + desc = "A crawler that's been refitted to carry heavy amounts of various cargo. Comes with a cover to protect its cargo from the weather." + bounds = "64,32" + bound_height = 64 + bound_width = 64 + +/obj/structure/event/prop/mining_truck + icon = 'code/game/content/factions/derelict/derelict.dmi/32x32 props.dmi' + icon_state = "truck_mining" + name = "mining truck" + desc = "A standard truck that seems to be carrying quite a lot of mining and excavation gear, all very heavy duty." + bounds = "64,32" + bound_height = 64 + bound_width = 64 + +/obj/structure/event/prop/tractor + icon = 'code/game/content/factions/derelict/derelict.dmi/32x32 props.dmi' + icon_state = "tractor" + name = "cargo tractor" + desc = "A heavy duty cargo tractor, usually utilized to carry some VERY heavy equipment." + bounds = "64,64" + bound_height = 64 + bound_width = 64 + +// 64X64 Props + +/obj/structure/event/prop/excavation_drill + icon = 'code/game/content/factions/derelict/derelict.dmi/64x64 props.dmi' + icon_state = "drill" + name = "excavation drill" + desc = "A towering drill that extends deep into the earth. Whatever it's being used for, it appears to be offline at the moment." + bound_height = 64 + +// 96X96 Props + +/obj/structure/event/prop/closed_derelict_gate + icon = 'code/game/content/factions/derelict/derelict.dmi/derelict_doors 96x96.dmi' + icon_state = "derelict_gate_closed" + name = "derelict gate" + desc = "A massive gate that unfortunately doesn't seem to function anymore. It's covered in odd symbols." + bounds = "96,32" + opacity = 1 + +/obj/structure/event/prop/opened_derelict_gate + icon = 'code/game/content/factions/derelict/derelict.dmi/derelict_doors 96x96.dmi' + icon_state = "derelict_gate_open" + name = "derelict gate" + desc = "A massive gate that appears to have been forced open. There's no hope of getting it back closed." + bounds = "96,32" + density = 0 + +/obj/structure/event/prop/derelict_core + icon = 'code/game/content/factions/derelict/derelict.dmi/96x96 props.dmi' + icon_state = "core" + name = "gargatuan core" + desc = "Some sort of... Core, it's gargatuan in size and appears to flicker with brief power. There's a number of ports and slots built into the frame." + bounds = "96,32" + density = 1 + opacity = 1 diff --git a/code/game/content/factions/derelict/derelict.dm/derelict_structures.dm b/code/game/content/factions/derelict/derelict.dm/derelict_structures.dm new file mode 100644 index 000000000000..d95cd51de293 --- /dev/null +++ b/code/game/content/factions/derelict/derelict.dm/derelict_structures.dm @@ -0,0 +1,135 @@ +/datum/material/alienalloy/derelictalloy + id = "derelictalloy" + name = "derelictalloy" + + // Becomes "[display_name] wall" in the UI. + display_name = "derelict alloy" + + icon_base = 'code/game/content/factions/derelict/derelict.dmi/derelict_walls.dmi' + icon_colour = "#413c3c" + wall_stripe_icon = null // leave null + + door_icon_base = "derelict" // For doors. + +// Walls + +/turf/simulated/wall/event/derelict_wall + icon = 'code/game/content/factions/derelict/derelict.dmi/derelict_walls.dmi' + material_outer = /datum/material/alienalloy/derelictalloy + name = "derelict wall" + desc = "A wall made up of some sort of strange alloy... It has lots of pipes, tubes and other utility structure on full display." + description_info = "Maybe it's best NOT to compromise a excavation site due to curiosity?" + block_tele = TRUE + integrity_enabled = 0 + +// Floors + +/turf/simulated/floor/event/derelict_pillar + icon = 'code/game/content/factions/derelict/derelict.dmi/derelict_tiles.dmi' + icon_state = "derelict_pillar_dir" + integrity_enabled = 0 + +/turf/simulated/floor/event/derelict_hull + icon = 'code/game/content/factions/derelict/derelict.dmi/derelict_tiles.dmi' + icon_state = "derelict_hull" + integrity_enabled = 0 + +/turf/simulated/floor/event/derelict_floor1 + icon = 'code/game/content/factions/derelict/derelict.dmi/derelict_tiles.dmi' + icon_state = "derelict_floor_1" + integrity_enabled = 0 + +/turf/simulated/floor/event/derelict_floor2 + icon = 'code/game/content/factions/derelict/derelict.dmi/derelict_tiles.dmi' + icon_state = "derelict_floor_2" + integrity_enabled = 0 + +/turf/simulated/floor/event/derelict_floor3 + icon = 'code/game/content/factions/derelict/derelict.dmi/derelict_tiles.dmi' + icon_state = "derelict_floor_3" + integrity_enabled = 0 + +/turf/simulated/floor/event/derelict_floor4 + icon = 'code/game/content/factions/derelict/derelict.dmi/derelict_tiles.dmi' + icon_state = "derelict_floor_4" + integrity_enabled = 0 + +/turf/simulated/floor/event/derelict_floor5 + icon = 'code/game/content/factions/derelict/derelict.dmi/derelict_tiles.dmi' + icon_state = "derelict_floor_5" + integrity_enabled = 0 + +/turf/simulated/floor/event/derelict_floor6 + icon = 'code/game/content/factions/derelict/derelict.dmi/derelict_tiles.dmi' + icon_state = "derelict_floor_6" + integrity_enabled = 0 + +/turf/simulated/floor/event/derelict_floor7 + icon = 'code/game/content/factions/derelict/derelict.dmi/derelict_tiles.dmi' + icon_state = "derelict_floor_7" + integrity_enabled = 0 + +/turf/simulated/floor/event/derelict_floor_corner4 + icon = 'code/game/content/factions/derelict/derelict.dmi/derelict_tiles.dmi' + icon_state = "derelict_floor_corner4" + integrity_enabled = 0 + +/turf/simulated/floor/event/derelict_plating + icon = 'code/game/content/factions/derelict/derelict.dmi/derelict_tiles.dmi' + icon_state = "derelict_plating" + integrity_enabled = 0 + +/turf/simulated/floor/event/derelict_light + icon = 'code/game/content/factions/derelict/derelict.dmi/derelict_tiles.dmi' + icon_state = "derelict_light" + integrity_enabled = 0 + light_range = 5 + light_power = 0.5 + +/turf/simulated/floor/event/derelict_wall_floor + icon = 'code/game/content/factions/derelict/derelict.dmi/derelict_tiles.dmi' + icon_state = "derelict_wall_floor" + integrity_enabled = 0 + opacity = 1 + +// Doors + +/obj/structure/simple_door/derelict + material_parts = /datum/material/alienalloy/derelictalloy + icon = 'code/game/content/factions/derelict/derelict.dmi/derelict_doors.dmi' + integrity_enabled = 0 + +//Decals + +/obj/effect/decal/event/derelict_platform_corner + icon = 'code/game/content/factions/derelict/derelict.dmi/derelict_tiles.dmi' + icon_state = "derelict_platform_corners" + integrity_enabled = 0 + +/obj/effect/decal/event/derelict_floor_corner1 + icon = 'code/game/content/factions/derelict/derelict.dmi/derelict_tiles.dmi' + icon_state = "derelict_floor_corner1" + integrity_enabled = 0 + +/obj/effect/decal/event/derelict_floor_corner2 + icon = 'code/game/content/factions/derelict/derelict.dmi/derelict_tiles.dmi' + icon_state = "derelict_floor_corner2" + integrity_enabled = 0 + +/obj/effect/decal/event/derelict_floor_corner3 + icon = 'code/game/content/factions/derelict/derelict.dmi/derelict_tiles.dmi' + icon_state = "derelict_floor_corner3" + integrity_enabled = 0 + + +// Misc + +/turf/simulated/floor/event/concrete + icon = 'code/game/content/factions/derelict/derelict.dmi/derelict_tiles.dmi' + icon_state = "concrete" + integrity_enabled = 0 + +/turf/simulated/floor/event/asphalt + icon = 'code/game/content/factions/derelict/derelict.dmi/derelict_tiles.dmi' + icon_state = "asphalt" + integrity_enabled = 0 diff --git a/code/game/content/factions/derelict/derelict.dmi/32x32 props.dmi b/code/game/content/factions/derelict/derelict.dmi/32x32 props.dmi new file mode 100644 index 0000000000000000000000000000000000000000..fb18dd15210d03e3accadc581e02c4a0ff6d0f21 GIT binary patch literal 7344 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 literal 0 HcmV?d00001 diff --git a/code/game/content/factions/derelict/derelict.dmi/64x64 props.dmi b/code/game/content/factions/derelict/derelict.dmi/64x64 props.dmi new file mode 100644 index 0000000000000000000000000000000000000000..31e3799fcb487374f32c7b920c3822626f8b8b53 GIT binary patch literal 1134 zcmV-!1d;oRP)Y;1slfL&c(7aSZsJUk^WESf_hFfcIBN*4dF05UN#6%-VFdU=_bmvwV; zGcqwhE+bGnEhichF(DUBOG`dIJT^5o3JMAt7#JE63?UW|HYXk{9~cLLkud-O00DGT zPE!Ct=GbNc003-yR9JLGWpiV4X>fFDZ*Bkpc$`yKaB_9`^iy#0_2eo`Eh^5;&r`5f zFwryM;w;ZhDainGjE%TBGg33tGfIFQOEa$GlEji!AX6!&C^IKViHkEOv#1!zH{{|> zD@x2wg|L+sT>V_Y#sUC3R2nSr0D+bO00Rz5L_t(YiN%&{SEDcxh8eW$hLvmWTCqWC zp{#DJ>;M0AJC_7P2^^1KeA_}#^YG4OCXfcfR|KS`@$d?@Kmd)0OThJN6<+;V09M!G z&Ci=92c=evAygFox?KVyr6P4ZHyX#}pd$L>8&A?y93V{-4*_YC7>6WDX8%-! z70Eo1GD9aXkfd3hlH$ytWE^K%PRcUxJRx_0+*=4&o^c|Wk}qFyfW#U1m)ZgRg`y&Y z92S6N0r>t>1C8WGQPAnr!20fPjh{Q9h0K72K!6F@{AO|P2Cxo1QJngQ#IwI}u)rV> z00V$72*fc1bRqy&7T_rJ01e}3Jp=I78!zDIKuGK=>8I&TgI9t*34pCnO|7I_gSg>9 z5$~;XE9$%Sa|GlAfa@U>prGarGFaUA^AbSB6Jj)ezZ_zkqy;!hd>8zK@inJ1a^Stb-|@BPJc2s3fb8}Cj;|>PwAj}cke%A@_}T(BI1X4SIkEu* zcwsPg02=`ng@MNbKx?SDNSK3ce$GRZwtcNtrBH`@e?ZX^%6gU1G+H-RL)zC(Bf!v` zQbI_KdXLd3K-+44JXS~4zHTuh0rr_Ez!8ZGPi?)oK>t7>p!=hB%MLGtLvCLLutSHy z>)*};bOMk=ee&hdQI-5Ps&~}+ z^wv)^<983dGjOUu41mHmpvJ)Y^Z}+9G>rFM$-QuOumCv-fIlfC`6?lDeiNV$%~&wH z)d;wVf-9=`6ywQ10t$POczm1!lc1NtBV=-0C=2JR&a84 z_w-Y6@%7{?OD!tS%+FJ>RWQ*r;NmRLOex6#axBfbI5Sc+(=$qd95WNH;*!LYR3K9+ zIlm}XiHkEOv#1!zHRR$V_YrUC#P02#wzSDrlp007cSL_t(YiS3p_ z3IZ_5{wuB37h?(VJ+O6^ QiU0rr07*qoM6N<$f;>v63IG5A literal 0 HcmV?d00001 diff --git a/code/game/content/factions/derelict/derelict.dmi/cave_walls.dmi b/code/game/content/factions/derelict/derelict.dmi/cave_walls.dmi new file mode 100644 index 0000000000000000000000000000000000000000..632989a4fbb5385c89aeb4b967a6211bd62a6ff5 GIT binary patch literal 7504 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 literal 0 HcmV?d00001 diff --git a/code/game/content/factions/derelict/derelict.dmi/derelict_doors 96x96.dmi b/code/game/content/factions/derelict/derelict.dmi/derelict_doors 96x96.dmi new file mode 100644 index 0000000000000000000000000000000000000000..64391ee5dc5591fc39bec0495ca0309576451f1c GIT binary patch literal 1673 zcmV;426p+0P)v-kV{#? z)z1YSYyfzUU48qKkAeUI1!hS^K~#90?VR0h8!-@s*}~-#={fGea0LOzw$5QYXuv4UCRny3GLSZyb=N5-4TL#UC}3mE@%9d5Wo{fdnknPJ!%Lk+GCXI z3bj#oBgHh=d#)K%JgcG2VSi9!zn!*I1six>(F)cHosOp?A@qRP6-9)6g%G~b3=F(R zs3}^$?SAd#s9*!HD^$T{dnQG9J{owS==oUc?;knp-3`31XvLS!?NQHod)jB?%l1Gn zI2;W;Q1oytm6R@NP1nHd2~_-2)Ia5jBBgjhD2n=Tjei&8ca11gipNE*XBG}YQ*A-d_Evo`G;i;`6AYNCrO<^}`!uxmt#p{YTLMQ_Rj}%=9 z-JTE6e-7u<^PhMC#Un*mg4EAOAYB4L`|gP2O)(JeP2l@ME#yzLe#(M;=*QnhFGCGNz)aI86d^$inb}N zp7CQsilPlq?q6sI*@`;;P^zMZ`Zx7QS2XatLd_r22(1nm_j@WHC>l#?U7=VSQ@pNd zTT1I0$I@6=H1O#Di$A2Vo5Jq_3UPd){!PV$8d~wXqRk)D9j+)+UD3en3bmp}MQ7ka z4SA*~@C;WxsL_*U$LI-|AFjy1F$jSg4Sz^?xD0#6`4U)HC>}uZn2-|CLSvL&z%MgK z{eqYQrs4;ok4MPxd-Mkw_(J`gWpSxz%<;>w?r_D@SbuIiskJy{**A z2QQho7Z%i-3rnyq>@`{GrSE_qTE#ga)Cv5*nlI0{;D(4TI2!Bb4p;IR21+ zK_`Dmzo3&p1TN^~4}lA~-$VVRLj4;9kNl(_MUDKV9z~7(q#i|${G=Z5)Oas!HX(hK zHGfEdfHxmPUOhNj-|yLLEk#{=U^|l;QqE`UAXg6!GaPN+|dAltU={e3?f`%owjavd@dr z`#bxGC|;j2n)`?JjE(bX&i)}iW8*xUvwsL=?42*8`+@X~jq_;E{vkbM<2;(Pe~9AI zAaM2%=@}d6(VYE5;3dv%?)R{NNYB{xhxD58>=?Y1Mi&@_@Y$f$jA!HYlwK1?#yu3G zC-9^}vxZ5CDwJN-DC3#-u$uV(Aw7Y>qw{Dz{2>&dV&$r*>#ST2LUdH(U3!#IZujNv zj2(qiGsZP!^dCy?SJb2b5Sni}{fG37H(vK;>i6gw6GC_0m$Nf=6iUsQ-rwmzMDhCU zpi}=LP!eAMAw6TGpS9C}NYB{pPYp8W{idD$L;3|qziHaf+UY+82=RW_PX8fV)Tp1e z(|<_M*z8XYUSr;GT7735J TIM&d%00000NkvXXu0mjfLa8Ss literal 0 HcmV?d00001 diff --git a/code/game/content/factions/derelict/derelict.dmi/derelict_doors.dmi b/code/game/content/factions/derelict/derelict.dmi/derelict_doors.dmi new file mode 100644 index 0000000000000000000000000000000000000000..6a9fa9564f1b1a4bf8ca34c418c9f62c8a0671d1 GIT binary patch literal 2902 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

  • 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 z zOq^SI$lLGmj)%^Kwy+q$vP{upNXSf#mv(*5lrN_5>kiYO#jr`g8=gBl+qoxm1nz=w z0Be;Jf({#=_Sob`yRO%$zjO(cS2YO5|MBS(E!aV_W?QtKLxyCrjp7PIzlWx5id>tHU2QO&&{ zTxKDKtz<;4c|Y$s(%eHZP*S05?n{g*Y$iXW0zCs=Yn(xJO|l^0eEjI|9)V7;W6?Fs zCQuzCvOJLx3S?7{ZJ36%X|8v{*X5)3C!hC}bi)YEHzC=8l}VI4)Kz{IHBnU@zj&$X z|3(A-lDAFlij6nYZ}W3|7oc^LYJMW>Jom_|tb+*gY=2Z&a<@9ZANZ#j%{hS@oYb{D zhp$PmkgU$VF^sn*K#@YCOVVP6;%RvwPdxW zAaH~C`_1o;<+#&|oR72xA`RwLHAM|rt#rq~4SZZ6SJgO@P_{z-=I>yf!)_7$3Cz&$p0Wra8%ht4;TX@KK)b;>yK+$;VnpRDmig^=P&Uz$^L`&!La zOW=?zW;}8#2|RfQoG7ZpsOxhSq@X)}+*Ll|8z)V-E)31LkLB;KJHqe7^UaWQohsXMIhNeOaaq{-xmbb35M)`k(69U3C1;zI7 zo_fj&DclVI3g0N6!v=pD?Q0&V9oS2u%|#B9Ap?GVPHd?XFvqPyh0PkN(@C}b>4N-r zK}AJ7ANV-$N%k_U&cUv$n~2vO_gbq5cCH}f3OlyKZf z9pKKL^(3(iz7?>Duk?9urUk@RpLIbDSMjNeZ)~2zVNC!9xF<9xnZgyxzxSnV566wG z6j`z);Qj1+G-0GKzZTxWxF26OU*I}B&JvkDY|#wau~O5ya_I<|mhm!iLQfDI!K8Ur|Qf-g8_BdEKf7NWS+GEK}T?9M-wXt%>G0{ z2j3%lih|I^=;jB=W6As4hn(xc@S=-6qXqintTSOH&gFdVi%th>3O$Y;aQ?xatqP-5LEtRRJc-%iH?d=afcT1T*M9Q?R%F|Mm`Gx$jea0BpUJe885d4eW zJ>JaLm<1~GS1vz;GJL|h;W}tQKWpn4%q#9NYy8|{)1^zK3ov194uJxNfy`uw-KRnD z8zq=N+oI+Qv!f2%DuWh0jEoLj3Ks3Ekm8?=9br}s_w)9Pxp{&i{Q?AhffLa_4pD{FXvGY0oFi&npMNs~_Js z-|ZT?F^%wHAg;?K)&j7TEt?XkWMMK0nY>?{QaM-hGHsvc{s~jJnFbN8@to;YRaU<| zsB3X2*>6In9Q`fwwOHQBN!#g?rg~9s`^s7M1Ifn53H97q4Q;AZ(6(!P&;!U)ci
      kd=pSY^D|gN?W!qAv|9;piT? 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 Mk^{@u%9w`#KdpLmD*ylh literal 0 HcmV?d00001 diff --git a/code/game/content/factions/derelict/derelict.dmi/derelict_horrors.dmi b/code/game/content/factions/derelict/derelict.dmi/derelict_horrors.dmi new file mode 100644 index 0000000000000000000000000000000000000000..a9a8057f019e5fd44bba7d0591ec8461665c83ba GIT binary patch literal 204230 zcmX`S2Rt0#_xQa^5QK={g+v#<_uhLaLG&ObqFXGY_fC}6Mbrcl(TNhh_Yy67Sap}R z`;5=`|9iaF%$nDonRD;C_mua!V)S%WAK}yBgFv81>S{^`AP~kM;I|782e=a8*IEMn z@if55%uC7PgPrG_cV2Hi+(96}ykkRM*Ip(v*~1FIMpF*{-}sV#)Eq2PS6qaq)+Nb% zdbw`v!BGi0ID!F-ZwE;~uFLwLyxrJ8T`4FO|L/~jBDxJI6?rK0=@^GoWJgz{+x|`cqtFt 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 z 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 literal 0 HcmV?d00001 diff --git a/code/game/content/factions/derelict/derelict.dmi/derelict_props.dmi b/code/game/content/factions/derelict/derelict.dmi/derelict_props.dmi new file mode 100644 index 0000000000000000000000000000000000000000..77c0f1fdd1dc3772216d60d616629c1f0e12abf5 GIT binary patch literal 30384 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 literal 0 HcmV?d00001 diff --git a/code/game/content/factions/derelict/derelict.dmi/derelict_tiles.dmi b/code/game/content/factions/derelict/derelict.dmi/derelict_tiles.dmi new file mode 100644 index 0000000000000000000000000000000000000000..2eac5d1ba826628f4daf00e59e9bbf3bdbc08a5b GIT binary patch literal 34257 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 SuLVCbr4Bkc!EkngiT?$VYQ`l1 literal 0 HcmV?d00001 From bc4d48441d2473e99f613778ae3c24e13435eaca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=AD=BB=E7=83=8F?= <85062773+washikarasu@users.noreply.github.com> Date: Mon, 23 Sep 2024 17:46:33 +0100 Subject: [PATCH 20/20] Triumph's Atmos Pipe Colours and Accident Prone Supermatter (#6752) --- code/game/machinery/doors/airlock/airlock.dm | 7 + maps/triumph/engines/burn.dmm | 99 +-- maps/triumph/engines/rust.dmm | 40 +- maps/triumph/engines/sme.dmm | 64 +- maps/triumph/levels/deck1.dmm | 724 ++++++++++--------- 5 files changed, 488 insertions(+), 446 deletions(-) diff --git a/code/game/machinery/doors/airlock/airlock.dm b/code/game/machinery/doors/airlock/airlock.dm index 7fd4d8f73dfe..ad9feb6bd295 100644 --- a/code/game/machinery/doors/airlock/airlock.dm +++ b/code/game/machinery/doors/airlock/airlock.dm @@ -1220,3 +1220,10 @@ About the new airlock wires panel: /obj/machinery/door/airlock/glass_external/public req_one_access = list() + +/obj/machinery/door/airlock/hatch/supermatter_access + name = "Supermatter Access" + desc = "A reinforced hatch designed to withstand severe environmental hazards." + icon_state = "door_locked" + locked = TRUE + heat_resistance = 120000 diff --git a/maps/triumph/engines/burn.dmm b/maps/triumph/engines/burn.dmm index 47af7f41b62e..0f5c6cc2cabb 100644 --- a/maps/triumph/engines/burn.dmm +++ b/maps/triumph/engines/burn.dmm @@ -167,7 +167,7 @@ /obj/machinery/atmospherics/pipe/simple/visible/purple{ dir = 4 }, -/turf/simulated/wall/r_wall, +/turf/simulated/wall/r_wall/prepainted/engineering, /area/engineering/engine_room) "gT" = ( /obj/structure/grille, @@ -183,11 +183,11 @@ name = "Engine Radiator Viewport Shutter"; opacity = 0 }, -/turf/simulated/floor, +/turf/simulated/floor/reinforced/airless, /area/engineering/engine_room) "gU" = ( /obj/structure/sign/fire, -/turf/simulated/wall/r_wall, +/turf/simulated/wall/r_wall/prepainted/engineering, /area/engineering/engine_room) "gV" = ( /turf/template_noop, @@ -563,7 +563,7 @@ name = "Engine Radiator Viewport Shutter"; opacity = 0 }, -/turf/simulated/floor, +/turf/simulated/floor/reinforced/airless, /area/engineering/engine_room) "xl" = ( /obj/machinery/computer/general_air_control/large_tank_control{ @@ -710,7 +710,7 @@ name = "Engine Radiator Viewport Shutter"; opacity = 0 }, -/turf/simulated/floor, +/turf/simulated/floor/reinforced/airless, /area/engineering/engine_room) "Ce" = ( /obj/structure/window/phoronreinforced{ @@ -858,7 +858,7 @@ name = "Engine Radiator Viewport Shutter"; opacity = 0 }, -/turf/simulated/floor, +/turf/simulated/floor/reinforced/airless, /area/engineering/engine_room) "HF" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ @@ -1041,7 +1041,7 @@ /obj/machinery/atmospherics/pipe/simple/visible/red{ dir = 4 }, -/turf/simulated/wall/r_wall, +/turf/simulated/wall/r_wall/prepainted/engineering, /area/engineering/engine_room) "Py" = ( /obj/machinery/atmospherics/pipe/simple/visible/red{ @@ -1060,7 +1060,7 @@ name = "Engine Radiator Viewport Shutter"; opacity = 0 }, -/turf/simulated/floor, +/turf/simulated/floor/reinforced/airless, /area/engineering/engine_room) "PH" = ( /obj/machinery/atmospherics/component/binary/circulator{ @@ -1146,7 +1146,7 @@ name = "Engine Radiator Viewport Shutter"; opacity = 0 }, -/turf/simulated/floor, +/turf/simulated/floor/reinforced/airless, /area/engineering/engine_room) "Rn" = ( /obj/machinery/atmospherics/component/binary/pump{ @@ -1311,7 +1311,7 @@ name = "Engine Radiator Viewport Shutter"; opacity = 0 }, -/turf/simulated/floor, +/turf/simulated/floor/reinforced/airless, /area/engineering/engine_room) "VA" = ( /obj/machinery/atmospherics/pipe/manifold/visible/black{ @@ -1351,7 +1351,7 @@ name = "Engine Radiator Viewport Shutter"; opacity = 0 }, -/turf/simulated/floor, +/turf/simulated/floor/reinforced/airless, /area/engineering/engine_room) "Wr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -1370,6 +1370,9 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/engine_room) +"WC" = ( +/turf/simulated/wall/r_wall/prepainted/engineering, +/area/engineering/engine_room) "WF" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 @@ -1392,7 +1395,7 @@ name = "Engine Radiator Viewport Shutter"; opacity = 0 }, -/turf/simulated/floor, +/turf/simulated/floor/reinforced/airless, /area/engineering/engine_room) "Xs" = ( /obj/machinery/atmospherics/pipe/manifold/visible/green{ @@ -1462,15 +1465,15 @@ Dq Dq Dq Dq -KZ +WC JN JN JN JN JN -KZ -KZ -KZ +WC +WC +WC Dq Dq Dq @@ -1491,7 +1494,7 @@ cc gW QA OY -KZ +WC Dq Dq Dq @@ -1512,7 +1515,7 @@ LX cc PA qt -KZ +WC Dq oP Dq @@ -1520,11 +1523,11 @@ Dq Dq "} (4,1,1) = {" -KZ +WC Yi Yi Yi -KZ +WC HD PW LX @@ -1533,15 +1536,15 @@ LX OG PA Ku -KZ +WC Yi hD Yi -KZ -KZ +WC +WC "} (5,1,1) = {" -KZ +WC es Qx Ww @@ -1601,10 +1604,10 @@ zz Gw xU nN -KZ +WC "} (8,1,1) = {" -KZ +WC DU Qx pL @@ -1617,15 +1620,15 @@ tV PL Py GT -KZ -KZ +WC +WC gU Tl Uu -KZ +WC "} (9,1,1) = {" -KZ +WC ey Gn mF @@ -1638,7 +1641,7 @@ AX RE Py jD -KZ +WC gV gV gV @@ -1646,7 +1649,7 @@ gV gV "} (10,1,1) = {" -KZ +WC UK jc Mo @@ -1659,7 +1662,7 @@ ay RU Aq eu -KZ +WC gV gV gV @@ -1667,7 +1670,7 @@ gV gV "} (11,1,1) = {" -KZ +WC as Qy tJ @@ -1680,7 +1683,7 @@ bc RF Um fS -KZ +WC gV gV gV @@ -1688,7 +1691,7 @@ gV gV "} (12,1,1) = {" -KZ +WC oY PH On @@ -1701,7 +1704,7 @@ ay Py Qx je -KZ +WC gV gV gV @@ -1709,7 +1712,7 @@ gV gV "} (13,1,1) = {" -KZ +WC bf WF py @@ -1722,7 +1725,7 @@ uj Py Qx uF -KZ +WC gV gV gV @@ -1730,7 +1733,7 @@ gV gV "} (14,1,1) = {" -KZ +WC ip iB nt @@ -1743,7 +1746,7 @@ nt nF iF IP -KZ +WC gV gV gV @@ -1751,7 +1754,7 @@ gV gV "} (15,1,1) = {" -KZ +WC TK zy nU @@ -1764,7 +1767,7 @@ KZ Bc xl rT -KZ +WC gV gV gV @@ -1772,7 +1775,7 @@ gV gV "} (16,1,1) = {" -KZ +WC mz qH nU @@ -1785,7 +1788,7 @@ KZ ox rX jr -KZ +WC gV gV gV @@ -1793,7 +1796,7 @@ gV gV "} (17,1,1) = {" -KZ +WC VN VN KZ @@ -1814,7 +1817,7 @@ gV gV "} (18,1,1) = {" -KZ +WC Vm Vm pO @@ -1835,7 +1838,7 @@ gV gV "} (19,1,1) = {" -KZ +WC Vm Vm sE diff --git a/maps/triumph/engines/rust.dmm b/maps/triumph/engines/rust.dmm index 0038d472160c..64f13312da64 100644 --- a/maps/triumph/engines/rust.dmm +++ b/maps/triumph/engines/rust.dmm @@ -275,7 +275,7 @@ /area/engineering/engine_room) "aP" = ( /obj/structure/sign/warning/radioactive, -/turf/simulated/wall/r_wall, +/turf/simulated/wall/r_wall/prepainted/engineering, /area/engineering/engine_room) "aY" = ( /obj/machinery/atmospherics/pipe/manifold/visible/green{ @@ -299,7 +299,7 @@ /obj/structure/cable/cyan{ icon_state = "0-8" }, -/turf/simulated/floor/reinforced, +/turf/simulated/floor/reinforced/airless, /area/engineering/engine_room) "ck" = ( /obj/machinery/atmospherics/component/unary/vent_pump/high_volume{ @@ -308,7 +308,7 @@ pump_direction = 0; on = 1 }, -/turf/simulated/floor/reinforced, +/turf/simulated/floor/reinforced/airless, /area/engineering/engine_room) "cx" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -348,7 +348,7 @@ /obj/machinery/camera/network/engine{ dir = 4 }, -/turf/simulated/floor/reinforced, +/turf/simulated/floor/reinforced/airless, /area/engineering/engine_room) "eD" = ( /obj/machinery/air_alarm{ @@ -425,7 +425,7 @@ id_tag = "engine_sensor"; output = 63 }, -/turf/simulated/floor/reinforced, +/turf/simulated/floor/reinforced/airless, /area/engineering/engine_room) "iw" = ( /obj/structure/closet/radiation, @@ -487,7 +487,7 @@ id = "EngineVent"; name = "Reactor Vent" }, -/turf/simulated/floor/reinforced, +/turf/simulated/floor/reinforced/airless, /area/engineering/engine_room) "kJ" = ( /obj/machinery/computer/fusion_fuel_control{ @@ -603,10 +603,10 @@ icon_state = "phoronwindow0" }, /obj/structure/grille, -/turf/simulated/floor, +/turf/simulated/floor/reinforced/airless, /area/engineering/engine_room) "os" = ( -/turf/simulated/wall/r_wall, +/turf/simulated/wall/r_wall/prepainted/engineering, /area/engineering/engine_room) "oE" = ( /obj/structure/cable/cyan{ @@ -683,13 +683,13 @@ /obj/structure/cable/cyan{ icon_state = "4-8" }, -/turf/simulated/floor, +/turf/simulated/floor/reinforced/airless, /area/engineering/engine_room) "ss" = ( /obj/machinery/atmospherics/pipe/simple/visible/red{ dir = 4 }, -/turf/simulated/floor/reinforced, +/turf/simulated/floor/reinforced/airless, /area/engineering/engine_room) "sH" = ( /obj/structure/cable/cyan{ @@ -756,7 +756,7 @@ /obj/structure/cable/cyan{ icon_state = "1-2" }, -/turf/simulated/floor, +/turf/simulated/floor/reinforced/airless, /area/engineering/engine_room) "wb" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan{ @@ -819,7 +819,7 @@ /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/engine_room) "Ab" = ( -/turf/simulated/floor/reinforced, +/turf/simulated/floor/reinforced/airless, /area/engineering/engine_room) "At" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -856,7 +856,7 @@ id = "cooling_in"; use_power = 1 }, -/turf/simulated/floor/reinforced, +/turf/simulated/floor/reinforced/airless, /area/engineering/engine_room) "EG" = ( /obj/machinery/atmospherics/pipe/manifold/visible/cyan{ @@ -997,7 +997,7 @@ /obj/structure/cable/cyan{ icon_state = "1-2" }, -/turf/simulated/floor/reinforced, +/turf/simulated/floor/reinforced/airless, /area/engineering/engine_room) "Kt" = ( /obj/machinery/door/firedoor, @@ -1024,7 +1024,7 @@ /obj/machinery/atmospherics/pipe/manifold/visible/yellow{ dir = 8 }, -/turf/simulated/floor/reinforced, +/turf/simulated/floor/reinforced/airless, /area/engineering/engine_room) "Lz" = ( /obj/machinery/atmospherics/pipe/manifold/visible/cyan{ @@ -1051,7 +1051,7 @@ /obj/machinery/atmospherics/pipe/simple/visible/red{ dir = 4 }, -/turf/simulated/floor, +/turf/simulated/floor/reinforced/airless, /area/engineering/engine_room) "MW" = ( /obj/machinery/atmospherics/component/binary/pump, @@ -1209,7 +1209,7 @@ pump_direction = 0; on = 1 }, -/turf/simulated/floor/reinforced, +/turf/simulated/floor/reinforced/airless, /area/engineering/engine_room) "RC" = ( /obj/structure/cable/cyan{ @@ -1249,7 +1249,7 @@ id = "cooling_in"; use_power = 1 }, -/turf/simulated/floor/reinforced, +/turf/simulated/floor/reinforced/airless, /area/engineering/engine_room) "Th" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -1277,7 +1277,7 @@ /obj/structure/cable/cyan{ icon_state = "4-8" }, -/turf/simulated/floor/reinforced, +/turf/simulated/floor/reinforced/airless, /area/engineering/engine_room) "UA" = ( /obj/machinery/atmospherics/component/binary/pump{ @@ -1337,7 +1337,7 @@ /obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 4 }, -/turf/simulated/floor, +/turf/simulated/floor/reinforced/airless, /area/engineering/engine_room) "YK" = ( /obj/machinery/atmospherics/component/binary/pump, diff --git a/maps/triumph/engines/sme.dmm b/maps/triumph/engines/sme.dmm index adce34d916ae..9cf90960a212 100644 --- a/maps/triumph/engines/sme.dmm +++ b/maps/triumph/engines/sme.dmm @@ -43,10 +43,6 @@ /area/engineering/engine_room) "bb" = ( /obj/structure/grille, -/obj/structure/window/phoronreinforced, -/obj/structure/window/phoronreinforced{ - dir = 1 - }, /obj/structure/window/phoronreinforced{ dir = 8 }, @@ -58,6 +54,9 @@ id = "SupermatterPort"; name = "Reactor Blast Door" }, +/obj/structure/window/phoronreinforced{ + dir = 1 + }, /turf/simulated/floor, /area/engineering/engine_room) "bK" = ( @@ -109,9 +108,7 @@ id = "EngineVent"; name = "Reactor Vent" }, -/turf/simulated/floor/reinforced/nitrogen{ - initial_gas_mix = "n2=82.1472;TEMP=293.15" - }, +/turf/simulated/floor/reinforced/airless, /area/engineering/engine_room) "fp" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow{ @@ -167,10 +164,6 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/engine_room) -"hJ" = ( -/obj/structure/sign/vacuum, -/turf/simulated/wall/r_wall, -/area/engineering/engine_room) "hR" = ( /obj/machinery/atmospherics/pipe/manifold/visible/green{ dir = 1 @@ -331,8 +324,8 @@ /obj/machinery/camera/network/engine{ dir = 1 }, -/obj/machinery/atmospherics/component/binary/pump{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 }, /turf/simulated/floor, /area/engineering/engine_room) @@ -367,20 +360,21 @@ pixel_y = -5; req_access = list(10) }, -/obj/machinery/button/remote/blast_door{ - desc = "A remote control-switch for the engine control room blast doors."; - id = "EngineBlast"; - name = "Engine Monitoring Room Blast Doors"; - pixel_x = -25; - pixel_y = 5; - req_access = list(10) - }, /obj/structure/cable/yellow{ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/visible/red{ dir = 5 }, +/obj/machinery/button/remote/airlock{ + pixel_y = 5; + pixel_x = -25; + desc = "A control for the locking bolts of the access hatch into the containment."; + id = "engine_access_hatch"; + name = "Access Hatch"; + req_access = list(10); + specialfunctions = 4 + }, /turf/simulated/floor/plating, /area/engineering/engine_room) "nV" = ( @@ -413,7 +407,7 @@ /area/engineering/engine_room) "qb" = ( /obj/structure/sign/warning/radioactive, -/turf/simulated/wall/r_wall, +/turf/simulated/wall/r_wall/prepainted/engineering, /area/engineering/engine_room) "qc" = ( /obj/machinery/shield_diffuser, @@ -667,9 +661,6 @@ "zU" = ( /obj/structure/grille, /obj/structure/window/phoronreinforced, -/obj/structure/window/phoronreinforced{ - dir = 1 - }, /obj/structure/window/phoronreinforced{ dir = 8 }, @@ -879,14 +870,11 @@ /turf/simulated/floor/plating, /area/engineering/engine_room) "FO" = ( -/obj/machinery/door/airlock/hatch{ - icon_state = "door_locked"; - id_tag = "engine_access_hatch"; - locked = 1; - req_one_access = null - }, /obj/map_helper/access_helper/airlock/station/engineering/engine, -/turf/simulated/floor/reinforced, +/obj/machinery/door/airlock/hatch/supermatter_access{ + id_tag = "engine_access_hatch" + }, +/turf/simulated/floor/reinforced/airless, /area/engineering/engine_room) "FV" = ( /obj/structure/cable/cyan{ @@ -1315,7 +1303,7 @@ /turf/simulated/floor, /area/engineering/engine_room) "WZ" = ( -/turf/simulated/wall/r_wall, +/turf/simulated/wall/r_wall/prepainted/engineering, /area/engineering/engine_room) "Xc" = ( /obj/machinery/atmospherics/pipe/simple/visible/green, @@ -1360,12 +1348,6 @@ /obj/structure/cable/cyan{ icon_state = "1-2" }, -/obj/machinery/computer/general_air_control/large_tank_control{ - frequency = 1439; - name = "Reactor Waste Port"; - output_tag = "waste_out"; - sensors = null - }, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/engine_room) "Yg" = ( @@ -1435,9 +1417,9 @@ Za WZ WZ WZ -hJ dF -hJ +dF +dF WZ WZ WZ diff --git a/maps/triumph/levels/deck1.dmm b/maps/triumph/levels/deck1.dmm index ce0e70bf05a9..ff1464050c5b 100644 --- a/maps/triumph/levels/deck1.dmm +++ b/maps/triumph/levels/deck1.dmm @@ -63,10 +63,10 @@ /turf/simulated/floor/tiled, /area/engineering/hallway) "ai" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ +/obj/machinery/atmospherics/pipe/simple/visible{ dir = 9 }, -/obj/machinery/atmospherics/pipe/simple/visible/green{ +/obj/machinery/atmospherics/pipe/simple/visible{ dir = 6 }, /turf/simulated/floor/tiled/techmaint, @@ -301,7 +301,7 @@ /turf/simulated/floor/tiled, /area/crew_quarters/heads/chief) "aO" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green, +/obj/machinery/atmospherics/pipe/simple/visible/blue, /turf/simulated/floor/tiled/techmaint, /area/engineering/atmos) "aS" = ( @@ -526,8 +526,8 @@ /turf/simulated/floor/tiled/white, /area/engineering/foyer_mezzenine) "by" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 8 +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 1 }, /turf/simulated/floor/tiled/techmaint, /area/engineering/atmos) @@ -651,8 +651,8 @@ /area/space) "bS" = ( /obj/spawner/window/low_wall/reinforced/full/firelocks, -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 }, /obj/effect/paint_stripe/pipecyan, /turf/simulated/floor/plating, @@ -669,6 +669,18 @@ }, /turf/simulated/floor/tiled/techmaint, /area/engineering/atmos) +"bU" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) "bV" = ( /obj/structure/atmos_tank_segment/phoron{ icon_state = "4,0" @@ -871,10 +883,16 @@ /turf/simulated/floor/tiled, /area/engineering/hallway/lower) "cK" = ( -/obj/structure/catwalk, -/obj/structure/catwalk, -/turf/simulated/wall/r_wall/prepainted/engineering, -/area/engineering/portnacelle) +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 6 + }, +/obj/machinery/meter, +/obj/machinery/light{ + dir = 8; + light_range = 12 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) "cM" = ( /obj/structure/atmos_tank_segment/n2o2{ icon_state = "0,3" @@ -966,10 +984,10 @@ /turf/simulated/floor/airless/ceiling, /area/engineering/atmos/gas_storage) "cZ" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/obj/machinery/atmospherics/pipe/simple/visible/blue, /turf/simulated/floor/tiled/techmaint, /area/engineering/atmos) "dc" = ( @@ -1165,7 +1183,7 @@ /obj/structure/atmos_tank_segment/o2{ icon_state = "3,3" }, -/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/machinery/atmospherics/pipe/simple/visible, /turf/simulated/floor/reinforced/oxygen, /area/engineering/atmos/gas_storage) "dN" = ( @@ -1561,7 +1579,7 @@ /obj/machinery/door/airlock/maintenance/engi{ req_one_access = null }, -/obj/map_helper/access_helper/airlock/station/maintenance, +/obj/map_helper/access_helper/airlock/station/engineering/department, /turf/simulated/floor/tiled/techmaint, /area/maintenance/engineering) "fb" = ( @@ -1594,8 +1612,8 @@ /turf/simulated/floor/plating, /area/engineering/hallway/lower) "ff" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan, -/obj/machinery/atmospherics/pipe/simple/visible/red{ +/obj/machinery/atmospherics/pipe/simple/visible/blue, +/obj/machinery/atmospherics/pipe/simple/visible/black{ dir = 4 }, /turf/simulated/floor/tiled/techmaint, @@ -1641,16 +1659,10 @@ /turf/simulated/floor/tiled, /area/station/stairs_one) "fn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /obj/effect/floor_decal/industrial/warning/corner{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/visible/green{ +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 5 }, /turf/simulated/floor/tiled/techmaint, @@ -1755,6 +1767,7 @@ /obj/machinery/door/firedoor{ dir = 8 }, +/obj/map_helper/access_helper/airlock/station/engineering/department, /turf/simulated/floor/tiled, /area/engineering/hallway) "fJ" = ( @@ -1840,7 +1853,7 @@ /turf/simulated/floor/plating, /area/maintenance/engineering) "fW" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red, +/obj/machinery/atmospherics/pipe/simple/visible/black, /obj/machinery/meter, /turf/simulated/floor/tiled/techmaint, /area/engineering/atmos) @@ -1856,6 +1869,13 @@ /obj/structure/railing, /turf/space, /area/space) +"gc" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) "gf" = ( /obj/machinery/atmospherics/component/unary/vent_pump{ dir = 4; @@ -2166,21 +2186,24 @@ /turf/simulated/floor/tiled, /area/engineering/hallway/lower) "ha" = ( -/obj/structure/catwalk, -/turf/simulated/wall/r_wall/prepainted/engineering, -/area/engineering/portnacelle) +/obj/machinery/atmospherics/pipe/simple/visible/black, +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) "hb" = ( /obj/machinery/atmospherics/pipe/simple/visible, /obj/structure/catwalk, /turf/simulated/floor/airless/ceiling, /area/engineering/atmos/gas_storage) "hd" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 10 +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 8 }, -/obj/machinery/meter, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) +/obj/structure/catwalk, +/turf/simulated/floor/airless/ceiling, +/area/engineering/atmos/gas_storage) "he" = ( /turf/space/basic, /area/space) @@ -2215,14 +2238,18 @@ /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/starboardnacelle) "hk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/industrial/warning{ dir = 5 }, /obj/structure/window/reinforced{ dir = 4 }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/tiled/techmaint, /area/engineering/atmos) "hl" = ( @@ -2247,7 +2274,7 @@ /turf/simulated/floor/tiled/techmaint, /area/engineering/atmos) "hn" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/green{ +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ dir = 8 }, /turf/simulated/floor/tiled/techmaint, @@ -2644,7 +2671,10 @@ /turf/simulated/floor/tiled/white, /area/engineering/foyer_mezzenine) "iC" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 10 + }, +/obj/machinery/meter, /turf/simulated/floor/tiled/techmaint, /area/engineering/atmos) "iE" = ( @@ -2745,9 +2775,6 @@ }, /turf/simulated/floor/tiled/hydro, /area/engineering/atmos) -"iY" = ( -/turf/simulated/wall/r_wall, -/area/engineering/engine_room) "ja" = ( /obj/structure/table/rack{ dir = 8; @@ -2830,8 +2857,8 @@ /turf/simulated/floor/tiled, /area/engineering/atmos/monitoring) "jj" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 9 }, /turf/simulated/floor/tiled/techmaint, /area/engineering/atmos) @@ -2879,7 +2906,9 @@ /turf/simulated/floor/airless/ceiling, /area/space) "jv" = ( -/obj/machinery/atmospherics/pipe/simple/visible/purple, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 8 + }, /turf/simulated/floor/tiled/techmaint, /area/engineering/atmos) "jy" = ( @@ -3108,6 +3137,12 @@ }, /turf/simulated/floor/tiled/techmaint, /area/engineering/atmos) +"ke" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/blue{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) "kf" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -3207,9 +3242,8 @@ /area/tcommsat/chamber) "kv" = ( /obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 4 + dir = 9 }, -/obj/machinery/meter, /turf/simulated/floor/tiled/techmaint, /area/engineering/atmos) "kw" = ( @@ -3456,10 +3490,10 @@ /turf/simulated/wall/prepainted/engineering, /area/engineering/storage) "lw" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/visible/purple, +/obj/machinery/atmospherics/pipe/simple/visible/red, /turf/simulated/floor/tiled/techmaint, /area/engineering/atmos) "lz" = ( @@ -3726,8 +3760,8 @@ /obj/machinery/light{ dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 }, /turf/simulated/floor/tiled/techmaint, /area/engineering/atmos) @@ -3735,7 +3769,7 @@ /obj/structure/atmos_tank_segment/o2{ icon_state = "1,4" }, -/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/obj/machinery/atmospherics/pipe/simple/visible/blue, /obj/structure/lattice, /turf/space/basic, /area/engineering/atmos/gas_storage) @@ -3800,7 +3834,7 @@ /obj/machinery/door/airlock/maintenance/engi{ req_one_access = null }, -/obj/map_helper/access_helper/airlock/station/maintenance, +/obj/map_helper/access_helper/airlock/station/engineering/department, /turf/simulated/floor/plating, /area/tcommsat/powercontrol) "mC" = ( @@ -3958,8 +3992,8 @@ /obj/structure/atmos_tank_segment/phoron{ icon_state = "3,1" }, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 8 }, /turf/simulated/floor/reinforced/phoron, /area/engineering/atmos/gas_storage) @@ -4034,7 +4068,7 @@ /turf/simulated/floor/airless/ceiling, /area/engineering/atmos/gas_storage) "nC" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/green{ +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ dir = 1 }, /obj/effect/floor_decal/industrial/warning/corner, @@ -4118,7 +4152,7 @@ /obj/effect/floor_decal/industrial/warning{ dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/visible/green{ +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 9 }, /obj/structure/window/reinforced{ @@ -4248,7 +4282,7 @@ /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/engine_monitoring) "oo" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 5 }, /obj/machinery/meter, @@ -4341,11 +4375,13 @@ /turf/simulated/floor/tiled, /area/engineering/hallway/lower) "oI" = ( +/obj/spawner/window/low_wall/reinforced/full/firelocks, /obj/machinery/atmospherics/pipe/simple/visible/purple{ - dir = 6 + dir = 8 }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) +/obj/effect/paint_stripe/pipecyan, +/turf/simulated/floor/plating, +/area/space) "oJ" = ( /obj/machinery/atmospherics/portables_connector{ dir = 1 @@ -4392,7 +4428,7 @@ /turf/simulated/floor/tiled, /area/engineering/atmos/monitoring) "oP" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 4 }, /obj/effect/floor_decal/industrial/warning, @@ -4444,7 +4480,7 @@ /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/shunt) "pa" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/tiled/techmaint, @@ -4459,8 +4495,8 @@ /obj/structure/atmos_tank_segment/co2{ icon_state = "3,1" }, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 8 }, /turf/simulated/floor/reinforced/carbon_dioxide, /area/engineering/atmos/gas_storage) @@ -4502,7 +4538,7 @@ /obj/effect/floor_decal/industrial/warning{ dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold4w/visible/red, +/obj/machinery/atmospherics/pipe/manifold4w/visible/black, /obj/machinery/meter, /obj/structure/cable/green{ icon_state = "1-2" @@ -4741,7 +4777,7 @@ /obj/structure/atmos_tank_segment/o2{ icon_state = "3,4" }, -/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/machinery/atmospherics/pipe/simple/visible, /obj/structure/lattice, /turf/space/basic, /area/engineering/atmos/gas_storage) @@ -4831,7 +4867,7 @@ /obj/machinery/door/airlock/maintenance/engi{ req_one_access = null }, -/obj/map_helper/access_helper/airlock/station/maintenance, +/obj/map_helper/access_helper/airlock/station/engineering/atmospherics, /turf/simulated/floor/plating, /area/engineering/atmos/storage) "qr" = ( @@ -4880,7 +4916,7 @@ /obj/structure/atmos_tank_segment/air{ icon_state = "1,3" }, -/obj/machinery/atmospherics/pipe/simple/visible, +/obj/machinery/atmospherics/pipe/simple/visible/cyan, /turf/simulated/floor/reinforced/airmix, /area/engineering/atmos/gas_storage) "qz" = ( @@ -4923,7 +4959,7 @@ /turf/simulated/floor/tiled/techmaint, /area/tcommsat/computer) "qD" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/red{ +/obj/machinery/atmospherics/pipe/manifold/visible/black{ dir = 4 }, /obj/machinery/meter, @@ -4967,16 +5003,10 @@ /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/drone_fabrication) "qK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /obj/effect/floor_decal/industrial/warning{ dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/visible/green{ +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 4 }, /turf/simulated/floor/tiled/techmaint, @@ -5100,7 +5130,7 @@ /turf/simulated/floor/reinforced/n20, /area/engineering/atmos/gas_storage) "rb" = ( -/obj/machinery/atmospherics/pipe/simple/visible/purple{ +/obj/machinery/atmospherics/pipe/simple/visible/red{ dir = 9 }, /obj/machinery/meter, @@ -5158,7 +5188,7 @@ /turf/simulated/floor/tiled/techfloor, /area/engineering/engine_airlock) "rq" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ +/obj/machinery/atmospherics/pipe/simple/visible/black{ dir = 10 }, /obj/effect/floor_decal/industrial/warning{ @@ -5216,9 +5246,7 @@ }, /area/tcommsat/chamber) "ry" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 10 - }, +/obj/machinery/atmospherics/pipe/simple/visible/black, /turf/simulated/floor/tiled/techmaint, /area/engineering/atmos) "rA" = ( @@ -5252,8 +5280,8 @@ /obj/structure/atmos_tank_segment/n2o2{ icon_state = "3,1" }, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 8 }, /turf/simulated/floor/reinforced/n20, /area/engineering/atmos/gas_storage) @@ -5337,15 +5365,12 @@ /turf/simulated/floor/tiled/techmaint, /area/engineering/locker_room) "rT" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 4 +/obj/effect/floor_decal/industrial/warning{ + dir = 1 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /turf/simulated/floor/tiled/techmaint, /area/engineering/atmos) "rU" = ( @@ -5480,11 +5505,11 @@ /obj/structure/atmos_tank_segment/n2{ icon_state = "1,3" }, -/obj/machinery/atmospherics/pipe/simple/visible/purple, +/obj/machinery/atmospherics/pipe/simple/visible/red, /turf/simulated/floor/reinforced/nitrogen, /area/engineering/atmos/gas_storage) "sm" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 5 }, /obj/effect/floor_decal/industrial/warning{ @@ -5635,7 +5660,7 @@ /turf/simulated/floor/tiled, /area/station/stairs_one) "sR" = ( -/obj/machinery/atmospherics/pipe/simple/visible/purple, +/obj/machinery/atmospherics/pipe/simple/visible/red, /obj/structure/catwalk, /turf/simulated/floor/airless/ceiling, /area/engineering/atmos/gas_storage) @@ -5729,7 +5754,7 @@ /obj/structure/atmos_tank_segment/co2{ icon_state = "4,3" }, -/obj/machinery/atmospherics/pipe/simple/visible/green{ +/obj/machinery/atmospherics/pipe/simple/visible{ dir = 4 }, /obj/structure/lattice, @@ -5929,8 +5954,8 @@ }, /area/tcommsat/chamber) "tH" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 }, /obj/structure/cable/green{ icon_state = "1-2" @@ -6096,7 +6121,7 @@ /turf/simulated/floor/plating, /area/maintenance/engi_engine) "um" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ +/obj/machinery/atmospherics/pipe/simple/visible{ dir = 6 }, /obj/machinery/meter, @@ -6280,7 +6305,7 @@ /obj/machinery/door/airlock/maintenance/engi{ req_one_access = null }, -/obj/map_helper/access_helper/airlock/station/maintenance, +/obj/map_helper/access_helper/airlock/station/engineering/department, /turf/simulated/floor/plating, /area/engineering/drone_fabrication) "uM" = ( @@ -6312,7 +6337,7 @@ /obj/machinery/door/airlock/maintenance/engi{ req_one_access = null }, -/obj/map_helper/access_helper/airlock/station/maintenance, +/obj/map_helper/access_helper/airlock/station/engineering/department, /turf/simulated/floor/plating, /area/maintenance/engineering) "uU" = ( @@ -6526,10 +6551,9 @@ /turf/simulated/floor/plating, /area/maintenance/engi_engine) "vN" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 6 +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 8 }, -/obj/machinery/meter, /turf/simulated/floor/tiled/techmaint, /area/engineering/atmos) "vP" = ( @@ -6557,7 +6581,7 @@ /turf/simulated/floor/tiled/techmaint, /area/engineering/workshop) "vT" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/machinery/atmospherics/pipe/simple/visible/black, /obj/structure/catwalk, /turf/simulated/floor/airless/ceiling, /area/engineering/atmos/gas_storage) @@ -6608,7 +6632,7 @@ /turf/simulated/floor/tiled/white, /area/engineering/foyer_mezzenine) "wa" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ +/obj/machinery/atmospherics/pipe/manifold/visible/blue{ dir = 4 }, /turf/simulated/floor/tiled/techmaint, @@ -6630,7 +6654,7 @@ /obj/structure/atmos_tank_segment/o2{ icon_state = "1,3" }, -/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/obj/machinery/atmospherics/pipe/simple/visible/blue, /turf/simulated/floor/reinforced/oxygen, /area/engineering/atmos/gas_storage) "we" = ( @@ -6803,8 +6827,8 @@ /obj/structure/atmos_tank_segment/phoron{ icon_state = "4,1" }, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 8 }, /obj/structure/lattice, /turf/space/basic, @@ -6888,7 +6912,7 @@ /turf/simulated/floor/plating, /area/engineering/engine_smes) "wV" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/green{ +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ dir = 1 }, /obj/effect/floor_decal/industrial/warning/corner{ @@ -6898,7 +6922,7 @@ /turf/simulated/floor/tiled/techmaint, /area/engineering/atmos) "wY" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/purple{ +/obj/machinery/atmospherics/pipe/manifold/visible/red{ dir = 8 }, /turf/simulated/floor/tiled/techmaint, @@ -6907,7 +6931,7 @@ /obj/structure/atmos_tank_segment/air{ icon_state = "1,4" }, -/obj/machinery/atmospherics/pipe/simple/visible, +/obj/machinery/atmospherics/pipe/simple/visible/cyan, /obj/structure/lattice, /turf/space/basic, /area/engineering/atmos/gas_storage) @@ -7080,7 +7104,7 @@ /obj/structure/cable/green{ icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/manifold/visible/red{ +/obj/machinery/atmospherics/pipe/manifold/visible/black{ dir = 8 }, /obj/effect/floor_decal/industrial/warning{ @@ -7126,11 +7150,11 @@ /obj/machinery/atmospherics/pipe/simple/visible{ dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/visible, +/obj/machinery/atmospherics/pipe/simple/visible/cyan, /turf/simulated/floor/tiled/techmaint, /area/engineering/atmos) "xF" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ +/obj/machinery/atmospherics/pipe/simple/visible/black{ dir = 9 }, /turf/simulated/floor/tiled/techmaint, @@ -7263,7 +7287,7 @@ /turf/simulated/floor/tiled/techmaint, /area/engineering/engine_monitoring) "yr" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ +/obj/machinery/atmospherics/pipe/simple/visible/black{ dir = 10 }, /obj/effect/floor_decal/industrial/warning{ @@ -7512,8 +7536,8 @@ /obj/structure/atmos_tank_segment/n2o2{ icon_state = "4,1" }, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 8 }, /obj/structure/lattice, /turf/space/basic, @@ -7535,14 +7559,12 @@ /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/engine_monitoring) "zf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) +/obj/structure/catwalk, +/turf/simulated/floor/airless/ceiling, +/area/engineering/atmos/gas_storage) "zi" = ( /obj/machinery/air_alarm{ dir = 1; @@ -7701,7 +7723,7 @@ /area/engineering/atmos/monitoring) "zP" = ( /obj/spawner/window/low_wall/reinforced/full/firelocks, -/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/machinery/atmospherics/pipe/simple/visible/black, /obj/effect/paint_stripe/pipecyan, /turf/simulated/floor/plating, /area/engineering/atmos) @@ -7740,15 +7762,10 @@ /turf/simulated/floor/tiled/techmaint, /area/tcommsat/computer) "zV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ - dir = 1 - }, /turf/simulated/floor/tiled/techmaint, /area/engineering/atmos) "zX" = ( @@ -8063,8 +8080,8 @@ /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/portnacelle) "AV" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 }, /obj/structure/cable/green{ icon_state = "4-8" @@ -8093,8 +8110,8 @@ /turf/simulated/floor/tiled/techmaint, /area/engineering/atmos) "Bc" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 }, /obj/machinery/atmospherics/component/binary/pump{ dir = 1 @@ -8276,7 +8293,7 @@ /turf/simulated/floor/tiled/techmaint, /area/maintenance/trash_pit) "BI" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ +/obj/machinery/atmospherics/pipe/simple/visible{ dir = 6 }, /turf/simulated/floor/tiled/techmaint, @@ -8580,6 +8597,12 @@ }, /turf/simulated/floor/tiled/steel_dirty, /area/engineering/atmos/storage) +"CK" = ( +/obj/machinery/atmospherics/pipe/simple/visible/blue{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) "CM" = ( /obj/structure/cable{ icon_state = "1-2" @@ -8666,8 +8689,8 @@ /obj/structure/atmos_tank_segment/n2o2{ icon_state = "3,3" }, -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 8 }, /turf/simulated/floor/reinforced/n20, /area/engineering/atmos/gas_storage) @@ -8739,8 +8762,8 @@ /obj/structure/atmos_tank_segment/n2o2{ icon_state = "4,3" }, -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 8 }, /obj/structure/lattice, /turf/space/basic, @@ -8809,7 +8832,7 @@ /obj/structure/atmos_tank_segment/n2{ icon_state = "3,3" }, -/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/machinery/atmospherics/pipe/simple/visible/black, /turf/simulated/floor/reinforced/nitrogen, /area/engineering/atmos/gas_storage) "Dy" = ( @@ -8843,11 +8866,11 @@ /turf/simulated/floor/tiled/techmaint, /area/engineering/engine_airlock) "DD" = ( -/obj/structure/cable/green{ - icon_state = "1-2" +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 1 }, -/turf/simulated/wall/prepainted/engineering, -/area/engineering/drone_fabrication) +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) "DE" = ( /obj/machinery/atmospherics/pipe/manifold/hidden, /turf/simulated/wall/r_wall/prepainted/engineering/atmos, @@ -8878,14 +8901,14 @@ /turf/simulated/floor/tiled/techmaint, /area/engineering/storage) "DH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/industrial/warning/corner{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/visible/green{ +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, /area/engineering/atmos) "DI" = ( @@ -8923,7 +8946,7 @@ /turf/simulated/floor/plating, /area/maintenance/engi_engine) "DN" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 4 }, /obj/effect/floor_decal/industrial/warning, @@ -9114,7 +9137,7 @@ /turf/simulated/floor/tiled/techmaint, /area/engineering/storage) "Ew" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/green{ +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ dir = 8 }, /obj/machinery/meter, @@ -9125,7 +9148,9 @@ /obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 4 }, -/obj/effect/paint_stripe/pipecyan, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 8 + }, /turf/simulated/floor/plating, /area/engineering/atmos) "EA" = ( @@ -9186,9 +9211,7 @@ /turf/simulated/shuttle/wall/voidcraft/blue, /area/engineering/hallway/lower) "EP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -9540,7 +9563,7 @@ /turf/simulated/floor/plating, /area/maintenance/engineering) "FT" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 4 }, /obj/effect/floor_decal/industrial/warning/corner{ @@ -9919,7 +9942,7 @@ /turf/simulated/floor/tiled/techmaint, /area/engineering/storage) "Ho" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green, +/obj/machinery/atmospherics/pipe/simple/visible, /obj/machinery/light{ dir = 8; light_range = 12 @@ -10083,7 +10106,7 @@ /obj/effect/floor_decal/industrial/warning/corner{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/visible/green{ +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 10 }, /obj/structure/window/reinforced{ @@ -10197,6 +10220,12 @@ /obj/effect/paint_stripe/pipecyan, /turf/simulated/floor/plating, /area/engineering/atmos/monitoring) +"Ij" = ( +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/obj/machinery/atmospherics/pipe/simple/visible/blue, +/obj/effect/paint_stripe/pipecyan, +/turf/simulated/floor/plating, +/area/engineering/atmos) "Ik" = ( /obj/structure/cable{ icon_state = "0-4" @@ -10296,7 +10325,7 @@ /turf/simulated/floor/tiled, /area/station/stairs_one) "IC" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ +/obj/machinery/atmospherics/pipe/simple/visible/blue{ dir = 5 }, /obj/machinery/meter, @@ -10535,14 +10564,14 @@ /obj/machinery/door/airlock/maintenance/engi{ req_one_access = null }, -/obj/map_helper/access_helper/airlock/station/maintenance, +/obj/map_helper/access_helper/airlock/station/engineering/department, /turf/simulated/floor/tiled/techmaint, /area/tcommsat/computer) "Jn" = ( /obj/structure/atmos_tank_segment/n2{ icon_state = "1,4" }, -/obj/machinery/atmospherics/pipe/simple/visible/purple, +/obj/machinery/atmospherics/pipe/simple/visible/red, /obj/structure/lattice, /turf/space/basic, /area/engineering/atmos/gas_storage) @@ -10563,8 +10592,8 @@ /turf/simulated/floor/tiled, /area/engineering/hallway) "Jp" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 5 +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 6 }, /turf/simulated/floor/tiled/techmaint, /area/engineering/atmos) @@ -10607,7 +10636,7 @@ /turf/simulated/floor/reinforced/airmix, /area/engineering/atmos/gas_storage) "Jz" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ +/obj/machinery/atmospherics/pipe/simple/visible/blue{ dir = 9 }, /obj/machinery/light, @@ -10644,7 +10673,7 @@ /turf/simulated/floor/tiled/techmaint, /area/engineering/engine_airlock) "JE" = ( -/obj/machinery/atmospherics/pipe/simple/visible/purple{ +/obj/machinery/atmospherics/pipe/simple/visible/red{ dir = 4 }, /obj/machinery/computer/general_air_control/large_tank_control{ @@ -10787,14 +10816,14 @@ /turf/simulated/floor/plating, /area/engineering/hallway/lower) "JZ" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 8 }, /obj/structure/catwalk, /turf/simulated/floor/airless/ceiling, /area/engineering/atmos/gas_storage) "Kb" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/green{ +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ dir = 4 }, /turf/simulated/floor/tiled/techmaint, @@ -10836,7 +10865,7 @@ /obj/machinery/atmospherics/pipe/simple/visible/green{ dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/visible/red, +/obj/machinery/atmospherics/pipe/simple/visible/black, /turf/simulated/floor/tiled/techmaint, /area/engineering/atmos) "Km" = ( @@ -10880,8 +10909,8 @@ }, /area/tcommsat/chamber) "Kt" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/machinery/atmospherics/pipe/simple/visible/blue{ dir = 4 }, /turf/simulated/floor/tiled/techmaint, @@ -10899,8 +10928,8 @@ /obj/structure/atmos_tank_segment/co2{ icon_state = "4,1" }, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 8 }, /obj/structure/lattice, /turf/space/basic, @@ -11117,12 +11146,6 @@ /turf/simulated/floor/tiled/techmaint, /area/engineering/locker_room) "Lj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /obj/effect/floor_decal/industrial/warning/corner{ dir = 1 }, @@ -11278,6 +11301,11 @@ /obj/structure/catwalk, /turf/space, /area/space) +"LI" = ( +/obj/machinery/atmospherics/pipe/simple/visible/blue, +/obj/structure/catwalk, +/turf/simulated/floor/airless/ceiling, +/area/engineering/atmos/gas_storage) "LJ" = ( /obj/structure/atmos_tank_segment/air{ icon_state = "1,2" @@ -11300,7 +11328,7 @@ /turf/simulated/floor/reinforced/airmix, /area/engineering/atmos/gas_storage) "LK" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ +/obj/machinery/atmospherics/pipe/simple/visible/blue{ dir = 4 }, /obj/machinery/computer/general_air_control/large_tank_control{ @@ -11754,8 +11782,8 @@ /turf/simulated/wall/r_wall/prepainted/engineering, /area/engineering/drone_fabrication) "Nn" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 }, /obj/machinery/meter, /turf/simulated/floor/tiled/techmaint, @@ -11834,9 +11862,8 @@ /turf/simulated/floor/tiled/white, /area/engineering/foyer_mezzenine) "NB" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/obj/machinery/atmospherics/pipe/simple/visible/purple{ - dir = 4 +/obj/machinery/atmospherics/pipe/manifold/visible/purple{ + dir = 1 }, /turf/simulated/floor/tiled/techmaint, /area/engineering/atmos) @@ -11949,13 +11976,7 @@ /turf/space/basic, /area/space) "Oa" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/tiled/techmaint, @@ -11964,7 +11985,7 @@ /turf/simulated/wall/prepainted, /area/maintenance/trash_pit) "Od" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ +/obj/machinery/atmospherics/pipe/simple/visible/black{ dir = 6 }, /obj/machinery/power/apc/north_mount{ @@ -12004,12 +12025,12 @@ /turf/simulated/floor/tiled, /area/engineering/hallway) "Oh" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/green, +/obj/machinery/atmospherics/pipe/manifold/visible/yellow, /obj/machinery/light, /turf/simulated/floor/tiled/techmaint, /area/engineering/atmos) "Oj" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/red{ +/obj/machinery/atmospherics/pipe/manifold/visible/black{ dir = 8 }, /obj/effect/floor_decal/industrial/warning/corner{ @@ -12053,8 +12074,8 @@ /turf/simulated/floor/tiled/techmaint, /area/engineering/storage) "Op" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 }, /obj/structure/cable/green{ icon_state = "1-2" @@ -12343,7 +12364,7 @@ /turf/simulated/floor/tiled, /area/engineering/hallway/lower) "Pa" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/green, +/obj/machinery/atmospherics/pipe/manifold/visible/yellow, /turf/simulated/floor/tiled/techmaint, /area/engineering/atmos) "Pc" = ( @@ -12478,7 +12499,7 @@ /obj/structure/atmos_tank_segment/n2{ icon_state = "3,4" }, -/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/machinery/atmospherics/pipe/simple/visible/black, /obj/structure/lattice, /turf/space/basic, /area/engineering/atmos/gas_storage) @@ -12812,6 +12833,9 @@ /obj/machinery/light{ dir = 4 }, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, /turf/simulated/floor/tiled/techmaint, /area/engineering/atmos) "QN" = ( @@ -12904,8 +12928,10 @@ /turf/simulated/floor/tiled/techmaint, /area/engineering/atmos) "Re" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, /area/engineering/atmos) "Rf" = ( @@ -13130,7 +13156,7 @@ /obj/effect/floor_decal/industrial/warning{ dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold/visible/green{ +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ dir = 8 }, /turf/simulated/floor/tiled/techmaint, @@ -13327,7 +13353,7 @@ /turf/space/basic, /area/engineering/atmos/gas_storage) "Sx" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/green{ +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ dir = 8 }, /obj/effect/floor_decal/industrial/warning{ @@ -13359,7 +13385,7 @@ /turf/simulated/floor/tiled/steel_dirty, /area/engineering/atmos/storage) "SE" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/green{ +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ dir = 8 }, /obj/effect/floor_decal/industrial/warning{ @@ -13664,7 +13690,7 @@ /obj/structure/atmos_tank_segment/co2{ icon_state = "3,3" }, -/obj/machinery/atmospherics/pipe/simple/visible/green{ +/obj/machinery/atmospherics/pipe/simple/visible{ dir = 4 }, /turf/simulated/floor/reinforced/carbon_dioxide, @@ -13736,8 +13762,17 @@ /turf/simulated/floor/plating, /area/maintenance/engi_engine) "TU" = ( -/turf/simulated/wall/r_wall/prepainted/engineering, -/area/maintenance/dormitory) +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) "TV" = ( /obj/structure/table/reinforced, /obj/item/toy/plushie/carp/nebula, @@ -13864,7 +13899,12 @@ /turf/simulated/floor/plating, /area/maintenance/engineering) "Uo" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 4 + }, /turf/simulated/floor/tiled/techmaint, /area/engineering/atmos) "Up" = ( @@ -14054,14 +14094,14 @@ /area/engineering/hallway/lower) "UR" = ( /obj/spawner/window/low_wall/reinforced/full/firelocks, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 8 }, /obj/effect/paint_stripe/pipecyan, /turf/simulated/floor/plating, /area/space) "UV" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ +/obj/machinery/atmospherics/pipe/simple/visible/black{ dir = 4 }, /turf/simulated/floor/tiled/techmaint, @@ -14258,16 +14298,16 @@ /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/portnacelle) "VC" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ +/obj/machinery/atmospherics/pipe/simple/visible{ dir = 9 }, -/obj/machinery/atmospherics/pipe/simple/visible/purple{ +/obj/machinery/atmospherics/pipe/simple/visible/red{ dir = 6 }, /turf/simulated/floor/tiled/techmaint, /area/engineering/atmos) "VG" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/green{ +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ dir = 8 }, /obj/effect/floor_decal/industrial/warning{ @@ -14505,6 +14545,12 @@ }, /turf/simulated/floor/tiled/techmaint, /area/tcommsat/computer) +"Wo" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 5 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) "Wr" = ( /obj/structure/cable{ icon_state = "0-2" @@ -14766,7 +14812,7 @@ /turf/simulated/floor/tiled/techmaint, /area/engineering/storage) "Xs" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green, +/obj/machinery/atmospherics/pipe/simple/visible, /obj/machinery/camera/network/engineering{ dir = 4 }, @@ -14887,6 +14933,12 @@ /obj/structure/catwalk, /turf/simulated/floor/plating, /area/engineering/hallway) +"XH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) "XI" = ( /obj/machinery/atmospherics/component/unary/vent_pump/on, /turf/simulated/floor/carpet/blucarpet, @@ -14986,7 +15038,7 @@ /turf/simulated/floor/plating, /area/station/stairs_one) "Ya" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ +/obj/machinery/atmospherics/pipe/simple/visible/black{ dir = 10 }, /turf/simulated/floor/tiled/techmaint, @@ -15074,18 +15126,15 @@ /turf/simulated/floor/tiled/techmaint, /area/engineering/locker_room) "Yl" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/red{ +/obj/machinery/atmospherics/pipe/simple/visible/black{ dir = 4 }, /turf/simulated/wall/r_wall/prepainted/engineering/atmos, /area/engineering/atmos) "Ym" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red, -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/visible/black, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 }, /turf/simulated/floor/tiled/techmaint, /area/engineering/atmos) @@ -15129,7 +15178,9 @@ /obj/machinery/atmospherics/pipe/simple/visible/green{ dir = 4 }, -/obj/effect/paint_stripe/pipecyan, +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, /turf/simulated/floor/plating, /area/space) "Ys" = ( @@ -15187,6 +15238,7 @@ /obj/machinery/door/firedoor{ dir = 8 }, +/obj/map_helper/access_helper/airlock/station/engineering/department, /turf/simulated/floor/tiled, /area/engineering/hallway) "YB" = ( @@ -15295,8 +15347,9 @@ /turf/simulated/floor/tiled/dark, /area/tcommsat/computer) "YV" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 }, /turf/simulated/floor/tiled/techmaint, /area/engineering/atmos) @@ -15365,7 +15418,7 @@ /obj/machinery/door/airlock/maintenance/engi{ req_one_access = null }, -/obj/map_helper/access_helper/airlock/station/maintenance, +/obj/map_helper/access_helper/airlock/station/engineering/department, /turf/simulated/floor/plating, /area/maintenance/trash_pit) "Zi" = ( @@ -15587,12 +15640,9 @@ /turf/space, /area/space) "ZO" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 10 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, /turf/simulated/floor/tiled/techmaint, /area/engineering/atmos) "ZP" = ( @@ -15637,9 +15687,9 @@ /turf/simulated/floor/plating, /area/maintenance/engi_engine) "ZT" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan, -/obj/machinery/atmospherics/pipe/simple/visible/purple{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/visible/blue, +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 4 }, /turf/simulated/floor/tiled/techmaint, /area/engineering/atmos) @@ -27038,7 +27088,7 @@ cD cD cD cD -iY +cD cD cD cD @@ -29929,7 +29979,7 @@ TP Xx SP EZ -ha +EZ Bx Bx Bx @@ -30123,13 +30173,13 @@ ab Ps SP LH -ha -cK -ha -ha -ha -ha -ha +EZ +EZ +EZ +EZ +EZ +EZ +EZ EZ Wl ME @@ -30156,12 +30206,12 @@ fj yE Hg kw -TU -TU -TU -TU -TU -TU +st +st +st +st +st +st SP KW he @@ -33265,13 +33315,13 @@ JZ tu dW oy -qZ +hd tu JZ oy dW oy -qZ +zf tu JZ dW @@ -33459,7 +33509,7 @@ Ey xX bQ bQ -Yr +oI Hq UR bQ @@ -33649,19 +33699,19 @@ Km yh jl hZ -IM +wb Vl Vl -yh -jl +cK +jd il -IM -vN +wb +um Xs Ho -jl +jj eD -IM +wb xX oy Yq @@ -33842,19 +33892,19 @@ Vl Vl xw BI -Xi -rw +qf +jj Vl Vl -xw +vN BI -Xi +qf ai -jl +jj Vl Vl um -Xi +qf VC gh sR @@ -34032,23 +34082,23 @@ xz Gt xC AV -tk -qm +Jp +ry Kl RB -qm -qm +ry +ry fW -qm -Ym +ry +ha tM -qm +ry Ym fW -qm -qm +ry +ry Jc -Jp +FX JE WF tu @@ -34226,7 +34276,7 @@ ax Bs xC hy -YV +UV Vl GJ mX @@ -34234,16 +34284,16 @@ oJ Vl Vl Vl -GJ +NB mX oJ -GJ +DD mX oJ Vl Nn -hd -NB +lB +Ns zP vT PH @@ -34420,7 +34470,7 @@ Em oD xC AV -YV +UV Vl Pz Vl @@ -34432,9 +34482,9 @@ Pz Vl Vl Pz -oI +tk wY -jv +qm lw wY rb @@ -34586,7 +34636,7 @@ Zh mD Ru PZ -DD +bA fk qP Kr @@ -34616,19 +34666,19 @@ yV Op tH HQ -ry -aO -aO -aO +ZO +Xi +Xi +Xi Ew hn Kb -aO -aO +Xi +Xi Pa Pz Or -vU +aO cZ ZT IC @@ -34808,24 +34858,24 @@ Tu Tu xC ml -YV +UV Jj Vl qn qn qn -jj -jj +IM +IM Vl Vl Vl -GJ -jl +by +rw wb zq Bc -jd -es +kv +CK xX oy cX @@ -35012,16 +35062,16 @@ Ba RS EW Vl -Uo +Vl ZO oo Mv Vl SX -Jp -hm -df -EI +FX +ke +Ij +LI mm wd bB @@ -35206,13 +35256,13 @@ HM Oh xX WK -iC -EP -jj +Vl +Vl +IM wb xI UV -IM +wb LK WF tu @@ -35396,20 +35446,20 @@ yp Lo YL eN -vW +Uo nC VG SE RP fn -jj +IM wb fO UV -hd +lB Kt -zP -vT +zJ +hb qg dL eY @@ -35590,17 +35640,17 @@ gu gu gu at -vW +rT oP vk vk vk qK -ry +ZO Dd wa ff -vU +aO Jz xX oy @@ -35784,7 +35834,7 @@ zO zO al YO -vW +rT wV Sx sm @@ -35978,16 +36028,16 @@ OF Cx UW vj -vW +bU DN iW QI vW -zV -qf +hm +vU xE -FX -kv +Wo +Nn Vl Vl xX @@ -36172,20 +36222,20 @@ Rk oS Uu vj -vW +TU FT Ys Ys II -rT -pa +es +Vl wb -lB -Ns -qf -qf -zJ -hb +iC +YV +vU +vU +df +EI xa qy LJ @@ -36369,10 +36419,10 @@ Lk hk DH Re -Re -Re -Oa -zf +XH +Vl +es +Vl wb Vl UV @@ -36562,14 +36612,14 @@ Qs Nd ur nR -Vl -Vl +Oa +pa Vl es -by +Vl HN qf -Ns +gc qf qf zJ @@ -36756,8 +36806,8 @@ bz Nd Up kd -vU -vU +EP +zV vU dz gq @@ -36951,7 +37001,7 @@ bu JV Ao QM -Vl +jv PG jV Ya