diff --git a/code/_onclick/hud/human.dm b/code/_onclick/hud/human.dm index 8a61b872515..1258e4ce942 100644 --- a/code/_onclick/hud/human.dm +++ b/code/_onclick/hud/human.dm @@ -236,6 +236,8 @@ mymob.internals = new /obj/screen() mymob.internals.icon = ui_style mymob.internals.icon_state = "internal0" + if(istype(target.internal, /obj/item/weapon/tank)) //Internals on already? Iight, prove it + mymob.internals.icon_state = "internal1" mymob.internals.name = "internal" mymob.internals.screen_loc = ui_internal hud_elements |= mymob.internals diff --git a/code/datums/supplypacks/voidsuits.dm b/code/datums/supplypacks/voidsuits.dm index 22bff55fcf3..ed4640c91e0 100644 --- a/code/datums/supplypacks/voidsuits.dm +++ b/code/datums/supplypacks/voidsuits.dm @@ -169,13 +169,13 @@ /obj/item/clothing/shoes/magboots = 2, /obj/item/weapon/tank/oxygen = 2 ) - cost = 40 + cost = 60 containertype = /obj/structure/closet/crate/secure containername = "Security Crowd Control voidsuit crate" access = access_armory /datum/supply_pack/voidsuits/security/alt - name = "Security EVA Riot voidsuits" + name = "Security EVA voidsuits" contains = list( /obj/item/clothing/suit/space/void/security/alt = 2, /obj/item/clothing/head/helmet/space/void/security/alt = 2, @@ -183,9 +183,9 @@ /obj/item/clothing/shoes/magboots = 2, /obj/item/weapon/tank/oxygen = 2 ) - cost = 50 + cost = 60 containertype = /obj/structure/closet/crate/secure - containername = "Security EVA Riot voidsuit crate" + containername = "Security EVA voidsuit crate" access = access_armory /datum/supply_pack/voidsuits/supply diff --git a/code/game/atoms_movable.dm b/code/game/atoms_movable.dm index fa0c99dcb64..87507cc936c 100644 --- a/code/game/atoms_movable.dm +++ b/code/game/atoms_movable.dm @@ -1,6 +1,6 @@ /atom/movable layer = OBJ_LAYER - appearance_flags = TILE_BOUND|PIXEL_SCALE|KEEP_TOGETHER //VOREStation Edit + appearance_flags = TILE_BOUND|PIXEL_SCALE var/last_move = null var/anchored = 0 // var/elevation = 2 - not used anywhere diff --git a/code/game/machinery/vending_vr.dm b/code/game/machinery/vending_vr.dm index 04e760a0d57..55a5ebde8b4 100644 --- a/code/game/machinery/vending_vr.dm +++ b/code/game/machinery/vending_vr.dm @@ -634,6 +634,9 @@ /obj/item/clothing/under/dress/sailordress = 5, /obj/item/clothing/under/dress/sari = 5, /obj/item/clothing/under/dress/sari/green = 5, + /obj/item/clothing/under/dress/qipao = 5, + /obj/item/clothing/under/dress/qipao/red = 5, + /obj/item/clothing/under/dress/qipao/white = 5, /obj/item/clothing/under/shorts/red = 5, /obj/item/clothing/under/shorts/green = 5, /obj/item/clothing/under/shorts/blue = 5, @@ -801,6 +804,9 @@ /obj/item/clothing/under/dress/sailordress = 100, /obj/item/clothing/under/dress/sari = 100, /obj/item/clothing/under/dress/sari/green = 100, + /obj/item/clothing/under/dress/qipao = 100, + /obj/item/clothing/under/dress/qipao/red = 100, + /obj/item/clothing/under/dress/qipao/white = 100, /obj/item/clothing/under/shorts/red = 100, /obj/item/clothing/under/shorts/green = 100, /obj/item/clothing/under/shorts/blue = 100, diff --git a/code/global_vr.dm b/code/global_vr.dm index 0f3212ff7aa..bb85b43adf2 100644 --- a/code/global_vr.dm +++ b/code/global_vr.dm @@ -4,6 +4,7 @@ robot_module_types += "Janihound" robot_module_types += "Sci-borg" robot_module_types += "Pupdozer" + robot_module_types += "KMine" return 1 var/list/shell_module_types = list( @@ -50,4 +51,4 @@ var/global/list/acceptable_fruit_types= list( "vanilla", "watermelon", "wheat", - "whitebeet") \ No newline at end of file + "whitebeet") diff --git a/code/modules/client/preference_setup/loadout/loadout_uniform_vr.dm b/code/modules/client/preference_setup/loadout/loadout_uniform_vr.dm index 57f70d3e1e9..b56d5d62e3b 100644 --- a/code/modules/client/preference_setup/loadout/loadout_uniform_vr.dm +++ b/code/modules/client/preference_setup/loadout/loadout_uniform_vr.dm @@ -179,3 +179,18 @@ Swimsuits display_name = "sleek modern coat, detective" path = /obj/item/clothing/under/detective_alt allowed_roles = list("Head of Security", "Detective") + +/* +Qipao +*/ +/datum/gear/uniform/qipao + display_name = "qipao, black" + path = /obj/item/clothing/under/dress/qipao + +/datum/gear/uniform/qipao_red + display_name = "qipao, red" + path = /obj/item/clothing/under/dress/qipao/red + +/datum/gear/uniform/qipao_white + display_name = "qipao, white" + path = /obj/item/clothing/under/dress/qipao/white diff --git a/code/modules/clothing/head/misc_vr.dm b/code/modules/clothing/head/misc_vr.dm index 82cae35465b..b9e9bffaefe 100644 --- a/code/modules/clothing/head/misc_vr.dm +++ b/code/modules/clothing/head/misc_vr.dm @@ -5,3 +5,17 @@ icon = 'icons/obj/clothing/hats_vr.dmi' icon_override = 'icons/mob/head_vr.dmi' flags_inv = HIDEEARS|BLOCKHAIR + +/obj/item/clothing/head/crown + name = "crown" + desc = "How regal!" + icon_state = "crown" + icon = 'icons/obj/clothing/hats_vr.dmi' + icon_override = 'icons/mob/head_vr.dmi' + +/obj/item/clothing/head/fancy_crown + name = "fancy crown" + desc = "How extraordinarily regal!" + icon_state = "fancycrown" + icon = 'icons/obj/clothing/hats_vr.dmi' + icon_override = 'icons/mob/head_vr.dmi' diff --git a/code/modules/clothing/shoes/miscellaneous_vr.dm b/code/modules/clothing/shoes/miscellaneous_vr.dm index 13ac1af3f42..aca78574389 100644 --- a/code/modules/clothing/shoes/miscellaneous_vr.dm +++ b/code/modules/clothing/shoes/miscellaneous_vr.dm @@ -4,7 +4,7 @@ icon_state = "griffinboots" item_state = "griffinboots" icon = 'icons/obj/clothing/shoes_vr.dmi' - icon_override = 'icons/mob/feet_vr.dmi' // This appends "_r" "_l" to icon state + icon_override = 'icons/mob/feet_vr.dmi' /obj/item/clothing/shoes/bhop name = "jump boots" @@ -12,7 +12,7 @@ icon_state = "jetboots" item_state = "jetboots" icon = 'icons/obj/clothing/shoes_vr.dmi' - icon_override = 'icons/mob/feet_vr.dmi' // This appends "_r" "_l" to icon state + icon_override = 'icons/mob/feet_vr.dmi' // resistance_flags = FIRE_PROOF action_button_name = "Activate Jump Boots" permeability_coefficient = 0.05 @@ -40,3 +40,22 @@ user.visible_message("[user] dashes forward into the air!") user.throw_at(target, jumpdistance, jumpspeed) recharging_time = world.time + recharging_rate + +/obj/item/clothing/shoes/magboots/adv + name = "advanced magboots" + desc = "Advanced magnetic boots for a trained user. They have a lower magnetic force, allowing the user to move more quickly." + icon = 'icons/obj/clothing/shoes_vr.dmi' + icon_override = 'icons/mob/feet_vr.dmi' + + icon_state = "advmag0" + item_flags = PHORONGUARD + item_state_slots = list(slot_r_hand_str = "magboots", slot_l_hand_str = "magboots") + icon_base = "advmag" + +/obj/item/clothing/shoes/magboots/adv/set_slowdown() + if(magpulse) + slowdown = shoes ? max(SHOES_SLOWDOWN, shoes.slowdown) : SHOES_SLOWDOWN //So you can't put on magboots to make you walk faster. + else if(shoes) + slowdown = shoes.slowdown + else + slowdown = SHOES_SLOWDOWN \ No newline at end of file diff --git a/code/modules/clothing/spacesuits/rig/rig_pieces_vr.dm b/code/modules/clothing/spacesuits/rig/rig_pieces_vr.dm index 1abc1bb38de..e5fe7ef26ef 100644 --- a/code/modules/clothing/spacesuits/rig/rig_pieces_vr.dm +++ b/code/modules/clothing/spacesuits/rig/rig_pieces_vr.dm @@ -43,3 +43,13 @@ /obj/item/clothing/suit/space/rig species_restricted = list(SPECIES_HUMAN, SPECIES_SKRELL, SPECIES_TAJ, SPECIES_UNATHI, SPECIES_NEVREAN, SPECIES_AKULA, SPECIES_SERGAL, SPECIES_ZORREN_HIGH, SPECIES_VULPKANIN, SPECIES_PROMETHEAN, SPECIES_VOX, SPECIES_TESHARI, SPECIES_VASILISSAN, SPECIES_RAPALA, SPECIES_ALRAUNE, SPECIES_FENNEC, SPECIES_XENOHYBRID) + +/obj/item/clothing/shoes/magboots/rig/ce + name = "advanced boots" +/obj/item/clothing/shoes/magboots/rig/ce/set_slowdown() + if(magpulse) + slowdown = shoes ? max(SHOES_SLOWDOWN, shoes.slowdown) : SHOES_SLOWDOWN //So you can't put on magboots to make you walk faster. + else if(shoes) + slowdown = shoes.slowdown + else + slowdown = SHOES_SLOWDOWN \ No newline at end of file diff --git a/code/modules/clothing/spacesuits/rig/suits/station.dm b/code/modules/clothing/spacesuits/rig/suits/station.dm index eda8665fb20..f9ef544a3a7 100644 --- a/code/modules/clothing/spacesuits/rig/suits/station.dm +++ b/code/modules/clothing/spacesuits/rig/suits/station.dm @@ -162,6 +162,7 @@ helm_type = /obj/item/clothing/head/helmet/space/rig/ce glove_type = /obj/item/clothing/gloves/gauntlets/rig/ce + boot_type = /obj/item/clothing/shoes/magboots/rig/ce //VOREStation Add allowed = list( /obj/item/device/flashlight, diff --git a/code/modules/clothing/spacesuits/void/station.dm b/code/modules/clothing/spacesuits/void/station.dm index ac652e22363..4191d65aadf 100644 --- a/code/modules/clothing/spacesuits/void/station.dm +++ b/code/modules/clothing/spacesuits/void/station.dm @@ -193,27 +193,32 @@ /obj/item/clothing/head/helmet/space/void/security/riot name = "crowd control voidsuit helmet" + desc = "A heavy-set and ominous looking crowd control suit helmet. Fitted with state of the art shock absorbing materials, to disperse blunt force trauma." icon_state = "rig0-sec_riot" + armor = list(melee = 70, bullet = 15, laser = 15, energy = 5, bomb = 40, bio = 100, rad = 10) item_state_slots = list(slot_r_hand_str = "sec_helm_riot", slot_l_hand_str = "sec_helm_riot") /obj/item/clothing/suit/space/void/security/riot name = "crowd control voidsuit" + desc = "A heavy-set and ominous looking crowd control suit. Fitted with state of the art shock absorbing materials, to disperse blunt force trauma." icon_state = "rig-sec_riot" + armor = list(melee = 70, bullet = 15, laser = 15, energy = 5, bomb = 40, bio = 100, rad = 10) item_state_slots = list(slot_r_hand_str = "sec_voidsuit_riot", slot_l_hand_str = "sec_voidsuit_riot") //Security Surplus Voidsuit /obj/item/clothing/head/helmet/space/void/security/alt - name = "riot security voidsuit helmet" - desc = "A somewhat tacky voidsuit helmet, a fact mitigated by heavy armor plating." + name = "security EVA voidsuit helmet" + desc = "A grey-black voidsuit helmet with red highlights. A little tacky, but it offers better protection against modern firearms and radiation than standard-issue security voidsuit helmets." + armor = list(melee = 30, bullet = 40, laser = 40, energy = 25, bomb = 60, bio = 100, rad = 50) icon_state = "rig0-secalt" - armor = list(melee = 70, bullet = 20, laser = 30, energy = 5, bomb = 35, bio = 100, rad = 10) + item_state_slots = list(slot_r_hand_str = "syndicate-helm-black", slot_l_hand_str = "syndicate-helm-black") /obj/item/clothing/suit/space/void/security/alt + name = "security EVA voidsuit" + desc = "A grey-black voidsuit with red highlights. A little tacky, but it offers better protection against modern firearms and radiation than standard-issue security voidsuits." + armor = list(melee = 30, bullet = 40, laser = 40, energy = 25, bomb = 60, bio = 100, rad = 50) icon_state = "rig-secalt" - name = "riot security voidsuit" - desc = "A heavily armored voidsuit, designed to intimidate people who find black intimidating. Surprisingly slimming." - armor = list(melee = 70, bullet = 20, laser = 30, energy = 5, bomb = 35, bio = 100, rad = 10) - allowed = list(/obj/item/weapon/gun,/obj/item/device/flashlight,/obj/item/weapon/tank,/obj/item/device/suit_cooling_unit,/obj/item/weapon/melee/baton) + item_state_slots = list(slot_r_hand_str = "sec_voidsuitTG", slot_l_hand_str = "sec_voidsuitTG") //Atmospherics /obj/item/clothing/head/helmet/space/void/atmos diff --git a/code/modules/clothing/spacesuits/void/void_vr.dm b/code/modules/clothing/spacesuits/void/void_vr.dm index b82f18d2feb..2e418b175b2 100644 --- a/code/modules/clothing/spacesuits/void/void_vr.dm +++ b/code/modules/clothing/spacesuits/void/void_vr.dm @@ -64,3 +64,72 @@ // This variable is normally used to set the icon_override when the suit is refitted, // however the species spritesheet now means we no longer need that anyway! sprite_sheets_refit = list() + +/obj/item/clothing/head/helmet/space/void/heck + name = "\improper H.E.C.K. helmet" + desc = "Hostile Environiment Cross-Kinetic Helmet: A helmet designed to withstand the wide variety of hazards from \[REDACTED\]. It wasn't enough for its last owner." + icon_state = "hostile_env" + item_state = "hostile_env" + icon = 'icons/obj/clothing/hats_vr.dmi' + icon_override = 'icons/mob/head_vr.dmi' + armor = list(melee = 60, bullet = 35, laser = 35, energy = 15, bomb = 55, bio = 100, rad = 20) + +/obj/item/clothing/head/helmet/space/void/heck/Initialize() + . = ..() + var/mutable_appearance/glass_overlay = mutable_appearance(icon, "hostile_env_glass") + glass_overlay.appearance_flags = RESET_COLOR + add_overlay(glass_overlay) + +/obj/item/clothing/head/helmet/space/void/heck/apply_accessories(var/image/standing) + . = ..() + var/mutable_appearance/glass_overlay = mutable_appearance(icon_override, "hostile_env_glass") + glass_overlay.appearance_flags = KEEP_APART|RESET_COLOR + standing.add_overlay(glass_overlay) + return standing + +/obj/item/clothing/suit/space/void/heck + name = "\improper H.E.C.K. suit" + desc = "Hostile Environment Cross-Kinetic Suit: A suit designed to withstand the wide variety of hazards from \[REDACTED\]. It wasn't enough for its last owner." + icon_state = "hostile_env" + item_state = "hostile_env" + icon = 'icons/obj/clothing/suits_vr.dmi' + icon_override = 'icons/mob/suit_vr.dmi' + slowdown = 1.5 + armor = list(melee = 60, bullet = 35, laser = 35, energy = 15, bomb = 55, bio = 100, rad = 20) + +/obj/item/clothing/head/helmet/space/void/syndicate_contract + name = "syndicate contract helmet" + desc = "A free helmet, gifted you by your new not-quite-corporate master!" + icon_state = "syndicate-contract" + item_state = "syndicate-contract" + icon = 'icons/obj/clothing/hats_vr.dmi' + icon_override = 'icons/mob/head_vr.dmi' + armor = list(melee = 60, bullet = 50, laser = 30,energy = 15, bomb = 35, bio = 100, rad = 60) + siemens_coefficient = 0.6 + camera_networks = list(NETWORK_MERCENARY) + +/obj/item/clothing/suit/space/void/syndicate_contract + name = "syndicate contract suit" + desc = "A free suit, gifted you by your new not-quite-corporate master!" + icon_state = "syndicate-contract" + item_state = "syndicate-contract" + icon = 'icons/obj/clothing/suits_vr.dmi' + icon_override = 'icons/mob/suit_vr.dmi' + armor = list(melee = 60, bullet = 50, laser = 30,energy = 15, bomb = 35, bio = 100, rad = 60) + siemens_coefficient = 0.6 + +/obj/item/clothing/head/helmet/space/void/chrono + name = "chrono-helmet" + desc = "From out of space and time, this helmet will protect you while you perform your duties." + icon_state = "chronohelmet" + item_state = "chronohelmet" + icon = 'icons/obj/clothing/hats_vr.dmi' + icon_override = 'icons/mob/head_vr.dmi' + +/obj/item/clothing/suit/space/void/chrono + name = "chrono-suit" + desc = "From out of space and time, this helmet will protect you while you perform your duties." + icon_state = "chronosuit" + item_state = "chronosuit" + icon = 'icons/obj/clothing/suits_vr.dmi' + icon_override = 'icons/mob/suit_vr.dmi' \ No newline at end of file diff --git a/code/modules/clothing/suits/utility_vr.dm b/code/modules/clothing/suits/utility_vr.dm index c1982a58ce5..0da22a69d9a 100644 --- a/code/modules/clothing/suits/utility_vr.dm +++ b/code/modules/clothing/suits/utility_vr.dm @@ -1,3 +1,18 @@ /obj/item/clothing/head/bomb_hood/security icon_state = "bombsuitsec" body_parts_covered = HEAD + +/obj/item/clothing/suit/storage/toggle/paramedic + name = "paramedic vest" + desc = "A vest that protects against minor chemical spills." + icon = 'icons/obj/clothing/suits_vr.dmi' + icon_override = 'icons/mob/suit_vr.dmi' + icon_state = "paramedic-vest" + item_state = "paramedic-vest" + item_state_slots = list(slot_r_hand_str = "blue_labcoat", slot_l_hand_str = "blue_labcoat") + blood_overlay_type = "coat" + body_parts_covered = UPPER_TORSO + flags_inv = HIDEHOLSTER + allowed = list(/obj/item/device/analyzer,/obj/item/stack/medical,/obj/item/weapon/dnainjector,/obj/item/weapon/reagent_containers/dropper,/obj/item/weapon/reagent_containers/syringe,/obj/item/weapon/reagent_containers/hypospray,/obj/item/device/healthanalyzer,/obj/item/device/flashlight/pen,/obj/item/weapon/reagent_containers/glass/bottle,/obj/item/weapon/reagent_containers/glass/beaker,/obj/item/weapon/reagent_containers/pill,/obj/item/weapon/storage/pill_bottle,/obj/item/weapon/paper) + armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 50, rad = 0) + index = 1 \ No newline at end of file diff --git a/code/modules/clothing/under/miscellaneous_vr.dm b/code/modules/clothing/under/miscellaneous_vr.dm index 2c48b859a20..aa84df42fc3 100644 --- a/code/modules/clothing/under/miscellaneous_vr.dm +++ b/code/modules/clothing/under/miscellaneous_vr.dm @@ -108,4 +108,21 @@ //Same as Nanotrasen Security Uniforms /obj/item/clothing/under/ert - armor = list(melee = 5, bullet = 10, laser = 10, energy = 5, bomb = 5, bio = 0, rad = 0) \ No newline at end of file + armor = list(melee = 5, bullet = 10, laser = 10, energy = 5, bomb = 5, bio = 0, rad = 0) + +/obj/item/clothing/under/dress/qipao + name = "qipao" + icon = 'icons/obj/clothing/uniforms_vr.dmi' + icon_override = 'icons/mob/uniform_vr.dmi' + icon_state = "qipao" + item_state = "qipao" + +/obj/item/clothing/under/dress/qipao/white + name = "white qipao" + icon_state = "qipao_white" + item_state = "qipao_white" + +/obj/item/clothing/under/dress/qipao/red + name = "red qipao" + icon_state = "qipao_red" + item_state = "qipao_red" diff --git a/code/modules/mob/living/carbon/human/human_damage.dm b/code/modules/mob/living/carbon/human/human_damage.dm index 7cf2027025a..9388240af64 100644 --- a/code/modules/mob/living/carbon/human/human_damage.dm +++ b/code/modules/mob/living/carbon/human/human_damage.dm @@ -1,6 +1,6 @@ //Updates the mob's health from organs and mob damage variables /mob/living/carbon/human/updatehealth() - var/huskmodifier = 1.5 // With 1.5, you need 250 burn instead of 200 to husk a human. + var/huskmodifier = 2.5 //VOREStation Edit // With 1.5, you need 250 burn instead of 200 to husk a human. if(status_flags & GODMODE) health = getMaxHealth() diff --git a/code/modules/mob/living/carbon/human/life.dm b/code/modules/mob/living/carbon/human/life.dm index 894e3cfd80b..4f5b7542691 100644 --- a/code/modules/mob/living/carbon/human/life.dm +++ b/code/modules/mob/living/carbon/human/life.dm @@ -4,9 +4,9 @@ #define HUMAN_MAX_OXYLOSS 1 //Defines how much oxyloss humans can get per tick. A tile with no air at all (such as space) applies this value, otherwise it's a percentage of it. #define HUMAN_CRIT_MAX_OXYLOSS ( 2.0 / 6) //The amount of damage you'll get when in critical condition. We want this to be a 5 minute deal = 300s. There are 50HP to get through, so (1/6)*last_tick_duration per second. Breaths however only happen every 4 ticks. last_tick_duration = ~2.0 on average -#define HEAT_DAMAGE_LEVEL_1 5 //Amount of damage applied when your body temperature just passes the 360.15k safety point -#define HEAT_DAMAGE_LEVEL_2 10 //Amount of damage applied when your body temperature passes the 400K point -#define HEAT_DAMAGE_LEVEL_3 20 //Amount of damage applied when your body temperature passes the 1000K point +#define HEAT_DAMAGE_LEVEL_1 2 //VOREStation Edit //Amount of damage applied when your body temperature just passes the 360.15k safety point +#define HEAT_DAMAGE_LEVEL_2 4 //VOREStation Edit //Amount of damage applied when your body temperature passes the 400K point +#define HEAT_DAMAGE_LEVEL_3 8 //VOREStation Edit //Amount of damage applied when your body temperature passes the 1000K point #define COLD_DAMAGE_LEVEL_1 0.5 //Amount of damage applied when your body temperature just passes the 260.15k safety point #define COLD_DAMAGE_LEVEL_2 1.5 //Amount of damage applied when your body temperature passes the 200K point @@ -22,6 +22,7 @@ #define COLD_GAS_DAMAGE_LEVEL_3 3 //Amount of damage applied when the current breath's temperature passes the 120K point #define RADIATION_SPEED_COEFFICIENT 0.1 +#define HUMAN_COMBUSTION_TEMP 524 //524k is the sustained combustion temperature of human fat /mob/living/carbon/human var/oxygen_alert = 0 @@ -1821,7 +1822,15 @@ if(thermal_protection == 1) // Immune. return else - bodytemperature += (BODYTEMP_HEATING_MAX + (fire_stacks * 15)) * (1-thermal_protection) + var/fire_temp_add = (BODYTEMP_HEATING_MAX + (fire_stacks * 15)) * (1-thermal_protection) + //This is to prevent humans from heating up indefinitely. A human being on fire (fat burns at 250C) can't magically + // increase your body temperature beyond 250C, but it's possible something else (atmos) has heated us up beyond it, + // so don't worry about the firestacks at that point. Really, we should be cooling the room down, because it has + // to expend energy to heat our body up! But let's not worry about that. + if((bodytemperature + fire_temp_add) > HUMAN_COMBUSTION_TEMP) + return + + bodytemperature += fire_temp_add /mob/living/carbon/human/rejuvenate() restore_blood() diff --git a/code/modules/mob/living/living_defines_vr.dm b/code/modules/mob/living/living_defines_vr.dm index 6e9b96fc132..b3f38e80131 100644 --- a/code/modules/mob/living/living_defines_vr.dm +++ b/code/modules/mob/living/living_defines_vr.dm @@ -4,6 +4,7 @@ /mob/living var/ooc_notes = null var/obj/structure/mob_spawner/source_spawner = null + appearance_flags = TILE_BOUND|PIXEL_SCALE|KEEP_TOGETHER //custom say verbs var/custom_say = null 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 4ce5fd363ad..cf4bc299797 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 @@ -689,3 +689,10 @@ icon_state = "decompiler" max_item_count = 20 delivery = TRUE + +/obj/item/device/dogborg/sleeper/compactor/supply //Miner borg belly + name = "Supply Satchel" + desc = "A mounted survival unit with fuel processor." + icon_state = "sleeperc" + injection_chems = list("glucose","inaprovaline","tricordrazine") + max_item_count = 1 diff --git a/code/modules/mob/living/silicon/robot/robot_modules/station_vr.dm b/code/modules/mob/living/silicon/robot/robot_modules/station_vr.dm index 18bbdb794d0..8a07293d45d 100644 --- a/code/modules/mob/living/silicon/robot/robot_modules/station_vr.dm +++ b/code/modules/mob/living/silicon/robot/robot_modules/station_vr.dm @@ -43,6 +43,7 @@ robot_modules["Janihound"] = /obj/item/weapon/robot_module/robot/scrubpup robot_modules["Sci-borg"] = /obj/item/weapon/robot_module/robot/science robot_modules["Pupdozer"] = /obj/item/weapon/robot_module/robot/engiedog + robot_modules["KMine"] = /obj/item/weapon/robot_module/robot/kmine return 1 //Just add a new proc with the robot_module type if you wish to run some other vore code @@ -615,6 +616,56 @@ R.verbs |= /mob/living/proc/shred_limb R.verbs |= /mob/living/silicon/robot/proc/rest_style ..() + +/obj/item/weapon/robot_module/robot/kmine + name = "Supply Hound Module" + sprites = list( + "KMine" = "kmine", + ) + channels = list("Supply" = 1) + can_be_pushed = 0 + +/obj/item/weapon/robot_module/robot/kmine/New(var/mob/living/silicon/robot/R) + src.modules += new /obj/item/borg/sight/material(src) + src.modules += new /obj/item/weapon/tool/wrench/cyborg(src) + src.modules += new /obj/item/weapon/tool/screwdriver/cyborg(src) + src.modules += new /obj/item/weapon/storage/bag/ore(src) + src.modules += new /obj/item/weapon/pickaxe/borgdrill(src) + src.modules += new /obj/item/weapon/storage/bag/sheetsnatcher/borg(src) + src.modules += new /obj/item/weapon/gripper/miner(src) + src.modules += new /obj/item/weapon/mining_scanner(src) + src.emag = new /obj/item/weapon/pickaxe/plasmacutter(src) + src.emag = new /obj/item/weapon/pickaxe/diamonddrill(src) + + var/datum/matter_synth/water = new /datum/matter_synth(500) + water.name = "Water reserves" + water.recharge_rate = 0 + R.water_res = water + synths += water + + var/obj/item/device/dogborg/tongue/T = new /obj/item/device/dogborg/tongue(src) + T.water = water + src.modules += T + + var/obj/item/device/dogborg/sleeper/B = new /obj/item/device/dogborg/sleeper/compactor/supply(src) + B.water = water + src.modules += B + + R.icon = 'icons/mob/widerobot_vr.dmi' + R.hands.icon = 'icons/mob/screen1_robot_vr.dmi' + R.ui_style_vr = TRUE + R.pixel_x = -16 + R.old_x = -16 + R.default_pixel_x = -16 + R.dogborg = TRUE + R.wideborg = TRUE + R.verbs |= /mob/living/silicon/robot/proc/ex_reserve_refill + R.verbs |= /mob/living/silicon/robot/proc/robot_mount + R.verbs |= /mob/living/proc/toggle_rider_reins + R.verbs |= /mob/living/proc/shred_limb + R.verbs |= /mob/living/silicon/robot/proc/rest_style + + ..() /obj/item/weapon/robot_module/Reset(var/mob/living/silicon/robot/R) R.pixel_x = initial(pixel_x) @@ -630,4 +681,4 @@ R.verbs -= /mob/living/proc/toggle_rider_reins R.verbs -= /mob/living/proc/shred_limb R.verbs -= /mob/living/silicon/robot/proc/rest_style - ..() \ No newline at end of file + ..() diff --git a/code/modules/organs/robolimbs_vr.dm b/code/modules/organs/robolimbs_vr.dm index a5ab8994cf4..7f85cf642d5 100644 --- a/code/modules/organs/robolimbs_vr.dm +++ b/code/modules/organs/robolimbs_vr.dm @@ -204,6 +204,7 @@ /datum/robolimb/dsi_teshari/New() species_cannot_use = GLOB.all_species.Copy() species_cannot_use -= SPECIES_TESHARI + species_cannot_use -= SPECIES_CUSTOM ..() /obj/item/weapon/disk/limb/dsi_teshari diff --git a/code/modules/vore/fluffstuff/custom_items_vr.dm b/code/modules/vore/fluffstuff/custom_items_vr.dm index 9a99649fa5c..69dd7e6ceca 100644 --- a/code/modules/vore/fluffstuff/custom_items_vr.dm +++ b/code/modules/vore/fluffstuff/custom_items_vr.dm @@ -36,36 +36,123 @@ var/from_suit = /obj/item/clothing/suit/space/void var/to_helmet = /obj/item/clothing/head/cardborg var/to_suit = /obj/item/clothing/suit/cardborg - + + //conversion costs. refunds all parts by default, but can be tweaked per-kit + var/from_helmet_cost = 1 + var/from_suit_cost = 2 + var/to_helmet_cost = -1 + var/to_suit_cost = -2 + + var/owner_ckey = null //ckey of the kit owner as a string + var/skip_content_check = FALSE //can we skip the contents check? we generally shouldn't, but this is necessary for rigs/coats with hoods/etc. + var/transfer_contents = FALSE //should we transfer the contents across before deleting? we generally shouldn't, esp. in the case of rigs/coats with hoods/etc. note this does nothing if skip is FALSE. + var/can_repair = FALSE //can we be used to repair damaged voidsuits when converting them? + var/can_revert = TRUE //can we revert items, or is it a one-way trip? + var/delete_on_empty = FALSE //do we self-delete when emptied? + //Conversion proc /obj/item/device/modkit_conversion/afterattack(obj/O, mob/user as mob) - var/flag + var/cost var/to_type - if(istype(O,from_helmet)) - flag = 1 + var/keycheck + + if(isturf(O)) //silently fail if you click on a turf. shouldn't work anyway because turfs aren't objects but if I don't do this it spits runtimes. + return + if(istype(O,/obj/item/clothing/suit/space/void/) && !can_repair) //check if we're a voidsuit and if we're allowed to repair + var/obj/item/clothing/suit/space/void/SS = O + if(LAZYLEN(SS.breaches)) + to_chat(user, "You should probably repair that before you start tinkering with it.") + return + if(O.blood_DNA || O.contaminated) //check if we're bloody or gooey or whatever, so modkits can't be used to hide crimes easily. + to_chat(user, "You should probably clean that up before you start tinkering with it.") + return + //we have to check that it's not the original type first, because otherwise it might convert wrong based on pathing; the subtype can still count as the basetype + if(istype(O,to_helmet) && can_revert) + cost = to_helmet_cost + to_type = from_helmet + else if(istype(O,to_suit) && can_revert) + cost = to_suit_cost + to_type = from_suit + else if(!can_revert && (istype(O,to_helmet) || istype (O,to_suit))) + to_chat(user, "This kit doesn't seem to have the tools necessary to revert changes to modified items.") + return + else if(istype(O,from_helmet)) + cost = from_helmet_cost to_type = to_helmet + keycheck = TRUE else if(istype(O,from_suit)) - flag = 2 + cost = from_suit_cost to_type = to_suit + keycheck = TRUE else return - if(!(parts & flag)) - to_chat(user, "This kit has no parts for this modification left.") - return - if(istype(O,to_type)) - to_chat(user, "[O] is already modified.") - return if(!isturf(O.loc)) - to_chat(user, "[O] must be safely placed on the ground for modification.") + to_chat(user, "You need to put \the [O] on the ground, a table, or other worksurface before modifying it.") return + if(!skip_content_check && O.contents.len) //check if we're loaded/modified, in the event of gun/suit kits, to avoid purging stuff like ammo, badges, armbands, or suit helmets + to_chat(user, "You should probably remove any attached items or loaded ammunition before trying to modify that!") + return + if(cost > parts) + to_chat(user, "The kit doesn't have enough parts left to modify that.") + if(can_revert && ((to_helmet_cost || to_suit_cost) < 0)) + to_chat(user, " You can recover parts by using the kit on an already-modified item.") + return + if(keycheck && owner_ckey) //check if we're supposed to care + if(user.ckey != owner_ckey) //ERROR: UNAUTHORIZED USER + to_chat(user, "You probably shouldn't mess with all these strange tools and parts...") //give them a slightly fluffy explanation as to why it didn't work + return playsound(user.loc, 'sound/items/Screwdriver.ogg', 100, 1) - var/N = new to_type(O.loc) - user.visible_message("[user] opens \the [src] and modifies \the [O] into \the [N].","You open \the [src] and modify \the [O] into \the [N].") + var/obj/N = new to_type(O.loc) + user.visible_message("[user] opens \the [src] and modifies \the [O] into \the [N].","You open \the [src] and modify \the [O] into \the [N].") + + //crude, but transfer prints and fibers to avoid forensics abuse, same as the bloody/gooey check above + N.fingerprints = O.fingerprints + N.fingerprintshidden = O.fingerprintshidden + N.fingerprintslast = O.fingerprintslast + N.suit_fibers = O.suit_fibers + + //transfer logic could technically be made more thorough and handle stuff like helmet/boots/tank vars for suits, but in those cases you should be removing the items first anyway + if(skip_content_check && transfer_contents) + N.contents = O.contents + if(istype(N,/obj/item/weapon/gun/projectile/)) + var/obj/item/weapon/gun/projectile/NN = N + var/obj/item/weapon/gun/projectile/OO = O + NN.magazine_type = OO.magazine_type + NN.ammo_magazine = OO.ammo_magazine + if(istype(N,/obj/item/weapon/gun/energy/)) + var/obj/item/weapon/gun/energy/NE = N + var/obj/item/weapon/gun/energy/OE = O + NE.cell_type = OE.cell_type + else + if(istype(N,/obj/item/weapon/gun/projectile/)) + var/obj/item/weapon/gun/projectile/NM = N + NM.contents = list() + NM.magazine_type = null + NM.ammo_magazine = null + if(istype(N,/obj/item/weapon/gun/energy/)) + var/obj/item/weapon/gun/energy/NO = N + NO.contents = list() + NO.cell_type = null + qdel(O) - parts &= ~flag - if(!parts) + parts -= cost + if(!parts && delete_on_empty) qdel(src) +//DEBUG ITEM +/obj/item/device/modkit_conversion/fluff/debug_gunkit + name = "Gun Transformation Kit" + desc = "A kit containing all the needed tools and fabric to modify one sidearm to another." + skip_content_check = FALSE + transfer_contents = FALSE + + icon = 'icons/vore/custom_items_vr.dmi' + icon_state = "harmony_kit" + + from_helmet = /obj/item/weapon/gun/energy/laser + to_helmet = /obj/item/weapon/gun/energy/retro +//DEBUG ITEM ENDS + //JoanRisu:Joan Risu /obj/item/weapon/flame/lighter/zippo/fluff/joan name = "Federation Zippo Lighter" diff --git a/html/changelogs/Leshana-vplk-glass-firedoors.yml b/html/changelogs/Leshana-vplk-glass-firedoors.yml new file mode 100644 index 00000000000..2b88e636ed2 --- /dev/null +++ b/html/changelogs/Leshana-vplk-glass-firedoors.yml @@ -0,0 +1,4 @@ +author: Leshana +delete-after: True +changes: + - rscadd: "Glass Emergency Shutters are now constructable and deconstructing them will give you the glass back." diff --git a/icons/mob/dogborg_vr.dmi b/icons/mob/dogborg_vr.dmi index 78d646c6aa0..0dc89d2b50a 100644 Binary files a/icons/mob/dogborg_vr.dmi and b/icons/mob/dogborg_vr.dmi differ diff --git a/icons/mob/feet_vr.dmi b/icons/mob/feet_vr.dmi index 41062144df1..800d211b202 100644 Binary files a/icons/mob/feet_vr.dmi and b/icons/mob/feet_vr.dmi differ diff --git a/icons/mob/head_vr.dmi b/icons/mob/head_vr.dmi index 3db239e18dc..57bd8f01cb0 100644 Binary files a/icons/mob/head_vr.dmi and b/icons/mob/head_vr.dmi differ diff --git a/icons/mob/species/akula/helmet_vr.dmi b/icons/mob/species/akula/helmet_vr.dmi index d92a0a7d41c..69aef545f6b 100644 Binary files a/icons/mob/species/akula/helmet_vr.dmi and b/icons/mob/species/akula/helmet_vr.dmi differ diff --git a/icons/mob/species/akula/suit_vr.dmi b/icons/mob/species/akula/suit_vr.dmi index ec3fb3f308d..859d79a1fe2 100644 Binary files a/icons/mob/species/akula/suit_vr.dmi and b/icons/mob/species/akula/suit_vr.dmi differ diff --git a/icons/mob/species/sergal/helmet_vr.dmi b/icons/mob/species/sergal/helmet_vr.dmi index f3336dadf2c..c77450aaebc 100644 Binary files a/icons/mob/species/sergal/helmet_vr.dmi and b/icons/mob/species/sergal/helmet_vr.dmi differ diff --git a/icons/mob/species/sergal/suit_vr.dmi b/icons/mob/species/sergal/suit_vr.dmi index cd397fe0361..1f62670b495 100644 Binary files a/icons/mob/species/sergal/suit_vr.dmi and b/icons/mob/species/sergal/suit_vr.dmi differ diff --git a/icons/mob/species/seromi/head.dmi b/icons/mob/species/seromi/head.dmi index 35223b8b585..0c8999a9b57 100644 Binary files a/icons/mob/species/seromi/head.dmi and b/icons/mob/species/seromi/head.dmi differ diff --git a/icons/mob/species/seromi/suit.dmi b/icons/mob/species/seromi/suit.dmi index 332f4ba2f41..53d515e73c1 100644 Binary files a/icons/mob/species/seromi/suit.dmi and b/icons/mob/species/seromi/suit.dmi differ diff --git a/icons/mob/species/skrell/helmet.dmi b/icons/mob/species/skrell/helmet.dmi index 74f0afd7b91..7a95007bd7a 100644 Binary files a/icons/mob/species/skrell/helmet.dmi and b/icons/mob/species/skrell/helmet.dmi differ diff --git a/icons/mob/species/skrell/suit.dmi b/icons/mob/species/skrell/suit.dmi index 468975ff63d..9a5d4ec447e 100644 Binary files a/icons/mob/species/skrell/suit.dmi and b/icons/mob/species/skrell/suit.dmi differ diff --git a/icons/mob/species/tajaran/helmet.dmi b/icons/mob/species/tajaran/helmet.dmi index 9e1d5c5f375..4f8010b259d 100644 Binary files a/icons/mob/species/tajaran/helmet.dmi and b/icons/mob/species/tajaran/helmet.dmi differ diff --git a/icons/mob/species/tajaran/suit.dmi b/icons/mob/species/tajaran/suit.dmi index 299f25a9ea8..7dba50ef6be 100644 Binary files a/icons/mob/species/tajaran/suit.dmi and b/icons/mob/species/tajaran/suit.dmi differ diff --git a/icons/mob/species/unathi/helmet.dmi b/icons/mob/species/unathi/helmet.dmi index 38a23aeedab..10cf92dcf47 100644 Binary files a/icons/mob/species/unathi/helmet.dmi and b/icons/mob/species/unathi/helmet.dmi differ diff --git a/icons/mob/species/unathi/suit.dmi b/icons/mob/species/unathi/suit.dmi index cbd7579c9ad..2d2d0a434bc 100644 Binary files a/icons/mob/species/unathi/suit.dmi and b/icons/mob/species/unathi/suit.dmi differ diff --git a/icons/mob/species/vulpkanin/helmet.dmi b/icons/mob/species/vulpkanin/helmet.dmi index 52cefb40a25..47d3fd12aba 100644 Binary files a/icons/mob/species/vulpkanin/helmet.dmi and b/icons/mob/species/vulpkanin/helmet.dmi differ diff --git a/icons/mob/species/vulpkanin/suit.dmi b/icons/mob/species/vulpkanin/suit.dmi index 4b6de502f35..452c1fca56a 100644 Binary files a/icons/mob/species/vulpkanin/suit.dmi and b/icons/mob/species/vulpkanin/suit.dmi differ diff --git a/icons/mob/suit_vr.dmi b/icons/mob/suit_vr.dmi index 12cada28eb8..5df054af1e7 100644 Binary files a/icons/mob/suit_vr.dmi and b/icons/mob/suit_vr.dmi differ diff --git a/icons/mob/uniform_vr.dmi b/icons/mob/uniform_vr.dmi index 616348ced9d..9d0cf74b0e7 100644 Binary files a/icons/mob/uniform_vr.dmi and b/icons/mob/uniform_vr.dmi differ diff --git a/icons/mob/widerobot_vr.dmi b/icons/mob/widerobot_vr.dmi index 84f404cdb64..fb46a5d31e1 100644 Binary files a/icons/mob/widerobot_vr.dmi and b/icons/mob/widerobot_vr.dmi differ diff --git a/icons/obj/clothing/hats_vr.dmi b/icons/obj/clothing/hats_vr.dmi index f2d9773b0bb..a2cec1a3bad 100644 Binary files a/icons/obj/clothing/hats_vr.dmi and b/icons/obj/clothing/hats_vr.dmi differ diff --git a/icons/obj/clothing/shoes_vr.dmi b/icons/obj/clothing/shoes_vr.dmi index aa3269278cd..6b4534a2176 100644 Binary files a/icons/obj/clothing/shoes_vr.dmi and b/icons/obj/clothing/shoes_vr.dmi differ diff --git a/icons/obj/clothing/species/akula/hats.dmi b/icons/obj/clothing/species/akula/hats.dmi index 4ab93687ffa..b74f641dab7 100644 Binary files a/icons/obj/clothing/species/akula/hats.dmi and b/icons/obj/clothing/species/akula/hats.dmi differ diff --git a/icons/obj/clothing/species/akula/suits.dmi b/icons/obj/clothing/species/akula/suits.dmi index 7ea4cbf96b0..d204ff70f74 100644 Binary files a/icons/obj/clothing/species/akula/suits.dmi and b/icons/obj/clothing/species/akula/suits.dmi differ diff --git a/icons/obj/clothing/species/sergal/hats.dmi b/icons/obj/clothing/species/sergal/hats.dmi index f1542eeada8..d05b40a680d 100644 Binary files a/icons/obj/clothing/species/sergal/hats.dmi and b/icons/obj/clothing/species/sergal/hats.dmi differ diff --git a/icons/obj/clothing/species/sergal/suits.dmi b/icons/obj/clothing/species/sergal/suits.dmi index e782ed1f8c0..0d0a5792e8b 100644 Binary files a/icons/obj/clothing/species/sergal/suits.dmi and b/icons/obj/clothing/species/sergal/suits.dmi differ diff --git a/icons/obj/clothing/species/seromi/hats.dmi b/icons/obj/clothing/species/seromi/hats.dmi index f1e77ae42cd..c069f66f136 100644 Binary files a/icons/obj/clothing/species/seromi/hats.dmi and b/icons/obj/clothing/species/seromi/hats.dmi differ diff --git a/icons/obj/clothing/species/seromi/suits.dmi b/icons/obj/clothing/species/seromi/suits.dmi index e715f2f62f0..c9d42aef96b 100644 Binary files a/icons/obj/clothing/species/seromi/suits.dmi and b/icons/obj/clothing/species/seromi/suits.dmi differ diff --git a/icons/obj/clothing/species/skrell/hats.dmi b/icons/obj/clothing/species/skrell/hats.dmi index 24f1cf14d37..6512b42d6eb 100644 Binary files a/icons/obj/clothing/species/skrell/hats.dmi and b/icons/obj/clothing/species/skrell/hats.dmi differ diff --git a/icons/obj/clothing/species/skrell/suits.dmi b/icons/obj/clothing/species/skrell/suits.dmi index 65af0160d7a..3874dac941b 100644 Binary files a/icons/obj/clothing/species/skrell/suits.dmi and b/icons/obj/clothing/species/skrell/suits.dmi differ diff --git a/icons/obj/clothing/species/tajaran/hats.dmi b/icons/obj/clothing/species/tajaran/hats.dmi index c5a1415d0d5..89f359a4a9d 100644 Binary files a/icons/obj/clothing/species/tajaran/hats.dmi and b/icons/obj/clothing/species/tajaran/hats.dmi differ diff --git a/icons/obj/clothing/species/tajaran/suits.dmi b/icons/obj/clothing/species/tajaran/suits.dmi index 31df8f07f71..e8ab73eadf8 100644 Binary files a/icons/obj/clothing/species/tajaran/suits.dmi and b/icons/obj/clothing/species/tajaran/suits.dmi differ diff --git a/icons/obj/clothing/species/unathi/hats.dmi b/icons/obj/clothing/species/unathi/hats.dmi index d9d7160f789..221503aa2b1 100644 Binary files a/icons/obj/clothing/species/unathi/hats.dmi and b/icons/obj/clothing/species/unathi/hats.dmi differ diff --git a/icons/obj/clothing/species/unathi/suits.dmi b/icons/obj/clothing/species/unathi/suits.dmi index 0b3f7884a18..01bc6e4650e 100644 Binary files a/icons/obj/clothing/species/unathi/suits.dmi and b/icons/obj/clothing/species/unathi/suits.dmi differ diff --git a/icons/obj/clothing/species/vulpkanin/hats.dmi b/icons/obj/clothing/species/vulpkanin/hats.dmi index c655925a01a..2f94e6837a2 100644 Binary files a/icons/obj/clothing/species/vulpkanin/hats.dmi and b/icons/obj/clothing/species/vulpkanin/hats.dmi differ diff --git a/icons/obj/clothing/suits_vr.dmi b/icons/obj/clothing/suits_vr.dmi index a10d6cc9eab..972284dae73 100644 Binary files a/icons/obj/clothing/suits_vr.dmi and b/icons/obj/clothing/suits_vr.dmi differ diff --git a/icons/obj/clothing/uniforms_vr.dmi b/icons/obj/clothing/uniforms_vr.dmi index b5858c9fa53..2f3ea7266b8 100644 Binary files a/icons/obj/clothing/uniforms_vr.dmi and b/icons/obj/clothing/uniforms_vr.dmi differ diff --git a/maps/tether/submaps/backup/tether_misc.dmm b/maps/tether/submaps/backup/tether_misc.dmm deleted file mode 100644 index d11e75c0cac..00000000000 --- a/maps/tether/submaps/backup/tether_misc.dmm +++ /dev/null @@ -1,24681 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aa" = ( -/obj/effect/step_trigger/thrower{ - affect_ghosts = 1; - direction = 2; - name = "thrower_throwdown"; - stopper = 0; - tiles = 0 - }, -/turf/simulated/sky/virgo3b/south, -/area/space) -"ab" = ( -/obj/structure/window/reinforced/holowindow{ - dir = 8 - }, -/obj/structure/flora/pottedplant{ - icon_state = "plant-10" - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_courtroom) -"ac" = ( -/obj/structure/window/reinforced/holowindow{ - dir = 8 - }, -/obj/structure/holostool, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_emptycourt) -"ad" = ( -/obj/machinery/door/window/holowindoor{ - dir = 8 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_courtroom) -"ae" = ( -/turf/unsimulated/mineral/virgo3b, -/area/space) -"af" = ( -/obj/structure/sign/warning/docking_area, -/turf/unsimulated/wall, -/area/centcom/simulated/terminal) -"ag" = ( -/obj/structure/flora/ausbushes/brflowers, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 6 - }, -/turf/simulated/floor/holofloor/grass, -/area/holodeck/source_picnicarea) -"ah" = ( -/obj/machinery/door/window/holowindoor{ - dir = 1; - name = "Jury Box" - }, -/obj/effect/floor_decal/carpet{ - dir = 8 - }, -/obj/effect/floor_decal/carpet{ - dir = 9 - }, -/obj/effect/floor_decal/carpet{ - dir = 4 - }, -/obj/effect/floor_decal/carpet{ - dir = 5 - }, -/turf/simulated/floor/holofloor/carpet, -/area/holodeck/source_courtroom) -"ai" = ( -/obj/machinery/door/blast/regular{ - dir = 4 - }, -/turf/unsimulated/floor/techfloor_grid, -/area/centcom/simulated/terminal) -"aj" = ( -/obj/structure/sign/warning{ - name = "\improper STAND AWAY FROM TRACK EDGE" - }, -/turf/unsimulated/wall, -/area/centcom/simulated/terminal) -"ak" = ( -/obj/structure/table/woodentable/holotable, -/obj/structure/window/reinforced/holowindow{ - dir = 4 - }, -/obj/structure/window/reinforced/holowindow{ - dir = 1 - }, -/turf/simulated/floor/holofloor/wood, -/area/holodeck/source_courtroom) -"al" = ( -/obj/structure/window/reinforced/holowindow{ - dir = 8 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_courtroom) -"am" = ( -/obj/machinery/door/window/holowindoor{ - dir = 8; - name = "Red Team" - }, -/turf/simulated/floor/holofloor/tiled/dark, -/area/holodeck/source_emptycourt) -"an" = ( -/obj/structure/holostool, -/turf/simulated/floor/holofloor/desert, -/area/holodeck/source_picnicarea) -"ao" = ( -/obj/structure/flora/ausbushes/ywflowers, -/obj/effect/floor_decal/spline/fancy/wood{ - icon_state = "spline_fancy"; - dir = 9 - }, -/turf/simulated/floor/holofloor/grass, -/area/holodeck/source_picnicarea) -"ap" = ( -/turf/space, -/area/space) -"aq" = ( -/obj/effect/step_trigger/teleporter/random, -/turf/space, -/area/space) -"ar" = ( -/turf/unsimulated/wall, -/area/space) -"as" = ( -/obj/structure/window/reinforced, -/turf/unsimulated/wall, -/area/space) -"at" = ( -/obj/structure/flora/ausbushes/brflowers, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 5 - }, -/turf/simulated/floor/holofloor/grass, -/area/holodeck/source_picnicarea) -"au" = ( -/obj/structure/bed/chair/holochair{ - dir = 4 - }, -/obj/effect/floor_decal/carpet{ - dir = 8 - }, -/obj/effect/floor_decal/carpet/corners{ - icon_state = "carpet_corners"; - dir = 5 - }, -/turf/simulated/floor/holofloor/carpet, -/area/holodeck/source_courtroom) -"av" = ( -/obj/structure/bed/chair/holochair{ - dir = 4 - }, -/obj/effect/floor_decal/carpet{ - dir = 1 - }, -/obj/effect/floor_decal/carpet{ - dir = 4 - }, -/obj/effect/floor_decal/carpet{ - dir = 5 - }, -/turf/simulated/floor/holofloor/carpet, -/area/holodeck/source_courtroom) -"aw" = ( -/obj/structure/table/woodentable/holotable, -/obj/structure/window/reinforced/holowindow{ - dir = 4 - }, -/turf/simulated/floor/holofloor/wood, -/area/holodeck/source_courtroom) -"ax" = ( -/obj/structure/flora/ausbushes/brflowers, -/obj/effect/floor_decal/spline/fancy/wood/corner{ - dir = 4 - }, -/turf/simulated/floor/holofloor/grass, -/area/holodeck/source_picnicarea) -"ay" = ( -/obj/structure/bed/chair/holochair{ - dir = 4 - }, -/obj/effect/floor_decal/carpet{ - dir = 8 - }, -/turf/simulated/floor/holofloor/carpet, -/area/holodeck/source_courtroom) -"az" = ( -/obj/structure/bed/chair/holochair{ - dir = 4 - }, -/obj/effect/floor_decal/carpet{ - dir = 4 - }, -/turf/simulated/floor/holofloor/carpet, -/area/holodeck/source_courtroom) -"aA" = ( -/obj/structure/flora/ausbushes/ywflowers, -/obj/effect/floor_decal/spline/fancy/wood{ - icon_state = "spline_fancy"; - dir = 10 - }, -/turf/simulated/floor/holofloor/grass, -/area/holodeck/source_picnicarea) -"aB" = ( -/obj/structure/flora/ausbushes/brflowers, -/obj/effect/floor_decal/spline/fancy/wood/corner{ - dir = 8 - }, -/turf/simulated/floor/holofloor/grass, -/area/holodeck/source_picnicarea) -"aC" = ( -/obj/machinery/door/window/holowindoor{ - base_state = "right"; - dir = 8; - icon_state = "right" - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_courtroom) -"aD" = ( -/obj/machinery/door/window/holowindoor{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Green Team" - }, -/turf/simulated/floor/holofloor/tiled/dark, -/area/holodeck/source_emptycourt) -"aE" = ( -/obj/structure/bed/chair/holochair{ - dir = 4 - }, -/obj/effect/floor_decal/carpet, -/obj/effect/floor_decal/carpet{ - dir = 8 - }, -/obj/effect/floor_decal/carpet{ - dir = 10 - }, -/turf/simulated/floor/holofloor/carpet, -/area/holodeck/source_courtroom) -"aF" = ( -/obj/structure/bed/chair/holochair{ - dir = 4 - }, -/obj/effect/floor_decal/carpet{ - dir = 4 - }, -/obj/effect/floor_decal/carpet, -/obj/effect/floor_decal/carpet{ - dir = 6 - }, -/turf/simulated/floor/holofloor/carpet, -/area/holodeck/source_courtroom) -"aG" = ( -/obj/structure/window/reinforced/holowindow{ - dir = 8 - }, -/obj/structure/holostool, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_basketball) -"aH" = ( -/obj/structure/window/reinforced/holowindow{ - dir = 8 - }, -/obj/structure/holostool, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_thunderdomecourt) -"aI" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/unsimulated/wall, -/area/space) -"aJ" = ( -/turf/simulated/floor/holofloor/desert, -/area/holodeck/source_desert) -"aK" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/turf/simulated/floor/holofloor/desert, -/area/holodeck/source_desert) -"aL" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/unsimulated/wall, -/area/space) -"aM" = ( -/obj/structure/flora/ausbushes/fullgrass, -/turf/simulated/floor/holofloor/grass, -/area/holodeck/source_picnicarea) -"aN" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/turf/simulated/floor/holofloor/grass, -/area/holodeck/source_picnicarea) -"aO" = ( -/obj/structure/table/rack/holorack, -/obj/item/clothing/under/dress/dress_saloon, -/obj/item/clothing/head/pin/flower, -/turf/simulated/floor/holofloor/tiled/dark, -/area/holodeck/source_theatre) -"aP" = ( -/obj/effect/landmark/costume, -/obj/structure/table/rack/holorack, -/turf/simulated/floor/holofloor/tiled/dark, -/area/holodeck/source_theatre) -"aQ" = ( -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_courtroom) -"aR" = ( -/obj/machinery/door/window/holowindoor{ - dir = 8; - name = "Red Team" - }, -/turf/simulated/floor/holofloor/tiled/dark, -/area/holodeck/source_basketball) -"aS" = ( -/obj/structure/table/woodentable/holotable, -/turf/simulated/floor/holofloor/wood, -/area/holodeck/source_courtroom) -"aT" = ( -/turf/simulated/floor/holofloor/reinforced, -/area/holodeck/source_wildlife) -"aU" = ( -/turf/simulated/floor/holofloor/reinforced, -/area/holodeck/source_plating) -"aV" = ( -/turf/simulated/floor/holofloor/tiled/dark, -/area/holodeck/source_emptycourt) -"aW" = ( -/obj/structure/holostool, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_emptycourt) -"aX" = ( -/obj/machinery/door/window/holowindoor{ - dir = 8; - name = "Red Team" - }, -/turf/simulated/floor/holofloor/tiled/dark, -/area/holodeck/source_thunderdomecourt) -"aY" = ( -/obj/effect/floor_decal/corner/red/full{ - dir = 8 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_emptycourt) -"aZ" = ( -/obj/effect/floor_decal/corner/red{ - dir = 5 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_emptycourt) -"ba" = ( -/obj/effect/floor_decal/corner/red/full{ - dir = 1 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_emptycourt) -"bb" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/unsimulated/wall, -/area/space) -"bc" = ( -/turf/simulated/shuttle/wall, -/area/shuttle/supply) -"bd" = ( -/obj/structure/flora/ausbushes/fullgrass, -/turf/simulated/floor/holofloor/desert, -/area/holodeck/source_desert) -"be" = ( -/obj/structure/flora/ausbushes/ywflowers, -/turf/simulated/floor/holofloor/grass, -/area/holodeck/source_picnicarea) -"bf" = ( -/obj/structure/flora/ausbushes/brflowers, -/turf/simulated/floor/holofloor/grass, -/area/holodeck/source_picnicarea) -"bg" = ( -/turf/simulated/floor/holofloor/tiled/dark, -/area/holodeck/source_theatre) -"bh" = ( -/obj/machinery/door/window/holowindoor{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Green Team" - }, -/turf/simulated/floor/holofloor/tiled/dark, -/area/holodeck/source_basketball) -"bi" = ( -/turf/simulated/floor/holofloor/wood, -/area/holodeck/source_courtroom) -"bj" = ( -/obj/effect/landmark{ - name = "Holocarp Spawn" - }, -/turf/simulated/floor/holofloor/reinforced, -/area/holodeck/source_wildlife) -"bk" = ( -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_emptycourt) -"bl" = ( -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_emptycourt) -"bm" = ( -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_emptycourt) -"bn" = ( -/turf/simulated/shuttle/floor, -/area/shuttle/supply) -"bo" = ( -/obj/structure/flora/ausbushes/brflowers, -/obj/effect/floor_decal/spline/fancy/wood/corner, -/turf/simulated/floor/holofloor/grass, -/area/holodeck/source_picnicarea) -"bp" = ( -/obj/structure/flora/ausbushes/ywflowers, -/obj/effect/floor_decal/spline/fancy/wood, -/turf/simulated/floor/holofloor/grass, -/area/holodeck/source_picnicarea) -"bq" = ( -/obj/structure/flora/ausbushes/brflowers, -/obj/effect/floor_decal/spline/fancy/wood, -/turf/simulated/floor/holofloor/grass, -/area/holodeck/source_picnicarea) -"br" = ( -/obj/machinery/door/window/holowindoor{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Green Team" - }, -/turf/simulated/floor/holofloor/tiled/dark, -/area/holodeck/source_thunderdomecourt) -"bs" = ( -/obj/effect/step_trigger/thrower{ - affect_ghosts = 1; - direction = 8; - name = "thrower_escapeshuttletop(left)"; - tiles = 0 - }, -/turf/simulated/sky/virgo3b/south, -/area/space) -"bt" = ( -/obj/structure/bed/chair/holochair, -/turf/simulated/floor/holofloor/wood, -/area/holodeck/source_courtroom) -"bu" = ( -/obj/effect/step_trigger/teleporter/planetary_fall/virgo3b, -/turf/simulated/sky/virgo3b/south, -/area/space) -"bv" = ( -/obj/structure/window/reinforced/holowindow{ - dir = 1 - }, -/obj/structure/table/woodentable/holotable, -/turf/simulated/floor/holofloor/wood, -/area/holodeck/source_courtroom) -"bw" = ( -/obj/effect/step_trigger/teleporter/random{ - affect_ghosts = 1; - name = "escapeshuttle_leave"; - teleport_x = 25; - teleport_x_offset = 245; - teleport_y = 25; - teleport_y_offset = 245; - teleport_z = 6; - teleport_z_offset = 6 - }, -/turf/simulated/sky/virgo3b/south, -/area/space) -"bx" = ( -/turf/unsimulated/mineral{ - icon = 'icons/turf/transit_vr.dmi'; - icon_state = "rock" - }, -/area/space) -"by" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/shuttle/floor, -/area/shuttle/supply) -"bz" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/shuttle/floor, -/area/shuttle/supply) -"bA" = ( -/turf/unsimulated/wall{ - icon = 'icons/turf/transit_vr.dmi' - }, -/area/space) -"bB" = ( -/turf/simulated/floor/holofloor/desert, -/area/holodeck/source_picnicarea) -"bC" = ( -/obj/effect/floor_decal/transit/orange{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid{ - icon = 'icons/turf/transit_vr.dmi'; - initial_flooring = null; - icon_state = "techfloor_grid" - }, -/area/space) -"bD" = ( -/turf/simulated/floor/tiled/techfloor/grid{ - icon = 'icons/turf/transit_vr.dmi'; - initial_flooring = null; - icon_state = "techfloor_grid" - }, -/area/space) -"bE" = ( -/turf/simulated/floor/maglev{ - icon = 'icons/turf/transit_vr.dmi' - }, -/area/space) -"bF" = ( -/obj/effect/floor_decal/transit/orange{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid{ - icon = 'icons/turf/transit_vr.dmi'; - initial_flooring = null; - icon_state = "techfloor_grid" - }, -/area/space) -"bG" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_theatre) -"bH" = ( -/obj/effect/floor_decal/carpet{ - dir = 8 - }, -/obj/effect/floor_decal/carpet{ - dir = 4 - }, -/obj/effect/floor_decal/carpet{ - dir = 1 - }, -/obj/effect/floor_decal/carpet{ - dir = 5 - }, -/obj/effect/floor_decal/carpet{ - dir = 9 - }, -/turf/simulated/floor/holofloor/carpet, -/area/holodeck/source_theatre) -"bI" = ( -/obj/structure/window/reinforced/holowindow, -/obj/machinery/door/window/holowindoor{ - dir = 1; - name = "Court Reporter's Box" - }, -/obj/structure/bed/chair/holochair, -/turf/simulated/floor/holofloor/wood, -/area/holodeck/source_courtroom) -"bJ" = ( -/obj/structure/table/woodentable/holotable, -/obj/structure/window/reinforced/holowindow, -/obj/structure/window/reinforced/holowindow{ - dir = 8 - }, -/turf/simulated/floor/holofloor/wood, -/area/holodeck/source_courtroom) -"bK" = ( -/obj/structure/table/woodentable/holotable, -/obj/structure/window/reinforced/holowindow, -/turf/simulated/floor/holofloor/wood, -/area/holodeck/source_courtroom) -"bL" = ( -/obj/structure/table/woodentable/holotable, -/obj/structure/window/reinforced/holowindow, -/obj/structure/window/reinforced/holowindow{ - dir = 4 - }, -/turf/simulated/floor/holofloor/wood, -/area/holodeck/source_courtroom) -"bM" = ( -/obj/structure/window/reinforced/holowindow, -/obj/machinery/door/window/holowindoor{ - base_state = "right"; - dir = 1; - icon_state = "right"; - name = "Witness Box" - }, -/obj/structure/bed/chair/holochair, -/turf/simulated/floor/holofloor/wood, -/area/holodeck/source_courtroom) -"bN" = ( -/obj/effect/floor_decal/transit/orange{ - dir = 8 - }, -/obj/effect/transit/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid{ - icon = 'icons/turf/transit_vr.dmi'; - initial_flooring = null; - icon_state = "techfloor_grid" - }, -/area/space) -"bO" = ( -/obj/effect/floor_decal/transit/orange{ - dir = 4 - }, -/obj/effect/transit/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid{ - icon = 'icons/turf/transit_vr.dmi'; - initial_flooring = null; - icon_state = "techfloor_grid" - }, -/area/space) -"bP" = ( -/obj/effect/step_trigger/thrower{ - affect_ghosts = 1; - direction = 4; - name = "thrower_escapeshuttletop(right)"; - tiles = 0 - }, -/turf/simulated/sky/virgo3b/south, -/area/space) -"bQ" = ( -/obj/machinery/door/airlock/glass_external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "supply_shuttle_hatch"; - locked = 1; - name = "Shuttle Hatch" - }, -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad2" - }, -/turf/simulated/shuttle/plating, -/area/shuttle/supply) -"bR" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad2" - }, -/turf/simulated/shuttle/floor, -/area/shuttle/supply) -"bS" = ( -/obj/structure/table/woodentable/holotable, -/turf/simulated/floor/holofloor/desert, -/area/holodeck/source_picnicarea) -"bT" = ( -/obj/effect/floor_decal/transit/orange{ - dir = 8 - }, -/obj/effect/transit/light{ - dir = 8 - }, -/obj/effect/step_trigger/thrower{ - affect_ghosts = 1; - direction = 2; - name = "thrower_throwdownside"; - nostop = 1; - stopper = 0; - tiles = 0 - }, -/turf/simulated/floor/tiled/techfloor/grid{ - icon = 'icons/turf/transit_vr.dmi'; - initial_flooring = null; - icon_state = "techfloor_grid" - }, -/area/space) -"bU" = ( -/obj/structure/flora/ausbushes/ywflowers, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/turf/simulated/floor/holofloor/grass, -/area/holodeck/source_picnicarea) -"bV" = ( -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_theatre) -"bW" = ( -/obj/effect/floor_decal/carpet{ - dir = 8 - }, -/obj/effect/floor_decal/carpet{ - dir = 1 - }, -/obj/effect/floor_decal/carpet{ - dir = 9 - }, -/turf/simulated/floor/holofloor/carpet, -/area/holodeck/source_theatre) -"bX" = ( -/obj/effect/floor_decal/carpet{ - dir = 1 - }, -/turf/simulated/floor/holofloor/carpet, -/area/holodeck/source_theatre) -"bY" = ( -/obj/effect/floor_decal/carpet{ - dir = 4 - }, -/obj/effect/floor_decal/carpet{ - dir = 1 - }, -/obj/effect/floor_decal/carpet{ - dir = 5 - }, -/turf/simulated/floor/holofloor/carpet, -/area/holodeck/source_theatre) -"bZ" = ( -/obj/effect/floor_decal/carpet{ - dir = 8 - }, -/obj/effect/floor_decal/carpet{ - dir = 4 - }, -/turf/simulated/floor/holofloor/carpet, -/area/holodeck/source_theatre) -"ca" = ( -/obj/effect/floor_decal/carpet{ - dir = 8 - }, -/obj/effect/floor_decal/carpet{ - dir = 1 - }, -/obj/effect/floor_decal/carpet{ - dir = 9 - }, -/turf/simulated/floor/holofloor/carpet, -/area/holodeck/source_courtroom) -"cb" = ( -/obj/effect/floor_decal/carpet{ - dir = 1 - }, -/turf/simulated/floor/holofloor/carpet, -/area/holodeck/source_courtroom) -"cc" = ( -/obj/effect/floor_decal/carpet{ - dir = 4 - }, -/obj/effect/floor_decal/carpet{ - dir = 1 - }, -/obj/effect/floor_decal/carpet{ - dir = 5 - }, -/turf/simulated/floor/holofloor/carpet, -/area/holodeck/source_courtroom) -"cd" = ( -/obj/effect/step_trigger/thrower{ - affect_ghosts = 1; - direction = 8; - name = "thrower_escapeshuttletop(left)"; - tiles = 0 - }, -/turf/simulated/floor/tiled/techfloor/grid{ - icon = 'icons/turf/transit_vr.dmi'; - initial_flooring = null; - icon_state = "techfloor_grid" - }, -/area/space) -"ce" = ( -/obj/effect/step_trigger/thrower{ - affect_ghosts = 1; - direction = 8; - name = "thrower_escapeshuttletop(left)"; - tiles = 0 - }, -/turf/simulated/floor/maglev{ - icon = 'icons/turf/transit_vr.dmi' - }, -/area/space) -"cf" = ( -/obj/effect/step_trigger/thrower{ - affect_ghosts = 1; - direction = 4; - name = "thrower_escapeshuttletop(right)"; - tiles = 0 - }, -/turf/simulated/floor/tiled/techfloor/grid{ - icon = 'icons/turf/transit_vr.dmi'; - initial_flooring = null; - icon_state = "techfloor_grid" - }, -/area/space) -"cg" = ( -/obj/effect/step_trigger/thrower{ - affect_ghosts = 1; - direction = 4; - name = "thrower_escapeshuttletop(right)"; - tiles = 0 - }, -/turf/simulated/floor/maglev{ - icon = 'icons/turf/transit_vr.dmi' - }, -/area/space) -"ch" = ( -/obj/effect/floor_decal/transit/orange{ - dir = 4 - }, -/obj/effect/step_trigger/thrower{ - affect_ghosts = 1; - direction = 2; - name = "thrower_throwdownside"; - nostop = 1; - stopper = 0; - tiles = 0 - }, -/turf/simulated/floor/tiled/techfloor/grid{ - icon = 'icons/turf/transit_vr.dmi'; - initial_flooring = null; - icon_state = "techfloor_grid" - }, -/area/space) -"ci" = ( -/obj/effect/floor_decal/transit/orange{ - dir = 8 - }, -/obj/effect/step_trigger/thrower{ - affect_ghosts = 1; - direction = 2; - name = "thrower_throwdownside"; - nostop = 1; - stopper = 0; - tiles = 0 - }, -/turf/simulated/floor/tiled/techfloor/grid{ - icon = 'icons/turf/transit_vr.dmi'; - initial_flooring = null; - icon_state = "techfloor_grid" - }, -/area/space) -"cj" = ( -/obj/effect/floor_decal/transit/orange{ - dir = 4 - }, -/obj/effect/transit/light{ - dir = 4 - }, -/obj/effect/step_trigger/thrower{ - affect_ghosts = 1; - direction = 2; - name = "thrower_throwdownside"; - nostop = 1; - stopper = 0; - tiles = 0 - }, -/turf/simulated/floor/tiled/techfloor/grid{ - icon = 'icons/turf/transit_vr.dmi'; - initial_flooring = null; - icon_state = "techfloor_grid" - }, -/area/space) -"ck" = ( -/obj/effect/shuttle_landmark/transit{ - base_area = /area/space; - base_turf = /turf/simulated/sky/virgo3b/south; - landmark_tag = "tether_backup_transit"; - name = "Tether Backup Transit" - }, -/turf/simulated/sky/virgo3b/south, -/area/space) -"cl" = ( -/turf/unsimulated/wall, -/area/beach) -"cm" = ( -/turf/unsimulated/beach/sand{ - density = 1; - opacity = 1 - }, -/area/beach) -"cn" = ( -/turf/unsimulated/beach/sand, -/area/beach) -"co" = ( -/obj/effect/shuttle_landmark{ - base_area = /area/centcom/ferry; - base_turf = /turf/simulated/floor/tiled/techfloor/grid; - docking_controller = null; - landmark_tag = "escape_transit"; - name = "Escape Transit" - }, -/turf/simulated/floor/tiled/techfloor/grid{ - icon = 'icons/turf/transit_vr.dmi'; - initial_flooring = null; - icon_state = "techfloor_grid" - }, -/area/space) -"cp" = ( -/obj/effect/step_trigger/thrower{ - affect_ghosts = 1; - direction = 2; - name = "thrower_throwdownside"; - nostop = 1; - stopper = 0; - tiles = 0 - }, -/turf/simulated/floor/tiled/techfloor/grid{ - icon = 'icons/turf/transit_vr.dmi'; - initial_flooring = null; - icon_state = "techfloor_grid" - }, -/area/space) -"cq" = ( -/obj/effect/step_trigger/thrower{ - affect_ghosts = 1; - direction = 2; - name = "thrower_throwdownside"; - nostop = 1; - stopper = 0; - tiles = 0 - }, -/turf/simulated/floor/maglev{ - icon = 'icons/turf/transit_vr.dmi' - }, -/area/space) -"cr" = ( -/obj/effect/step_trigger/teleporter/random{ - affect_ghosts = 1; - name = "escapeshuttle_leave"; - teleport_x = 25; - teleport_x_offset = 245; - teleport_y = 25; - teleport_y_offset = 245; - teleport_z = 4; - teleport_z_offset = 4 - }, -/turf/space/transit/north, -/area/space) -"cs" = ( -/obj/machinery/door/airlock/glass_external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "supply_shuttle_hatch"; - locked = 1; - name = "Shuttle Hatch" - }, -/turf/simulated/shuttle/floor, -/area/shuttle/supply) -"ct" = ( -/obj/structure/holostool, -/obj/effect/floor_decal/carpet{ - dir = 8 - }, -/turf/simulated/floor/holofloor/carpet, -/area/holodeck/source_theatre) -"cu" = ( -/obj/structure/holostool, -/turf/simulated/floor/holofloor/carpet, -/area/holodeck/source_theatre) -"cv" = ( -/obj/structure/holostool, -/obj/effect/floor_decal/carpet{ - dir = 4 - }, -/turf/simulated/floor/holofloor/carpet, -/area/holodeck/source_theatre) -"cw" = ( -/obj/structure/table/woodentable/holotable, -/obj/effect/floor_decal/carpet{ - dir = 8 - }, -/turf/simulated/floor/holofloor/carpet, -/area/holodeck/source_courtroom) -"cx" = ( -/obj/structure/table/woodentable/holotable, -/turf/simulated/floor/holofloor/carpet, -/area/holodeck/source_courtroom) -"cy" = ( -/turf/simulated/floor/holofloor/carpet, -/area/holodeck/source_courtroom) -"cz" = ( -/obj/structure/table/woodentable/holotable, -/obj/effect/floor_decal/carpet{ - dir = 4 - }, -/turf/simulated/floor/holofloor/carpet, -/area/holodeck/source_courtroom) -"cA" = ( -/obj/effect/floor_decal/corner/green{ - dir = 9 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_emptycourt) -"cB" = ( -/obj/effect/floor_decal/corner/green{ - dir = 6 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_emptycourt) -"cC" = ( -/obj/structure/signpost, -/turf/unsimulated/beach/sand, -/area/beach) -"cD" = ( -/turf/space/transit/north, -/area/space) -"cE" = ( -/obj/effect/floor_decal/transit/orange{ - dir = 8 - }, -/obj/effect/step_trigger/lost_in_space/tram, -/turf/simulated/floor/tiled/techfloor/grid{ - icon = 'icons/turf/transit_vr.dmi'; - initial_flooring = null; - icon_state = "techfloor_grid" - }, -/area/space) -"cF" = ( -/obj/effect/step_trigger/lost_in_space/tram, -/turf/simulated/floor/tiled/techfloor/grid{ - icon = 'icons/turf/transit_vr.dmi'; - initial_flooring = null; - icon_state = "techfloor_grid" - }, -/area/space) -"cG" = ( -/obj/effect/step_trigger/lost_in_space/tram, -/turf/simulated/floor/maglev{ - icon = 'icons/turf/transit_vr.dmi' - }, -/area/space) -"cH" = ( -/obj/effect/floor_decal/transit/orange{ - dir = 4 - }, -/obj/effect/step_trigger/lost_in_space/tram, -/turf/simulated/floor/tiled/techfloor/grid{ - icon = 'icons/turf/transit_vr.dmi'; - initial_flooring = null; - icon_state = "techfloor_grid" - }, -/area/space) -"cI" = ( -/obj/effect/step_trigger/thrower{ - affect_ghosts = 1; - direction = 2; - name = "thrower_throwdown"; - nostop = 1; - stopper = 0; - tiles = 0 - }, -/turf/space/transit/north, -/area/space) -"cJ" = ( -/obj/effect/transit/light{ - dir = 8 - }, -/turf/unsimulated/mineral{ - icon = 'icons/turf/transit_vr.dmi'; - icon_state = "rock" - }, -/area/space) -"cK" = ( -/obj/structure/closet, -/turf/unsimulated/beach/sand, -/area/beach) -"cL" = ( -/obj/effect/overlay/palmtree_l, -/turf/unsimulated/beach/sand, -/area/beach) -"cM" = ( -/obj/effect/overlay/palmtree_r, -/obj/effect/overlay/coconut, -/turf/unsimulated/beach/sand, -/area/beach) -"cN" = ( -/obj/effect/overlay/coconut, -/turf/unsimulated/beach/sand, -/area/beach) -"cO" = ( -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - frequency = 1380; - id_tag = "supply_shuttle"; - pixel_x = -25; - pixel_y = 0; - req_one_access = list(13,31); - tag_door = "supply_shuttle_hatch" - }, -/turf/simulated/shuttle/floor, -/area/shuttle/supply) -"cP" = ( -/obj/structure/flora/ausbushes/ywflowers, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/turf/simulated/floor/holofloor/grass, -/area/holodeck/source_picnicarea) -"cQ" = ( -/obj/structure/flora/ausbushes/brflowers, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/turf/simulated/floor/holofloor/grass, -/area/holodeck/source_picnicarea) -"cR" = ( -/turf/simulated/sky/virgo3b/south, -/area/space) -"cS" = ( -/obj/structure/bed/chair/holochair{ - dir = 1 - }, -/obj/effect/floor_decal/carpet{ - dir = 8 - }, -/turf/simulated/floor/holofloor/carpet, -/area/holodeck/source_courtroom) -"cT" = ( -/obj/structure/bed/chair/holochair{ - dir = 1 - }, -/turf/simulated/floor/holofloor/carpet, -/area/holodeck/source_courtroom) -"cU" = ( -/obj/structure/bed/chair/holochair{ - dir = 1 - }, -/obj/effect/floor_decal/carpet{ - dir = 4 - }, -/turf/simulated/floor/holofloor/carpet, -/area/holodeck/source_courtroom) -"cV" = ( -/obj/effect/overlay/palmtree_r, -/turf/unsimulated/beach/sand, -/area/beach) -"cW" = ( -/obj/structure/fake_stairs/north/bottom{ - _stair_tag = "stairtest" - }, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/main_hall) -"cX" = ( -/turf/unsimulated/seperator, -/area/space) -"cY" = ( -/obj/structure/shuttle/engine/propulsion{ - icon_state = "burst_l" - }, -/turf/space, -/turf/simulated/shuttle/plating/airless/carry{ - dir = 1 - }, -/area/shuttle/supply) -"cZ" = ( -/obj/structure/shuttle/engine/propulsion, -/turf/space, -/turf/simulated/shuttle/plating/airless/carry{ - dir = 1 - }, -/area/shuttle/supply) -"da" = ( -/obj/structure/flora/ausbushes/brflowers, -/obj/effect/floor_decal/spline/fancy/wood/corner{ - dir = 1 - }, -/turf/simulated/floor/holofloor/grass, -/area/holodeck/source_picnicarea) -"db" = ( -/obj/effect/landmark{ - name = "endgame_exit" - }, -/turf/unsimulated/beach/sand, -/area/beach) -"dc" = ( -/obj/effect/shuttle_landmark/transit{ - base_area = /area/space; - base_turf = /turf/space/transit/north; - landmark_tag = "ninja_transit"; - name = "Ninja Transit" - }, -/turf/space/transit/north, -/area/space) -"dd" = ( -/obj/effect/floor_decal/carpet{ - dir = 8 - }, -/turf/simulated/floor/holofloor/carpet, -/area/holodeck/source_courtroom) -"de" = ( -/obj/effect/floor_decal/carpet{ - dir = 4 - }, -/turf/simulated/floor/holofloor/carpet, -/area/holodeck/source_courtroom) -"df" = ( -/obj/structure/table/standard, -/turf/unsimulated/beach/sand, -/area/beach) -"dg" = ( -/obj/structure/table/standard, -/obj/item/clothing/under/color/rainbow, -/obj/item/clothing/glasses/sunglasses, -/obj/item/clothing/head/collectable/petehat{ - pixel_y = 5 - }, -/turf/unsimulated/beach/sand, -/area/beach) -"dh" = ( -/obj/machinery/door/airlock/glass_external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "supply_shuttle_hatch"; - locked = 1; - name = "Shuttle Hatch" - }, -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad" - }, -/turf/simulated/shuttle/plating, -/area/shuttle/supply) -"di" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad" - }, -/turf/simulated/shuttle/floor, -/area/shuttle/supply) -"dj" = ( -/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) -"dk" = ( -/obj/structure/holostool, -/obj/effect/floor_decal/carpet, -/turf/simulated/floor/holofloor/carpet, -/area/holodeck/source_theatre) -"dl" = ( -/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) -"dm" = ( -/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) -"dn" = ( -/obj/structure/table/standard, -/obj/item/weapon/reagent_containers/food/snacks/chips, -/turf/unsimulated/beach/sand, -/area/beach) -"do" = ( -/obj/structure/table/standard, -/obj/item/weapon/reagent_containers/food/drinks/cans/cola, -/obj/item/weapon/reagent_containers/food/drinks/cans/cola, -/obj/item/weapon/reagent_containers/food/drinks/cans/cola, -/obj/item/weapon/reagent_containers/food/drinks/cans/cola, -/obj/item/weapon/reagent_containers/food/drinks/cans/cola, -/obj/item/weapon/reagent_containers/food/drinks/cans/cola, -/turf/unsimulated/beach/sand, -/area/beach) -"dp" = ( -/obj/item/weapon/beach_ball, -/turf/unsimulated/beach/sand, -/area/beach) -"dq" = ( -/obj/structure/flora/pottedplant{ - icon_state = "plant-06" - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_theatre) -"dr" = ( -/obj/effect/floor_decal/carpet{ - dir = 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) -"ds" = ( -/obj/structure/bed/chair/holochair{ - dir = 1 - }, -/obj/effect/floor_decal/carpet{ - dir = 8 - }, -/obj/effect/floor_decal/carpet, -/obj/effect/floor_decal/carpet{ - dir = 10 - }, -/turf/simulated/floor/holofloor/carpet, -/area/holodeck/source_courtroom) -"dt" = ( -/obj/structure/bed/chair/holochair{ - dir = 1 - }, -/obj/effect/floor_decal/carpet, -/turf/simulated/floor/holofloor/carpet, -/area/holodeck/source_courtroom) -"du" = ( -/obj/structure/bed/chair/holochair{ - dir = 1 - }, -/obj/effect/floor_decal/carpet{ - dir = 4 - }, -/obj/effect/floor_decal/carpet, -/obj/effect/floor_decal/carpet{ - dir = 6 - }, -/turf/simulated/floor/holofloor/carpet, -/area/holodeck/source_courtroom) -"dv" = ( -/obj/effect/floor_decal/corner/green/full, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_emptycourt) -"dw" = ( -/obj/effect/floor_decal/corner/green{ - dir = 10 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_emptycourt) -"dx" = ( -/obj/effect/floor_decal/corner/green/full{ - dir = 4 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_emptycourt) -"dy" = ( -/obj/structure/bed/chair, -/obj/effect/landmark{ - name = "endgame_exit" - }, -/obj/item/toy/plushie/mouse{ - desc = "A plushie of a small fuzzy rodent."; - name = "Woodrat" - }, -/turf/unsimulated/beach/sand, -/area/beach) -"dz" = ( -/obj/structure/bed/chair, -/obj/effect/landmark{ - name = "endgame_exit" - }, -/turf/unsimulated/beach/sand, -/area/beach) -"dA" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/unsimulated/wall, -/area/space) -"dB" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/turf/unsimulated/wall, -/area/space) -"dC" = ( -/obj/machinery/vending/coffee, -/turf/unsimulated/beach/sand, -/area/beach) -"dD" = ( -/obj/item/clothing/head/collectable/paper, -/turf/unsimulated/beach/sand, -/area/beach) -"dE" = ( -/obj/structure/shuttle/engine/heater, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/airless, -/area/shuttle/supply) -"dF" = ( -/turf/simulated/floor/holofloor/space, -/area/holodeck/source_space) -"dG" = ( -/turf/simulated/floor/holofloor/snow, -/area/holodeck/source_snowfield) -"dH" = ( -/turf/simulated/floor/holofloor/wood, -/area/holodeck/source_meetinghall) -"dI" = ( -/obj/structure/flora/pottedplant{ - icon_state = "plant-06" - }, -/turf/simulated/floor/holofloor/wood, -/area/holodeck/source_meetinghall) -"dJ" = ( -/turf/simulated/floor/holofloor/tiled/dark, -/area/holodeck/source_basketball) -"dK" = ( -/obj/structure/holostool, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_basketball) -"dL" = ( -/turf/unsimulated/floor{ - icon_state = "sandwater" - }, -/area/beach) -"dM" = ( -/obj/effect/floor_decal/corner/red/full{ - dir = 8 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_basketball) -"dN" = ( -/obj/effect/floor_decal/corner/red{ - dir = 5 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_basketball) -"dO" = ( -/obj/structure/holohoop, -/obj/effect/floor_decal/corner/red{ - dir = 5 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_basketball) -"dP" = ( -/obj/effect/floor_decal/corner/red/full{ - dir = 1 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_basketball) -"dQ" = ( -/turf/simulated/floor/holofloor/beach/sand, -/area/holodeck/source_beach) -"dR" = ( -/turf/simulated/floor/holofloor/tiled/dark, -/area/holodeck/source_thunderdomecourt) -"dS" = ( -/obj/structure/holostool, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_thunderdomecourt) -"dT" = ( -/turf/unsimulated/beach/coastline{ - density = 1; - opacity = 1 - }, -/area/beach) -"dU" = ( -/obj/structure/table/holotable, -/obj/machinery/readybutton{ - pixel_y = 0 - }, -/obj/effect/floor_decal/corner/red/full{ - dir = 8 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_thunderdomecourt) -"dV" = ( -/obj/structure/table/holotable, -/obj/item/clothing/head/helmet/thunderdome, -/obj/item/clothing/suit/armor/tdome/red, -/obj/item/clothing/under/color/red, -/obj/item/weapon/holo/esword/red, -/obj/effect/floor_decal/corner/red{ - dir = 5 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_thunderdomecourt) -"dW" = ( -/obj/structure/table/holotable, -/obj/effect/floor_decal/corner/red/full{ - dir = 1 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_thunderdomecourt) -"dX" = ( -/obj/structure/table/holotable, -/obj/item/clothing/gloves/boxing/hologlove, -/turf/simulated/floor/holofloor/tiled/dark, -/area/holodeck/source_boxingcourt) -"dY" = ( -/turf/simulated/floor/holofloor/tiled/dark, -/area/holodeck/source_boxingcourt) -"dZ" = ( -/turf/unsimulated/wall, -/area/centcom/simulated/terminal) -"ea" = ( -/turf/space, -/turf/space/transit/north, -/area/space) -"eb" = ( -/turf/unsimulated/beach/coastline, -/area/beach) -"ec" = ( -/obj/effect/landmark{ - name = "Holocarp Spawn Random" - }, -/turf/simulated/floor/holofloor/space, -/area/holodeck/source_space) -"ed" = ( -/obj/structure/flora/grass/both, -/turf/simulated/floor/holofloor/snow, -/area/holodeck/source_snowfield) -"ee" = ( -/obj/effect/floor_decal/carpet{ - dir = 8 - }, -/obj/effect/floor_decal/carpet, -/obj/effect/floor_decal/carpet{ - dir = 1 - }, -/obj/effect/floor_decal/carpet{ - dir = 9 - }, -/obj/effect/floor_decal/carpet{ - dir = 10 - }, -/turf/simulated/floor/holofloor/carpet, -/area/holodeck/source_meetinghall) -"ef" = ( -/obj/effect/floor_decal/carpet, -/obj/effect/floor_decal/carpet{ - dir = 1 - }, -/turf/simulated/floor/holofloor/carpet, -/area/holodeck/source_meetinghall) -"eg" = ( -/obj/effect/floor_decal/carpet{ - dir = 4 - }, -/obj/effect/floor_decal/carpet, -/obj/effect/floor_decal/carpet{ - dir = 1 - }, -/obj/effect/floor_decal/carpet{ - dir = 5 - }, -/obj/effect/floor_decal/carpet{ - dir = 6 - }, -/turf/simulated/floor/holofloor/carpet, -/area/holodeck/source_meetinghall) -"eh" = ( -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_basketball) -"ei" = ( -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_basketball) -"ej" = ( -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_basketball) -"ek" = ( -/obj/effect/overlay/palmtree_r, -/turf/simulated/floor/holofloor/beach/sand, -/area/holodeck/source_beach) -"el" = ( -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_thunderdomecourt) -"em" = ( -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_thunderdomecourt) -"en" = ( -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_thunderdomecourt) -"eo" = ( -/obj/structure/holostool, -/turf/simulated/floor/holofloor/tiled/dark, -/area/holodeck/source_boxingcourt) -"ep" = ( -/obj/structure/flora/tree/pine, -/turf/simulated/floor/holofloor/snow, -/area/holodeck/source_snowfield) -"eq" = ( -/obj/structure/table/woodentable/holotable, -/turf/simulated/floor/holofloor/wood, -/area/holodeck/source_meetinghall) -"er" = ( -/turf/unsimulated/beach/water{ - density = 1; - opacity = 1 - }, -/area/beach) -"es" = ( -/obj/item/clothing/glasses/sunglasses, -/turf/simulated/floor/holofloor/beach/sand, -/area/holodeck/source_beach) -"et" = ( -/obj/effect/overlay/palmtree_l, -/obj/effect/overlay/coconut, -/turf/simulated/floor/holofloor/beach/sand, -/area/holodeck/source_beach) -"eu" = ( -/turf/unsimulated/beach/water, -/area/beach) -"ev" = ( -/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) -"ew" = ( -/obj/structure/window/reinforced/holowindow, -/turf/simulated/floor/holofloor/tiled/dark, -/area/holodeck/source_boxingcourt) -"ex" = ( -/obj/structure/shuttle/engine/propulsion, -/obj/effect/shuttle_landmark{ - base_area = /area/space; - base_turf = /turf/space; - landmark_tag = "supply_cc"; - name = "Centcom Supply Depot" - }, -/turf/space, -/turf/simulated/shuttle/plating/airless/carry{ - dir = 1 - }, -/area/shuttle/supply) -"ey" = ( -/obj/structure/fake_stairs/south/top{ - _stair_tag = "stairtest" - }, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/main_hall) -"ez" = ( -/obj/effect/step_trigger/teleporter/planetary_fall/virgo3b, -/turf/space/transit/east, -/area/space) -"eA" = ( -/turf/space/transit/east, -/area/space) -"eB" = ( -/obj/effect/step_trigger/thrower{ - affect_ghosts = 1; - name = "thrower_leftnostop" - }, -/turf/space/transit/east, -/area/space) -"eC" = ( -/obj/effect/step_trigger/thrower{ - direction = 1; - name = "thrower_throwup"; - nostop = 0; - tiles = 0 - }, -/turf/space/transit/east, -/area/space) -"eD" = ( -/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) -"eE" = ( -/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/east, -/area/space) -"eF" = ( -/obj/effect/step_trigger/thrower{ - affect_ghosts = 1; - direction = 2; - name = "thrower_throwdown"; - stopper = 0; - tiles = 0 - }, -/turf/space/transit/east, -/area/space) -"eG" = ( -/obj/effect/step_trigger/teleporter/random{ - affect_ghosts = 1; - name = "escapeshuttle_leave"; - teleport_x = 25; - teleport_x_offset = 245; - teleport_y = 25; - teleport_y_offset = 245; - teleport_z = 4; - teleport_z_offset = 4 - }, -/turf/space/transit/west, -/area/space) -"eH" = ( -/turf/space/transit/west, -/area/space) -"eI" = ( -/obj/effect/step_trigger/thrower{ - affect_ghosts = 1; - direction = 2; - name = "thrower_throwdown"; - nostop = 1; - stopper = 0; - tiles = 0 - }, -/turf/space/transit/west, -/area/space) -"eJ" = ( -/obj/structure/flora/tree/dead, -/turf/simulated/floor/holofloor/snow, -/area/holodeck/source_snowfield) -"eK" = ( -/turf/simulated/floor/holofloor/lino, -/area/holodeck/source_meetinghall) -"eL" = ( -/turf/simulated/floor/holofloor/tiled/dark, -/area/holodeck/source_meetinghall) -"eM" = ( -/obj/item/weapon/beach_ball, -/turf/simulated/floor/holofloor/beach/sand, -/area/holodeck/source_beach) -"eN" = ( -/obj/structure/window/reinforced/holowindow{ - dir = 4 - }, -/turf/simulated/floor/holofloor/tiled/dark, -/area/holodeck/source_boxingcourt) -"eO" = ( -/obj/effect/floor_decal/corner/red/full{ - dir = 8 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_boxingcourt) -"eP" = ( -/obj/effect/floor_decal/corner/red{ - dir = 5 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_boxingcourt) -"eQ" = ( -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_boxingcourt) -"eR" = ( -/obj/structure/window/reinforced/holowindow{ - dir = 8 - }, -/turf/simulated/floor/holofloor/tiled/dark, -/area/holodeck/source_boxingcourt) -"eS" = ( -/obj/effect/shuttle_landmark/transit{ - base_area = /area/space; - base_turf = /turf/space/transit/east; - landmark_tag = "specops_transit"; - name = "Specops Transit" - }, -/turf/space/transit/west, -/area/space) -"eT" = ( -/obj/structure/flora/grass/green, -/turf/simulated/floor/holofloor/snow, -/area/holodeck/source_snowfield) -"eU" = ( -/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) -"eV" = ( -/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) -"eW" = ( -/obj/structure/holostool, -/obj/effect/floor_decal/carpet{ - dir = 1 - }, -/turf/simulated/floor/holofloor/carpet, -/area/holodeck/source_meetinghall) -"eX" = ( -/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) -"eY" = ( -/obj/effect/floor_decal/corner/red/full, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_basketball) -"eZ" = ( -/obj/effect/floor_decal/corner/red{ - dir = 10 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_basketball) -"fa" = ( -/obj/item/weapon/beach_ball/holoball, -/obj/effect/floor_decal/corner/red{ - dir = 10 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_basketball) -"fb" = ( -/obj/effect/floor_decal/corner/red/full{ - dir = 4 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_basketball) -"fc" = ( -/obj/item/weapon/inflatable_duck, -/turf/simulated/floor/holofloor/beach/sand, -/area/holodeck/source_beach) -"fd" = ( -/obj/structure/window/reinforced/holowindow/disappearing, -/obj/effect/floor_decal/corner/red/full, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_thunderdomecourt) -"fe" = ( -/obj/structure/window/reinforced/holowindow/disappearing, -/obj/effect/floor_decal/corner/red{ - dir = 10 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_thunderdomecourt) -"ff" = ( -/obj/structure/window/reinforced/holowindow/disappearing, -/obj/effect/floor_decal/corner/red/full{ - dir = 4 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_thunderdomecourt) -"fg" = ( -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_boxingcourt) -"fh" = ( -/obj/effect/floor_decal/corner/blue/full{ - dir = 8 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_boxingcourt) -"fi" = ( -/obj/effect/floor_decal/corner/blue/full{ - dir = 1 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_boxingcourt) -"fj" = ( -/obj/effect/floor_decal/corner/green{ - dir = 6 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_boxingcourt) -"fk" = ( -/obj/effect/shuttle_landmark/transit{ - base_area = /area/space; - base_turf = /turf/space/transit/north; - landmark_tag = "skipjack_transit"; - name = "Skipjack Transit" - }, -/turf/space/transit/north, -/area/space) -"fl" = ( -/obj/effect/floor_decal/industrial/danger, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/main_hall) -"fm" = ( -/obj/machinery/light, -/obj/effect/floor_decal/industrial/danger, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/main_hall) -"fn" = ( -/obj/structure/holostool, -/obj/effect/floor_decal/carpet{ - dir = 8 - }, -/turf/simulated/floor/holofloor/carpet, -/area/holodeck/source_meetinghall) -"fo" = ( -/obj/structure/holostool, -/turf/simulated/floor/holofloor/carpet, -/area/holodeck/source_meetinghall) -"fp" = ( -/obj/structure/holostool, -/obj/effect/floor_decal/carpet{ - dir = 4 - }, -/turf/simulated/floor/holofloor/carpet, -/area/holodeck/source_meetinghall) -"fq" = ( -/obj/effect/floor_decal/corner/green/full{ - dir = 8 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_basketball) -"fr" = ( -/obj/effect/floor_decal/corner/green{ - dir = 5 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_basketball) -"fs" = ( -/obj/effect/floor_decal/corner/green/full{ - dir = 1 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_basketball) -"ft" = ( -/obj/structure/window/reinforced/holowindow/disappearing{ - dir = 1 - }, -/obj/effect/floor_decal/corner/green/full{ - dir = 8 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_thunderdomecourt) -"fu" = ( -/obj/structure/window/reinforced/holowindow/disappearing{ - dir = 1 - }, -/obj/effect/floor_decal/corner/green{ - dir = 5 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_thunderdomecourt) -"fv" = ( -/obj/structure/window/reinforced/holowindow/disappearing{ - dir = 1 - }, -/obj/effect/floor_decal/corner/green/full{ - dir = 1 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_thunderdomecourt) -"fw" = ( -/obj/effect/floor_decal/corner/blue/full, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_boxingcourt) -"fx" = ( -/obj/effect/floor_decal/corner/blue/full{ - dir = 4 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_boxingcourt) -"fy" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/main_hall) -"fz" = ( -/obj/effect/floor_decal/corner/green{ - dir = 9 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_basketball) -"fA" = ( -/obj/effect/floor_decal/corner/green{ - dir = 6 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_basketball) -"fB" = ( -/obj/effect/floor_decal/corner/green{ - dir = 9 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_thunderdomecourt) -"fC" = ( -/obj/effect/floor_decal/corner/green{ - dir = 6 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_thunderdomecourt) -"fD" = ( -/obj/effect/floor_decal/corner/green{ - dir = 10 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_boxingcourt) -"fE" = ( -/obj/effect/floor_decal/corner/green/full{ - dir = 4 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_boxingcourt) -"fF" = ( -/obj/structure/shuttle/engine/propulsion{ - icon_state = "burst_r" - }, -/turf/space, -/turf/simulated/shuttle/plating/airless/carry{ - dir = 1 - }, -/area/shuttle/supply) -"fG" = ( -/obj/structure/flora/grass/brown, -/turf/simulated/floor/holofloor/snow, -/area/holodeck/source_snowfield) -"fH" = ( -/obj/structure/holostool, -/obj/effect/floor_decal/carpet{ - dir = 4 - }, -/turf/simulated/floor/holofloor/carpet{ - dir = 8 - }, -/area/holodeck/source_meetinghall) -"fI" = ( -/obj/effect/step_trigger/teleporter/random{ - affect_ghosts = 1; - name = "escapeshuttle_leave"; - teleport_x = 25; - teleport_x_offset = 245; - teleport_y = 25; - teleport_y_offset = 245; - teleport_z = 4; - teleport_z_offset = 4 - }, -/turf/space, -/turf/space/transit/north, -/area/space) -"fJ" = ( -/obj/effect/floor_decal/corner/green{ - dir = 10 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_basketball) -"fK" = ( -/turf/unsimulated/beach/sand{ - icon_state = "beach" - }, -/area/holodeck/source_beach) -"fM" = ( -/obj/structure/window/reinforced/holowindow{ - dir = 1 - }, -/turf/simulated/floor/holofloor/tiled/dark, -/area/holodeck/source_boxingcourt) -"fN" = ( -/obj/machinery/door/window/holowindoor{ - dir = 1; - name = "Green Corner" - }, -/turf/simulated/floor/holofloor/tiled/dark, -/area/holodeck/source_boxingcourt) -"fO" = ( -/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) -"fP" = ( -/obj/structure/holostool, -/obj/effect/floor_decal/carpet, -/turf/simulated/floor/holofloor/carpet, -/area/holodeck/source_meetinghall) -"fQ" = ( -/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) -"fR" = ( -/turf/simulated/floor/holofloor/beach/water, -/area/holodeck/source_beach) -"fS" = ( -/obj/effect/floor_decal/corner/green/full, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_basketball) -"fT" = ( -/obj/structure/holohoop{ - dir = 1 - }, -/obj/effect/floor_decal/corner/green{ - dir = 10 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_basketball) -"fU" = ( -/obj/effect/floor_decal/corner/green/full{ - dir = 4 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_basketball) -"fV" = ( -/obj/structure/table/holotable, -/obj/effect/floor_decal/corner/green/full, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_thunderdomecourt) -"fW" = ( -/obj/structure/table/holotable, -/obj/item/clothing/head/helmet/thunderdome, -/obj/item/clothing/suit/armor/tdome/green, -/obj/item/clothing/under/color/green, -/obj/item/weapon/holo/esword/green, -/obj/effect/floor_decal/corner/green{ - dir = 10 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_thunderdomecourt) -"fX" = ( -/obj/structure/table/holotable, -/obj/machinery/readybutton{ - pixel_y = 0 - }, -/obj/effect/floor_decal/corner/green/full{ - dir = 4 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_thunderdomecourt) -"fY" = ( -/obj/structure/table/holotable, -/obj/item/clothing/gloves/boxing/hologlove{ - icon_state = "boxinggreen"; - item_state = "boxinggreen" - }, -/turf/simulated/floor/holofloor/tiled/dark, -/area/holodeck/source_boxingcourt) -"fZ" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/unsimulated/wall, -/area/space) -"ga" = ( -/turf/simulated/floor/holofloor/wood, -/area/holodeck/holodorm/source_basic) -"gb" = ( -/obj/structure/bed/chair/holochair{ - dir = 4 - }, -/turf/simulated/floor/holofloor/wood, -/area/holodeck/holodorm/source_basic) -"gc" = ( -/obj/structure/table/woodentable/holotable, -/turf/simulated/floor/holofloor/wood, -/area/holodeck/holodorm/source_basic) -"gd" = ( -/obj/structure/bed/chair/holochair{ - dir = 8 - }, -/turf/simulated/floor/holofloor/wood, -/area/holodeck/holodorm/source_basic) -"ge" = ( -/obj/effect/overlay/palmtree_r, -/turf/simulated/floor/holofloor/beach/sand, -/area/holodeck/holodorm/source_beach) -"gf" = ( -/turf/simulated/floor/holofloor/beach/sand, -/area/holodeck/holodorm/source_beach) -"gg" = ( -/obj/effect/overlay/coconut, -/turf/simulated/floor/holofloor/beach/sand, -/area/holodeck/holodorm/source_beach) -"gh" = ( -/obj/item/clothing/glasses/sunglasses, -/turf/simulated/floor/holofloor/beach/sand, -/area/holodeck/holodorm/source_beach) -"gi" = ( -/obj/effect/overlay/palmtree_l, -/turf/simulated/floor/holofloor/beach/sand, -/area/holodeck/holodorm/source_beach) -"gj" = ( -/obj/structure/flora/grass/brown, -/obj/structure/flora/tree/dead, -/turf/simulated/floor/holofloor/snow, -/area/holodeck/holodorm/source_snow) -"gk" = ( -/turf/simulated/floor/holofloor/snow, -/area/holodeck/holodorm/source_snow) -"gl" = ( -/turf/unsimulated/beach/sand{ - icon_state = "beach" - }, -/area/holodeck/holodorm/source_beach) -"gm" = ( -/obj/effect/landmark{ - name = "Wolfgirl Spawn" - }, -/turf/simulated/floor/holofloor/snow, -/area/holodeck/holodorm/source_snow) -"gn" = ( -/obj/structure/flora/grass/brown, -/turf/simulated/floor/holofloor/snow, -/area/holodeck/holodorm/source_snow) -"go" = ( -/obj/structure/flora/grass/green, -/obj/structure/flora/tree/pine, -/turf/simulated/floor/holofloor/snow, -/area/holodeck/holodorm/source_snow) -"gq" = ( -/obj/structure/bed/holobed, -/turf/simulated/floor/holofloor/wood, -/area/holodeck/holodorm/source_basic) -"gr" = ( -/turf/simulated/floor/holofloor/beach/water, -/area/holodeck/holodorm/source_beach) -"gs" = ( -/obj/structure/flora/grass/green, -/turf/simulated/floor/holofloor/snow, -/area/holodeck/holodorm/source_snow) -"gt" = ( -/obj/structure/flora/grass/both, -/turf/simulated/floor/holofloor/snow, -/area/holodeck/holodorm/source_snow) -"gN" = ( -/obj/structure/flora/ausbushes/fullgrass, -/turf/simulated/floor/holofloor/desert, -/area/holodeck/holodorm/source_desert) -"gO" = ( -/turf/simulated/floor/holofloor/desert, -/area/holodeck/holodorm/source_desert) -"gP" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/turf/simulated/floor/holofloor/desert, -/area/holodeck/holodorm/source_desert) -"gQ" = ( -/obj/structure/flora/ausbushes/brflowers, -/turf/simulated/floor/holofloor/grass, -/area/holodeck/holodorm/source_garden) -"gR" = ( -/obj/structure/flora/ausbushes/ywflowers, -/turf/simulated/floor/holofloor/grass, -/area/holodeck/holodorm/source_garden) -"gS" = ( -/turf/simulated/floor/holofloor/reinforced, -/area/holodeck/holodorm/source_off) -"hg" = ( -/obj/structure/flora/ausbushes/ywflowers, -/obj/effect/landmark{ - name = "Catgirl Spawn" - }, -/turf/simulated/floor/holofloor/grass, -/area/holodeck/holodorm/source_garden) -"hn" = ( -/obj/machinery/telecomms/relay/preset/centcom/tether/base_high, -/turf/unsimulated/floor/steel, -/area/centcom/control) -"hx" = ( -/turf/simulated/floor/holofloor/wood, -/area/holodeck/holodorm/source_seating) -"hy" = ( -/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) -"hz" = ( -/obj/structure/bed/chair/holochair, -/obj/effect/floor_decal/carpet{ - dir = 1 - }, -/turf/simulated/floor/holofloor/carpet, -/area/holodeck/holodorm/source_seating) -"hA" = ( -/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) -"hB" = ( -/obj/structure/table/holotable, -/obj/item/clothing/gloves/boxing/hologlove, -/turf/simulated/floor/holofloor/tiled/dark, -/area/holodeck/holodorm/source_boxing) -"hC" = ( -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/turf/simulated/floor/holofloor/tiled/dark, -/area/holodeck/holodorm/source_boxing) -"hD" = ( -/turf/simulated/floor/holofloor/tiled/dark, -/area/holodeck/holodorm/source_boxing) -"hE" = ( -/obj/effect/floor_decal/corner/green{ - dir = 6 - }, -/turf/simulated/floor/holofloor/tiled/dark, -/area/holodeck/holodorm/source_boxing) -"hF" = ( -/turf/simulated/floor/holofloor/space, -/area/holodeck/holodorm/source_space) -"hJ" = ( -/obj/structure/bed/chair/holochair{ - dir = 4 - }, -/obj/effect/floor_decal/carpet{ - dir = 8 - }, -/turf/simulated/floor/holofloor/carpet, -/area/holodeck/holodorm/source_seating) -"hK" = ( -/obj/structure/table/woodentable/holotable, -/turf/simulated/floor/holofloor/carpet, -/area/holodeck/holodorm/source_seating) -"hL" = ( -/obj/structure/bed/chair/holochair{ - dir = 8 - }, -/obj/effect/floor_decal/carpet{ - dir = 4 - }, -/turf/simulated/floor/holofloor/carpet, -/area/holodeck/holodorm/source_seating) -"hO" = ( -/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) -"hP" = ( -/obj/structure/bed/chair/holochair{ - dir = 1 - }, -/obj/effect/floor_decal/carpet, -/turf/simulated/floor/holofloor/carpet, -/area/holodeck/holodorm/source_seating) -"hQ" = ( -/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) -"hR" = ( -/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) -"kh" = ( -/obj/machinery/telecomms/relay/preset/centcom/tether/base_mid, -/turf/unsimulated/floor/steel, -/area/centcom/control) -"kr" = ( -/obj/machinery/telecomms/server/presets/centcomm, -/turf/unsimulated/floor/steel, -/area/centcom/control) -"kF" = ( -/obj/machinery/telecomms/relay/preset/centcom/tether/midpoint, -/turf/unsimulated/floor/steel, -/area/centcom/control) -"pb" = ( -/obj/machinery/telecomms/processor/preset_cent, -/turf/unsimulated/floor/steel, -/area/centcom/control) -"rE" = ( -/obj/machinery/telecomms/bus/preset_cent, -/turf/unsimulated/floor/steel, -/area/centcom/control) -"sF" = ( -/obj/effect/overmap/bluespace_rift, -/turf/unsimulated/map, -/area/overmap) -"uc" = ( -/turf/unsimulated/wall, -/area/centcom/suppy) -"ud" = ( -/obj/machinery/status_display/supply_display, -/turf/unsimulated/wall, -/area/centcom/suppy) -"ue" = ( -/obj/structure/closet/crate, -/turf/unsimulated/floor{ - icon_state = "vault"; - dir = 1 - }, -/area/centcom/suppy) -"uf" = ( -/turf/unsimulated/floor{ - icon_state = "dark" - }, -/area/centcom/suppy) -"ug" = ( -/obj/item/weapon/paper{ - info = "You're not supposed to be here."; - name = "unnerving letter" - }, -/turf/unsimulated/floor{ - icon_state = "dark" - }, -/area/centcom/suppy) -"vt" = ( -/obj/machinery/telecomms/relay/preset/centcom/tether/station_high, -/turf/unsimulated/floor/steel, -/area/centcom/control) -"wd" = ( -/obj/structure/sign/warning/nosmoking_2, -/turf/unsimulated/wall, -/area/centcom/simulated/terminal) -"wl" = ( -/turf/unsimulated/wall, -/area/centcom/simulated/evac) -"wy" = ( -/turf/unsimulated/wall, -/area/centcom/control) -"xe" = ( -/obj/machinery/account_database{ - name = "CentComm Accounts database" - }, -/turf/unsimulated/floor/steel, -/area/centcom/control) -"yA" = ( -/obj/machinery/telecomms/receiver/preset_cent, -/turf/unsimulated/floor/steel, -/area/centcom/control) -"zK" = ( -/obj/machinery/door/blast/regular{ - dir = 4 - }, -/turf/simulated/floor/maglev, -/area/centcom/simulated/terminal) -"Al" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/centcom/simulated/terminal) -"Ct" = ( -/obj/machinery/telecomms/relay/preset/centcom/tether/station_low, -/turf/unsimulated/floor/steel, -/area/centcom/control) -"Cw" = ( -/obj/machinery/r_n_d/server/centcom, -/turf/unsimulated/floor/steel, -/area/centcom/control) -"Dc" = ( -/obj/machinery/telecomms/relay/preset/centcom/tether/station_mid, -/turf/unsimulated/floor/steel, -/area/centcom/control) -"Dn" = ( -/obj/machinery/telecomms/relay/preset/centcom/tether/sci_outpost, -/turf/unsimulated/floor/steel, -/area/centcom/control) -"ET" = ( -/turf/simulated/floor/tiled/techfloor/grid, -/area/centcom/simulated/terminal) -"Fp" = ( -/turf/simulated/floor/maglev, -/area/centcom/simulated/terminal) -"FW" = ( -/obj/machinery/telecomms/relay/preset/centcom/underdark, -/turf/unsimulated/floor/steel, -/area/centcom/control) -"Ga" = ( -/turf/unsimulated/floor/steel, -/area/centcom/control) -"HQ" = ( -/obj/machinery/telecomms/broadcaster/preset_cent, -/turf/unsimulated/floor/steel, -/area/centcom/control) -"Iq" = ( -/obj/machinery/telecomms/hub/preset_cent, -/turf/unsimulated/floor/steel, -/area/centcom/control) -"Jx" = ( -/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/simulated/floor/tiled, -/area/centcom/simulated/terminal) -"JR" = ( -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "TelelockdownC"; - name = "Security Doors"; - opacity = 0 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/living) -"ME" = ( -/obj/machinery/computer/rdservercontrol{ - name = "Master R&D Server Controller"; - icon_state = "computer"; - dir = 1; - badmin = 1 - }, -/turf/unsimulated/floor/steel, -/area/centcom/control) -"Nq" = ( -/turf/simulated/floor/tiled, -/area/centcom/simulated/terminal) -"Nr" = ( -/obj/machinery/cryopod/robot/door/gateway, -/obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 8 - }, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/living) -"OR" = ( -/turf/simulated/shuttle/wall, -/area/shuttle/escape) -"OY" = ( -/turf/unsimulated/map, -/area/overmap) -"Pe" = ( -/obj/structure/grille, -/obj/structure/shuttle/window, -/turf/simulated/shuttle/plating, -/area/shuttle/escape) -"Pf" = ( -/obj/structure/table/woodentable{ - dir = 5 - }, -/obj/structure/flora/pottedplant{ - pixel_y = 8 - }, -/turf/simulated/floor/tiled, -/area/centcom/simulated/terminal) -"Pg" = ( -/turf/simulated/shuttle/wall/hard_corner, -/area/shuttle/escape) -"Qa" = ( -/obj/structure/closet/hydrant{ - pixel_x = -30; - pixel_y = 0 - }, -/obj/item/weapon/storage/firstaid/o2{ - layer = 2.8; - pixel_x = 4; - pixel_y = 6 - }, -/obj/item/weapon/storage/firstaid/fire, -/obj/item/weapon/storage/firstaid/toxin, -/obj/structure/bed/chair/shuttle, -/turf/simulated/shuttle/floor/white{ - color = "#cccccc" - }, -/area/shuttle/escape) -"QW" = ( -/turf/simulated/shuttle/floor/white{ - color = "#cccccc" - }, -/area/shuttle/escape) -"QX" = ( -/obj/structure/bed/chair/shuttle, -/turf/simulated/shuttle/floor/white{ - color = "#cccccc" - }, -/area/shuttle/escape) -"QY" = ( -/obj/structure/flora/pottedplant{ - icon_state = "plant-21" - }, -/turf/simulated/floor/tiled, -/area/centcom/simulated/terminal) -"Rc" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/centcom/simulated/terminal) -"Rd" = ( -/obj/structure/table/standard, -/obj/random/maintenance/clean, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/shuttle/floor/white{ - color = "#cccccc" - }, -/area/shuttle/escape) -"Re" = ( -/obj/structure/table/standard, -/turf/simulated/shuttle/floor/white{ - color = "#cccccc" - }, -/area/shuttle/escape) -"Rf" = ( -/obj/machinery/status_display{ - pixel_y = 30 - }, -/obj/structure/table/standard, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/shuttle/floor/white{ - color = "#cccccc" - }, -/area/shuttle/escape) -"Rg" = ( -/obj/structure/bed/chair/shuttle{ - dir = 1 - }, -/turf/simulated/shuttle/floor/white{ - color = "#cccccc" - }, -/area/shuttle/escape) -"Rh" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE" - }, -/turf/unsimulated/wall, -/area/centcom/simulated/terminal) -"Ri" = ( -/obj/machinery/door/airlock/glass_external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "escape_shuttle_hatch_station"; - locked = 1; - name = "Shuttle Hatch" - }, -/turf/simulated/shuttle/floor/yellow, -/area/shuttle/escape) -"Rj" = ( -/obj/machinery/door/airlock/glass_external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "escape_shuttle_hatch_offsite"; - locked = 1; - name = "Shuttle Hatch" - }, -/turf/simulated/shuttle/floor/yellow, -/area/shuttle/escape) -"Rk" = ( -/obj/structure/bed/chair/shuttle, -/obj/structure/closet/walllocker/emerglocker{ - pixel_x = -28 - }, -/turf/simulated/shuttle/floor/white{ - color = "#cccccc" - }, -/area/shuttle/escape) -"Rl" = ( -/obj/structure/bed/chair/shuttle, -/obj/structure/closet/walllocker/emerglocker{ - pixel_x = 28 - }, -/turf/simulated/shuttle/floor/white{ - color = "#cccccc" - }, -/area/shuttle/escape) -"Rm" = ( -/obj/structure/table/standard, -/obj/random/junk, -/turf/simulated/shuttle/floor/white{ - color = "#cccccc" - }, -/area/shuttle/escape) -"Ro" = ( -/obj/structure/table/standard, -/obj/random/maintenance/clean, -/turf/simulated/shuttle/floor/white{ - color = "#cccccc" - }, -/area/shuttle/escape) -"Rq" = ( -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "TelelockdownC"; - name = "Security Doors"; - opacity = 0 - }, -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/living) -"Rr" = ( -/obj/structure/flora/pottedplant{ - icon_state = "plant-22" - }, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/main_hall) -"Rs" = ( -/obj/structure/sign/nanotrasen, -/obj/effect/shuttle_landmark{ - base_area = /area/centcom/simulated/terminal; - base_turf = /turf/simulated/floor/tiled/techfloor/grid; - docking_controller = null; - landmark_tag = "escape_cc"; - name = "Escape Transit" - }, -/turf/simulated/shuttle/wall, -/area/shuttle/escape) -"Rt" = ( -/obj/structure/sign/nanotrasen, -/turf/simulated/shuttle/wall, -/area/shuttle/escape) -"Ru" = ( -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/main_hall) -"Rv" = ( -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "TelelockdownC"; - name = "Security Doors"; - opacity = 0 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/living) -"Rw" = ( -/obj/structure/table/standard, -/obj/item/clothing/head/beret/nanotrasen, -/turf/simulated/shuttle/floor/white{ - color = "#cccccc" - }, -/area/shuttle/escape) -"Rx" = ( -/obj/structure/table/standard, -/obj/random/plushie, -/turf/simulated/shuttle/floor/white{ - color = "#cccccc" - }, -/area/shuttle/escape) -"Ry" = ( -/obj/structure/bed/chair/shuttle{ - dir = 1 - }, -/obj/structure/closet/walllocker/emerglocker{ - pixel_x = -28 - }, -/turf/simulated/shuttle/floor/white{ - color = "#cccccc" - }, -/area/shuttle/escape) -"Rz" = ( -/obj/structure/bed/chair/shuttle{ - dir = 1 - }, -/obj/structure/closet/walllocker/emerglocker{ - pixel_x = 28 - }, -/turf/simulated/shuttle/floor/white{ - color = "#cccccc" - }, -/area/shuttle/escape) -"RA" = ( -/obj/structure/grille, -/obj/structure/shuttle/window, -/turf/simulated/shuttle/floor/white, -/area/shuttle/escape) -"RC" = ( -/obj/effect/floor_decal/industrial/outline/blue, -/turf/simulated/shuttle/floor/white{ - color = "#cccccc" - }, -/area/shuttle/escape) -"RD" = ( -/obj/structure/bed/chair/shuttle{ - dir = 1 - }, -/obj/machinery/light, -/turf/simulated/shuttle/floor/white{ - color = "#cccccc" - }, -/area/shuttle/escape) -"RE" = ( -/obj/effect/floor_decal/industrial/outline/blue, -/obj/machinery/light, -/turf/simulated/shuttle/floor/white{ - color = "#cccccc" - }, -/area/shuttle/escape) -"RF" = ( -/obj/random/junk, -/turf/simulated/shuttle/floor/white{ - color = "#cccccc" - }, -/area/shuttle/escape) -"RG" = ( -/obj/structure/bed/chair/shuttle{ - dir = 1 - }, -/obj/random/soap, -/turf/simulated/shuttle/floor/white{ - color = "#cccccc" - }, -/area/shuttle/escape) -"Sl" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 8 - }, -/obj/machinery/camera/network/crescent{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/centcom/simulated/terminal) -"Sm" = ( -/turf/simulated/shuttle/wall/alien/blue/hard_corner, -/area/unknown/dorm4) -"Sn" = ( -/turf/simulated/shuttle/wall/alien/blue, -/area/unknown/dorm4) -"So" = ( -/obj/machinery/recharge_station, -/turf/simulated/shuttle/floor/alienplating, -/area/unknown/dorm4) -"Sp" = ( -/turf/simulated/shuttle/floor/alienplating, -/area/unknown/dorm4) -"Sq" = ( -/obj/structure/toilet, -/turf/simulated/shuttle/floor/alienplating, -/area/unknown/dorm4) -"Sr" = ( -/obj/machinery/shower{ - pixel_y = 13 - }, -/obj/structure/curtain/open/shower, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 5 - }, -/turf/simulated/shuttle/floor/alienplating, -/area/unknown/dorm4) -"Ss" = ( -/obj/machinery/door/airlock/alien/blue/public, -/turf/simulated/shuttle/floor/alienplating, -/area/unknown/dorm4) -"Su" = ( -/obj/structure/closet/alien, -/turf/simulated/shuttle/floor/alien, -/area/unknown/dorm4) -"Sw" = ( -/turf/simulated/shuttle/floor/alien, -/area/unknown/dorm4) -"Sx" = ( -/obj/structure/fans, -/turf/simulated/shuttle/floor/alien, -/area/unknown/dorm4) -"Sz" = ( -/obj/machinery/smartfridge/survival_pod, -/obj/item/weapon/storage/mre/menu11, -/obj/item/weapon/storage/mre/menu11, -/obj/item/weapon/storage/mre/menu13, -/obj/item/weapon/storage/mre/menu13, -/obj/item/weapon/storage/mre/menu10, -/obj/item/weapon/storage/mre/menu10, -/obj/item/weapon/storage/mre/menu9, -/obj/item/weapon/storage/mre/menu9, -/obj/item/weapon/storage/mre/random, -/obj/item/weapon/storage/mre/random, -/obj/item/weapon/storage/mre/random, -/obj/item/weapon/storage/mre/random, -/obj/item/weapon/storage/mre/random, -/obj/item/weapon/storage/mre/random, -/obj/item/weapon/storage/mre/random, -/obj/item/weapon/storage/mre/random, -/obj/item/weapon/towel/random, -/obj/item/weapon/towel/random, -/turf/simulated/shuttle/floor/alien, -/area/unknown/dorm4) -"SA" = ( -/obj/machinery/sleeper/survival_pod, -/turf/simulated/shuttle/floor/alien, -/area/unknown/dorm4) -"SB" = ( -/obj/structure/table/survival_pod, -/turf/simulated/shuttle/floor/alien, -/area/unknown/dorm4) -"SC" = ( -/obj/item/device/perfect_tele_beacon/stationary{ - tele_name = "Unknown"; - tele_network = "unkfour" - }, -/turf/simulated/shuttle/floor/alienplating, -/area/unknown/dorm4) -"SD" = ( -/obj/item/weapon/bedsheet/rddouble, -/obj/structure/bed/double/padded, -/turf/simulated/shuttle/floor/alien, -/area/unknown/dorm4) -"SE" = ( -/obj/structure/prop/alien/computer{ - dir = 8 - }, -/turf/simulated/shuttle/floor/alien, -/area/unknown/dorm4) -"SF" = ( -/obj/structure/prop/alien/dispenser, -/turf/simulated/shuttle/floor/alien, -/area/unknown/dorm4) -"SG" = ( -/obj/machinery/door/blast/regular{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/centcom/simulated/terminal) -"SH" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/centcom/simulated/terminal) -"SK" = ( -/obj/structure/closet/secure_closet/personal, -/turf/simulated/shuttle/floor/alien, -/area/unknown/dorm4) -"SN" = ( -/obj/structure/bed/chair/comfy/black, -/turf/simulated/shuttle/floor/alien, -/area/unknown/dorm4) -"SO" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 4 - }, -/turf/simulated/shuttle/floor/alien, -/area/unknown/dorm4) -"SP" = ( -/obj/structure/table/alien, -/turf/simulated/shuttle/floor/alien, -/area/unknown/dorm4) -"SQ" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/teleport/hub, -/turf/simulated/shuttle/floor/voidcraft, -/area/unknown/dorm4) -"SR" = ( -/obj/machinery/teleport/station, -/turf/simulated/shuttle/floor/alienplating, -/area/unknown/dorm4) -"SS" = ( -/obj/machinery/computer/teleporter{ - dir = 1 - }, -/turf/simulated/shuttle/floor/alienplating, -/area/unknown/dorm4) -"ST" = ( -/obj/structure/prop/alien/power, -/turf/simulated/shuttle/floor/alienplating, -/area/unknown/dorm4) -"SV" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/main_hall) -"SW" = ( -/obj/item/device/perfect_tele_beacon/stationary{ - tele_name = "Transfer"; - tele_network = "centcom" - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/living) -"SX" = ( -/turf/simulated/shuttle/wall/alien/blue/hard_corner, -/area/unknown/dorm3) -"SY" = ( -/turf/simulated/shuttle/wall/alien/blue, -/area/unknown/dorm3) -"SZ" = ( -/obj/machinery/recharge_station, -/turf/simulated/shuttle/floor/alienplating, -/area/unknown/dorm3) -"Ta" = ( -/turf/simulated/shuttle/floor/alienplating, -/area/unknown/dorm3) -"Tb" = ( -/obj/structure/toilet, -/turf/simulated/shuttle/floor/alienplating, -/area/unknown/dorm3) -"Tc" = ( -/obj/machinery/shower{ - pixel_y = 13 - }, -/obj/structure/curtain/open/shower, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 5 - }, -/turf/simulated/shuttle/floor/alienplating, -/area/unknown/dorm3) -"Td" = ( -/obj/machinery/door/airlock/alien/blue/public, -/turf/simulated/shuttle/floor/alienplating, -/area/unknown/dorm3) -"Tf" = ( -/obj/machinery/cryopod/robot/door/gateway, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/living) -"Th" = ( -/obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 8 - }, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/living) -"Ti" = ( -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/living) -"Tj" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/living) -"Tk" = ( -/obj/structure/closet/alien, -/turf/simulated/shuttle/floor/alien, -/area/unknown/dorm3) -"Tl" = ( -/turf/simulated/shuttle/floor/alien, -/area/unknown/dorm3) -"Tm" = ( -/obj/structure/fans, -/turf/simulated/shuttle/floor/alien, -/area/unknown/dorm3) -"To" = ( -/obj/machinery/smartfridge/survival_pod, -/obj/item/weapon/storage/mre/menu11, -/obj/item/weapon/storage/mre/menu11, -/obj/item/weapon/storage/mre/menu13, -/obj/item/weapon/storage/mre/menu13, -/obj/item/weapon/storage/mre/menu10, -/obj/item/weapon/storage/mre/menu10, -/obj/item/weapon/storage/mre/menu9, -/obj/item/weapon/storage/mre/menu9, -/obj/item/weapon/storage/mre/random, -/obj/item/weapon/storage/mre/random, -/obj/item/weapon/storage/mre/random, -/obj/item/weapon/storage/mre/random, -/obj/item/weapon/storage/mre/random, -/obj/item/weapon/storage/mre/random, -/obj/item/weapon/storage/mre/random, -/obj/item/weapon/storage/mre/random, -/obj/item/weapon/towel/random, -/obj/item/weapon/towel/random, -/turf/simulated/shuttle/floor/alien, -/area/unknown/dorm3) -"Tp" = ( -/obj/machinery/sleeper/survival_pod, -/turf/simulated/shuttle/floor/alien, -/area/unknown/dorm3) -"Tq" = ( -/obj/structure/table/survival_pod, -/turf/simulated/shuttle/floor/alien, -/area/unknown/dorm3) -"Tr" = ( -/obj/item/device/perfect_tele_beacon/stationary{ - tele_name = "Unknown"; - tele_network = "unkthree" - }, -/turf/simulated/shuttle/floor/alienplating, -/area/unknown/dorm3) -"Tt" = ( -/obj/item/weapon/bedsheet/rddouble, -/obj/structure/bed/double/padded, -/turf/simulated/shuttle/floor/alien, -/area/unknown/dorm3) -"Tu" = ( -/obj/structure/prop/alien/computer{ - dir = 8 - }, -/turf/simulated/shuttle/floor/alien, -/area/unknown/dorm3) -"Tx" = ( -/obj/structure/prop/alien/dispenser, -/turf/simulated/shuttle/floor/alien, -/area/unknown/dorm3) -"Ty" = ( -/obj/structure/closet/secure_closet/personal, -/turf/simulated/shuttle/floor/alien, -/area/unknown/dorm3) -"Tz" = ( -/obj/structure/bed/chair/comfy/black, -/turf/simulated/shuttle/floor/alien, -/area/unknown/dorm3) -"TA" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 4 - }, -/turf/simulated/shuttle/floor/alien, -/area/unknown/dorm3) -"TB" = ( -/obj/structure/table/alien, -/turf/simulated/shuttle/floor/alien, -/area/unknown/dorm3) -"TC" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/teleport/hub, -/turf/simulated/shuttle/floor/voidcraft, -/area/unknown/dorm3) -"TD" = ( -/obj/machinery/teleport/station, -/turf/simulated/shuttle/floor/alienplating, -/area/unknown/dorm3) -"TE" = ( -/obj/machinery/computer/teleporter{ - dir = 1 - }, -/turf/simulated/shuttle/floor/alienplating, -/area/unknown/dorm3) -"TH" = ( -/obj/structure/prop/alien/power, -/turf/simulated/shuttle/floor/alienplating, -/area/unknown/dorm3) -"TI" = ( -/obj/effect/wingrille_spawn/reinforced/crescent, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/centcom/simulated/terminal) -"TJ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/multi_tile/glass, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/main_hall) -"TK" = ( -/turf/simulated/shuttle/wall/alien/hard_corner, -/area/unknown/dorm2) -"TM" = ( -/turf/simulated/shuttle/wall/alien, -/area/unknown/dorm2) -"TN" = ( -/obj/machinery/recharge_station, -/turf/simulated/shuttle/floor/alienplating, -/area/unknown/dorm2) -"TP" = ( -/turf/simulated/shuttle/floor/alienplating, -/area/unknown/dorm2) -"TQ" = ( -/obj/structure/toilet, -/turf/simulated/shuttle/floor/alienplating, -/area/unknown/dorm2) -"TR" = ( -/obj/machinery/shower{ - pixel_y = 13 - }, -/obj/structure/curtain/open/shower, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 5 - }, -/turf/simulated/shuttle/floor/alienplating, -/area/unknown/dorm2) -"TS" = ( -/obj/machinery/door/airlock/alien/public, -/turf/simulated/shuttle/floor/alienplating, -/area/unknown/dorm2) -"TT" = ( -/obj/structure/closet/alien, -/turf/simulated/shuttle/floor/alien, -/area/unknown/dorm2) -"TU" = ( -/turf/simulated/shuttle/floor/alien, -/area/unknown/dorm2) -"TV" = ( -/obj/structure/fans, -/turf/simulated/shuttle/floor/alien, -/area/unknown/dorm2) -"TW" = ( -/obj/machinery/smartfridge/survival_pod, -/obj/item/weapon/storage/mre/menu11, -/obj/item/weapon/storage/mre/menu11, -/obj/item/weapon/storage/mre/menu13, -/obj/item/weapon/storage/mre/menu13, -/obj/item/weapon/storage/mre/menu10, -/obj/item/weapon/storage/mre/menu10, -/obj/item/weapon/storage/mre/menu9, -/obj/item/weapon/storage/mre/menu9, -/obj/item/weapon/storage/mre/random, -/obj/item/weapon/storage/mre/random, -/obj/item/weapon/storage/mre/random, -/obj/item/weapon/storage/mre/random, -/obj/item/weapon/storage/mre/random, -/obj/item/weapon/storage/mre/random, -/obj/item/weapon/storage/mre/random, -/obj/item/weapon/storage/mre/random, -/obj/item/weapon/towel/random, -/obj/item/weapon/towel/random, -/turf/simulated/shuttle/floor/alien, -/area/unknown/dorm2) -"TX" = ( -/obj/machinery/sleeper/survival_pod, -/turf/simulated/shuttle/floor/alien, -/area/unknown/dorm2) -"TY" = ( -/obj/machinery/door/firedoor, -/turf/unsimulated/floor/steel, -/area/centcom/simulated/terminal) -"TZ" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/evac) -"Ua" = ( -/obj/structure/table/survival_pod, -/turf/simulated/shuttle/floor/alien, -/area/unknown/dorm2) -"Ub" = ( -/obj/item/device/perfect_tele_beacon/stationary{ - tele_name = "Unknown"; - tele_network = "unktwo" - }, -/turf/simulated/shuttle/floor/alienplating, -/area/unknown/dorm2) -"Uc" = ( -/obj/item/weapon/bedsheet/rddouble, -/obj/structure/bed/double/padded, -/turf/simulated/shuttle/floor/alien, -/area/unknown/dorm2) -"Ud" = ( -/obj/structure/prop/alien/computer{ - dir = 8 - }, -/turf/simulated/shuttle/floor/alien, -/area/unknown/dorm2) -"Uf" = ( -/obj/structure/prop/alien/dispenser, -/turf/simulated/shuttle/floor/alien, -/area/unknown/dorm2) -"Ug" = ( -/obj/structure/closet/secure_closet/personal, -/turf/simulated/shuttle/floor/alien, -/area/unknown/dorm2) -"Uh" = ( -/obj/structure/bed/chair/comfy/black, -/turf/simulated/shuttle/floor/alien, -/area/unknown/dorm2) -"Ui" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 4 - }, -/turf/simulated/shuttle/floor/alien, -/area/unknown/dorm2) -"Uj" = ( -/obj/structure/table/alien, -/turf/simulated/shuttle/floor/alien, -/area/unknown/dorm2) -"Uk" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/teleport/hub, -/turf/simulated/shuttle/floor/voidcraft, -/area/unknown/dorm2) -"Ul" = ( -/obj/machinery/teleport/station, -/turf/simulated/shuttle/floor/alienplating, -/area/unknown/dorm2) -"Um" = ( -/obj/machinery/computer/teleporter{ - dir = 1 - }, -/turf/simulated/shuttle/floor/alienplating, -/area/unknown/dorm2) -"Uo" = ( -/obj/structure/prop/alien/power, -/turf/simulated/shuttle/floor/alienplating, -/area/unknown/dorm2) -"Up" = ( -/obj/effect/floor_decal/industrial/warning/dust, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/evac) -"Ur" = ( -/obj/effect/floor_decal/rust, -/obj/effect/floor_decal/industrial/warning/dust, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/evac) -"Us" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/evac) -"Ut" = ( -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/evac) -"Uu" = ( -/obj/effect/floor_decal/industrial/warning/dust, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/evac) -"Uv" = ( -/obj/effect/floor_decal/industrial/outline, -/obj/structure/bed/chair, -/turf/unsimulated/floor/steel, -/area/centcom/simulated/main_hall) -"Uw" = ( -/turf/simulated/shuttle/wall/alien/hard_corner, -/area/unknown/dorm1) -"Ux" = ( -/turf/simulated/shuttle/wall/alien, -/area/unknown/dorm1) -"Uz" = ( -/obj/machinery/recharge_station, -/turf/simulated/shuttle/floor/alienplating, -/area/unknown/dorm1) -"UA" = ( -/turf/simulated/shuttle/floor/alienplating, -/area/unknown/dorm1) -"UC" = ( -/obj/structure/toilet, -/turf/simulated/shuttle/floor/alienplating, -/area/unknown/dorm1) -"UD" = ( -/obj/machinery/shower{ - pixel_y = 13 - }, -/obj/structure/curtain/open/shower, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 5 - }, -/turf/simulated/shuttle/floor/alienplating, -/area/unknown/dorm1) -"UE" = ( -/obj/effect/floor_decal/industrial/outline, -/obj/structure/bed/chair, -/obj/machinery/status_display{ - pixel_y = 29 - }, -/turf/unsimulated/floor/steel, -/area/centcom/simulated/main_hall) -"UF" = ( -/obj/machinery/door/airlock/alien/public, -/turf/simulated/shuttle/floor/alienplating, -/area/unknown/dorm1) -"UG" = ( -/obj/structure/closet/alien, -/turf/simulated/shuttle/floor/alien, -/area/unknown/dorm1) -"UH" = ( -/turf/simulated/shuttle/floor/alien, -/area/unknown/dorm1) -"UI" = ( -/obj/structure/fans, -/turf/simulated/shuttle/floor/alien, -/area/unknown/dorm1) -"UJ" = ( -/obj/machinery/smartfridge/survival_pod, -/obj/item/weapon/storage/mre/menu11, -/obj/item/weapon/storage/mre/menu11, -/obj/item/weapon/storage/mre/menu13, -/obj/item/weapon/storage/mre/menu13, -/obj/item/weapon/storage/mre/menu10, -/obj/item/weapon/storage/mre/menu10, -/obj/item/weapon/storage/mre/menu9, -/obj/item/weapon/storage/mre/menu9, -/obj/item/weapon/storage/mre/random, -/obj/item/weapon/storage/mre/random, -/obj/item/weapon/storage/mre/random, -/obj/item/weapon/storage/mre/random, -/obj/item/weapon/storage/mre/random, -/obj/item/weapon/storage/mre/random, -/obj/item/weapon/storage/mre/random, -/obj/item/weapon/storage/mre/random, -/obj/item/weapon/towel/random, -/obj/item/weapon/towel/random, -/turf/simulated/shuttle/floor/alien, -/area/unknown/dorm1) -"UK" = ( -/obj/machinery/sleeper/survival_pod, -/turf/simulated/shuttle/floor/alien, -/area/unknown/dorm1) -"UM" = ( -/obj/structure/table/survival_pod, -/turf/simulated/shuttle/floor/alien, -/area/unknown/dorm1) -"UN" = ( -/obj/item/device/perfect_tele_beacon/stationary{ - tele_name = "Unknown"; - tele_network = "unkone" - }, -/turf/simulated/shuttle/floor/alienplating, -/area/unknown/dorm1) -"UP" = ( -/obj/item/weapon/bedsheet/rddouble, -/obj/structure/bed/double/padded, -/turf/simulated/shuttle/floor/alien, -/area/unknown/dorm1) -"UQ" = ( -/obj/structure/prop/alien/computer{ - dir = 8 - }, -/turf/simulated/shuttle/floor/alien, -/area/unknown/dorm1) -"UR" = ( -/obj/structure/prop/alien/dispenser, -/turf/simulated/shuttle/floor/alien, -/area/unknown/dorm1) -"US" = ( -/obj/structure/closet/secure_closet/personal, -/turf/simulated/shuttle/floor/alien, -/area/unknown/dorm1) -"UT" = ( -/obj/structure/bed/chair/comfy/black, -/turf/simulated/shuttle/floor/alien, -/area/unknown/dorm1) -"UU" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 4 - }, -/turf/simulated/shuttle/floor/alien, -/area/unknown/dorm1) -"UV" = ( -/obj/structure/table/alien, -/turf/simulated/shuttle/floor/alien, -/area/unknown/dorm1) -"UW" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/teleport/hub, -/turf/simulated/shuttle/floor/voidcraft, -/area/unknown/dorm1) -"UX" = ( -/obj/machinery/teleport/station, -/turf/simulated/shuttle/floor/alienplating, -/area/unknown/dorm1) -"UY" = ( -/obj/machinery/computer/teleporter{ - dir = 1 - }, -/turf/simulated/shuttle/floor/alienplating, -/area/unknown/dorm1) -"UZ" = ( -/obj/structure/prop/alien/power, -/turf/simulated/shuttle/floor/alienplating, -/area/unknown/dorm1) -"Va" = ( -/obj/effect/floor_decal/rust/steel_decals_rusted2, -/obj/effect/floor_decal/industrial/warning/dust, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/evac) -"Vb" = ( -/obj/machinery/recharge_station, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/bathroom) -"Vc" = ( -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/bathroom) -"Vd" = ( -/turf/unsimulated/wall, -/area/centcom/simulated/medical) -"Ve" = ( -/obj/effect/wingrille_spawn/reinforced/crescent, -/obj/structure/sign/department/medbay, -/turf/unsimulated/floor{ - icon_state = "plating"; - name = "plating" - }, -/area/centcom/simulated/medical) -"Vf" = ( -/obj/machinery/door/airlock{ - name = "Unit 4" - }, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/bathroom) -"Vg" = ( -/turf/unsimulated/wall, -/area/centcom/simulated/living) -"Vh" = ( -/obj/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 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/centcom/simulated/terminal) -"Vi" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/evac) -"Vj" = ( -/turf/simulated/floor/tiled/steel, -/area/shuttle/large_escape_pod2/centcom{ - base_turf = /turf/simulated/floor/tiled/steel_dirty/virgo3b - }) -"Vk" = ( -/turf/unsimulated/wall, -/area/centcom/simulated/bathroom) -"Vl" = ( -/obj/structure/sign/warning{ - name = "\improper STAND AWAY FROM TRACK EDGE" - }, -/turf/unsimulated/wall, -/area/centcom/simulated/living) -"Vm" = ( -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled/steel, -/area/shuttle/large_escape_pod2/centcom{ - base_turf = /turf/simulated/floor/tiled/steel_dirty/virgo3b - }) -"Vn" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 10 - }, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/evac) -"Vo" = ( -/obj/machinery/door/blast/regular{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/evac) -"Vp" = ( -/obj/effect/floor_decal/rust/part_rusted3, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 9 - }, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/evac) -"Vq" = ( -/obj/effect/floor_decal/rust/part_rusted3, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/evac) -"Vr" = ( -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/evac) -"Vs" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/evac) -"Vt" = ( -/obj/effect/floor_decal/rust/mono_rusted3, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/evac) -"Vu" = ( -/turf/unsimulated/wall, -/area/centcom/simulated/main_hall) -"Vv" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/unsimulated/floor/steel, -/area/centcom/simulated/terminal) -"Vw" = ( -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/main_hall) -"Vy" = ( -/obj/machinery/door/airlock{ - name = "Unit 3" - }, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/bathroom) -"Vz" = ( -/obj/machinery/light/small{ - dir = 8; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/bathroom) -"VB" = ( -/obj/effect/floor_decal/sign/dock/one, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/evac) -"VD" = ( -/obj/effect/floor_decal/corner_steel_grid/diagonal, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/evac) -"VE" = ( -/obj/effect/shuttle_landmark{ - base_area = /area/centcom/simulated/evac; - base_turf = /turf/unsimulated/floor/steel; - docking_controller = null; - landmark_tag = "escapepod1_cc"; - name = "Centcom Recovery Area" - }, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/evac) -"VF" = ( -/obj/effect/floor_decal/sign/dock/two, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/evac) -"VI" = ( -/turf/unsimulated/wall, -/area/centcom/simulated/security{ - name = "\improper CentCom Security Arrivals" - }) -"VJ" = ( -/obj/effect/floor_decal/rust, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/evac) -"VK" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/multi_tile/glass, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/restaurant) -"VL" = ( -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/restaurant) -"VM" = ( -/turf/unsimulated/wall, -/area/centcom/simulated/restaurant) -"VN" = ( -/obj/effect/floor_decal/corner_steel_grid/diagonal, -/turf/simulated/floor/tiled/steel, -/area/shuttle/large_escape_pod2/centcom{ - base_turf = /turf/simulated/floor/tiled/steel_dirty/virgo3b - }) -"VO" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 9 - }, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/evac) -"VP" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/evac) -"VQ" = ( -/turf/simulated/floor/wood, -/area/centcom/simulated/restaurant) -"VR" = ( -/obj/structure/bed/chair/wood/wings, -/turf/simulated/floor/wood, -/area/centcom/simulated/restaurant) -"VS" = ( -/obj/effect/floor_decal/corner_steel_grid/diagonal, -/obj/effect/floor_decal/industrial/warning/dust/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/evac) -"VU" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/evac) -"VV" = ( -/obj/effect/floor_decal/rust, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/evac) -"VX" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/evac) -"VY" = ( -/obj/structure/closet/crate/bin, -/turf/simulated/floor/wood, -/area/centcom/simulated/restaurant) -"VZ" = ( -/obj/structure/bed/chair/wood/wings{ - icon_state = "wooden_chair_wings"; - dir = 4 - }, -/turf/simulated/floor/wood, -/area/centcom/simulated/restaurant) -"Wb" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/reagent_containers/food/snacks/pastatomato, -/turf/simulated/floor/wood, -/area/centcom/simulated/restaurant) -"Wc" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/reagent_containers/food/snacks/meatballspagetti, -/turf/simulated/floor/wood, -/area/centcom/simulated/restaurant) -"Wd" = ( -/obj/structure/bed/chair/wood/wings{ - icon_state = "wooden_chair_wings"; - dir = 8 - }, -/turf/simulated/floor/wood, -/area/centcom/simulated/restaurant) -"We" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/reagent_containers/food/snacks/fries, -/turf/simulated/floor/wood, -/area/centcom/simulated/restaurant) -"Wh" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 9 - }, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/evac) -"Wi" = ( -/obj/machinery/door/airlock{ - name = "Unisex Restrooms" - }, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/bathroom) -"Wj" = ( -/obj/effect/blocker, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/living) -"Wk" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/reagent_containers/food/snacks/cheeseburger{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/weapon/reagent_containers/food/snacks/cheeseburger, -/turf/simulated/floor/wood, -/area/centcom/simulated/restaurant) -"Wl" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/reagent_containers/food/snacks/kitsuneudon, -/turf/simulated/floor/wood, -/area/centcom/simulated/restaurant) -"Wm" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/reagent_containers/food/snacks/lasagna, -/turf/simulated/floor/wood, -/area/centcom/simulated/restaurant) -"Wo" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/reagent_containers/food/snacks/hotdog, -/obj/item/weapon/reagent_containers/food/snacks/hotdog{ - pixel_x = -5; - pixel_y = -3 - }, -/turf/simulated/floor/wood, -/area/centcom/simulated/restaurant) -"Wp" = ( -/obj/machinery/cryopod/robot/door/dorms, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/living) -"Wq" = ( -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/machinery/computer/cryopod/dorms{ - name = "Company Property Retention System"; - pixel_x = 0; - pixel_y = 32 - }, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/living) -"Ws" = ( -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/living) -"Wt" = ( -/obj/machinery/porta_turret/crescent{ - density = 1 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/security{ - name = "\improper CentCom Security Arrivals" - }) -"Wu" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/reagent_containers/food/snacks/bigbiteburger, -/turf/simulated/floor/wood, -/area/centcom/simulated/restaurant) -"Wv" = ( -/obj/effect/floor_decal/industrial/outline, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/security{ - name = "\improper CentCom Security Arrivals" - }) -"Wz" = ( -/obj/structure/bed/chair/wood/wings{ - icon_state = "wooden_chair_wings"; - dir = 1 - }, -/turf/simulated/floor/wood, -/area/centcom/simulated/restaurant) -"WA" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/reagent_containers/food/snacks/grilledcheese, -/turf/simulated/floor/wood, -/area/centcom/simulated/restaurant) -"WB" = ( -/obj/effect/wingrille_spawn/reinforced/crescent, -/turf/simulated/floor/plating, -/area/centcom/simulated/restaurant) -"WC" = ( -/obj/effect/wingrille_spawn/reinforced/crescent, -/turf/simulated/floor/plating, -/area/centcom/simulated/medical) -"WE" = ( -/obj/effect/wingrille_spawn/reinforced/crescent, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "FrontlockC2"; - name = "Security Door"; - opacity = 0 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/centcom/simulated/security{ - name = "\improper CentCom Security Arrivals" - }) -"WF" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/reagent_containers/food/snacks/meatballsoup, -/turf/simulated/floor/wood, -/area/centcom/simulated/restaurant) -"WH" = ( -/obj/item/weapon/stool/padded, -/turf/simulated/floor/wood, -/area/centcom/simulated/bar) -"WI" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/reagent_containers/food/snacks/roastbeef, -/turf/simulated/floor/wood, -/area/centcom/simulated/restaurant) -"WJ" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/brigdoor/northleft{ - req_access = list(63); - req_one_access = list(1) - }, -/obj/item/weapon/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/item/weapon/pen, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "FrontlockC2"; - name = "Security Door"; - opacity = 0 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/centcom/simulated/security{ - name = "\improper CentCom Security Arrivals" - }) -"WK" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/window/brigdoor/northright{ - req_access = list(63); - req_one_access = list(1) - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "FrontlockC2"; - name = "Security Door"; - opacity = 0 - }, -/obj/machinery/computer/skills, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/centcom/simulated/security{ - name = "\improper CentCom Security Arrivals" - }) -"WL" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/reagent_containers/food/snacks/meatsteak, -/turf/simulated/floor/wood, -/area/centcom/simulated/restaurant) -"WN" = ( -/obj/structure/bed/chair/wood/wings{ - icon_state = "wooden_chair_wings"; - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/centcom/simulated/restaurant) -"WO" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/reagent_containers/food/drinks/bottle/cola, -/turf/simulated/floor/wood, -/area/centcom/simulated/bar) -"WP" = ( -/obj/structure/table/woodentable, -/obj/machinery/cash_register/civilian, -/turf/simulated/floor/wood, -/area/centcom/simulated/bar) -"WQ" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/reagent_containers/food/drinks/bottle/space_mountain_wind, -/turf/simulated/floor/wood, -/area/centcom/simulated/bar) -"WR" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/reagent_containers/food/snacks/toastedsandwich{ - pixel_w = 0; - pixel_x = 0; - pixel_y = 10 - }, -/turf/simulated/floor/wood, -/area/centcom/simulated/bar) -"WS" = ( -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"WT" = ( -/obj/structure/bed/chair, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"WU" = ( -/obj/structure/table/standard, -/obj/item/weapon/reagent_containers/spray/cleaner{ - desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; - name = "Surgery Cleaner"; - pixel_x = 2; - pixel_y = 2 - }, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"WV" = ( -/obj/structure/table/woodentable, -/turf/simulated/floor/wood, -/area/centcom/simulated/bar) -"WW" = ( -/turf/simulated/floor/wood, -/area/centcom/simulated/bar) -"WZ" = ( -/obj/machinery/vending/coffee, -/turf/simulated/floor/wood, -/area/centcom/simulated/restaurant) -"Xa" = ( -/obj/machinery/vending/sovietsoda, -/turf/simulated/floor/wood, -/area/centcom/simulated/restaurant) -"Xb" = ( -/obj/machinery/vending/snack, -/turf/simulated/floor/wood, -/area/centcom/simulated/restaurant) -"Xc" = ( -/obj/machinery/vending/cola, -/turf/simulated/floor/wood, -/area/centcom/simulated/restaurant) -"Xd" = ( -/obj/machinery/vending/cigarette, -/turf/simulated/floor/wood, -/area/centcom/simulated/restaurant) -"Xe" = ( -/obj/machinery/smartfridge/drinks, -/turf/simulated/floor/wood, -/area/centcom/simulated/bar) -"Xf" = ( -/obj/machinery/vending/boozeomat, -/turf/simulated/floor/wood, -/area/centcom/simulated/bar) -"Xg" = ( -/obj/structure/table/reinforced, -/obj/machinery/chemical_dispenser/bar_soft/full, -/turf/simulated/floor/wood, -/area/centcom/simulated/bar) -"Xh" = ( -/obj/structure/table/reinforced, -/obj/machinery/chemical_dispenser/bar_alc/full, -/turf/simulated/floor/wood, -/area/centcom/simulated/bar) -"Xi" = ( -/turf/unsimulated/wall, -/area/centcom/simulated/bar) -"Xj" = ( -/obj/structure/table/standard, -/obj/item/weapon/storage/firstaid/surgery, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"Xk" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/multi_tile/glass, -/turf/unsimulated/floor/steel{ - icon_state = "white" - }, -/area/centcom/simulated/medical) -"Xl" = ( -/turf/unsimulated/map/edge, -/area/overmap) -"Xm" = ( -/obj/machinery/door/firedoor, -/turf/unsimulated/floor/steel{ - icon_state = "white" - }, -/area/centcom/simulated/medical) -"Xn" = ( -/obj/structure/sign/greencross, -/turf/unsimulated/wall, -/area/centcom/simulated/medical) -"Xp" = ( -/obj/structure/toilet{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/bathroom) -"Xr" = ( -/obj/structure/bed/chair, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"Xs" = ( -/obj/machinery/computer/card{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - broadcasting = 0; - dir = 1; - frequency = 1475; - icon_state = "intercom"; - listening = 1; - name = "Station Intercom (Security)"; - pixel_x = 0; - pixel_y = 27 - }, -/turf/simulated/floor/tiled, -/area/centcom/simulated/security{ - name = "\improper CentCom Security Arrivals" - }) -"Xv" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/centcom/simulated/security{ - name = "\improper CentCom Security Arrivals" - }) -"Xw" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/centcom/simulated/security{ - name = "\improper CentCom Security Arrivals" - }) -"Xx" = ( -/obj/machinery/computer/security{ - dir = 8 - }, -/obj/machinery/camera/network/crescent, -/turf/simulated/floor/tiled, -/area/centcom/simulated/security{ - name = "\improper CentCom Security Arrivals" - }) -"Xy" = ( -/obj/structure/table/standard, -/obj/item/stack/nanopaste, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"Xz" = ( -/obj/effect/floor_decal/industrial/loading, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"XA" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"XB" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/sink{ - dir = 4; - icon_state = "sink"; - pixel_x = 12; - pixel_y = 8 - }, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"XC" = ( -/obj/machinery/computer/secure_data{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/centcom/simulated/security{ - name = "\improper CentCom Security Arrivals" - }) -"XD" = ( -/turf/simulated/floor/tiled, -/area/centcom/simulated/security{ - name = "\improper CentCom Security Arrivals" - }) -"XE" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/centcom/simulated/terminal) -"XH" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/centcom/simulated/terminal) -"XJ" = ( -/obj/structure/table/glass, -/obj/item/device/healthanalyzer/improved, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"XK" = ( -/obj/structure/table/glass, -/obj/machinery/computer/med_data{ - icon_keyboard = "laptop_key"; - icon_screen = "medlaptop"; - icon_state = "laptop"; - light_color = "#00b000" - }, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"XM" = ( -/obj/structure/table/glass{ - desc = "It's a table, it has some scracthes..they say 'Mlem'." - }, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"XN" = ( -/obj/structure/table/glass, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"XP" = ( -/obj/machinery/oxygen_pump/anesthetic, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"XQ" = ( -/obj/machinery/optable, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1" - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"XR" = ( -/obj/machinery/computer/operating{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"XS" = ( -/obj/structure/closet/crate/freezer, -/obj/item/weapon/reagent_containers/blood/OMinus, -/obj/item/weapon/reagent_containers/blood/OMinus, -/obj/item/weapon/reagent_containers/blood/OMinus, -/obj/item/weapon/reagent_containers/blood/OMinus, -/obj/item/weapon/reagent_containers/blood/OMinus, -/obj/item/weapon/reagent_containers/blood/OMinus, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"XU" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/evac) -"XV" = ( -/obj/machinery/turretid/stun{ - check_access = 0; - check_anomalies = 0; - check_records = 0; - check_synth = 0; - check_weapons = 0; - control_area = "\improper CentCom Security Arrivals"; - pixel_x = 32; - req_access = list(101); - req_one_access = list(101) - }, -/turf/simulated/floor/tiled, -/area/centcom/simulated/security{ - name = "\improper CentCom Security Arrivals" - }) -"XX" = ( -/obj/machinery/computer/crew{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"XZ" = ( -/obj/structure/bed/chair/office/dark, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"Ya" = ( -/obj/machinery/camera/network/crescent, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"Yb" = ( -/obj/structure/table/glass, -/obj/item/weapon/paper_bin{ - pixel_x = -1; - pixel_y = 3 - }, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"Yc" = ( -/obj/structure/table/standard, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"Yg" = ( -/obj/structure/sign/department/operational, -/turf/unsimulated/wall, -/area/centcom/simulated/medical) -"Yh" = ( -/obj/effect/floor_decal/industrial/loading{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"Yj" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"Yk" = ( -/obj/structure/medical_stand, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"Yl" = ( -/obj/machinery/door/airlock/security{ - name = "Security" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/centcom/simulated/security{ - name = "\improper CentCom Security Arrivals" - }) -"Ym" = ( -/obj/machinery/vending/medical, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"Yo" = ( -/obj/structure/closet/secure_closet/medical2, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"Yr" = ( -/obj/structure/table/reinforced, -/obj/machinery/microwave{ - pixel_y = 5 - }, -/turf/simulated/floor/tiled, -/area/centcom/simulated/security{ - name = "\improper CentCom Security Arrivals" - }) -"Ys" = ( -/obj/machinery/recharger/wallcharger{ - pixel_x = 4; - pixel_y = 26 - }, -/turf/simulated/floor/tiled, -/area/centcom/simulated/security{ - name = "\improper CentCom Security Arrivals" - }) -"Yt" = ( -/obj/effect/floor_decal/rust, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/evac) -"Yu" = ( -/obj/machinery/camera/network/crescent, -/turf/simulated/floor/tiled, -/area/centcom/simulated/security{ - name = "\improper CentCom Security Arrivals" - }) -"Yv" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - req_access = list(5) - }, -/obj/machinery/door/firedoor/multi_tile, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"Yw" = ( -/obj/machinery/door/airlock/medical{ - name = "Operating Theatre"; - req_access = list(45) - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"Yx" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/centcom/simulated/terminal) -"Yy" = ( -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = 30 - }, -/turf/simulated/floor/tiled, -/area/centcom/simulated/security{ - name = "\improper CentCom Security Arrivals" - }) -"YB" = ( -/obj/structure/table/standard, -/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{ - pixel_x = 0; - pixel_y = 0 - }, -/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{ - pixel_x = 7; - pixel_y = 1 - }, -/obj/item/weapon/tool/wrench, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"YC" = ( -/obj/machinery/atmospherics/unary/cryo_cell, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"YD" = ( -/obj/machinery/atmospherics/unary/freezer, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"YE" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/main_hall) -"YF" = ( -/obj/structure/table/glass, -/obj/item/device/defib_kit/loaded, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"YG" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/living) -"YH" = ( -/obj/structure/table/glass, -/obj/item/weapon/storage/pill_bottle/spaceacillin, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"YI" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/melee/baton/loaded, -/obj/item/weapon/melee/baton/loaded, -/obj/item/weapon/gun/energy/taser, -/turf/simulated/floor/tiled, -/area/centcom/simulated/security{ - name = "\improper CentCom Security Arrivals" - }) -"YJ" = ( -/obj/structure/closet/secure_closet/nanotrasen_security, -/obj/item/weapon/storage/box/handcuffs, -/obj/item/weapon/gun/energy/gun, -/obj/item/weapon/shield/riot, -/turf/simulated/floor/tiled, -/area/centcom/simulated/security{ - name = "\improper CentCom Security Arrivals" - }) -"YK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"YL" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"YM" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"YN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9; - icon_state = "intact" - }, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"YO" = ( -/obj/machinery/computer/transhuman/designer{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"YP" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister/oxygen/prechilled, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"YQ" = ( -/obj/structure/table/glass, -/obj/machinery/chemical_dispenser/full, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"YR" = ( -/turf/unsimulated/floor/steel, -/area/centcom/simulated/main_hall) -"YT" = ( -/obj/machinery/chem_master, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"YU" = ( -/obj/structure/table/glass, -/obj/machinery/chemical_dispenser/ert, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"YV" = ( -/obj/machinery/transhuman/synthprinter, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"YW" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"YY" = ( -/obj/machinery/bodyscanner{ - dir = 8 - }, -/obj/effect/floor_decal/corner_steel_grid{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"YZ" = ( -/obj/machinery/body_scanconsole, -/obj/effect/floor_decal/corner_steel_grid{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"Zb" = ( -/obj/machinery/sleep_console{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"Zc" = ( -/obj/machinery/sleeper{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"Zd" = ( -/obj/machinery/computer/transhuman/resleeving{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"Ze" = ( -/obj/machinery/transhuman/resleever, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"Zf" = ( -/obj/structure/filingcabinet/chestdrawer{ - name = "Medical Forms" - }, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"Zg" = ( -/obj/machinery/clonepod/transhuman/full, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"Zh" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/reagent_containers/food/drinks/flask/barflask, -/obj/item/weapon/reagent_containers/glass/rag, -/obj/item/weapon/reagent_containers/food/drinks/flask/vacuumflask, -/turf/simulated/floor/wood, -/area/centcom/simulated/bar) -"Zi" = ( -/obj/machinery/light, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/main_hall) -"Zj" = ( -/obj/structure/table/standard, -/obj/item/device/healthanalyzer, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"Zk" = ( -/obj/structure/table/reinforced, -/obj/item/device/camera, -/obj/item/weapon/storage/box/ids, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/centcom/simulated/security{ - name = "\improper CentCom Security Arrivals" - }) -"Zl" = ( -/obj/structure/table/glass, -/obj/item/weapon/backup_implanter{ - pixel_y = -8 - }, -/obj/item/weapon/backup_implanter{ - pixel_y = 8 - }, -/obj/item/weapon/backup_implanter, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"Zn" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"Zp" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/book/manual/security_space_law, -/obj/item/weapon/book/manual/security_space_law, -/obj/machinery/light/small{ - dir = 8; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/centcom/simulated/security{ - name = "\improper CentCom Security Arrivals" - }) -"Zq" = ( -/obj/machinery/light, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"Zr" = ( -/obj/structure/table/standard, -/obj/machinery/light, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"Zs" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/centcom/simulated/security{ - name = "\improper CentCom Security Arrivals" - }) -"Zt" = ( -/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 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/centcom/simulated/terminal) -"Zw" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/storage/box/donkpockets, -/obj/item/weapon/storage/box/donkpockets, -/obj/machinery/light/small{ - dir = 8; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/centcom/simulated/security{ - name = "\improper CentCom Security Arrivals" - }) -"Zx" = ( -/obj/structure/table/glass, -/obj/item/weapon/reagent_containers/glass/beaker/large, -/obj/item/weapon/reagent_containers/glass/beaker/large, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"Zy" = ( -/obj/structure/table/glass, -/obj/item/weapon/storage/firstaid/adv, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"Zz" = ( -/obj/structure/table/glass, -/obj/item/weapon/reagent_containers/glass/bottle/biomass{ - pixel_x = -4; - pixel_y = 8 - }, -/obj/item/weapon/reagent_containers/glass/bottle/biomass{ - pixel_x = -3; - pixel_y = -2 - }, -/obj/item/weapon/reagent_containers/glass/bottle/biomass{ - pixel_x = 3; - pixel_y = 5 - }, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"ZA" = ( -/obj/machinery/telecomms/relay/preset/centcom/tether/base_low, -/turf/unsimulated/floor/steel, -/area/centcom/control) -"ZC" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/turf/simulated/floor/wood, -/area/centcom/simulated/restaurant) -"ZD" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/reagent_containers/food/drinks/bottle/grenadine, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/centcom/simulated/bar) -"ZE" = ( -/obj/machinery/light, -/turf/simulated/floor/wood, -/area/centcom/simulated/restaurant) - -(1,1,1) = {" -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -"} -(2,1,1) = {" -ap -bu -bw -bw -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bw -bu -bw -ap -cl -cl -cl -cl -cl -cl -cl -cl -cl -cl -cl -cl -cl -cl -cl -cl -cl -cl -cl -cl -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -Xl -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -Xl -"} -(3,1,1) = {" -ap -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -ap -cl -cm -cm -cm -cm -cm -cm -cm -cm -cm -cm -cm -cm -cm -cm -cm -dT -er -er -cl -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -ap -ap -Xl -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -Xl -"} -(4,1,1) = {" -ap -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -ap -cl -cm -cn -cL -cn -cn -cn -cn -cn -cn -cn -cn -cn -cn -cn -dL -eb -eu -er -cl -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -Xl -OY -OY -OY -OY -OY -OY -OY -OY -OY -Xl -ap -ap -Xl -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -Xl -"} -(5,1,1) = {" -ap -bu -bw -bw -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bw -bu -bw -ap -cl -cm -cn -cn -cn -cn -cn -cn -cn -cn -cn -cn -cn -cn -cn -dL -eb -eu -er -cl -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -Xl -OY -OY -OY -OY -OY -OY -OY -OY -OY -Xl -ap -ap -Xl -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -Xl -"} -(6,1,1) = {" -ap -bu -bw -bw -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bw -bu -bw -ap -cl -cm -cC -cn -cn -cn -cn -cn -cn -cn -cn -cN -cV -cn -cn -dL -eb -eu -er -cl -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -Xl -OY -OY -OY -OY -OY -OY -OY -OY -OY -Xl -ap -ap -Xl -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -Xl -"} -(7,1,1) = {" -ap -bu -bw -bw -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bw -bu -bw -ap -cl -cm -cn -cn -cn -cn -cn -cn -cn -cn -cn -cn -cN -cn -dD -dL -eb -eu -er -cl -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -Xl -OY -OY -OY -OY -OY -OY -OY -OY -OY -Xl -ap -ap -Xl -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -Xl -"} -(8,1,1) = {" -ap -bu -bw -bw -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bw -bu -bw -ap -cl -cm -cn -cn -cn -cn -cV -cn -db -db -cn -cn -cn -cn -cn -dL -eb -eu -er -cl -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -Xl -OY -OY -OY -OY -sF -OY -OY -OY -OY -Xl -ap -ap -Xl -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -Xl -"} -(9,1,1) = {" -ap -bu -bw -bw -bu -bu -bu -bu -cR -cR -cR -cR -cR -cR -cR -cR -cR -cR -cR -cR -cR -bu -bu -bu -bu -bw -bu -bw -ap -cl -cm -cn -cn -cn -cn -cN -db -df -dn -db -cn -cn -cn -cn -dL -eb -eu -er -cl -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -Xl -OY -OY -OY -OY -OY -OY -OY -OY -OY -Xl -ap -ap -Xl -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -Xl -"} -(10,1,1) = {" -ap -bu -bw -bw -bu -bu -bu -bu -cR -cR -cR -cR -cR -cR -cR -cR -cR -cR -cR -cR -cR -bu -bu -bu -bu -bw -bu -bw -ap -cl -cm -cK -cn -cn -cn -cn -db -dg -do -db -cn -cn -cn -cn -dL -eb -eu -er -cl -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -Xl -OY -OY -OY -OY -OY -OY -OY -OY -OY -Xl -ap -ap -Xl -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -Xl -"} -(11,1,1) = {" -ap -bu -bw -bw -bu -bu -bu -bu -cR -cR -aa -aa -aa -aa -aa -aa -aa -aa -aa -cR -cR -bu -bu -bu -bu -bw -bu -bw -ap -cl -cm -cK -cn -cn -cn -cn -cn -db -db -cn -cn -cn -dy -cn -dL -eb -eu -er -cl -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -Xl -OY -OY -OY -OY -OY -OY -OY -OY -OY -Xl -ap -ap -Xl -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -Xl -"} -(12,1,1) = {" -ap -bu -bw -bw -bu -bu -bu -bu -cR -cR -bs -cR -cR -cR -cR -cR -cR -cR -aa -cR -cR -bu -bu -bu -bu -bw -bu -bw -ap -cl -cm -cK -cn -cn -cn -cn -cn -cn -cn -cn -cn -cn -cn -cn -dL -eb -eu -er -cl -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -Xl -OY -OY -OY -OY -OY -OY -OY -OY -OY -Xl -ap -ap -Xl -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -Xl -"} -(13,1,1) = {" -ap -bu -bw -bw -bu -bu -bu -bu -cR -cR -bs -cR -cR -cR -ck -cR -cR -cR -aa -cR -cR -bu -bu -bu -bu -bw -bu -bw -ap -cl -cm -cn -cn -cn -cn -cn -cn -cn -cn -cn -cn -cn -dz -cn -dL -eb -eu -er -cl -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -ap -ap -Xl -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -Xl -"} -(14,1,1) = {" -ap -bu -bw -bw -bu -bu -bu -bu -cR -cR -bs -cR -cR -cR -cR -cR -cR -cR -aa -cR -cR -bu -bu -bu -bu -bw -bu -bw -ap -cl -cm -cn -cn -cn -cn -cn -cn -cn -cV -cn -cn -cn -cn -cn -dL -eb -eu -er -cl -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -Xl -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -Xl -"} -(15,1,1) = {" -ap -bu -bw -bw -bu -bu -bu -bu -cR -cR -bP -cR -cR -cR -cR -cR -cR -cR -aa -cR -cR -bu -bu -bu -bu -bw -bu -bw -ap -cl -cm -cK -cn -cn -cn -cn -cn -cn -cn -cn -cn -cn -dz -cn -dL -eb -eu -er -cl -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -Xl -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -Xl -"} -(16,1,1) = {" -ap -bu -bw -bw -bu -bu -bu -bu -cR -cR -bP -cR -cR -cR -cR -cR -cR -cR -aa -cR -cR -bu -bu -bu -bu -bw -bu -bw -ap -cl -cm -cK -cn -cn -cn -cn -cn -cn -dp -cn -cn -cn -cn -cn -dL -eb -eu -er -cl -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -ap -ap -Xl -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -Xl -"} -(17,1,1) = {" -ap -bu -bw -bw -bu -bu -bu -bu -cR -cR -aa -aa -aa -aa -aa -aa -aa -aa -aa -cR -cR -bu -bu -bu -bu -bw -bu -bw -ap -cl -cm -cK -cn -cN -cL -cn -cn -cn -cn -cn -cn -cn -dC -cn -dL -eb -eu -er -cl -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -Xl -OY -OY -OY -OY -OY -OY -OY -OY -OY -Xl -ap -ap -Xl -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -Xl -"} -(18,1,1) = {" -ap -bu -bw -bw -bu -bu -bu -bu -cR -cR -cR -cR -cR -cR -cR -cR -cR -cR -cR -cR -cR -bu -bu -bu -bu -bw -bu -bw -ap -cl -cm -cn -cn -cn -cn -cn -cn -cn -cn -cn -cn -cn -cn -cn -dL -eb -eu -er -cl -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -Xl -OY -OY -OY -OY -OY -OY -OY -OY -OY -Xl -ap -ap -Xl -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -Xl -"} -(19,1,1) = {" -ap -bu -bw -bw -bu -bu -bu -bu -cR -cR -cR -cR -cR -cR -cR -cR -cR -cR -cR -cR -cR -bu -bu -bu -bu -bw -bu -bw -ap -cl -cm -cn -cn -cn -cn -cn -cn -cn -cn -cn -cn -cn -cn -cn -dL -eb -eu -er -cl -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -Xl -OY -OY -OY -OY -OY -OY -OY -OY -OY -Xl -ap -ap -Xl -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -Xl -"} -(20,1,1) = {" -ap -bu -bw -bw -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bw -bu -bw -ap -cl -cm -cn -cn -cn -cn -cn -cn -cn -cn -cn -cL -cN -cn -cn -dL -eb -eu -er -cl -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -Xl -OY -OY -OY -OY -OY -OY -OY -OY -OY -Xl -ap -ap -Xl -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -Xl -"} -(21,1,1) = {" -ap -bu -bw -bw -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bw -bu -bw -ap -cl -cm -cn -cn -cn -cn -cn -cn -cn -cn -cn -cn -cn -cn -cn -dL -eb -eu -er -cl -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -Xl -OY -OY -OY -OY -sF -OY -OY -OY -OY -Xl -ap -ap -Xl -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -Xl -"} -(22,1,1) = {" -ap -bu -bw -bw -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bw -bu -bw -ap -cl -cm -cn -cM -cn -cn -cn -cn -cn -cn -cn -cn -cn -cn -cn -dL -eb -eu -er -cl -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -Xl -OY -OY -OY -OY -OY -OY -OY -OY -OY -Xl -ap -ap -Xl -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -Xl -"} -(23,1,1) = {" -ap -bu -bw -bw -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bw -bu -bw -ap -cl -cm -cm -cm -cm -cm -cm -cm -cm -cm -cm -cm -cm -cm -cm -cm -dT -er -er -cl -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -Xl -OY -OY -OY -OY -OY -OY -OY -OY -OY -Xl -ap -ap -Xl -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -Xl -"} -(24,1,1) = {" -ap -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -ap -cl -cl -cl -cl -cl -cl -cl -cl -cl -cl -cl -cl -cl -cl -cl -cl -cl -cl -cl -cl -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -Xl -OY -OY -OY -OY -OY -OY -OY -OY -OY -Xl -ap -ap -Xl -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -Xl -"} -(25,1,1) = {" -ap -bu -bw -bw -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bu -bw -bu -bw -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -Xl -OY -OY -OY -OY -OY -OY -OY -OY -OY -Xl -ap -ap -Xl -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -Xl -"} -(26,1,1) = {" -ap -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -ap -ap -Xl -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -Xl -"} -(27,1,1) = {" -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -Xl -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -Xl -"} -(28,1,1) = {" -ap -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -Xl -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -Xl -"} -(29,1,1) = {" -ap -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -Xl -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -Xl -"} -(30,1,1) = {" -ap -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -Xl -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -Xl -"} -(31,1,1) = {" -ap -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -Xl -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -Xl -"} -(32,1,1) = {" -ap -bx -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bx -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -cr -cr -cr -cr -cr -cr -cr -cr -cr -cr -cr -cr -cr -cr -cr -cr -cr -cr -cr -cr -fI -fI -fI -fI -ap -Xl -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -Xl -"} -(33,1,1) = {" -ap -bx -bC -bC -bN -bC -bC -bC -bT -ci -ci -ci -bT -ci -ci -ci -bT -ci -ci -ci -bT -ci -ci -ci -bT -ci -bC -bC -bN -bC -bC -cE -cJ -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -cr -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -ea -ea -ea -fI -ap -Xl -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -Xl -"} -(34,1,1) = {" -ap -bx -bD -bD -bD -bD -bD -bD -cd -cd -bD -bD -bD -bD -bD -bD -co -bD -bD -bD -bD -bD -bD -bD -cp -cp -bD -bD -bD -bD -bD -cF -bx -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -cr -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -ea -ea -ea -fI -ap -Xl -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -Xl -"} -(35,1,1) = {" -ap -bx -bE -bE -bE -bE -bE -bE -ce -bE -bE -bE -bE -bE -bE -bE -bE -bE -bE -bE -bE -bE -bE -bE -bE -cq -bE -bE -bE -bE -bE -cG -bx -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -cr -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -ea -ea -ea -fI -ap -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -"} -(36,1,1) = {" -ap -bx -bD -bD -bD -bD -bD -bD -cd -bD -bD -bD -bD -bD -bD -bD -bD -bD -bD -bD -bD -bD -bD -bD -bD -cp -bD -bD -bD -bD -bD -cF -bx -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -cr -cD -cD -cD -cD -cD -cD -cD -cI -cI -cI -cI -cI -cI -cD -cD -cD -cD -cD -cD -ea -ea -ea -fI -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -"} -(37,1,1) = {" -ap -bx -bD -bD -bD -bD -bD -bD -cd -bD -bD -bD -bD -bD -bD -bD -bD -bD -bD -bD -bD -bD -bD -bD -bD -cp -bD -bD -bD -bD -bD -cF -bx -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -cr -cD -cD -cD -cD -cD -cD -cI -cI -cD -cD -cD -cD -cI -cI -cD -cD -cD -cD -cD -ea -ea -ea -fI -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -"} -(38,1,1) = {" -ap -bx -bD -bD -bD -bD -bD -bD -cf -bD -bD -bD -bD -bD -bD -bD -bD -bD -bD -bD -bD -bD -bD -bD -bD -cp -bD -bD -bD -bD -bD -cF -bx -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -cr -cD -cD -cD -cD -cD -cD -cI -cD -cD -dc -cD -cD -cD -cI -cI -cD -cD -cD -cD -ea -ea -ea -fI -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -"} -(39,1,1) = {" -ap -bx -bD -bD -bD -bD -bD -bD -cf -bD -bD -bD -bD -bD -bD -bD -bD -bD -bD -bD -bD -bD -bD -bD -bD -cp -bD -bD -bD -bD -bD -cF -bx -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -cr -cD -cD -cI -cI -cI -cI -cI -cD -cD -cD -cD -cD -cD -cD -cI -cI -cD -cD -cD -ea -ea -ea -fI -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -"} -(40,1,1) = {" -ap -bx -bE -bE -bE -bE -bE -bE -cg -bE -bE -bE -bE -bE -bE -bE -bE -bE -bE -bE -bE -bE -bE -bE -bE -cq -bE -bE -bE -bE -bE -cG -bx -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -cr -cD -cD -cI -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cI -cD -cD -cD -ea -ea -ea -fI -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -"} -(41,1,1) = {" -ap -bx -bD -bD -bD -bD -bD -bD -cf -cf -bD -bD -bD -bD -bD -bD -bD -bD -bD -bD -bD -bD -bD -bD -cp -cp -bD -bD -bD -bD -bD -cF -bx -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -cr -cD -cD -cI -cI -cI -cI -cD -cD -cD -cD -cD -cD -cD -cD -cD -cI -cD -cD -cD -ea -ea -ea -fI -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -"} -(42,1,1) = {" -ap -bx -bF -bF -bF -bO -bF -bF -ch -cj -ch -ch -ch -cj -ch -ch -ch -cj -ch -ch -ch -cj -ch -ch -ch -cj -bF -bF -bF -bO -bF -cH -bx -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -cr -cD -cD -cD -cD -cD -cI -cD -cD -cD -cD -cD -cD -cD -cD -cD -cI -cD -cD -cD -ea -ea -ea -fI -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -"} -(43,1,1) = {" -ap -bx -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bx -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -cr -cD -cD -cI -cI -cI -cI -cD -cD -cD -cD -cD -cD -cD -cD -cD -cI -cD -cD -cD -ea -ea -ea -fI -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -"} -(44,1,1) = {" -ap -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -cr -cD -cD -cI -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cI -cD -cD -cD -ea -ea -ea -fI -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -"} -(45,1,1) = {" -ap -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -cr -cD -cD -cI -cI -cI -cI -cI -cD -cD -cD -cD -cD -cD -cD -cI -cI -cD -cD -cD -ea -ea -ea -fI -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -"} -(46,1,1) = {" -ap -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -cr -cD -cD -cD -cD -cD -cD -cI -cD -cD -cD -cD -cD -cD -cI -cI -cD -cD -cD -cD -ea -ea -ea -fI -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -"} -(47,1,1) = {" -ap -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -cr -cD -cD -cD -cD -cD -cD -cI -cI -cD -cD -cD -cD -cI -cI -cD -cD -cD -cD -cD -ea -ea -ea -fI -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -"} -(48,1,1) = {" -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -cr -cD -cD -cD -cD -cD -cD -cD -cI -cI -cI -cI -cI -cI -cD -cD -cD -cD -cD -cD -ea -ea -ea -fI -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -"} -(49,1,1) = {" -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -cr -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -ea -ea -ea -fI -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -"} -(50,1,1) = {" -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -cr -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -ea -ea -ea -fI -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -"} -(51,1,1) = {" -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -cr -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -ea -ea -ea -fI -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -"} -(52,1,1) = {" -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -fI -fI -fI -fI -fI -fI -fI -fI -fI -fI -fI -fI -fI -fI -fI -fI -fI -fI -fI -fI -fI -fI -fI -fI -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -"} -(53,1,1) = {" -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -"} -(54,1,1) = {" -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ez -ez -ez -ez -ez -ez -ez -ez -ez -ez -ez -ez -ez -ez -ez -ez -ez -ez -ez -ez -ez -ez -ez -ap -eG -eG -eG -eG -eG -eG -eG -eG -eG -eG -eG -eG -eG -eG -eG -eG -eG -eG -eG -eG -eG -eG -eG -eG -eG -eG -eG -eG -eG -eG -eG -eG -eG -eG -eG -eG -"} -(55,1,1) = {" -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ez -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -ez -ap -eG -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eG -"} -(56,1,1) = {" -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ez -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -ez -ap -eG -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eG -"} -(57,1,1) = {" -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ez -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -ez -ap -eG -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eG -"} -(58,1,1) = {" -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ez -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -ez -ap -eG -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eG -"} -(59,1,1) = {" -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ez -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -ez -ap -eG -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eI -eI -eI -eI -eI -eI -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eG -"} -(60,1,1) = {" -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ez -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -ez -ap -eG -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eI -eI -eH -eH -eH -eH -eI -eI -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eG -"} -(61,1,1) = {" -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ez -eA -eA -eA -eA -eA -eA -eA -eB -eB -eB -eB -eB -eB -eB -eA -eA -eA -eA -eA -eA -eA -ez -ap -eG -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eI -eH -eH -eH -eH -eH -eH -eI -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eG -"} -(62,1,1) = {" -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ez -eA -eA -eA -eA -eA -eA -eA -eB -eA -eA -eA -eA -eA -eB -eA -eA -eA -eA -eA -eA -eA -ez -ap -eG -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eI -eH -eH -eH -eH -eH -eH -eI -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eG -"} -(63,1,1) = {" -ar -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -ar -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -ar -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ez -eA -eA -eA -eA -eA -eA -eA -eB -eA -eA -eA -eA -eA -eB -eA -eA -eA -eA -eA -eA -eA -ez -ap -eG -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eI -eH -eH -eH -eH -eH -eH -eI -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eG -"} -(64,1,1) = {" -as -aJ -aJ -aJ -aJ -aJ -aJ -aJ -aJ -aJ -aK -dA -dF -dF -dF -dF -dF -dF -dF -dF -dF -dF -fZ -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ap -ap -ap -ap -ap -ap -ap -ap -ap -ez -eA -eA -eA -eA -eA -eA -eA -eB -eA -eA -eA -eA -eA -eB -eA -eA -eA -eA -eA -eA -eA -ez -ap -eG -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eI -eH -eH -eH -eH -eH -eH -eI -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eG -"} -(65,1,1) = {" -as -aJ -aJ -bd -aJ -aJ -aJ -aJ -aJ -aJ -aJ -dA -dF -dF -dF -ec -dF -dF -dF -dF -ec -dF -fZ -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ae -Vu -Vu -Vu -Vu -Vu -Vu -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ap -ap -ap -ap -ap -ap -ap -ap -ap -ez -eA -eA -eA -eA -eA -eA -eA -eB -eA -eA -eA -eA -eA -eB -eA -eA -eA -eA -eA -eA -eA -ez -ap -eG -eH -eH -eH -eH -eH -eH -eH -eH -eI -eI -eI -eI -eI -eI -eH -eH -eH -eH -eH -eH -eI -eI -eI -eI -eI -eI -eH -eH -eH -eH -eH -eH -eH -eH -eG -"} -(66,1,1) = {" -as -aJ -aJ -aJ -aJ -aK -aJ -aJ -bd -aJ -aJ -dA -dF -dF -dF -dF -dF -dF -dF -dF -dF -dF -fZ -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ae -Vu -Ru -ey -fy -fl -Vu -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ap -ap -ap -ap -ap -ap -ap -ap -ap -ez -eA -eA -eA -eA -eA -eA -eA -eB -eA -eA -eA -eA -eA -eB -eA -eA -eA -eA -eA -eA -eA -ez -ap -eG -eH -eH -eH -eH -eH -eH -eH -eI -eI -eH -eH -eH -eH -eI -eH -eH -eH -eH -eH -eH -eI -eH -eH -eH -eH -eI -eI -eH -eH -eH -eH -eH -eH -eH -eG -"} -(67,1,1) = {" -as -aK -aJ -aJ -aJ -aJ -aJ -aJ -aJ -aJ -aJ -dA -dF -ec -dF -dF -dF -dF -ec -dF -dF -dF -fZ -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ae -Vu -Vu -Vu -fy -fm -Vu -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ap -ap -ap -ap -ap -ap -ap -ap -ap -ez -eA -eA -eA -eA -eA -eA -eA -eB -eA -eA -eA -eA -eA -eB -eA -eA -eA -eA -eA -eA -eA -ez -ap -eG -eH -eH -eH -eH -eH -eH -eH -eI -eH -eH -eH -eH -eH -eI -eH -eH -eH -eH -eH -eH -eI -eH -eH -eH -eH -eH -eI -eH -eH -eH -eH -eH -eH -eH -eG -"} -(68,1,1) = {" -as -aJ -aJ -aJ -aJ -aJ -aJ -aJ -aJ -aJ -bd -dA -dF -dF -dF -dF -dF -dF -dF -dF -dF -dF -fZ -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ae -Vu -Vu -Vu -fy -fl -Vu -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ap -ap -ap -ap -ap -ap -ap -ap -ap -ez -eA -eA -eA -eA -eA -eA -eA -eB -eA -eA -eA -eA -eA -eB -eA -eA -eA -eA -eA -eA -eA -ez -ap -eG -eH -eH -eH -eH -eH -eH -eH -eI -eH -eH -eH -eH -eH -eI -eH -eH -eH -eH -eH -eH -eI -eH -eH -eH -eH -eH -eI -eH -eH -eH -eH -eH -eH -eH -eG -"} -(69,1,1) = {" -as -aJ -aJ -aJ -aK -aJ -aJ -bd -aJ -aJ -aJ -dA -dF -dF -dF -dF -dF -dF -dF -dF -dF -dF -fZ -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ae -Vu -cW -Ru -fy -fl -Vu -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ap -ap -ap -ap -ap -ap -ap -ap -ap -ez -eA -eA -eA -eA -eA -eA -eA -eB -eA -eA -eA -eA -eA -eB -eA -eA -eA -eA -eA -eA -eA -ez -ap -eG -eH -eH -eH -eH -eH -eH -eH -eI -eH -eH -eH -eH -eH -eI -eH -eH -eH -eH -eH -eH -eI -eH -eH -eH -eH -eH -eI -eH -eH -eH -eH -eH -eH -eH -eG -"} -(70,1,1) = {" -as -aJ -aJ -aJ -aJ -aK -aJ -aJ -aJ -aJ -aJ -dA -dF -dF -dF -ec -dF -dF -dF -dF -ec -dF -fZ -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ae -Vu -Vu -Vu -Vu -Vu -Vu -ae -ae -ae -ae -af -dZ -dZ -dZ -dZ -dZ -Rh -dZ -dZ -dZ -dZ -dZ -dZ -Rh -dZ -dZ -dZ -dZ -dZ -af -ae -ae -ae -ae -ae -ae -ae -ap -ap -ap -ap -ap -ap -ap -ap -ap -ez -eA -eA -eA -eA -eA -eA -eA -eB -eA -eA -eA -eA -eA -eB -eA -eA -eA -eA -eA -eA -eA -ez -ap -eG -eH -eH -eH -eH -eH -eH -eH -eI -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eI -eH -eH -eH -eH -eH -eH -eH -eG -"} -(71,1,1) = {" -as -aJ -aJ -aJ -aJ -aJ -aJ -aJ -aJ -aJ -aJ -dA -dF -dF -dF -dF -dF -dF -dF -dF -dF -dF -fZ -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ai -Al -Al -XE -Sl -Al -Al -XE -Al -Al -Al -Al -XE -Al -Al -Sl -XE -Al -Al -SG -ae -ae -ae -ae -ae -ae -ae -ap -ap -ap -ap -ap -ap -ap -ap -ap -ez -eA -eA -eA -eA -eA -eA -eA -eB -eC -eA -eD -eA -eF -eB -eA -eA -eA -eA -eA -eA -eA -ez -ap -eG -eH -eH -eH -eH -eH -eH -eH -eI -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eI -eH -eH -eH -eH -eH -eH -eH -eG -"} -(72,1,1) = {" -as -aJ -bd -aJ -aJ -aJ -aJ -aJ -aJ -aJ -aJ -dA -dF -ec -dF -dF -dF -dF -ec -dF -dF -dF -fZ -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ae -cX -cX -cX -cX -cX -cX -ae -ae -ae -ae -ai -ET -ET -OR -Pe -Pe -Ri -OR -Pe -Rs -Rt -Pe -OR -Ri -RA -RA -OR -ET -ET -SG -ae -ae -ae -ae -ae -ae -ae -ap -ap -ap -ap -ap -ap -ap -ap -ap -ez -eA -eA -eA -eA -eA -eA -eA -eA -eB -eC -eC -eF -eF -eA -eA -eA -eA -eA -eA -eA -eA -ez -ap -eG -eH -eH -eH -eH -eH -eH -eH -eI -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eI -eH -eH -eH -eH -eH -eH -eH -eG -"} -(73,1,1) = {" -as -aJ -aJ -aJ -aJ -aJ -aJ -aK -aJ -aJ -bd -dA -dF -dF -dF -dF -dF -dF -dF -dF -dF -dF -fZ -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ae -cX -ap -ap -ap -ap -cX -ae -ae -ae -ae -zK -Fp -OR -Pg -Rd -Rg -QW -Rk -Re -Rg -QX -Rw -Ry -QW -Rg -RD -Pg -OR -Fp -zK -ae -ae -ae -ae -ae -ae -ae -ap -ap -ap -ap -ap -ap -ap -ap -ap -ez -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -ez -ap -eG -eH -eH -eH -eH -eH -eH -eH -eI -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eI -eH -eH -eH -eH -eH -eH -eH -eG -"} -(74,1,1) = {" -ar -aL -aL -aL -aL -aL -aL -aL -aL -aL -aL -ar -aL -aL -aL -aL -aL -aL -aL -aL -aL -aL -ar -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ae -cX -ap -ap -ap -ap -cX -ae -ae -ae -ae -ai -ET -Pe -Qa -Re -Rg -QW -QX -Rm -Rg -QX -Re -Rg -QW -QW -QW -RF -Pe -ET -SG -ae -ae -ae -ae -ae -ae -ae -ap -ap -ap -ap -ap -ap -ap -ap -ap -ez -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -ez -ap -eG -eH -eH -eH -eH -eH -eH -eH -eI -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eI -eH -eH -eH -eH -eH -eH -eH -eG -"} -(75,1,1) = {" -as -aM -be -bf -be -be -be -be -bf -be -aM -dA -dG -dG -dG -dG -dG -dG -dG -fG -dG -dG -fZ -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ae -cX -ap -ap -ap -ap -cX -ae -ae -ae -ae -ai -ET -Pe -QW -QW -QW -QW -QW -QW -QW -QW -QW -QW -QW -QX -QX -Rg -Pe -ET -SG -ae -ae -ae -ae -ae -ae -ae -ap -ap -ap -ap -ap -ap -ap -ap -ap -ez -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -ez -ap -eG -eH -eH -eH -eH -eH -eH -eH -eI -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eI -eH -eH -eH -eH -eH -eH -eH -eG -"} -(76,1,1) = {" -as -aN -bf -be -bf -bf -bf -bf -be -bf -aN -dA -dG -ed -dG -dG -dG -dG -dG -dG -eT -dG -fZ -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ae -cX -ap -ap -ap -ap -cX -ae -ae -ae -ae -ai -ET -Pe -QW -QW -QW -QW -QW -QW -QW -QW -QW -QW -QW -QX -QX -RG -Pe -ET -SG -ae -ae -ae -ae -ae -ae -ae -ap -ap -ap -ap -ap -ap -ap -ap -ap -ez -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -ez -ap -eG -eH -eH -eH -eH -eH -eH -eH -eI -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eI -eH -eH -eH -eH -eH -eH -eH -eG -"} -(77,1,1) = {" -as -aM -be -bo -bU -bU -bU -bU -da -be -aM -dA -dG -dG -dG -eJ -dG -dG -dG -dG -dG -dG -fZ -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ae -cX -cX -cX -cX -cX -cX -ae -ae -ae -ae -ai -ET -Pe -QX -Re -Rg -QW -QX -Re -Rg -QX -Re -Rg -QW -QW -QW -QW -Pe -ET -SG -ae -ae -ae -ae -ae -ae -ae -ap -ap -ap -ap -ap -ap -ap -ap -ap -ez -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -ez -ap -eG -eH -eH -eH -eH -eH -eH -eH -eI -eI -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eI -eI -eH -eH -eH -eH -eH -eH -eH -eG -"} -(78,1,1) = {" -as -aN -bf -bp -bB -bB -bB -bB -cP -bf -aN -dA -dG -dG -dG -dG -eT -dG -dG -dG -eJ -dG -fZ -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -zK -Fp -OR -Pg -Rf -Rg -QW -Rl -Ro -Rg -QX -Rx -Rz -QW -RC -RE -Pg -OR -Fp -zK -ae -ae -ae -ae -ae -ae -ae -ap -ap -ap -ap -ap -ap -ap -ap -ap -ez -ez -ez -ez -ez -ez -ez -ez -ez -ez -ez -ez -ez -ez -ez -ez -ez -ez -ez -ez -ez -ez -ez -ap -eG -eH -eH -eH -eH -eH -eH -eH -eH -eI -eI -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eI -eI -eH -eH -eH -eH -eH -eH -eH -eH -eG -"} -(79,1,1) = {" -as -aM -be -bq -an -bS -bS -an -cQ -be -aM -dA -dG -dG -dG -ep -dG -dG -ed -dG -dG -fG -fZ -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ai -ET -ET -OR -Pe -Pe -Rj -OR -Pe -Rt -Rt -Pe -OR -Rj -RA -RA -OR -ET -ET -SG -ae -ae -ae -ae -ae -ae -ae -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -eG -eH -eH -eH -eH -eH -eH -eH -eH -eH -eI -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eI -eH -eH -eH -eH -eH -eH -eH -eH -eH -eG -"} -(80,1,1) = {" -as -aM -bf -bp -an -bS -bS -an -cP -bf -aM -dA -dG -dG -dG -dG -dG -dG -dG -fG -dG -dG -fZ -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ai -Rc -Rc -Rc -Rc -Rc -Rc -Rc -Rc -Rc -Rc -Rc -Rc -Rc -Rc -Rc -Rc -Rc -Rc -SG -ae -ae -ae -ae -ae -ae -ae -ap -ap -ap -ap -ap -ap -ap -ap -ap -ez -ez -ez -ez -ez -ez -ez -ez -ez -ez -ez -ez -ez -ez -ez -ez -ez -ez -ez -ez -ez -ez -ez -ap -eG -eH -eH -eH -eH -eH -eH -eH -eH -eI -eI -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eI -eI -eH -eH -eH -eH -eH -eH -eH -eH -eG -"} -(81,1,1) = {" -as -aN -be -ag -bB -bB -bB -bB -at -be -aN -dA -dG -ed -dG -dG -dG -dG -eJ -dG -eT -dG -fZ -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ae -ae -ae -ae -ae -ae -ae -ae -Vg -Vg -Vg -Vl -Vh -Jx -Jx -Jx -Jx -Jx -Jx -Jx -Jx -Jx -Jx -Jx -Jx -Jx -Jx -Jx -Jx -Zt -aj -ae -ae -ae -ae -ae -ae -ae -ap -ap -ap -ap -ap -ap -ap -ap -ap -ez -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -ez -ap -eG -eH -eH -eH -eH -eH -eH -eH -eI -eI -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eI -eI -eH -eH -eH -eH -eH -eH -eH -eG -"} -(82,1,1) = {" -as -aM -bf -bB -bB -ao -aA -bB -bB -bf -aM -dA -dG -dG -dG -dG -dG -dG -dG -dG -dG -dG -fZ -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ae -ae -ae -ae -ae -ae -ae -ae -Vg -Nr -Th -JR -Nq -Nq -Nq -Nq -Nq -Nq -Yx -Nq -Nq -Nq -Nq -Yx -Nq -Nq -Nq -Nq -Nq -Nq -dZ -ae -ae -ae -ae -ae -ae -ae -ap -ap -ap -ap -ap -ap -ap -ap -ap -ez -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -ez -ap -eG -eH -eH -eH -eH -eH -eH -eI -eI -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eI -eI -eH -eH -eH -eH -eH -eH -eG -"} -(83,1,1) = {" -as -aN -be -bB -ao -ax -aB -aA -bB -bf -aN -dA -dG -dG -ep -dG -eT -dG -dG -dG -eJ -dG -fZ -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ae -ae -ae -ae -ae -ae -ae -ae -Vg -SW -Ti -Rq -Nq -Nq -Nq -Nq -Nq -Nq -wd -dZ -TY -Vv -dZ -dZ -Nq -Nq -Nq -Nq -Nq -Nq -dZ -ae -ae -ae -ae -ae -ae -ae -ap -ap -ap -ap -ap -ap -ap -ap -ap -ez -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -ez -ap -eG -eH -eH -eH -eH -eH -eH -eI -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eI -eH -eH -eH -eH -eH -eH -eG -"} -(84,1,1) = {" -as -aM -bf -bB -at -bU -bU -ag -bB -be -aM -dA -dG -dG -dG -dG -dG -dG -ed -dG -dG -fG -fZ -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ae -ae -ae -ae -ae -ae -ae -ae -Vg -Tf -Tj -Rv -QY -Pf -XH -SH -SH -QY -TI -Rr -SV -SV -Rr -TI -QY -SH -SH -XH -Pf -QY -dZ -ae -ae -ae -ae -ae -ae -ae -ap -ap -ap -ap -ap -ap -ap -ap -ap -ez -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -ez -ap -eG -eH -eH -eH -eH -eH -eH -eI -eH -eS -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eI -eH -eH -eH -eH -eH -eH -eG -"} -(85,1,1) = {" -ar -aL -aL -aL -aL -aL -aL -aL -aL -aL -aL -ar -aL -aL -aL -aL -aL -aL -aL -aL -aL -aL -ar -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ae -ae -ae -ae -ae -ae -wy -wy -Vg -Vg -Vg -Vg -TI -TI -TI -TI -TI -TI -dZ -Ru -Ru -Ru -Ru -dZ -dZ -dZ -dZ -dZ -dZ -dZ -dZ -VI -ae -ae -ae -ae -ae -ae -ap -ap -ap -ap -ap -ap -ap -ap -ap -ez -eA -eA -eA -eA -eA -eA -eA -eB -eB -eB -eB -eB -eB -eB -eA -eA -eA -eA -eA -eA -eA -ez -ap -eG -eH -eH -eH -eH -eH -eH -eI -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eI -eH -eH -eH -eH -eH -eH -eG -"} -(86,1,1) = {" -as -aO -bg -bg -bG -bV -bV -bV -bV -bV -dq -dA -dI -dH -dH -eL -eL -eL -eL -eL -eL -eL -fZ -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ae -ae -ae -ae -ae -ae -wy -yA -Ga -xe -wl -TZ -Vi -Vi -Vi -VJ -Vi -VS -Vu -YE -Ru -Ru -Wt -WE -Xs -XC -Zp -VI -Yr -Zw -YI -VI -ae -ae -ae -ae -ae -ae -ap -ap -ap -ap -ap -ap -ap -ap -ap -ez -eA -eA -eA -eA -eA -eA -eA -eB -eA -eA -eA -eA -eA -eB -eA -eA -eA -eA -eA -eA -eA -ez -ap -eG -eH -eH -eH -eH -eH -eH -eI -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eI -eH -eH -eH -eH -eH -eH -eG -"} -(87,1,1) = {" -as -aP -bg -bg -bG -bV -bV -bV -bV -bV -bV -dA -dH -dH -dH -eK -eK -eK -eK -eK -eK -eK -fZ -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ae -ae -ae -ae -ae -ae -wy -rE -Ga -HQ -wl -Up -Vj -Vj -Vj -Vj -Vj -VU -Vu -Ru -Ru -Ru -Wv -WJ -Xv -XD -XD -VI -Ys -XD -YJ -VI -ae -ae -ae -ae -ae -ae -ap -ap -ap -ap -ap -ap -ap -ap -ap -ez -eA -eA -eA -eA -eA -eA -eA -eB -eA -eA -eA -eA -eA -eB -eA -eA -eA -eA -eA -eA -eA -ez -ap -eG -eH -eH -eH -eH -eH -eH -eI -eI -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eI -eI -eH -eH -eH -eH -eH -eH -eG -"} -(88,1,1) = {" -as -aP -bg -bg -bG -bW -ct -ct -ct -dj -bV -dA -dH -dH -dH -eK -eV -fn -fn -fn -fO -eK -fZ -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ae -ae -ae -ae -ae -ae -wy -kF -Ga -Iq -wl -Up -Vj -Vj -Vj -Vj -Vj -VU -Vu -Ru -Ru -Ru -Wv -WK -Xw -XD -XD -VI -Yu -XD -YJ -VI -ae -ae -ae -ae -ae -ae -ap -ap -ap -ap -ap -ap -ap -ap -ap -ez -eA -eA -eA -eA -eA -eA -eA -eB -eA -eA -eA -eA -eA -eB -eA -eA -eA -eA -eA -eA -eA -ez -ap -eG -eH -eH -eH -eH -eH -eH -eH -eI -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eI -eH -eH -eH -eH -eH -eH -eH -eG -"} -(89,1,1) = {" -as -aP -bg -bg -bG -bX -cu -cu -cu -dk -bV -dA -dH -ee -eq -eK -eW -fo -fo -fo -fP -eK -fZ -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ae -ae -ae -ae -ae -ae -wy -pb -Ga -ME -wl -Uu -Vj -Vj -Vm -Vj -Vj -XU -Vu -Ru -Ru -Ru -Wt -WE -Xx -Zk -XV -Yl -Zs -Yy -XD -VI -ae -ae -ae -ae -ae -ae -ap -ap -ap -ap -ap -ap -ap -ap -ap -ez -eA -eA -eA -eA -eA -eA -eA -eB -eA -eA -eA -eA -eA -eB -eA -eA -eA -eA -eA -eA -eA -ez -ap -eG -eH -eH -eH -eH -eH -eH -eH -eI -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eI -eH -eH -eH -eH -eH -eH -eH -eG -"} -(90,1,1) = {" -as -aP -bg -bg -bG -bX -cu -cu -cu -dk -bV -dA -dH -ef -eq -eK -eW -fo -fo -fo -fP -eK -fZ -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ae -ae -ae -ae -ae -ae -wy -kr -Ga -Cw -wl -Up -Vj -Vj -Vm -Vj -Vj -VU -Vu -Ru -Ru -Zi -VI -VI -VI -VI -VI -VI -VI -VI -Yl -VI -Xi -ae -ae -ae -ae -ae -ap -ap -ap -ap -ap -ap -ap -ap -ap -ez -eA -eA -eA -eA -eA -eA -eA -eB -eA -eA -eA -eA -eA -eB -eA -eA -eA -eA -eA -eA -eA -ez -ap -eG -eH -eH -eH -eH -eH -eH -eI -eI -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eI -eI -eH -eH -eH -eH -eH -eH -eG -"} -(91,1,1) = {" -as -aP -bg -bg -bG -bX -cu -cu -cu -dk -bV -dA -dH -ef -eq -eK -eW -fo -fo -fo -fP -eK -fZ -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ae -ae -ae -ae -ae -ae -wy -Ct -Ga -kh -wl -Ur -Vm -Vj -Vj -Vj -Vj -VU -Vu -Ru -Ru -Ru -VM -VQ -WN -VZ -VQ -VQ -WH -ZD -WW -Xe -Xi -ae -ae -ae -ae -ae -ap -ap -ap -ap -ap -ap -ap -ap -ap -ez -eA -eA -eA -eA -eA -eA -eA -eB -eA -eA -eA -eA -eA -eB -eA -eA -eA -eA -eA -eA -eA -ez -ap -eG -eH -eH -eH -eH -eH -eH -eI -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eI -eH -eH -eH -eH -eH -eH -eG -"} -(92,1,1) = {" -as -aP -bg -bg -bG -bX -cu -cu -cu -dk -bV -dA -dH -ef -eq -eK -eW -fo -fo -fo -fP -eK -fZ -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ae -ae -ae -ae -ae -ae -wy -Dc -Ga -hn -wl -Up -Vj -Vj -Vj -Vj -Vj -VU -TJ -Ru -Ru -Ru -WB -VR -Wb -Wl -Wz -VQ -WH -WO -WW -Xf -Xi -ae -ae -ae -ae -ae -ap -ap -ap -ap -ap -ap -ap -ap -ap -ez -eA -eA -eA -eA -eA -eA -eA -eB -eA -eA -eA -eA -eA -eB -eA -eA -eA -eA -eA -eA -eA -ez -ap -eG -eH -eH -eH -eH -eH -eH -eI -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eI -eH -eH -eH -eH -eH -eH -eG -"} -(93,1,1) = {" -as -aP -bg -bg -bG -bY -cv -cv -cv -dl -bV -dA -dH -eg -eq -eK -eW -fo -fo -fo -fP -eK -fZ -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ae -ae -ae -ae -ae -ae -wy -vt -Ga -FW -wl -Up -Vj -Vj -Vj -Vj -Vj -VU -Vw -Ru -Ru -Ru -VK -VR -Wc -Wm -Wz -VQ -WH -WP -WW -Xg -Xi -ae -ae -ae -ae -ae -ap -ap -ap -ap -ap -ap -ap -ap -ap -ez -eA -eA -eA -eA -eA -eA -eA -eB -eA -eA -eA -eA -eA -eB -eA -eA -eA -eA -eA -eA -eA -ez -ap -eG -eH -eH -eH -eH -eH -eH -eI -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eI -eH -eH -eH -eH -eH -eH -eG -"} -(94,1,1) = {" -as -aP -bg -bg -bG -bV -bV -bV -bV -bV -bV -dA -dH -dH -dH -eK -eX -fp -fp -fH -fQ -eK -fZ -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ae -ae -ae -ae -ae -ae -wy -Dn -Ga -ZA -wl -Up -Vj -Vj -Vj -Vj -Vj -VU -Vu -YE -Ru -Ru -VL -VQ -Wd -Wd -VQ -VQ -WH -WQ -WW -Xh -Xi -ae -ae -ae -ae -ae -ap -ap -ap -ap -ap -ap -ap -ap -ap -ez -eA -eA -eA -eA -eA -eA -eA -eB -eA -eA -eA -eA -eA -eB -eA -eA -eA -eA -eA -eA -eA -ez -ap -eG -eH -eH -eH -eH -eH -eH -eI -eH -eH -eH -eH -eH -eH -eH -eI -eI -eI -eI -eI -eI -eH -eH -eH -eH -eH -eH -eH -eI -eH -eH -eH -eH -eH -eH -eG -"} -(95,1,1) = {" -as -aP -bg -bg -bH -bZ -bZ -bZ -bZ -dm -dr -dA -dH -dH -dH -eK -eU -eU -eK -eK -eK -eK -fZ -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ae -ae -ae -ae -ae -ae -wy -wy -wy -wy -wl -Up -Vj -Vm -Vj -VN -Vj -VU -Vu -Ru -Ru -Ru -WB -VQ -VQ -VQ -VQ -VQ -WH -WR -WW -Zh -Xi -ae -ae -ae -ae -ae -ap -ap -ap -ap -ap -ap -ap -ap -ap -ez -eA -eA -eA -eA -eA -eA -eA -eB -eA -eA -eA -eA -eA -eB -eA -eA -eA -eA -eA -eA -eA -ez -ap -eG -eH -eH -eH -eH -eH -eH -eI -eH -eH -eH -eH -eH -eH -eI -eI -eH -eH -eH -eH -eI -eI -eH -eH -eH -eH -eH -eH -eI -eH -eH -eH -eH -eH -eH -eG -"} -(96,1,1) = {" -ar -aL -aL -aL -aL -aL -aL -aL -aL -aL -aL -ar -aL -aL -aL -aL -aL -aL -aL -aL -aL -aL -ar -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -wl -Uu -Vj -Vj -Vj -Vj -Vj -Yt -Vu -Ru -Ru -Ru -WB -VQ -VZ -VZ -VQ -VQ -WH -WV -WW -WW -Xi -ae -ae -ae -ae -ae -ap -ap -ap -ap -ap -ap -ap -ap -ap -ez -eA -eA -eA -eA -eA -eA -eA -eB -eA -eA -eA -eA -eA -eB -eA -eA -eA -eA -eA -eA -eA -ez -ap -eG -eH -eH -eH -eH -eH -eH -eI -eI -eI -eI -eI -eI -eI -eI -eH -eH -eH -eH -eH -eH -eI -eI -eI -eI -eI -eI -eI -eI -eH -eH -eH -eH -eH -eH -eG -"} -(97,1,1) = {" -as -aS -bi -ah -au -ay -ay -ay -ay -aE -aS -dB -dM -eh -eh -eh -eY -fq -fz -fz -fz -fS -fZ -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -wl -Up -Vj -Vj -Vj -Vm -Vj -VU -Vu -Ru -Ru -Ru -WB -VR -We -Wo -Wz -VQ -VQ -VQ -ZE -VM -Xi -ae -ae -ae -ae -ae -ap -ap -ap -ap -ap -ap -ap -ap -ap -ez -eA -eA -eA -eA -eA -eA -eA -eB -eC -eA -eE -eA -eF -eB -eA -eA -eA -eA -eA -eA -eA -ez -ap -eG -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eG -"} -(98,1,1) = {" -as -aS -bi -bv -av -az -az -az -az -aF -aS -dB -dN -ei -ei -ei -eZ -fr -ei -ei -ei -fJ -fZ -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -wl -Us -Vn -Vj -Vj -Vm -VO -VP -Vu -Ru -Ru -Zi -WB -VR -Wk -Wu -Wz -VQ -VQ -VQ -WZ -VM -ae -ae -ae -ae -ae -ae -ap -ap -ap -ap -ap -ap -ap -ap -ap -ez -eA -eA -eA -eA -eA -eA -eA -eA -eB -eC -eC -eF -eF -eA -eA -eA -eA -eA -eA -eA -eA -ez -ap -eG -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eG -"} -(99,1,1) = {" -as -aS -bi -ak -aw -aw -aw -aw -aw -aw -aw -dB -dM -eh -dN -ei -eZ -fr -ei -fJ -fz -fS -fZ -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -wl -Ut -Us -Vs -VB -Vs -VP -Ut -Vu -Ru -Ru -Ru -VK -VQ -Wd -Wd -VQ -VZ -VZ -VQ -Xa -VM -ae -ae -ae -ae -ae -ae -ap -ap -ap -ap -ap -ap -ap -ap -ap -ez -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -ez -ap -eG -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eG -"} -(100,1,1) = {" -as -aS -bi -bi -bI -ca -cw -cS -dd -cS -ds -dB -dO -ei -dN -ei -fa -fr -ei -fJ -ei -fT -fZ -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -wl -wl -Vo -Vo -Vo -Vo -Vo -wl -Vu -Ru -Ru -Ru -VL -VQ -VQ -VQ -VR -WA -WI -Wz -Xb -VM -ae -ae -ae -ae -ae -ae -ap -ap -ap -ap -ap -ap -ap -ap -ap -ez -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -ez -ap -eG -eG -eG -eG -eG -eG -eG -eG -eG -eG -eG -eG -eG -eG -eG -eG -eG -eG -eG -eG -eG -eG -eG -eG -eG -eG -eG -eG -eG -eG -eG -eG -eG -eG -eG -eG -"} -(101,1,1) = {" -as -aS -bi -aS -bJ -cb -cx -cT -cy -cT -dt -dB -dP -ej -dN -ei -eZ -fr -ei -fJ -fA -fU -fZ -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -wl -TZ -Vi -Vi -Vi -Vi -Vi -VX -Vu -Ru -Ru -Ru -WB -VQ -VQ -VQ -VR -WF -WL -Wz -Xc -VM -ae -ae -ae -ae -ae -ae -ap -ap -ap -ap -ap -ap -ap -ap -ap -ez -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -ez -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -"} -(102,1,1) = {" -as -aS -bi -bt -bK -cb -cy -cy -cy -cT -dt -dB -dN -ei -ei -ei -eZ -fr -ei -ei -ei -fJ -fZ -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -wl -Va -Vp -Ut -Ut -Ut -Ut -VU -Vu -YE -Ru -Ru -VM -VY -ZC -VQ -VQ -Wd -Wd -ZC -Xd -VM -ae -ae -ae -ae -ae -ae -ap -ap -ap -ap -ap -ap -ap -ap -ap -ez -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -ez -ap -cr -cr -cr -cr -cr -cr -cr -cr -cr -cr -cr -cr -cr -cr -cr -cr -cr -cr -cr -cr -cr -cr -cr -cr -cr -cr -cr -cr -cr -cr -cr -cr -cr -cr -cr -cr -"} -(103,1,1) = {" -as -aS -bi -aS -bL -cb -cx -cT -cy -cT -dt -dB -dP -ej -ej -ej -fb -fs -fA -fA -fA -fU -fZ -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -wl -Up -Vq -Ut -Vr -Vr -Ut -VU -Vu -Ru -Ru -Ru -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -ae -ae -ae -ae -ae -ae -ae -ae -ae -ap -ap -ap -ap -ap -ez -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -eA -ez -ap -cr -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cr -"} -(104,1,1) = {" -as -aS -bi -bi -bM -cc -cz -cU -de -cU -du -dB -aG -aG -aR -aG -aG -aG -aG -bh -aG -aG -fZ -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -wl -Uu -Ut -Vt -Ut -Ut -Ut -XU -Vu -Ru -Ru -Ru -Vd -WS -WS -Zl -XX -Ym -Vd -YB -YK -YP -Vd -ae -ae -ae -ae -ae -ae -ae -ae -ae -ap -ap -ap -ap -ap -ez -ez -ez -ez -ez -ez -ez -ez -ez -ez -ez -ez -ez -ez -ez -ez -ez -ez -ez -ez -ez -ez -ez -ap -cr -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cr -"} -(105,1,1) = {" -as -ab -ad -al -al -al -al -al -aC -al -ab -dB -dK -dK -dJ -dK -dK -dK -dK -dJ -dK -dK -fZ -aq -aq -aq -aq -aq -aq -aq -aq -aq -aq -aq -aq -aq -ae -ae -ae -ae -ae -ae -ae -wl -Up -Ut -Ut -Ut -Ut -VD -VU -Vu -Ru -Ru -Ru -WC -WT -WS -XJ -XZ -WS -Vd -YC -YL -YP -Vd -ae -ae -ae -ae -ae -ae -ae -ae -ae -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -cr -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cr -"} -(106,1,1) = {" -as -aQ -aQ -aQ -aQ -aQ -aQ -aQ -aQ -aQ -aQ -dB -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -fZ -aq -uc -uc -uc -uc -uc -uc -uc -uc -uc -uc -uc -aq -ae -ae -ae -ae -ae -ae -ae -wl -Up -Ut -Vr -Ut -Ut -Ut -Wh -Vu -Ru -Ru -Zi -Ve -WS -WS -XK -Ya -WS -Vd -YD -YM -XN -Vd -ae -ae -ae -ae -ae -ae -ae -ae -ae -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -cr -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cr -"} -(107,1,1) = {" -ar -aL -aL -aL -aL -aL -aL -aL -aL -aL -aL -ar -aL -aL -aL -aL -aL -aL -aL -aL -aL -aL -ar -aq -uc -ue -ue -uf -ue -ue -ue -uf -ue -ue -uc -aq -ae -ae -ae -ae -ae -ae -ae -wl -Up -Ut -Ut -Ut -Ut -Ut -VU -TJ -Ru -Ru -Ru -Xk -WS -WS -XM -XZ -WS -Vd -YC -YN -YQ -Vd -ae -ae -ae -ae -ae -ae -ae -ae -ae -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -cr -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cr -"} -(108,1,1) = {" -as -aT -aT -aT -aT -aT -aT -aT -aT -aT -aT -dB -dQ -dQ -dQ -dQ -dQ -dQ -dQ -fK -fR -fR -fZ -aq -uc -uf -uf -uf -uf -ug -uf -uf -uf -uf -uc -aq -ae -ae -ae -ae -ae -ae -ae -wl -Up -Vr -Ut -Ut -Ut -Ut -VU -Vw -Ru -Ru -Ru -Xm -WS -WS -XN -Yb -Zq -Vd -Zx -XZ -YT -Vd -ae -ae -ae -ae -ae -ae -ae -ae -ae -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -cr -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cr -"} -(109,1,1) = {" -as -aT -bj -aT -aT -aT -aT -aT -aT -bj -aT -dB -dQ -dQ -dQ -dQ -dQ -dQ -dQ -fK -fR -fR -fZ -aq -uc -ue -ue -uf -ue -ue -ue -uf -ue -ue -uc -aq -ae -ae -ae -ae -ae -ae -ae -wl -Up -Ut -Ut -VD -Ut -Vr -VV -Vu -Ru -Ru -Ru -Xn -WS -WS -WS -WS -WS -Vd -XN -WS -YU -Vd -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -cr -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cI -cI -cI -cI -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cr -"} -(110,1,1) = {" -as -aT -aT -aT -aT -aT -aT -aT -aT -aT -aT -dB -dQ -ek -dQ -dQ -dQ -dQ -dQ -fK -fR -fR -fZ -aq -ud -uf -uf -uf -uf -uf -uf -uf -uf -uf -ud -aq -ae -ae -ae -ae -ae -ae -ae -wl -Up -Ut -Ut -Ut -Ut -Ut -VU -Vu -YE -Ru -Ru -WC -WT -WS -WS -WS -WS -Vd -Vd -Yw -Vd -Vd -Vd -Vd -Vd -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -cr -cD -cD -cD -cD -cD -cD -cD -cI -cI -cI -cI -cI -cI -cI -cI -cI -cI -cI -cD -cD -cI -cI -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cr -"} -(111,1,1) = {" -as -aT -aT -aT -bj -aT -aT -bj -aT -aT -aT -dB -dQ -dQ -dQ -dQ -dQ -dQ -dQ -fK -fR -fR -fZ -aq -bc -bc -bc -bQ -cs -bc -cs -dh -bc -bc -bc -aq -aq -ae -ae -ae -ae -ae -ae -wl -Uu -Ut -Vr -Ut -Ut -Ut -XU -Vu -Ru -Ru -Ru -WC -WT -WS -WS -WS -WS -Vd -Ym -WS -WS -WS -WS -Zf -Vd -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -cr -cD -cD -cD -cD -cD -cD -cD -cI -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cI -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cr -"} -(112,1,1) = {" -as -aT -aT -aT -aT -aT -aT -aT -aT -aT -aT -dB -dQ -dQ -dQ -eM -dQ -dQ -dQ -fK -fR -fR -fZ -aq -bc -bn -by -bR -bn -cO -bn -di -by -bc -bc -cY -aq -ae -ae -ae -ae -ae -ae -wl -Up -Ut -Ut -Ut -Ut -VD -VU -Vu -Ru -Ru -Ru -WC -WT -WS -WS -WS -WS -Yv -WS -WS -WS -YY -WS -WS -Vd -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -cr -cD -cD -cD -cD -cD -cD -cD -cI -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cI -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cr -"} -(113,1,1) = {" -as -aT -aT -aT -aT -aT -aT -aT -aT -aT -aT -dB -dQ -dQ -dQ -dQ -dQ -dQ -dQ -fK -fR -fR -fZ -aq -bc -bn -bn -bR -bn -bn -bn -di -bn -bn -dE -cZ -aq -ae -ae -ae -ae -ae -ae -wl -Us -Vn -Ut -VE -Ut -VO -VP -Vu -Ru -Ru -Ru -Vd -WS -WS -Zn -WS -WS -WS -WS -WS -WS -YZ -WS -Zq -Vd -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -cr -cD -cD -cD -cD -cD -cD -cD -cI -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cI -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cr -"} -(114,1,1) = {" -as -aT -aT -aT -bj -aT -aT -bj -aT -aT -aT -dB -dQ -dQ -es -dQ -dQ -dQ -dQ -fK -fR -fR -fZ -aq -bc -bn -bn -bR -bn -bn -bn -di -bn -bn -dE -ex -aq -ae -ae -ae -ae -ae -ae -wl -Ut -Us -Vs -VF -Vs -VP -Ut -Vu -Ru -Ru -Zi -Vd -Vd -Vd -Vd -Vd -Vd -Vd -YF -WS -WS -WS -WS -WS -Vd -ae -ae -ae -ae -ae -ae -TK -TM -TK -TM -TM -TM -TM -TM -TM -TK -TM -TM -TK -ae -ae -ae -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -cr -cD -cD -cD -cD -cD -cD -cD -cI -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cI -cI -cI -cI -cI -cD -cD -cD -cD -cD -cD -cD -cD -cr -"} -(115,1,1) = {" -as -aT -aT -aT -aT -aT -aT -aT -aT -aT -aT -dB -dQ -dQ -et -dQ -fc -dQ -dQ -fK -fR -fR -fZ -aq -bc -bn -bn -bn -bn -bn -bn -bn -bn -bn -dE -cZ -aq -ae -ae -ae -ae -ae -ae -wl -wl -Vo -Vo -Vo -Vo -Vo -wl -Vu -Ru -Ru -Ru -Vd -WU -Xy -XP -Yc -Yc -Vd -Zy -WS -WS -WS -WS -WS -Vd -ae -ae -ae -ae -ae -ae -TM -TN -TK -TT -TX -Ua -Ud -Ug -Ug -TK -TU -Uk -TM -ae -ae -ae -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -cr -cD -cD -cD -cD -cD -cD -cD -cI -cI -cI -cI -cI -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cI -cD -cD -cD -cD -cD -cD -cD -cD -cr -"} -(116,1,1) = {" -as -aT -bj -aT -aT -aT -aT -aT -aT -bj -aT -dB -dQ -dQ -dQ -dQ -dQ -dQ -dQ -fK -fR -fR -fZ -aq -bc -bn -bz -bn -bn -bn -bn -bn -bz -bc -bc -fF -aq -ae -ae -ae -ae -ae -ae -Vk -Vk -Vk -Vk -Vk -Vk -Vk -Vk -Uv -Ru -Ru -Ru -Vd -Xj -Xz -XQ -Yh -Yc -Vd -YH -WS -WS -Zb -WS -WS -Vd -ae -ae -ae -ae -ae -ae -TM -TP -TS -TU -TP -Ub -TP -TP -TU -TS -TU -Ul -TM -ae -ae -ae -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -cr -cD -cD -cD -cD -cD -cD -cD -cD -cD -cI -cI -cI -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cI -cI -cD -cD -cD -cD -cD -cD -cD -cr -"} -(117,1,1) = {" -as -aT -aT -aT -aT -aT -aT -aT -aT -aT -aT -dB -dQ -dQ -dQ -dQ -dQ -dQ -dQ -fK -fR -fR -fZ -aq -bc -bc -bc -bc -bc -bc -bc -bc -bc -bc -bc -ap -aq -ae -ae -ae -ae -ae -ae -Vk -Vc -Vz -Vc -Vc -Vz -Vc -Wi -YR -Ru -Ru -Ru -Vd -Zj -XA -XR -Yj -Zr -Yg -WS -WS -WS -Zc -WS -WS -Vd -ae -ae -ae -ae -ae -ae -TM -TQ -TK -TV -TP -TP -TP -TP -Ui -TK -TU -Um -TM -ae -ae -ae -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -cr -cD -cD -cD -cD -cD -cD -cD -cI -cI -cI -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cI -cI -cD -cD -cD -cD -cD -cD -cr -"} -(118,1,1) = {" -ar -aL -aL -aL -aL -aL -aL -aL -aL -aL -aL -ar -aL -aL -aL -aL -aL -aL -aL -aL -aL -aL -ar -aq -aq -aq -aq -aq -aq -aq -aq -aq -aq -aq -aq -aq -aq -ae -ae -ae -ae -ae -ae -Vk -Vc -Vc -Vc -Vc -Vc -Vc -Vk -UE -Ru -Ru -Ru -Vd -Xr -XB -YW -YW -YW -Yw -WS -WS -WS -WS -WS -Zq -Vd -ae -ae -ae -ae -ae -ae -TM -TR -TM -TW -TU -Uc -Uf -Uh -Uj -TM -TU -Uo -TM -ae -ae -ae -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -cr -cD -cD -cD -cD -cD -cD -cD -cI -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cI -cD -cD -cD -cD -cD -cD -cr -"} -(119,1,1) = {" -as -aU -aU -aU -aU -aU -aU -aU -aU -aU -aU -dB -dU -el -el -el -fd -ft -fB -fB -fB -fV -fZ -aI -aI -aI -ar -aI -aI -aI -ar -aI -aI -aI -ar -ap -ap -ae -ae -ae -ae -ae -ae -Vk -Vf -Vk -Vy -Vk -Vy -Vg -Vg -Vg -Wq -Ws -Ws -Vg -Vg -Vg -WS -WS -WS -Vd -WS -WS -WS -WS -WS -WS -Vd -ae -ae -ae -ae -ae -ae -TK -TM -TK -TM -TM -TM -TM -TM -TM -TK -TM -TM -TK -ae -ae -ae -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -cr -cD -cD -cD -cD -cD -cD -cD -cI -cI -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cI -cD -cD -cD -cD -cD -cD -cr -"} -(120,1,1) = {" -as -aU -aU -aU -aU -aU -aU -aU -aU -aU -aU -dB -dV -em -em -em -fe -fu -em -em -em -fW -dB -ga -ga -ga -dB -gN -gO -gO -dB -hx -hx -hx -fZ -ap -ap -ae -ae -ae -ae -ae -ae -Vk -Vb -Vk -Xp -Vk -Xp -Vg -Wj -Wp -Ti -YG -Ti -Wp -Wj -Vg -XS -Yk -Yo -Vd -Zz -YO -YV -Zd -Ze -Zg -Vd -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -cr -cD -cD -cD -cD -cD -cD -cD -cD -cI -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cI -cD -cD -cD -cD -cD -cD -cr -"} -(121,1,1) = {" -as -aU -aU -aU -aU -aU -aU -aU -aU -aU -aU -dB -dV -em -em -em -fe -fu -em -em -em -fW -dB -gb -ga -gq -dB -gO -gO -gP -dB -hy -hJ -hO -fZ -ap -ap -ae -ae -ae -ae -ae -ae -Vk -Vk -Vk -Vk -Vk -Vk -Vg -Vg -Vg -Wp -Vg -Wp -Vg -Vg -Vg -Vd -Vd -Vd -Vd -Vd -Vd -Vd -Vd -Vd -Vd -Vd -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -cr -cD -cD -cD -cD -cD -cD -cD -cD -cI -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cI -cD -cD -cD -cD -cD -cD -cr -"} -(122,1,1) = {" -as -aU -aU -aU -aU -aU -aU -aU -aU -aU -aU -dB -dV -em -em -em -fe -fu -em -em -em -fW -dB -gc -ga -gc -dB -gO -gO -gO -dB -hz -hK -hP -fZ -ap -ap -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -Vg -Wj -Vg -Wj -Vg -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -cr -cD -cD -cD -cD -cD -cD -cD -cD -cI -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cI -cD -cD -cD -cD -cD -cD -cr -"} -(123,1,1) = {" -as -aU -aU -aU -aU -aU -aU -aU -aU -aU -aU -dB -dV -em -em -em -fe -fu -em -em -em -fW -dB -gd -ga -ga -dB -gO -gN -gO -dB -hz -hK -hP -fZ -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -Vg -Vg -Vg -Vg -Vg -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -cr -cD -cD -cD -cD -cD -cD -cD -cI -cI -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cI -cD -cD -cD -cD -cD -cD -cr -"} -(124,1,1) = {" -as -aU -aU -aU -aU -aU -aU -aU -aU -aU -aU -dB -dV -em -em -em -fe -fu -em -em -em -fW -dB -gc -ga -gq -dB -gO -gO -gO -dB -hA -hL -hQ -fZ -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -cr -cD -cD -cD -cD -cD -cD -cD -cI -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cI -cD -cD -cD -cD -cD -cD -cr -"} -(125,1,1) = {" -as -aU -aU -aU -aU -aU -aU -aU -aU -aU -aU -dB -dW -en -en -en -ff -fv -fC -fC -fC -fX -dB -gc -ga -gc -dB -gP -gO -gO -dB -hx -hx -hx -fZ -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -cr -cD -cD -cD -cD -cD -cD -cD -cI -cI -cI -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cI -cI -cD -cD -cD -cD -cD -cD -cr -"} -(126,1,1) = {" -as -aU -aU -aU -aU -aU -aU -aU -aU -aU -aU -dB -aH -aH -aX -aH -aH -aH -aH -br -aH -aH -fZ -aL -aL -aL -ar -aL -aL -aL -ar -aL -aL -aL -ar -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -cr -cD -cD -cD -cD -cD -cD -cD -cD -cD -cI -cI -cI -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cI -cI -cD -cD -cD -cD -cD -cD -cD -cr -"} -(127,1,1) = {" -as -aU -aU -aU -aU -aU -aU -aU -aU -aU -aU -dB -dS -dS -dR -dS -dS -dS -dS -dR -dS -dS -dB -ge -gl -gr -dB -gQ -gR -gQ -dB -hB -hD -hD -fZ -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -cr -cD -cD -cD -cD -cD -cD -cD -cI -cI -cI -cI -cI -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cI -cD -cD -cD -cD -cD -cD -cD -cD -cr -"} -(128,1,1) = {" -as -aU -aU -aU -aU -aU -aU -aU -aU -aU -aU -dB -dR -dR -dR -dR -dR -dR -dR -dR -dR -dR -dB -gf -gl -gr -dB -gR -gQ -gR -dB -hC -hC -hC -fZ -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -cr -cD -cD -cD -cD -cD -cD -cD -cI -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cI -cI -cI -cI -cI -cD -cD -cD -cD -cD -cD -cD -cD -cr -"} -(129,1,1) = {" -ar -aL -aL -aL -aL -aL -aL -aL -aL -aL -aL -ar -aL -aL -aL -aL -aL -aL -aL -aL -aL -aL -as -gg -gl -gr -dB -gQ -hg -gQ -dB -hD -hD -hD -fZ -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -cr -cD -cD -cD -cD -cD -cD -cD -cI -cD -fk -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cI -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cr -"} -(130,1,1) = {" -as -aY -bk -bk -bk -bk -cA -cA -cA -cA -dv -dB -dX -dY -dY -dY -dY -dY -dY -dY -dY -dY -dB -gh -gl -gr -dB -gR -gQ -gR -dB -hD -hD -hD -fZ -ae -ae -ae -Uw -Ux -Uw -Ux -Ux -Ux -Ux -Ux -Ux -Uw -Ux -Ux -Uw -ae -ae -ae -ae -ae -Sm -Sn -Sm -Sn -Sn -Sn -Sn -Sn -Sn -Sm -Sn -Sn -Sm -ae -ae -ae -ae -ae -ae -SX -SY -SX -SY -SY -SY -SY -SY -SY -SX -SY -SY -SX -ae -ae -ae -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -cr -cD -cD -cD -cD -cD -cD -cD -cI -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cI -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cr -"} -(131,1,1) = {" -as -aZ -bl -bl -bl -bl -bl -bl -bl -bl -dw -dB -dX -dY -dY -eo -eo -eo -eo -dY -dY -dY -dB -gi -gl -gr -dB -gQ -gR -gQ -dB -hE -hE -hE -fZ -ae -ae -ae -Ux -Uz -Uw -UG -UK -UM -UQ -US -US -Uw -UH -UW -Ux -ae -ae -ae -ae -ae -Sn -So -Sm -Su -SA -SB -SE -SK -SK -Sm -Sw -SQ -Sn -ae -ae -ae -ae -ae -ae -SY -SZ -SX -Tk -Tp -Tq -Tu -Ty -Ty -SX -Tl -TC -SY -ae -ae -ae -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -cr -cD -cD -cD -cD -cD -cD -cD -cI -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cI -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cr -"} -(132,1,1) = {" -as -aZ -bl -bl -bl -bl -bl -bl -bl -bl -dw -dB -dY -dY -dY -eN -eN -eN -eN -dY -dY -dY -dB -gf -gl -gr -dB -gR -gQ -gR -dB -hD -hD -hR -fZ -ae -ae -ae -Ux -UA -UF -UH -UA -UN -UA -UA -UH -UF -UH -UX -Ux -ae -ae -ae -ae -ae -Sn -Sp -Ss -Sw -Sp -SC -Sp -Sp -Sw -Ss -Sw -SR -Sn -ae -ae -ae -ae -ae -ae -SY -Ta -Td -Tl -Ta -Tr -Ta -Ta -Tl -Td -Tl -TD -SY -ae -ae -ae -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -cr -cD -cD -cD -cD -cD -cD -cD -cI -cI -cI -cI -cI -cI -cI -cI -cI -cI -cI -cD -cD -cI -cI -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cr -"} -(133,1,1) = {" -as -aZ -bl -bl -bl -bl -bl -bl -bl -bl -dw -dB -dY -dY -ev -eO -fg -fg -eQ -fM -eo -dY -fZ -aL -aL -aL -ar -aL -aL -aL -ar -aL -aL -aL -ar -ae -ae -ae -Ux -UC -Uw -UI -UA -UA -UA -UA -UU -Uw -UH -UY -Ux -ae -ae -ae -ae -ae -Sn -Sq -Sm -Sx -Sp -Sp -Sp -Sp -SO -Sm -Sw -SS -Sn -ae -ae -ae -ae -ae -ae -SY -Tb -SX -Tm -Ta -Ta -Ta -Ta -TA -SX -Tl -TE -SY -ae -ae -ae -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -cr -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cI -cI -cI -cI -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cr -"} -(134,1,1) = {" -as -aZ -bl -bl -bl -bl -bl -bl -bl -bl -dw -dB -dY -eo -ew -eP -fh -fw -fD -fM -eo -dY -dB -gj -gk -gs -dB -gS -gS -gS -dB -hF -hF -hF -fZ -ae -ae -ae -Ux -UD -Ux -UJ -UH -UP -UR -UT -UV -Ux -UH -UZ -Ux -ae -ae -ae -ae -ae -Sn -Sr -Sn -Sz -Sw -SD -SF -SN -SP -Sn -Sw -ST -Sn -ae -ae -ae -ae -ae -ae -SY -Tc -SY -To -Tl -Tt -Tx -Tz -TB -SY -Tl -TH -SY -ae -ae -ae -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -cr -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cr -"} -(135,1,1) = {" -as -aZ -bl -bl -bl -bl -bl -bl -bl -bl -dw -dB -dY -eo -ew -eP -fi -fx -fD -fM -eo -dY -dB -gk -gm -gk -dB -gS -gS -gS -dB -hF -hF -hF -fZ -ae -ae -ae -Uw -Ux -Uw -Ux -Ux -Ux -Ux -Ux -Ux -Uw -Ux -Ux -Uw -ae -ae -ae -ae -ae -Sm -Sn -Sm -Sn -Sn -Sn -Sn -Sn -Sn -Sm -Sn -Sn -Sm -ae -ae -ae -ae -ae -ae -SX -SY -SX -SY -SY -SY -SY -SY -SY -SX -SY -SY -SX -ae -ae -ae -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -cr -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cr -"} -(136,1,1) = {" -as -ba -bm -bm -bm -bm -cB -cB -cB -cB -dx -dB -dY -eo -ew -eQ -fj -fj -fE -fN -dY -dY -dB -gk -gn -gk -dB -gS -gS -gS -dB -hF -hF -hF -fZ -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -cr -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cr -"} -(137,1,1) = {" -as -ac -ac -am -ac -ac -ac -ac -aD -ac -ac -dB -dY -dY -dY -eR -eR -eR -eR -dY -dY -dY -dB -gk -go -gk -dB -gS -gS -gS -dB -hF -hF -hF -fZ -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -cr -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cr -"} -(138,1,1) = {" -as -aW -aW -aV -aW -aW -aW -aW -aV -aW -aW -dB -dY -dY -dY -eo -eo -eo -eo -dY -dY -fY -dB -gk -gk -gk -dB -gS -gS -gS -dB -hF -hF -hF -fZ -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -cr -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cr -"} -(139,1,1) = {" -as -aV -aV -aV -aV -aV -aV -aV -aV -aV -aV -dB -dY -dY -dY -dY -dY -dY -dY -dY -dY -fY -dB -gk -gk -gt -dB -gS -gS -gS -dB -hF -hF -hF -fZ -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -cr -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cD -cr -"} -(140,1,1) = {" -ar -bb -bb -bb -bb -bb -bb -bb -bb -bb -bb -ar -bb -bb -bb -bb -bb -bb -bb -bb -bb -bb -ar -bb -bb -bb -ar -bb -bb -bb -ar -bb -bb -bb -ar -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -cr -cr -cr -cr -cr -cr -cr -cr -cr -cr -cr -cr -cr -cr -cr -cr -cr -cr -cr -cr -cr -cr -cr -cr -cr -cr -cr -cr -cr -cr -cr -cr -cr -cr -cr -cr -"} diff --git a/maps/tether/submaps/om_ships/aro2.dmm b/maps/tether/submaps/om_ships/aro2.dmm index a50769d10c4..cfa69433367 100644 --- a/maps/tether/submaps/om_ships/aro2.dmm +++ b/maps/tether/submaps/om_ships/aro2.dmm @@ -1016,6 +1016,11 @@ icon_state = "techfloororange_corners"; dir = 1 }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, /turf/simulated/floor/tiled/techfloor/grid, /area/aro2/bighallway) "cc" = ( @@ -1490,6 +1495,11 @@ /obj/structure/railing{ dir = 4 }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, /turf/simulated/floor/bluegrid, /area/aro2/bighallway) "de" = ( @@ -1897,6 +1907,11 @@ /turf/simulated/wall/rpshull, /area/aro2/storage) "dS" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, /turf/simulated/floor/bluegrid, /area/aro2/bighallway) "dT" = ( @@ -2045,6 +2060,9 @@ initial_shield_modes = 2113; target_radius = 31 }, +/obj/structure/cable/cyan{ + icon_state = "0-4" + }, /turf/simulated/floor/bluegrid, /area/aro2/bighallway) "ee" = ( @@ -4772,6 +4790,15 @@ }, /turf/simulated/floor/tiled/techfloor, /area/shuttle/aroboat2) +"TY" = ( +/obj/effect/floor_decal/techfloor/orange, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/aro2/bighallway) "VH" = ( /obj/structure/grille, /obj/structure/window/phoronreinforced/full, @@ -15689,7 +15716,7 @@ bI hT gU cb -cr +TY dd dS eu diff --git a/maps/tether/submaps/rogue_mines/rogue_mine1.dmm b/maps/tether/submaps/rogue_mines/rogue_mine1.dmm index 9df2ffbf5c1..e817167b291 100644 --- a/maps/tether/submaps/rogue_mines/rogue_mine1.dmm +++ b/maps/tether/submaps/rogue_mines/rogue_mine1.dmm @@ -10193,7 +10193,7 @@ a a a a -a +c a a a @@ -10755,7 +10755,7 @@ a a a a -c +a a a a diff --git a/maps/tether/submaps/rogue_mines/rogue_mine2.dmm b/maps/tether/submaps/rogue_mines/rogue_mine2.dmm index 31092f36338..f084d959fc3 100644 --- a/maps/tether/submaps/rogue_mines/rogue_mine2.dmm +++ b/maps/tether/submaps/rogue_mines/rogue_mine2.dmm @@ -10193,7 +10193,7 @@ a a a a -a +c a a a @@ -10755,7 +10755,7 @@ a a a a -c +a a a a diff --git a/maps/tether/submaps/rogue_mines/rogue_mine3.dmm b/maps/tether/submaps/rogue_mines/rogue_mine3.dmm index 6bbb7bdd588..633b3ec4701 100644 --- a/maps/tether/submaps/rogue_mines/rogue_mine3.dmm +++ b/maps/tether/submaps/rogue_mines/rogue_mine3.dmm @@ -10193,7 +10193,7 @@ a a a a -a +c a a a @@ -10755,7 +10755,7 @@ a a a a -c +a a a a diff --git a/maps/tether/submaps/rogue_mines/rogue_mine4.dmm b/maps/tether/submaps/rogue_mines/rogue_mine4.dmm index 1c9cf37ade7..760dddde164 100644 --- a/maps/tether/submaps/rogue_mines/rogue_mine4.dmm +++ b/maps/tether/submaps/rogue_mines/rogue_mine4.dmm @@ -10193,7 +10193,7 @@ a a a a -a +c a a a @@ -10755,7 +10755,7 @@ a a a a -c +a a a a diff --git a/maps/tether/submaps/tether_misc.dmm b/maps/tether/submaps/tether_misc.dmm index 7176f98c98f..d8cd179f852 100644 --- a/maps/tether/submaps/tether_misc.dmm +++ b/maps/tether/submaps/tether_misc.dmm @@ -743,6 +743,29 @@ /turf/space, /turf/space/transit/north, /area/space) +"ce" = ( +/obj/effect/step_trigger/teleporter/planetary_fall/virgo3b, +/turf/space/transit/south, +/area/space) +"cf" = ( +/turf/space/transit/south, +/area/space) +"cg" = ( +/obj/effect/step_trigger/thrower{ + affect_ghosts = 1; + name = "thrower_leftnostop" + }, +/turf/space/transit/south, +/area/space) +"ch" = ( +/obj/effect/shuttle_landmark/transit{ + base_area = /area/space; + base_turf = /turf/space/transit/east; + landmark_tag = "belter_transit"; + name = "Belter Transit" + }, +/turf/space/transit/south, +/area/space) "cj" = ( /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; @@ -2078,15 +2101,6 @@ icon_state = "sandwater" }, /area/beach) -"xc" = ( -/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) "xe" = ( /obj/machinery/account_database{ dir = 1; @@ -12415,29 +12429,29 @@ ap ap ap ap -oI -oI -oI -oI -oI -oI -oI -oI -oI -oI -oI -oI -oI -oI -oI -oI -oI -oI -oI -oI -oI -oI -oI +ce +ce +ce +ce +ce +ce +ce +ce +ce +ce +ce +ce +ce +ce +ce +ce +ce +ce +ce +ce +ce +ce +ce ap iO iO @@ -12557,29 +12571,29 @@ ap ap ap ap -oI -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -oI +ce +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +ce ap iO El @@ -12699,29 +12713,29 @@ ap ap ap ap -oI -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -oI +ce +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +ce ap iO El @@ -12841,29 +12855,29 @@ ap ap ap ap -oI -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -oI +ce +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +ce ap iO El @@ -12983,29 +12997,29 @@ ap ap ap ap -oI -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -oI +ce +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +ce ap iO El @@ -13125,29 +13139,29 @@ ap ap ap ap -oI -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -oI +ce +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +ce ap iO El @@ -13267,29 +13281,29 @@ ap ap ap ap -oI -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -oI +ce +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +ce ap iO El @@ -13409,29 +13423,29 @@ ap ap ap ap -oI -qn -qn -qn -qn -qn -qn -qn -ML -ML -ML -ML -ML -ML -ML -qn -qn -qn -qn -qn -qn -qn -oI +ce +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +ce ap iO El @@ -13551,29 +13565,29 @@ ap ap ap ap -oI -qn -qn -qn -qn -qn -qn -qn -ML -qn -qn -qn -qn -qn -ML -qn -qn -qn -qn -qn -qn -qn -oI +ce +cf +cf +cf +cf +cf +cf +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +cf +cf +cf +cf +ce ap iO El @@ -13693,29 +13707,29 @@ ap ap ap ap -oI -qn -qn -qn -qn -qn -qn -qn -ML -qn -qn -qn -qn -qn -ML -qn -qn -qn -qn -qn -qn -qn -oI +ce +cf +cf +cf +cf +cf +cf +cg +cf +cf +cf +cf +cf +cf +cf +cf +cf +cg +cg +cf +cf +cf +ce ap iO El @@ -13835,29 +13849,29 @@ ap ap ap ap -oI -qn -qn -qn -qn -qn -qn -qn -ML -qn -qn -qn -qn -qn -ML -qn -qn -qn -qn -qn -qn -qn -oI +ce +cf +cf +cf +cf +cf +cf +cg +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cg +cf +cf +cf +ce ap iO El @@ -13977,29 +13991,29 @@ ap ap ap ap -oI -qn -qn -qn -qn -qn -qn -qn -ML -qn -qn -qn -qn -qn -ML -qn -qn -qn -qn -qn -qn -qn -oI +ce +cf +cf +cf +cf +cf +cf +cg +cf +cf +cf +cf +cf +cf +cf +cf +cf +ch +cg +cf +cf +cf +ce ap iO El @@ -14119,29 +14133,29 @@ ap ap ap ap -oI -qn -qn -qn -qn -qn -qn -qn -ML -qn -qn -qn -qn -qn -ML -qn -qn -qn -qn -qn -qn -qn -oI +ce +cf +cf +cf +cf +cf +cf +cg +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cg +cf +cf +cf +ce ap iO El @@ -14261,29 +14275,29 @@ ap ap ap ap -oI -qn -qn -qn -qn -qn -qn -qn -ML -qn -qn -qn -qn -qn -ML -qn -qn -qn -qn -qn -qn -qn -oI +ce +cf +cf +cf +cf +cf +cf +cg +cf +cf +cf +cf +cf +cf +cf +cf +cf +cg +cg +cf +cf +cf +ce ap iO El @@ -14403,29 +14417,29 @@ ap ap ap ap -oI -qn -qn -qn -qn -qn -qn -qn -ML -qn -qn -qn -qn -qn -ML -qn -qn -qn -qn -qn -qn -qn -oI +ce +cf +cf +cf +cf +cf +cf +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +cf +cf +cf +cf +ce ap iO El @@ -14545,29 +14559,29 @@ ap ap ap ap -oI -qn -qn -qn -qn -qn -qn -qn -ML -qn -qn -qn -qn -qn -ML -qn -qn -qn -qn -qn -qn -qn -oI +ce +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +ce ap iO El @@ -14687,29 +14701,29 @@ ap ap ap ap -oI -qn -qn -qn -qn -qn -qn -qn -ML -qn -qn -qn -qn -qn -ML -qn -qn -qn -qn -qn -qn -qn -oI +ce +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +ce ap iO El @@ -14829,29 +14843,29 @@ ap ap ap ap -oI -qn -qn -qn -qn -qn -qn -qn -ML -zb -qn -xc -qn -tD -ML -qn -qn -qn -qn -qn -qn -qn -oI +ce +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +ce ap iO El @@ -14971,29 +14985,29 @@ ap ap ap ap -oI -qn -qn -qn -qn -qn -qn -qn -qn -ML -zb -zb -tD -tD -qn -qn -qn -qn -qn -qn -qn -qn -oI +ce +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +ce ap iO El @@ -15113,29 +15127,29 @@ ap ap ap ap -oI -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -oI +ce +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +ce ap iO El @@ -15255,29 +15269,29 @@ ap ap ap ap -oI -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -oI +ce +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +ce ap iO El @@ -15397,29 +15411,29 @@ ap ap ap ap -oI -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -oI +ce +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +ce ap iO El @@ -15539,29 +15553,29 @@ ap ap ap ap -oI -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -oI +ce +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +ce ap iO El @@ -15681,29 +15695,29 @@ ap ap ap ap -oI -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -oI +ce +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +cf +ce ap iO El @@ -15823,29 +15837,29 @@ ap ap ap ap -oI -oI -oI -oI -oI -oI -oI -oI -oI -oI -oI -oI -oI -oI -oI -oI -oI -oI -oI -oI -oI -oI -oI +ce +ce +ce +ce +ce +ce +ce +ce +ce +ce +ce +ce +ce +ce +ce +ce +ce +ce +ce +ce +ce +ce +ce ap iO El diff --git a/maps/tether/tether-01-surface1.dmm b/maps/tether/tether-01-surface1.dmm index 5809fdb8979..5b7ddf5f42f 100644 --- a/maps/tether/tether-01-surface1.dmm +++ b/maps/tether/tether-01-surface1.dmm @@ -29,10 +29,9 @@ /turf/simulated/mineral, /area/tether/surfacebase/outside/outside1) "aai" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" +/obj/machinery/camera/network/outside{ + icon_state = "camera"; + dir = 1 }, /turf/simulated/floor/tiled/steel_dirty/virgo3b, /area/tether/surfacebase/mining_main/external) @@ -49,37 +48,33 @@ /turf/simulated/floor/virgo3b, /area/tether/surfacebase/outside/outside1) "aak" = ( -/obj/machinery/light, +/obj/machinery/power/apc{ + dir = 2; + name = "south bump"; + pixel_y = -28 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, /turf/simulated/floor/tiled/steel_dirty/virgo3b, /area/tether/surfacebase/mining_main/external) "aal" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/floor_decal/industrial/loading{ - dir = 1 +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" }, /turf/simulated/floor/tiled/steel_dirty/virgo3b, /area/tether/surfacebase/mining_main/external) "aam" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/floor_decal/industrial/loading, +/obj/machinery/light, /turf/simulated/floor/tiled/steel_dirty/virgo3b, /area/tether/surfacebase/mining_main/external) "aan" = ( -/obj/machinery/camera/network/cargo{ - dir = 1; - name = "security camera" - }, -/obj/machinery/conveyor_switch/oneway{ - convdir = -1; - id = "mining_inbound"; - name = "inbound conveyor" - }, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/tether/surfacebase/mining_main/external) -"aao" = ( /turf/simulated/wall, -/area/tether/surfacebase/mining_main/airlock) -"aap" = ( +/area/tether/surfacebase/cargo/mining/airlock) +"aao" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -93,8 +88,8 @@ }, /obj/effect/map_helper/airlock/door/ext_door, /turf/simulated/floor/tiled/steel_grid, -/area/tether/surfacebase/mining_main/airlock) -"aaq" = ( +/area/tether/surfacebase/cargo/mining/airlock) +"aap" = ( /obj/machinery/door/airlock/glass_external{ frequency = 1379; icon_state = "door_locked"; @@ -108,32 +103,18 @@ }, /obj/effect/map_helper/airlock/door/ext_door, /turf/simulated/floor/tiled/steel_grid, -/area/tether/surfacebase/mining_main/airlock) -"aar" = ( -/turf/simulated/wall, -/area/tether/surfacebase/mining_main/refinery) -"aas" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "mining_inbound" - }, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/tether/surfacebase/mining_main/refinery) -"aat" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "mining_outbound" - }, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/tether/surfacebase/mining_main/refinery) -"aau" = ( +/area/tether/surfacebase/cargo/mining/airlock) +"aaq" = ( /obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary/phoronlock{ frequency = 1379; scrub_id = "mining_airlock_scrubber" }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/mining_main/airlock) -"aav" = ( +/area/tether/surfacebase/cargo/mining/airlock) +"aar" = ( +/turf/simulated/wall, +/area/tether/surfacebase/cargo/mining) +"aas" = ( /obj/structure/grille, /obj/structure/railing{ dir = 4 @@ -145,8 +126,8 @@ }, /obj/effect/map_helper/airlock/atmos/chamber_pump, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/mining_main/airlock) -"aaw" = ( +/area/tether/surfacebase/cargo/mining/airlock) +"aat" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 }, @@ -178,8 +159,8 @@ icon_state = "2-4" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/airlock) -"aax" = ( +/area/tether/surfacebase/cargo/mining/airlock) +"aau" = ( /obj/effect/floor_decal/steeldecal/steel_decals4{ dir = 9 }, @@ -204,24 +185,8 @@ icon_state = "0-8" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/airlock) -"aay" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "mining_outbound" - }, -/obj/structure/plasticflaps, -/turf/simulated/floor/virgo3b, -/area/tether/surfacebase/mining_main/refinery) -"aaz" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "mining_inbound" - }, -/obj/structure/plasticflaps, -/turf/simulated/floor/virgo3b, -/area/tether/surfacebase/mining_main/refinery) -"aaA" = ( +/area/tether/surfacebase/cargo/mining/airlock) +"aav" = ( /obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary/phoronlock{ frequency = 1379; scrub_id = "mining_airlock_scrubber" @@ -230,8 +195,8 @@ pixel_x = -32 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/mining_main/airlock) -"aaB" = ( +/area/tether/surfacebase/cargo/mining/airlock) +"aaw" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 }, @@ -250,92 +215,8 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/airlock) -"aaC" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/tether/surfacebase/mining_main/refinery) -"aaD" = ( -/obj/structure/disposaloutlet{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk, -/obj/machinery/conveyor{ - dir = 1; - id = "mining_outbound" - }, -/turf/simulated/floor/virgo3b, -/area/tether/surfacebase/mining_main/refinery) -"aaE" = ( -/obj/machinery/disposal/deliveryChute{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk, -/turf/simulated/floor/virgo3b, -/area/tether/surfacebase/mining_main/refinery) -"aaF" = ( -/obj/random/maintenance/cargo, -/obj/random/junk, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/tether/surfacebase/mining_main/refinery) -"aaG" = ( -/obj/random/contraband, -/obj/random/maintenance/cargo, -/obj/random/junk, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/tether/surfacebase/mining_main/refinery) -"aaH" = ( -/obj/machinery/mineral/output, -/obj/machinery/conveyor{ - dir = 10; - id = "mining_interior" - }, -/turf/simulated/floor/plating, -/area/tether/surfacebase/mining_main/refinery) -"aaI" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "mining_interior" - }, -/turf/simulated/floor/plating, -/area/tether/surfacebase/mining_main/refinery) -"aaJ" = ( -/obj/machinery/mineral/input, -/obj/machinery/conveyor{ - dir = 4; - id = "mining_interior" - }, -/turf/simulated/floor/plating, -/area/tether/surfacebase/mining_main/refinery) -"aaK" = ( -/obj/machinery/mineral/processing_unit, -/turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/mining_main/refinery) -"aaL" = ( -/obj/machinery/mineral/output, -/obj/machinery/conveyor{ - dir = 4; - id = "mining_interior" - }, -/turf/simulated/floor/plating, -/area/tether/surfacebase/mining_main/refinery) -"aaM" = ( -/obj/machinery/mineral/stacking_machine, -/turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/mining_main/refinery) -"aaN" = ( -/obj/machinery/mineral/output, -/obj/machinery/conveyor{ - dir = 9; - id = "mining_interior" - }, -/turf/simulated/floor/plating, -/area/tether/surfacebase/mining_main/refinery) -"aaO" = ( +/area/tether/surfacebase/cargo/mining/airlock) +"aax" = ( /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 6 }, @@ -349,8 +230,8 @@ dir = 9 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/airlock) -"aaP" = ( +/area/tether/surfacebase/cargo/mining/airlock) +"aay" = ( /obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary/phoronlock{ frequency = 1379; scrub_id = "mining_airlock_scrubber" @@ -359,32 +240,8 @@ pixel_x = -32 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/mining_main/airlock) -"aaQ" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/north_stairs_one) -"aaR" = ( -/obj/machinery/mineral/unloading_machine, -/turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/mining_main/refinery) -"aaS" = ( +/area/tether/surfacebase/cargo/mining/airlock) +"aaz" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 }, @@ -406,7 +263,291 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/airlock) +/area/tether/surfacebase/cargo/mining/airlock) +"aaA" = ( +/obj/machinery/embedded_controller/radio/airlock/phoron{ + dir = 8; + id_tag = "mining_airlock"; + pixel_x = 25 + }, +/obj/machinery/airlock_sensor/phoron{ + id_tag = "mining_airlock_sensor"; + pixel_x = 25; + pixel_y = 11 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/map_helper/airlock/sensor/chamber_sensor, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargo/mining/airlock) +"aaB" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "mining_airlock_inner"; + locked = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/effect/map_helper/airlock/door/int_door, +/turf/simulated/floor/tiled/steel_grid, +/area/tether/surfacebase/cargo/mining/airlock) +"aaC" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "mining_airlock_inner"; + locked = 1 + }, +/obj/effect/map_helper/airlock/door/int_door, +/turf/simulated/floor/tiled/steel_grid, +/area/tether/surfacebase/cargo/mining/airlock) +"aaD" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor{ + dir = 5 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/rust, +/obj/structure/closet, +/obj/random/maintenance/cargo, +/obj/random/maintenance/cargo, +/obj/random/maintenance/clean, +/obj/random/tool, +/turf/simulated/floor/plating, +/area/maintenance/lower/trash_pit) +"aaE" = ( +/turf/simulated/wall, +/area/construction/vacant_mining_ops) +"aaF" = ( +/obj/machinery/washing_machine, +/turf/simulated/floor/tiled/techfloor, +/area/tether/surfacebase/cargo/mining) +"aaG" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargo/mining) +"aaH" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/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 + }, +/obj/machinery/access_button/airlock_interior{ + master_tag = "mining_airlock"; + pixel_x = 25; + pixel_y = -8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargo/mining) +"aaI" = ( +/obj/machinery/door/airlock/maintenance/common{ + name = "Trash Pit Access"; + req_one_access = list(48) + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/steel_grid, +/area/maintenance/lower/trash_pit) +"aaJ" = ( +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/rust, +/obj/machinery/light/small{ + dir = 4; + pixel_y = 0 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/trash_pit) +"aaK" = ( +/obj/structure/sign/nosmoking_2{ + pixel_x = -32 + }, +/obj/machinery/washing_machine, +/turf/simulated/floor/tiled/techfloor, +/area/tether/surfacebase/cargo/mining) +"aaL" = ( +/turf/simulated/floor/plating, +/area/construction/vacant_mining_ops) +"aaM" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargo/mining) +"aaN" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/machinery/camera/network/cargo{ + icon_state = "camera"; + dir = 8 + }, +/obj/structure/closet/hydrant{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargo/mining) +"aaO" = ( +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/lower/trash_pit) +"aaQ" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/north_stairs_one) +"aaR" = ( +/obj/effect/floor_decal/techfloor, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/power/apc{ + dir = 2; + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/trash_pit) +"aaS" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/bordercorner{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargo/mining) "aaT" = ( /obj/structure/cable{ d1 = 4; @@ -444,107 +585,53 @@ /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/vacant_site) "aaX" = ( -/obj/structure/plasticflaps, -/obj/machinery/conveyor{ - dir = 2; - id = "mining_interior" +/obj/effect/floor_decal/borderfloor{ + dir = 1 }, -/turf/simulated/floor/plating, -/area/tether/surfacebase/mining_main/refinery) -"aaY" = ( -/obj/machinery/embedded_controller/radio/airlock/phoron{ - dir = 8; - id_tag = "mining_airlock"; - pixel_x = 25 +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 }, -/obj/machinery/airlock_sensor/phoron{ - id_tag = "mining_airlock_sensor"; - pixel_x = 25; - pixel_y = 11 +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargo/mining) +"abd" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/floor_decal/borderfloor{ + dir = 1 }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargo/mining) +"abe" = ( +/obj/effect/floor_decal/borderfloor{ dir = 8 }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/map_helper/airlock/sensor/chamber_sensor, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/airlock) -"aaZ" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "mining_airlock_inner"; - locked = 1 +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 }, /obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/obj/effect/map_helper/airlock/door/int_door, -/turf/simulated/floor/tiled/steel_grid, -/area/tether/surfacebase/mining_main/airlock) -"aba" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/tether/surfacebase/mining_main/refinery) -"abb" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "mining_airlock_inner"; - locked = 1 - }, -/obj/effect/map_helper/airlock/door/int_door, -/turf/simulated/floor/tiled/steel_grid, -/area/tether/surfacebase/mining_main/airlock) -"abc" = ( -/obj/machinery/camera/network/cargo, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/machinery/vending/wallmed_airlock{ + pixel_x = -32 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/refinery) -"abd" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "mining_inbound" - }, -/turf/simulated/floor/plating, -/area/tether/surfacebase/mining_main/refinery) -"abe" = ( -/obj/machinery/alarm{ - pixel_y = 22 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/tether/surfacebase/mining_main/refinery) +/area/tether/surfacebase/cargo/mining) "abf" = ( -/obj/machinery/door/airlock/maintenance/common{ - name = "Trash Pit Access"; - req_one_access = list(26,48,12) - }, /obj/structure/catwalk, -/obj/machinery/door/firedoor/glass, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, /turf/simulated/floor/plating, /area/maintenance/lower/trash_pit) "abg" = ( @@ -570,163 +657,82 @@ /turf/simulated/floor/tiled, /area/rnd/hallway) "abh" = ( -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/refinery) -"abi" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/refinery) -"abj" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "mining_inbound" - }, -/obj/structure/plasticflaps, -/turf/simulated/floor/plating, -/area/tether/surfacebase/mining_main/refinery) -"abk" = ( -/obj/effect/floor_decal/industrial/loading, -/obj/machinery/light_switch{ - pixel_x = 25 - }, -/obj/structure/closet/crate, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/refinery) -"abl" = ( -/obj/structure/catwalk, -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate, -/turf/simulated/floor/plating, -/area/maintenance/lower/trash_pit) -"abm" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown/bordercorner2{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargo/mining) +"abi" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargo/mining) +"abj" = ( +/obj/effect/floor_decal/borderfloor{ dir = 5 }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 +/obj/effect/floor_decal/corner/brown/border{ + dir = 5 }, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargo/mining) +"abl" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/bordercorner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargo/mining) +"abm" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/storage) -"abn" = ( -/turf/simulated/wall, -/area/tether/surfacebase/mining_main/storage) -"abo" = ( -/obj/structure/closet/firecloset, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/mining_main/storage) -"abp" = ( -/obj/machinery/mineral/input, -/obj/machinery/conveyor{ - dir = 5; - id = "mining_inbound" - }, -/turf/simulated/floor/plating, -/area/tether/surfacebase/mining_main/refinery) -"abq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/mineral/processing_unit_console{ - density = 0; - layer = 3.3; - pixel_y = 30 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/tether/surfacebase/mining_main/refinery) -"abr" = ( -/obj/machinery/firealarm{ - dir = 2; - layer = 3.3; - pixel_x = 0; - pixel_y = 26 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/refinery) -"abs" = ( -/obj/machinery/conveyor_switch/oneway{ - id = "mining_interior"; - layer = 3.3; - name = "refining conveyor"; - pixel_y = 14 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/refinery) -"abt" = ( -/obj/machinery/mineral/stacking_unit_console{ - density = 0; - layer = 3.3; - pixel_y = 30 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/tether/surfacebase/mining_main/refinery) -"abu" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/steel_dirty, -/area/tether/surfacebase/mining_main/refinery) -"abv" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/camera/network/cargo{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/sign/nosmoking_2{ - pixel_x = -32 + d1 = 2; + d2 = 8; + icon_state = "2-8" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/storage) -"abw" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, +/area/tether/surfacebase/cargo/mining) +"abn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargo/mining) +"abo" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -734,27 +740,117 @@ dir = 4 }, /obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 + dir = 5 }, /obj/effect/floor_decal/corner/brown/bordercorner2{ - dir = 6 - }, -/obj/machinery/access_button/airlock_interior{ - master_tag = "mining_airlock"; - pixel_x = 25; - pixel_y = -8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 + dir = 5 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/storage) +/area/tether/surfacebase/cargo/mining) +"abp" = ( +/obj/structure/catwalk, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/maintenance/common{ + name = "Trash Pit Access"; + req_one_access = list(48,12) + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/trash_pit) +"abq" = ( +/obj/structure/catwalk, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/trash_pit) +"abr" = ( +/obj/structure/catwalk, +/obj/effect/decal/cleanable/dirt, +/obj/random/maintenance/cargo, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/trash_pit) +"abs" = ( +/obj/structure/catwalk, +/obj/effect/decal/cleanable/dirt, +/obj/random/cigarettes, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/trash_pit) +"abt" = ( +/obj/structure/catwalk, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/random/junk, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/trash_pit) +"abu" = ( +/obj/structure/catwalk, +/obj/effect/decal/cleanable/dirt, +/obj/random/junk, +/obj/random/maintenance/clean, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/trash_pit) +"abv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/maintenance/cargo{ + name = "Mining Maintenance Access"; + req_one_access = list(48) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/structure/catwalk, +/turf/simulated/floor/tiled/techfloor, +/area/tether/surfacebase/cargo/mining) +"abw" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 10 + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_x = 0; + pixel_y = -32 + }, +/obj/structure/cable/green, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -13; + pixel_y = -30 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargo/mining) "abx" = ( /obj/effect/floor_decal/industrial/loading{ dir = 8 @@ -771,12 +867,17 @@ }, /area/security/checkpoint) "aby" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "mining_outbound" +/obj/structure/catwalk, +/obj/effect/decal/cleanable/dirt, +/obj/random/junk, +/obj/random/junk, +/obj/random/maintenance/clean, +/obj/random/tool, +/obj/structure/cable{ + icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/tether/surfacebase/mining_main/refinery) +/area/maintenance/lower/trash_pit) "abz" = ( /obj/structure/table/woodentable, /obj/machinery/light_construct{ @@ -807,13 +908,15 @@ /turf/simulated/floor/plating, /area/maintenance/lower/solars) "abC" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "mining_outbound" +/obj/structure/catwalk, +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/rust, +/obj/random/junk, +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/structure/plasticflaps, /turf/simulated/floor/plating, -/area/tether/surfacebase/mining_main/refinery) +/area/maintenance/lower/trash_pit) "abD" = ( /obj/structure/table/glass, /obj/effect/floor_decal/borderfloor, @@ -828,228 +931,252 @@ /turf/simulated/floor/tiled, /area/rnd/xenobiology/xenoflora/lab_atmos) "abE" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 +/obj/structure/catwalk, +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/rust, +/obj/random/junk, +/obj/random/junk, +/obj/random/maintenance/cargo, +/obj/structure/cable{ + icon_state = "1-4" }, -/obj/machinery/conveyor_switch/oneway{ - id = "mining_outbound"; - layer = 3.3; - name = "outbound conveyor"; - pixel_y = 14 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/tether/surfacebase/mining_main/refinery) +/turf/simulated/floor/plating, +/area/maintenance/lower/trash_pit) "abF" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; +/obj/structure/catwalk, +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/rust, +/obj/item/weapon/reagent_containers/food/drinks/bottle/small/beer{ + pixel_y = 13 + }, +/obj/item/weapon/reagent_containers/food/drinks/bottle/small/beer{ + pixel_x = 9 + }, +/obj/item/weapon/reagent_containers/food/drinks/bottle/small/beer{ + pixel_x = -7; + pixel_y = -7 + }, +/obj/item/weapon/reagent_containers/food/drinks/bottle/small/beer{ + pixel_x = -10; + pixel_y = 5 + }, +/obj/item/trash/raisins{ + desc = "This trash looks like it's had one too many."; + name = "Wasted waste" + }, +/obj/structure/cable{ icon_state = "4-8" }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - dir = 2; - pixel_y = -24 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/refinery) +/turf/simulated/floor/plating, +/area/maintenance/lower/trash_pit) "abG" = ( -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -28 +/obj/structure/catwalk, +/obj/effect/decal/cleanable/dirt, +/obj/random/cigarettes, +/obj/random/junk, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/refinery) +/turf/simulated/floor/plating, +/area/maintenance/lower/trash_pit) "abH" = ( /obj/structure/catwalk, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/lower/trash_pit) "abI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargo/mining) +"abJ" = ( +/obj/structure/catwalk, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/trash_pit) +"abK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargo/mining) +"abL" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/structure/extinguisher_cabinet{ + dir = 1; + icon_state = "extinguisher_closed"; + pixel_y = -32 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargo/mining) +"abM" = ( +/obj/structure/catwalk, +/obj/random/junk, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/trash_pit) +"abN" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/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 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_x = 0; + pixel_y = -24 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargo/mining) +"abO" = ( +/obj/machinery/door/airlock/maintenance/common{ + name = "Trash Pit Access"; + req_one_access = list(26,48,12) + }, +/obj/structure/catwalk, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/trash_pit) +"abP" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -25 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargo/mining) +"abQ" = ( +/obj/structure/catwalk, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/vacant_site) +"abR" = ( +/obj/structure/catwalk, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/vacant_site) +"abS" = ( +/obj/structure/catwalk, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/vacant_site) +"abT" = ( +/turf/simulated/wall, +/area/maintenance/lower/mining_eva) +"abU" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 }, /obj/structure/cable/green{ d1 = 2; d2 = 8; icon_state = "2-8" }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/refinery) -"abJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/refinery) -"abK" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/storage) -"abL" = ( -/turf/simulated/wall, -/area/tether/surfacebase/mining_main/eva) -"abM" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/tether/surfacebase/mining_main/eva) -"abN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/refinery) -"abO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/refinery) -"abP" = ( -/turf/simulated/wall, -/area/tether/surfacebase/mining_main/uxstorage) -"abQ" = ( -/obj/machinery/light, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/refinery) -"abR" = ( -/obj/machinery/newscaster{ - pixel_x = 0; - pixel_y = -30 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/tether/surfacebase/mining_main/refinery) -"abS" = ( -/obj/machinery/camera/network/cargo{ - dir = 1; - name = "security camera" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/refinery) -"abT" = ( -/turf/simulated/wall, -/area/maintenance/lower/mining_eva) -"abU" = ( -/obj/machinery/door/airlock/maintenance/common{ - name = "Trash Pit Access"; - req_one_access = list(48) - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/tether/surfacebase/mining_main/refinery) +/area/tether/surfacebase/cargo/mining) "abV" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown/bordercorner{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/storage) -"abW" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ +/obj/effect/floor_decal/steeldecal/steel_decals4{ dir = 5 }, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/vending/wallmed_airlock{ - pixel_x = -32 +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/storage) +/area/tether/surfacebase/cargo/mining) +"abW" = ( +/obj/machinery/door/airlock/glass_mining{ + name = "Warehouse" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/tether/surfacebase/cargo/warehouse) "abX" = ( /obj/structure/catwalk, /obj/effect/decal/cleanable/dirt, @@ -1057,38 +1184,21 @@ /turf/simulated/floor/plating, /area/maintenance/lower/trash_pit) "abY" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 +/obj/machinery/door/airlock/glass_mining{ + name = "Warehouse" }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 1 - }, -/obj/machinery/light_switch{ - pixel_y = 25 - }, -/obj/machinery/washing_machine, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/storage) +/turf/simulated/floor/tiled/steel_grid, +/area/tether/surfacebase/cargo/warehouse) "abZ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 1 - }, -/obj/structure/closet/secure_closet/miner, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/storage) +/obj/structure/closet/crate, +/turf/simulated/floor/tiled/steel_dirty, +/area/tether/surfacebase/cargo/warehouse) "aca" = ( -/obj/effect/floor_decal/borderfloor{ +/obj/machinery/light{ dir = 1 }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 1 - }, -/obj/machinery/washing_machine, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/storage) +/turf/simulated/floor/tiled/steel_dirty, +/area/tether/surfacebase/cargo/warehouse) "acb" = ( /obj/structure/catwalk, /obj/machinery/atmospherics/pipe/simple/visible/yellow{ @@ -1102,105 +1212,76 @@ /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/xenoflora) "acc" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 1 - }, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/obj/structure/closet/secure_closet/miner, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/storage) +/turf/simulated/wall, +/area/tether/surfacebase/cargo/warehouse) "acd" = ( -/obj/machinery/light{ - dir = 1 +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 1 - }, -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = 24; - req_access = list() - }, -/obj/structure/closet/secure_closet/miner, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/storage) -"ace" = ( -/obj/effect/floor_decal/techfloor{ +/obj/effect/floor_decal/steeldecal/steel_decals4{ dir = 4 }, -/obj/structure/railing{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_dirty, +/area/tether/surfacebase/cargo/warehouse) +"ace" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/rust, -/obj/machinery/light/small{ - dir = 4; - pixel_y = 0 +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 }, -/turf/simulated/floor/plating, -/area/maintenance/lower/trash_pit) +/turf/simulated/floor/tiled/steel_dirty, +/area/tether/surfacebase/cargo/warehouse) "acf" = ( -/obj/machinery/recharge_station, -/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/tether/surfacebase/mining_main/eva) -"acg" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 1 +/obj/machinery/light_switch{ + pixel_x = 25 }, /obj/machinery/camera/network/cargo, -/obj/structure/sign/nosmoking_2{ - pixel_y = 30 +/obj/machinery/firealarm{ + dir = 2; + layer = 3.3; + pixel_x = 0; + pixel_y = 26 }, -/obj/structure/closet/secure_closet/miner, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/storage) +/obj/machinery/conveyor_switch/oneway{ + convdir = 1; + id = "gloriouscargopipeline"; + name = "Mining Ops conveyor switch"; + pixel_x = 10; + pixel_y = 5; + req_access = list(48); + req_one_access = list(48) + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/tether/surfacebase/cargo/warehouse) +"acg" = ( +/obj/random/maintenance/cargo, +/obj/random/maintenance/cargo, +/obj/random/maintenance/clean, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) "ach" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 5 +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 5 +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/brown/bordercorner2{ - dir = 5 - }, -/obj/machinery/status_display{ - pixel_x = 32; - pixel_y = 0 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/obj/structure/disposalpipe/trunk, -/obj/machinery/disposal, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/storage) +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_dirty, +/area/tether/surfacebase/cargo/warehouse) "aci" = ( /turf/simulated/mineral, /area/storage/surface_eva/external) @@ -1221,55 +1302,34 @@ /turf/simulated/floor/plating, /area/maintenance/lower/mining_eva) "ack" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/eva) +/turf/simulated/floor/tiled/steel_dirty, +/area/tether/surfacebase/cargo/warehouse) "acl" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 5 +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 5 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown/bordercorner2{ - dir = 4 - }, -/obj/machinery/light_switch{ - pixel_x = 25 - }, -/obj/machinery/camera/network/cargo, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/eva) +/turf/simulated/floor/tiled/steel_dirty, +/area/tether/surfacebase/cargo/warehouse) "acm" = ( -/obj/structure/ore_box, -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/uxstorage) +/obj/structure/window/reinforced, +/obj/structure/closet/crate, +/turf/simulated/floor/tiled/steel_dirty, +/area/tether/surfacebase/cargo/warehouse) "acn" = ( -/obj/structure/ore_box, -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 5 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_x = 0 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/uxstorage) +/obj/structure/window/reinforced, +/turf/simulated/floor/tiled/steel_dirty, +/area/tether/surfacebase/cargo/warehouse) "aco" = ( /obj/structure/railing, /obj/structure/railing{ @@ -1380,12 +1440,17 @@ /turf/simulated/floor/tiled, /area/crew_quarters/visitor_laundry) "acx" = ( -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/storage) -"acy" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/storage) +/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 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/tether/surfacebase/cargo/warehouse) "acz" = ( /obj/effect/floor_decal/borderfloor{ dir = 1; @@ -1399,114 +1464,24 @@ /obj/machinery/vending/loadout, /turf/simulated/floor/tiled, /area/crew_quarters/visitor_laundry) -"acA" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 1 - }, -/obj/structure/table/rack, -/obj/item/clothing/suit/space/void/mining, -/obj/item/clothing/mask/breath, -/obj/item/clothing/head/helmet/space/void/mining, -/obj/item/weapon/mining_scanner, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/eva) -"acB" = ( -/obj/structure/table/rack, -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 5 - }, -/obj/item/weapon/pickaxe, -/obj/item/weapon/tool/wrench, -/obj/item/weapon/tool/crowbar, -/obj/item/weapon/shovel, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/eva) -"acC" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/glass_mining{ - name = "Mining Operations" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/tether/surfacebase/mining_main/eva) -"acD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/eva) "acE" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" }, -/obj/effect/landmark/start{ - name = "Shaft Miner" +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 28 }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/eva) -"acF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/start{ - name = "Shaft Miner" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/eva) -"acG" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown/bordercorner{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/eva) +/turf/simulated/floor/tiled/steel_dirty, +/area/tether/surfacebase/cargo/warehouse) "acH" = ( -/obj/machinery/light{ - dir = 1 +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/eva) -"acI" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/effect/floor_decal/corner/brown/bordercorner{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/eva) +/turf/simulated/floor/tiled/steel_dirty, +/area/tether/surfacebase/cargo/warehouse) "acJ" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, @@ -1516,41 +1491,55 @@ /turf/simulated/floor/tiled, /area/hallway/lower/first_west) "acK" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, +/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 + }, +/obj/machinery/status_display{ + pixel_y = 30 + }, +/obj/machinery/button/remote/blast_door{ + id = "mine_warehouse"; + name = "Warehouse Door Control"; + pixel_x = -26; + pixel_y = 0; + req_access = list(31) + }, +/obj/structure/closet/firecloset, /turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/eva) +/area/tether/surfacebase/cargo) "acL" = ( /obj/effect/floor_decal/borderfloor{ - dir = 4 + dir = 1 }, /obj/effect/floor_decal/corner/brown/border{ - dir = 4 + dir = 1 }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/brown/bordercorner2{ - dir = 5 +/obj/machinery/light{ + dir = 1 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/eva) +/area/tether/surfacebase/cargo) "acM" = ( -/obj/structure/ore_box, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/effect/floor_decal/borderfloor{ - dir = 8 +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/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/tether/surfacebase/mining_main/uxstorage) +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/maintenance/common, +/turf/simulated/floor/plating, +/area/tether/surfacebase/cargo) "acN" = ( /obj/structure/cable/ender{ icon_state = "1-2"; @@ -1565,29 +1554,43 @@ /turf/simulated/floor/virgo3b, /area/tether/surfacebase/outside/outside1) "acO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/alarm{ + alarm_id = "anomaly_testing"; + breach_detection = 0; + dir = 8; + frequency = 1439; + pixel_x = 22; + pixel_y = 0; + report_danger_level = 0 }, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/glass_mining{ - name = "Production Area"; - req_access = list(48) - }, -/turf/simulated/floor/tiled/steel_grid, -/area/tether/surfacebase/mining_main/eva) +/turf/simulated/floor/tiled/steel_dirty, +/area/tether/surfacebase/cargo/warehouse) "acP" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_mining{ - name = "Production Area"; - req_access = list(48) +/obj/effect/floor_decal/borderfloor{ + dir = 1 }, -/turf/simulated/floor/tiled/steel_grid, -/area/tether/surfacebase/mining_main/eva) +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_x = 0; + pixel_y = 28 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargo) "acQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/cyan{ dir = 10; @@ -1617,11 +1620,11 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/storage) +/area/tether/surfacebase/cargo/mining) "acS" = ( /obj/machinery/atmospherics/pipe/tank/air{ dir = 4 @@ -1650,18 +1653,13 @@ /turf/simulated/floor/tiled, /area/hallway/lower/first_west) "acU" = ( -/obj/machinery/light{ - dir = 8 +/obj/structure/railing, +/obj/machinery/conveyor{ + dir = 8; + id = "surfacecargo" }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 8 - }, -/obj/vehicle/train/engine, /turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/storage) +/area/tether/surfacebase/cargo) "acV" = ( /obj/structure/cable/green{ d1 = 4; @@ -1692,20 +1690,8 @@ /turf/simulated/floor/plating, /area/maintenance/lower/mining_eva) "acY" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 1 - }, -/obj/machinery/firealarm{ - dir = 2; - layer = 3.3; - pixel_x = 0; - pixel_y = 26 - }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/storage) +/area/tether/surfacebase/cargo) "acZ" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -1713,18 +1699,18 @@ /obj/effect/floor_decal/corner/brown/border{ dir = 1 }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 28 +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 4 + }, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 2 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/storage) +/area/tether/surfacebase/cargo) "ada" = ( /obj/structure/cable/green{ d1 = 4; @@ -1739,24 +1725,29 @@ /turf/simulated/floor/tiled, /area/hallway/lower/first_west) "adb" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 +/obj/structure/table/glass, +/obj/effect/floor_decal/borderfloor{ + dir = 1 }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/storage) +/area/tether/surfacebase/cargo) "adc" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/brown/border, -/obj/effect/floor_decal/borderfloor/corner2, -/obj/effect/floor_decal/corner/brown/bordercorner2, -/obj/structure/reagent_dispensers/watertank, +/obj/structure/table/glass, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/obj/machinery/camera/network/cargo, /turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/storage) +/area/tether/surfacebase/cargo) "add" = ( /obj/structure/cable/green{ d1 = 4; @@ -1767,51 +1758,21 @@ /turf/simulated/floor/tiled, /area/hallway/lower/first_west) "ade" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/eva) -"adf" = ( /obj/effect/floor_decal/borderfloor{ - dir = 9 + dir = 5 }, /obj/effect/floor_decal/corner/brown/border{ - dir = 9 + dir = 5 }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 1 +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 }, -/obj/effect/floor_decal/corner/brown/bordercorner2{ - dir = 1 - }, -/obj/machinery/alarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/obj/machinery/mineral/equipment_vendor, +/obj/structure/flora/pottedplant/stoutbush, /turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/eva) -"adg" = ( -/obj/structure/catwalk, -/obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/rust, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/trash_pit) +/area/tether/surfacebase/cargo) +"adf" = ( +/turf/simulated/wall, +/area/tether/surfacebase/cargo) "adh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -1884,23 +1845,6 @@ }, /turf/simulated/floor/plating, /area/maintenance/lower/mining_eva) -"adm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/maintenance/cargo{ - name = "Mining Maintenance Access"; - req_one_access = list(48) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/obj/structure/catwalk, -/turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/mining_main/storage) "adn" = ( /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; @@ -1925,11 +1869,42 @@ /turf/simulated/floor/plating, /area/maintenance/lower/mining_eva) "adq" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/obj/effect/floor_decal/corner/brown/bordercorner{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/tether/surfacebase/cargo/warehouse) +"adr" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_dirty, +/area/tether/surfacebase/cargo/warehouse) +"ads" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/shutters{ + dir = 8; + id = "mine_warehouse"; + name = "Warehouse Shutters" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -1937,30 +1912,22 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargo/warehouse) +"adt" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; icon_state = "4-8" }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/storage) -"adr" = ( -/obj/effect/landmark/start{ - name = "Shaft Miner" +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/storage) -"ads" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/storage) -"adt" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/storage) +/area/tether/surfacebase/cargo) "adu" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -1982,105 +1949,134 @@ /turf/simulated/floor/tiled, /area/hallway/lower/first_west) "adv" = ( -/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/tether/surfacebase/mining_main/storage) -"adw" = ( -/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/tether/surfacebase/mining_main/eva) -"adx" = ( -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/eva) -"ady" = ( -/obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/corner/brown/bordercorner, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/eva) -"adz" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/brown/border, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/storage) -"adA" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/eva) -"adB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/eva) -"adC" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/eva) -"adD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, /obj/structure/cable/green{ d1 = 2; d2 = 8; icon_state = "2-8" }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargo) +"adw" = ( +/obj/machinery/atmospherics/pipe/cap/visible/scrubbers, +/turf/simulated/floor/plating, +/area/construction/vacant_mining_ops) +"adx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/cap/visible/supply, +/turf/simulated/floor/plating, +/area/construction/vacant_mining_ops) +"ady" = ( +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/construction/vacant_mining_ops) +"adz" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/construction/vacant_mining_ops) +"adA" = ( +/obj/structure/disposaloutlet{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/structure/railing, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargo) +"adB" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargo) +"adC" = ( /obj/structure/cable/green{ d1 = 1; d2 = 8; icon_state = "1-8" }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/storage) -"adE" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 6 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/uxstorage) +/area/tether/surfacebase/cargo) +"adD" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargo) +"adE" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/window/northright{ + dir = 2; + name = "Mailing Room"; + req_access = list(50) + }, +/obj/structure/noticeboard{ + pixel_x = 32 + }, +/obj/machinery/door/blast/shutters{ + dir = 2; + id = "surfcargooffice"; + layer = 3.3; + name = "Cargo Office Shutters" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargo/office) "adF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -2101,18 +2097,9 @@ /turf/simulated/floor/tiled, /area/hallway/lower/first_west) "adG" = ( -/obj/machinery/light, -/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 - }, -/obj/structure/reagent_dispensers/fueltank, +/obj/machinery/hologram/holopad, /turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/storage) +/area/tether/surfacebase/cargo) "adH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -2234,73 +2221,48 @@ /turf/simulated/floor/tiled, /area/hallway/lower/first_west) "adP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/junction, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/eva) -"adQ" = ( -/obj/machinery/cell_charger, -/obj/structure/table/steel, +/obj/structure/table/glass, /obj/effect/floor_decal/borderfloor{ - dir = 10 + dir = 4 }, /obj/effect/floor_decal/corner/brown/border{ - dir = 10 + dir = 4 + }, +/obj/machinery/computer/guestpass{ + dir = 8; + pixel_x = 25 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/storage) -"adR" = ( -/obj/structure/table/steel, -/obj/item/device/suit_cooling_unit, -/obj/item/device/suit_cooling_unit, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/brown/border, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/storage) +/area/tether/surfacebase/cargo) "adS" = ( -/obj/structure/table/steel, -/obj/item/weapon/storage/toolbox/mechanical, -/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/tether/surfacebase/mining_main/storage) +/turf/simulated/floor/tiled/steel_dirty, +/area/tether/surfacebase/cargo/warehouse) "adT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/shutters{ + dir = 8; + id = "mine_warehouse"; + name = "Warehouse Shutters" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/storage) +/area/tether/surfacebase/cargo/warehouse) "adU" = ( -/obj/structure/table/rack, -/obj/effect/floor_decal/borderfloor{ - dir = 6 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 6 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/item/weapon/pickaxe, -/obj/item/weapon/tool/wrench, -/obj/item/weapon/tool/crowbar, -/obj/item/weapon/shovel, /turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/eva) +/area/tether/surfacebase/cargo) "adV" = ( /obj/structure/table/glass, /obj/machinery/atmospherics/unary/vent_scrubber/on{ @@ -2344,130 +2306,156 @@ /turf/simulated/floor/tiled, /area/hallway/lower/first_west) "adX" = ( -/obj/item/weapon/pickaxe, -/obj/structure/table/steel, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/brown/border, -/obj/effect/floor_decal/borderfloor/corner2, -/obj/effect/floor_decal/corner/brown/bordercorner2, -/obj/item/device/destTagger{ +/obj/structure/table/standard, +/obj/item/weapon/stamp/cargo, +/obj/item/weapon/stamp/denied{ pixel_x = 4; - pixel_y = 3 + pixel_y = -2 }, -/obj/item/weapon/packageWrap, -/obj/item/weapon/paper{ - desc = ""; - info = "There is a pipe you can send stuff through in the warehouse. This is primarily a direct pipeline between mining and cargo. However, it can mail things to the 'Research' tag. If you tag anything else, it will just go to cargo! Keep it in mind."; - name = "note to mining staff" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/storage) -"adY" = ( -/obj/structure/ore_box, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/alarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/obj/effect/floor_decal/borderfloor{ +/obj/item/weapon/clipboard, +/obj/item/weapon/folder/yellow, +/obj/effect/floor_decal/borderfloor/corner2{ dir = 4 }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/uxstorage) -"adZ" = ( -/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/tether/surfacebase/mining_main/eva) -"aea" = ( -/obj/structure/table/rack, -/obj/item/clothing/suit/space/void/mining, -/obj/item/clothing/mask/breath, -/obj/item/clothing/head/helmet/space/void/mining, -/obj/item/weapon/mining_scanner, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/brown/border, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/eva) -"aeb" = ( -/obj/effect/landmark/start{ - name = "Shaft Miner" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/eva) -"aec" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 10 - }, /obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 + dir = 1 }, /obj/effect/floor_decal/corner/brown/bordercorner2{ - dir = 9 + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 1 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/eva) -"aed" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, +/area/tether/surfacebase/cargo/office) +"adY" = ( +/obj/machinery/button/remote/blast_door{ + id = "mine_warehouse"; + name = "Warehouse Door Control"; + pixel_x = -26; + pixel_y = 24; + req_access = list(31) + }, +/obj/machinery/button/remote/blast_door{ + id = "surfcargooffice"; + name = "Office Shutters"; + pixel_x = -34; + pixel_y = 24; + req_access = list(31) + }, +/obj/effect/landmark/start{ + name = "Cargo Technician" + }, +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargo/office) +"adZ" = ( /obj/effect/floor_decal/steeldecal/steel_decals6{ dir = 8 }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 1 + }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/eva) -"aee" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/eva) -"aef" = ( -/obj/structure/catwalk, -/obj/effect/decal/cleanable/dirt, +/area/tether/surfacebase/cargo) +"aea" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/turf/simulated/floor/plating, -/area/maintenance/lower/trash_pit) +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargo) +"aeb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargo) +"aec" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargo) +"aed" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargo/office) +"aee" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargo) +"aef" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargo) "aeg" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 10 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown/bordercorner2{ - dir = 8 +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/uxstorage) +/area/tether/surfacebase/cargo/office) "aeh" = ( -/obj/structure/dispenser/oxygen, -/obj/effect/floor_decal/borderfloor{ - dir = 6 +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -25 }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 6 +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/uxstorage) +/area/tether/surfacebase/cargo/office) "aei" = ( /obj/effect/floor_decal/techfloor{ dir = 10 @@ -2574,17 +2562,35 @@ /turf/simulated/floor/tiled, /area/hallway/lower/first_west) "aer" = ( -/turf/simulated/wall, -/area/tether/surfacebase/mining_main/ore) -"aes" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_mining{ - name = "Warehouse" +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" }, -/turf/simulated/floor/tiled/steel_grid, -/area/tether/surfacebase/mining_main/ore) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargo) +"aes" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargo) "aet" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -2608,22 +2614,22 @@ /turf/simulated/floor/tiled, /area/hallway/lower/first_west) "aeu" = ( -/obj/machinery/door/airlock/glass_mining{ - name = "Mining Operations" +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor/glass, /obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel_grid, -/area/tether/surfacebase/mining_main/eva) +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargo) "aev" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_mining{ - name = "Mining Operations" +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/turf/simulated/floor/tiled/steel_grid, -/area/tether/surfacebase/mining_main/eva) +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargo) "aew" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -2715,38 +2721,43 @@ /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/mining_eva) "aeC" = ( -/obj/structure/sign/department/miner_dock{ - name = "MINING" - }, -/turf/simulated/wall, -/area/tether/surfacebase/mining_main/eva) -"aeD" = ( -/obj/effect/floor_decal/rust, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/tether/surfacebase/mining_main/ore) -"aeE" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargo) +"aeD" = ( +/obj/structure/table/glass, +/obj/effect/floor_decal/borderfloor{ dir = 4 }, -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 +/obj/effect/floor_decal/corner/brown/border{ + dir = 4 }, -/obj/vehicle/train/trolley, -/turf/simulated/floor/tiled/steel_dirty, -/area/tether/surfacebase/mining_main/ore) +/obj/machinery/newscaster{ + pixel_x = 30; + pixel_y = 0 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargo) +"aeE" = ( +/obj/structure/railing, +/obj/machinery/conveyor{ + dir = 8; + id = "surfacecargo" + }, +/obj/structure/plasticflaps, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargo) "aeF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, /turf/simulated/floor/tiled/steel_dirty, -/area/tether/surfacebase/mining_main/ore) +/area/tether/surfacebase/cargo/warehouse) "aeG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -2786,16 +2797,13 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/north_stairs_one) -"aeI" = ( -/obj/machinery/light_switch{ - pixel_x = 25 - }, -/obj/machinery/camera/network/cargo, -/turf/simulated/floor/tiled/steel_dirty, -/area/tether/surfacebase/mining_main/ore) "aeJ" = ( -/turf/simulated/wall, -/area/tether/surfacebase/mining_main/lobby) +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/tether/surfacebase/cargo/warehouse) "aeK" = ( /obj/machinery/light/small, /obj/effect/floor_decal/industrial/warning/corner{ @@ -2820,24 +2828,6 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/north_stairs_one) -"aeL" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 1 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 28 - }, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/lobby) "aeM" = ( /obj/structure/catwalk, /obj/machinery/atmospherics/pipe/simple/visible/scrubbers, @@ -2856,17 +2846,13 @@ /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/mining_eva) "aeN" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 +/obj/machinery/conveyor{ + dir = 8; + id = "gloriouscargopipeline" }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 1 - }, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/lobby) +/obj/structure/plasticflaps, +/turf/simulated/floor/tiled/steel_dirty, +/area/tether/surfacebase/cargo/warehouse) "aeO" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock{ @@ -2903,46 +2889,46 @@ /turf/simulated/floor/tiled, /area/tether/surfacebase/north_stairs_one) "aeQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/machinery/door/airlock/multi_tile/glass{ + name = "Surface Cargo" }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 4 +/obj/machinery/door/firedoor/glass, +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 8 }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/lobby) +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/monofloor{ + dir = 8 + }, +/area/tether/surfacebase/surface_one_hall) "aeR" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargo) +"aeS" = ( /obj/effect/floor_decal/borderfloor{ - dir = 1 + dir = 10 }, /obj/effect/floor_decal/corner/brown/border{ - dir = 1 + dir = 10 }, /obj/effect/floor_decal/borderfloor/corner2{ - dir = 4 + dir = 8 }, /obj/effect/floor_decal/corner/brown/bordercorner2{ - dir = 4 - }, -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/lobby) -"aeS" = ( -/obj/structure/table/glass, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/lobby) +/area/tether/surfacebase/cargo) "aeT" = ( /obj/effect/floor_decal/borderfloor{ dir = 1; @@ -2965,19 +2951,17 @@ /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden) "aeU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/machinery/light, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 9 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/storage) +/area/tether/surfacebase/cargo) "aeV" = ( /obj/structure/stairs/north, /turf/simulated/floor/virgo3b, @@ -3012,34 +2996,22 @@ /turf/simulated/floor/tiled, /area/tether/surfacebase/north_stairs_one) "aeY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/storage) +/area/tether/surfacebase/cargo) "aeZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 9 }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/hologram/holopad, /turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/storage) +/area/tether/surfacebase/cargo) "afa" = ( /obj/structure/cable{ d1 = 4; @@ -3067,17 +3039,16 @@ /turf/simulated/floor/tiled, /area/tether/surfacebase/north_stairs_one) "afb" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/machinery/computer/supplycomp{ + icon_state = "computer"; dir = 1 }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/brown/bordercorner2, /turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/storage) +/area/tether/surfacebase/cargo) "afc" = ( /obj/structure/cable{ d1 = 4; @@ -3117,33 +3088,42 @@ /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/mining_eva) "afe" = ( -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled/steel_dirty, -/area/tether/surfacebase/mining_main/ore) -"aff" = ( -/obj/effect/floor_decal/rust, +/obj/machinery/door/airlock/glass_mining{ + id_tag = "cargodoor"; + name = "Cargo Office"; + req_access = list(31); + req_one_access = list() + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/steel_dirty, -/area/tether/surfacebase/mining_main/ore) -"afg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/storage) +/area/tether/surfacebase/cargo/office) +"aff" = ( +/obj/machinery/door/firedoor/glass, +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 4 + }, +/turf/simulated/floor/tiled/monofloor{ + dir = 4 + }, +/area/tether/surfacebase/cargo) +"afg" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargo/office) "afh" = ( /obj/effect/floor_decal/spline/plain{ dir = 4 @@ -3172,79 +3152,102 @@ /turf/simulated/floor/tiled/monofloor, /area/tether/surfacebase/surface_one_hall) "afi" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ +/obj/structure/bed/chair{ dir = 1 }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/brown/bordercorner2, +/obj/machinery/firealarm{ + dir = 1; + pixel_x = 0; + pixel_y = -24 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargo) +"afj" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -25 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargo) +"afk" = ( +/obj/structure/reagent_dispensers/water_cooler/full, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargo) +"afl" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 6 + }, +/obj/structure/flora/pottedplant/stoutbush, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargo) +"afm" = ( +/obj/machinery/door/airlock/maintenance/cargo{ + name = "Mining Maintenance Access"; + req_one_access = list(48) + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/tether/surfacebase/cargo/warehouse) +"afn" = ( +/obj/machinery/door/firedoor/glass, +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 8 + }, +/obj/machinery/door/airlock/multi_tile/glass{ + name = "Surface Cargo" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/monofloor{ + dir = 8 + }, +/area/tether/surfacebase/cargo) +"afo" = ( +/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 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/machinery/camera/network/cargo{ + icon_state = "camera"; + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/lobby) -"afj" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/lobby) -"afk" = ( -/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/tether/surfacebase/mining_main/lobby) -"afl" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/storage) -"afm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/lobby) -"afn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/storage) -"afo" = ( -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/lobby) +/area/tether/surfacebase/cargo) "afp" = ( /obj/structure/cable{ d1 = 4; @@ -3277,16 +3280,34 @@ /turf/simulated/floor/tiled, /area/storage/primary) "afs" = ( -/obj/structure/table/glass, /obj/effect/floor_decal/borderfloor{ - dir = 1 + dir = 8 }, /obj/effect/floor_decal/corner/brown/border{ - dir = 1 + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 }, -/obj/machinery/camera/network/cargo, /turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/lobby) +/area/tether/surfacebase/cargo) "aft" = ( /obj/machinery/camera/network/civilian{ dir = 2 @@ -3295,25 +3316,21 @@ /turf/simulated/floor/tiled, /area/storage/primary) "afu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/structure/cable/green{ - d1 = 4; + d1 = 1; d2 = 8; - icon_state = "4-8" + icon_state = "1-8" }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/eva) +/area/tether/surfacebase/cargo/office) "afv" = ( /obj/structure/closet/firecloset, /turf/simulated/floor/tiled, @@ -3330,33 +3347,41 @@ /turf/simulated/floor/tiled, /area/storage/primary) "afx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/obj/effect/floor_decal/borderfloor{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/structure/sign/nosmoking_2{ + pixel_x = -32 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/lobby) +/area/tether/surfacebase/cargo) "afy" = ( +/obj/structure/table/standard, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/pen/red{ + pixel_x = 2; + pixel_y = 6 + }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/glass_mining{ - name = "Mining Operations" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/tether/surfacebase/mining_main/eva) +/obj/structure/disposalpipe/junction/yjunction, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargo/office) "afz" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -3376,19 +3401,34 @@ /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/mining_eva) "afB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - 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 = 10 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" + icon_state = "intact-scrubbers"; + dir = 5 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/eva) +/area/tether/surfacebase/cargo) "afC" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table/rack, @@ -3398,44 +3438,58 @@ /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/mining_eva) "afD" = ( -/obj/vehicle/train/trolley, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ +/obj/effect/floor_decal/borderfloor{ dir = 4 }, -/turf/simulated/floor/tiled/steel_dirty, -/area/tether/surfacebase/mining_main/ore) +/obj/effect/floor_decal/corner/brown/border{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargo) "afE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/eva) +/area/tether/surfacebase/cargo/office) "afF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/effect/floor_decal/borderfloor{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/effect/floor_decal/corner/brown/border{ dir = 4 }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 }, -/obj/machinery/hologram/holopad, /turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/eva) +/area/tether/surfacebase/cargo) "afG" = ( /obj/structure/bed/chair, /obj/machinery/camera/network/civilian, @@ -3451,116 +3505,100 @@ /turf/simulated/floor/tiled/techfloor/grid, /area/tether/surfacebase/tram) "afI" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + dir = 2; + id = "surfcargooffice"; + layer = 3.3; + name = "Cargo Office Shutters" }, /obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/eva) +/turf/simulated/floor/plating, +/area/tether/surfacebase/cargo/office) "afJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/eva) -"afK" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/eva) -"afL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/uxstorage) -"afM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, /obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 1 + dir = 4 }, /turf/simulated/floor/tiled/monofloor{ - dir = 1 - }, -/area/tether/surfacebase/mining_main/eva) -"afN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/lobby) -"afO" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ +/area/tether/surfacebase/surface_one_hall) +"afK" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/structure/disposalpipe/junction{ dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/lobby) -"afP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/area/tether/surfacebase/surface_one_hall) +"afL" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/machinery/firealarm{ + dir = 1; + pixel_x = 0; + pixel_y = -24 }, +/turf/simulated/floor/tiled/steel_dirty, +/area/tether/surfacebase/cargo/warehouse) +"afM" = ( +/obj/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + dir = 1; + icon_state = "extinguisher_closed"; + pixel_y = -32 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/tether/surfacebase/cargo/warehouse) +"afN" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "gloriouscargopipeline" + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/tether/surfacebase/cargo/warehouse) +"afO" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/sign/warning{ + desc = "A warning sign. It has great big words saying 'Surface Cargo Deliveries. Stay behind the railings when active!' on it."; + name = "Surface Cargo Delivery"; + pixel_y = 32 + }, +/obj/effect/floor_decal/industrial/loading, /turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/lobby) +/area/tether/surfacebase/cargo) "afQ" = ( -/obj/structure/catwalk, -/obj/effect/decal/cleanable/dirt, -/obj/random/maintenance/cargo, -/turf/simulated/floor/plating, -/area/maintenance/lower/trash_pit) +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/sign/warning/moving_parts{ + desc = "A warning sign for moving parts. This one states 'Put your gathered ore here for processing!' on it."; + name = "To Mining Operations Processing"; + pixel_x = -32 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/tether/surfacebase/cargo/warehouse) "afR" = ( /obj/effect/floor_decal/corner_steel_grid{ dir = 5 @@ -3569,25 +3607,32 @@ /turf/simulated/floor/virgo3b, /area/tether/surfacebase/outside/outside1) "afS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 1 }, /obj/machinery/light_switch{ - pixel_x = 25 + dir = 2; + name = "light switch "; + pixel_x = 10; + pixel_y = 32 }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 4 +/obj/machinery/conveyor_switch{ + id = "surfacecargo"; + name = "Surface Cargo Delivery conveyor switch"; + pixel_x = 0; + pixel_y = 0 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/uxstorage) +/area/tether/surfacebase/cargo/office) "afT" = ( /turf/simulated/floor/tiled, /area/storage/primary) @@ -3664,24 +3709,34 @@ /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/mining_eva) "age" = ( -/obj/vehicle/train/trolley, -/obj/machinery/alarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22; - pixel_y = 0 +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/simulated/floor/tiled/steel_dirty, -/area/tether/surfacebase/mining_main/ore) +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) "agf" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/crate, -/turf/simulated/floor/tiled/steel_dirty, -/area/tether/surfacebase/mining_main/ore) +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 1 + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 8; + name = "Surface Cargo"; + sortType = "Surface Cargo" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) "agg" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/steel_dirty, -/area/tether/surfacebase/mining_main/ore) +/obj/machinery/disposal/deliveryChute{ + dir = 4 + }, +/obj/machinery/conveyor{ + dir = 4; + id = "gloriouscargopipeline" + }, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/plating, +/area/tether/surfacebase/cargo/warehouse) "agh" = ( /obj/turbolift_map_holder/tether{ dir = 4 @@ -3695,50 +3750,32 @@ }, /area/tether/elevator) "agj" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 10 +/obj/machinery/button/remote/blast_door{ + id = "mine_warehouse"; + name = "Warehouse Door Control"; + pixel_x = 0; + pixel_y = -22; + req_access = list(31) }, -/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/tether/surfacebase/mining_main/lobby) +/turf/simulated/floor/tiled/steel_dirty, +/area/tether/surfacebase/cargo/warehouse) "agk" = ( /obj/machinery/portable_atmospherics/canister/oxygen, /turf/simulated/floor/tiled, /area/rnd/xenoarch_storage) -"agl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/junction, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/lobby) "agm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/lobby) -"agn" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/lobby) +/area/tether/surfacebase/cargo/mining) "ago" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/lobby) +/area/tether/surfacebase/surface_one_hall) "agp" = ( /obj/machinery/alarm{ dir = 4; @@ -3749,19 +3786,15 @@ /turf/simulated/floor/tiled, /area/rnd/xenoarch_storage) "agq" = ( -/obj/structure/bed/chair{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/brown/border, /turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/lobby) -"agr" = ( -/obj/structure/reagent_dispensers/water_cooler/full, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/brown/border, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/lobby) +/area/tether/surfacebase/cargo) "ags" = ( /obj/machinery/light{ dir = 4 @@ -3802,21 +3835,6 @@ }, /turf/simulated/floor/tiled, /area/rnd/xenoarch_storage) -"agx" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/lobby) -"agy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/lobby) "agz" = ( /obj/structure/reagent_dispensers/watertank, /turf/simulated/floor/tiled, @@ -3851,33 +3869,6 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/rnd/xenoarch_storage) -"agD" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/lobby) -"agE" = ( -/obj/structure/catwalk, -/obj/effect/decal/cleanable/dirt, -/obj/random/cigarettes, -/turf/simulated/floor/plating, -/area/maintenance/lower/trash_pit) -"agF" = ( -/obj/structure/catwalk, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/lower/trash_pit) -"agG" = ( -/obj/structure/catwalk, -/obj/effect/decal/cleanable/dirt, -/obj/random/junk, -/obj/random/maintenance/clean, -/turf/simulated/floor/plating, -/area/maintenance/lower/trash_pit) "agH" = ( /obj/structure/catwalk, /obj/effect/decal/cleanable/dirt, @@ -3926,13 +3917,6 @@ "agM" = ( /turf/simulated/wall, /area/tether/surfacebase/surface_one_hall) -"agN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/lobby) "agO" = ( /obj/structure/table/glass, /obj/machinery/status_display{ @@ -3949,15 +3933,6 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/chemistry_lab) -"agP" = ( -/obj/structure/catwalk, -/obj/effect/decal/cleanable/dirt, -/obj/random/junk, -/obj/random/junk, -/obj/random/maintenance/clean, -/obj/random/tool, -/turf/simulated/floor/plating, -/area/maintenance/lower/trash_pit) "agQ" = ( /obj/structure/railing{ dir = 8 @@ -4085,51 +4060,12 @@ /obj/machinery/atmospherics/pipe/simple/hidden/cyan, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/mining_eva) -"ahb" = ( -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -28 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/tether/surfacebase/mining_main/external) "ahc" = ( /obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{ scrub_id = "atrium" }, /turf/simulated/floor/tiled/techmaint, /area/tether/surfacebase/surface_one_hall) -"ahd" = ( -/obj/structure/table/glass, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 4 - }, -/obj/machinery/newscaster{ - pixel_x = 30; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/lobby) -"ahe" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/lobby) "ahf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -4196,23 +4132,6 @@ "ahl" = ( /turf/simulated/wall, /area/hallway/lower/first_west) -"ahm" = ( -/obj/machinery/recharger, -/obj/structure/table/steel, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 8 - }, -/obj/machinery/requests_console{ - department = "Cargo Bay"; - departmentType = 2; - pixel_x = -30; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/storage) "ahn" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, @@ -4289,39 +4208,9 @@ /obj/structure/railing, /turf/simulated/floor/tiled/techmaint, /area/tether/surfacebase/surface_one_hall) -"ahv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/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/tether/surfacebase/mining_main/lobby) -"ahw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/lobby) "ahx" = ( /turf/simulated/wall, /area/tether/surfacebase/emergency_storage/atrium) -"ahy" = ( -/obj/structure/catwalk, -/obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/rust, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/lower/trash_pit) "ahz" = ( /obj/structure/railing{ dir = 8 @@ -4370,14 +4259,6 @@ }, /turf/simulated/floor/plating, /area/storage/surface_eva) -"ahF" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/storage) "ahG" = ( /obj/effect/floor_decal/borderfloor{ dir = 9 @@ -4625,18 +4506,6 @@ "ahX" = ( /turf/simulated/wall, /area/tether/surfacebase/north_stairs_one) -"ahY" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 24 - }, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/tether/surfacebase/mining_main/ore) "ahZ" = ( /obj/structure/sign/directions/cargo{ dir = 4 @@ -4751,17 +4620,6 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/surface_one_hall) -"aih" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/brown/border, -/obj/machinery/computer/supplycomp{ - icon_state = "computer"; - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2, -/obj/effect/floor_decal/corner/brown/bordercorner2, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/lobby) "aii" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -4788,35 +4646,6 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/chemistry_lab) -"aik" = ( -/obj/machinery/light, -/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/tether/surfacebase/mining_main/lobby) -"ail" = ( -/obj/effect/floor_decal/rust, -/obj/structure/plasticflaps, -/obj/machinery/disposal/deliveryChute{ - dir = 4 - }, -/obj/machinery/conveyor{ - dir = 4; - id = "gloriouscargopipeline" - }, -/obj/structure/disposalpipe/trunk, -/turf/simulated/floor/plating, -/area/tether/surfacebase/mining_main/ore) -"aim" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/lobby) "ain" = ( /obj/machinery/chem_master{ dir = 8 @@ -4833,16 +4662,6 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/chemistry_lab) -"aio" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/brown/border, -/obj/effect/floor_decal/borderfloor/corner2, -/obj/effect/floor_decal/corner/brown/bordercorner2, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/lobby) "aip" = ( /obj/structure/table/glass, /obj/item/weapon/storage/box/beakers, @@ -4859,17 +4678,6 @@ /obj/item/weapon/storage/fancy/vials, /turf/simulated/floor/tiled/white, /area/rnd/chemistry_lab) -"aiq" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/brown/border, -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -28 - }, -/obj/structure/cable/green, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/eva) "air" = ( /obj/structure/closet/firecloset, /turf/simulated/floor/plating, @@ -4886,47 +4694,6 @@ /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/tiled/techfloor, /area/tether/surfacebase/emergency_storage/atrium) -"aiu" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 2; - name = "Mining Storage"; - req_one_access = list(48) - }, -/obj/machinery/door/firedoor/glass, -/obj/effect/floor_decal/steeldecal/steel_decals_central1, -/turf/simulated/floor/tiled/monofloor, -/area/tether/surfacebase/mining_main/eva) -"aiv" = ( -/obj/structure/catwalk, -/obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/rust, -/obj/random/junk, -/obj/random/junk, -/obj/random/maintenance/cargo, -/turf/simulated/floor/plating, -/area/maintenance/lower/trash_pit) -"aiw" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 28 - }, -/obj/structure/cable/green, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/uxstorage) -"aix" = ( -/obj/structure/catwalk, -/obj/effect/decal/cleanable/dirt, -/obj/random/cigarettes, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/lower/trash_pit) "aiy" = ( /turf/simulated/wall, /area/storage/surface_eva/external) @@ -4964,17 +4731,6 @@ }, /turf/simulated/floor/plating, /area/engineering/atmos) -"aiC" = ( -/obj/structure/catwalk, -/obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/rust, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/trash_pit) "aiD" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -4994,26 +4750,6 @@ /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled, /area/hallway/lower/first_west) -"aiF" = ( -/obj/structure/catwalk, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/trash_pit) -"aiG" = ( -/obj/structure/catwalk, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/trash_pit) "aiH" = ( /obj/structure/bed/chair/office/light{ dir = 4 @@ -5120,11 +4856,6 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/monofloor, /area/tether/surfacebase/north_stairs_one) -"aiQ" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/lobby) "aiR" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -5280,20 +5011,6 @@ dir = 1 }, /area/tether/surfacebase/surface_one_hall) -"ajb" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/storage) "ajc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -5325,25 +5042,6 @@ /obj/machinery/chemical_dispenser/xenoflora/full, /turf/simulated/floor/tiled, /area/rnd/xenobiology/xenoflora) -"aje" = ( -/obj/item/stack/flag/green{ - pixel_x = -4; - pixel_y = 0 - }, -/obj/item/stack/flag/red, -/obj/item/stack/flag/yellow{ - pixel_x = 4 - }, -/obj/structure/table/steel, -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 6 - }, -/obj/item/weapon/storage/box/nifsofts_mining, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/storage) "ajf" = ( /obj/structure/cable/cyan{ d1 = 1; @@ -5377,27 +5075,6 @@ }, /turf/simulated/floor/tiled/steel_dirty/virgo3b, /area/engineering/atmos_intake) -"aji" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 6 - }, -/obj/effect/floor_decal/borderfloor/corner2, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/brown/bordercorner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/brown/bordercorner2, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/eva) "ajj" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -5419,27 +5096,6 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos) -"ajl" = ( -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/lower/trash_pit) -"ajm" = ( -/obj/effect/floor_decal/techfloor, -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/cable/green, -/turf/simulated/floor/plating, -/area/maintenance/lower/trash_pit) "ajn" = ( /obj/machinery/atmospherics/pipe/simple/visible/green{ dir = 4 @@ -5813,15 +5469,6 @@ }, /turf/simulated/floor/plating, /area/holodeck_control) -"ajW" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/wall, -/area/tether/surfacebase/mining_main/refinery) -"ajX" = ( -/obj/machinery/door/airlock/maintenance/common, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/tether/surfacebase/mining_main/refinery) "ajY" = ( /turf/simulated/floor/plating, /area/tether/surfacebase/public_garden_one) @@ -5832,65 +5479,10 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/public_garden_maintenence) -"aka" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/tether/surfacebase/mining_main/refinery) "akb" = ( /obj/structure/grille, /turf/simulated/floor/tiled/techmaint, /area/tether/surfacebase/public_garden_one) -"akc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/tether/surfacebase/mining_main/refinery) -"akd" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/wall, -/area/tether/surfacebase/mining_main/refinery) -"ake" = ( -/obj/structure/disposaloutlet{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/conveyor{ - dir = 8; - id = "mining_inbound" - }, -/turf/simulated/floor/plating, -/area/tether/surfacebase/mining_main/refinery) -"akf" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/refinery) -"akg" = ( -/obj/effect/floor_decal/techfloor{ - dir = 1 - }, -/obj/effect/floor_decal/techfloor{ - dir = 5 - }, -/obj/structure/railing{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/rust, -/obj/structure/closet, -/obj/random/maintenance/cargo, -/obj/random/maintenance/cargo, -/obj/random/maintenance/clean, -/obj/random/tool, -/turf/simulated/floor/plating, -/area/maintenance/lower/trash_pit) "akh" = ( /obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{ scrub_id = "atrium" @@ -5903,15 +5495,6 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/public_garden_maintenence) -"akj" = ( -/obj/machinery/disposal/deliveryChute{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/tether/surfacebase/mining_main/refinery) "akk" = ( /obj/structure/grille, /obj/structure/railing, @@ -5940,17 +5523,6 @@ /obj/random/drinkbottle, /turf/simulated/floor/plating, /area/maintenance/lower/public_garden_maintenence) -"akp" = ( -/obj/effect/floor_decal/techfloor{ - dir = 4 - }, -/obj/structure/railing{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/lower/trash_pit) "akq" = ( /obj/effect/floor_decal/techfloor{ dir = 9 @@ -6594,27 +6166,6 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/mining_eva) -"alu" = ( -/obj/machinery/door/airlock/glass_mining{ - name = "Warehouse" - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/tether/surfacebase/mining_main/ore) -"alv" = ( -/obj/structure/catwalk, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance/common{ - name = "Trash Pit Access"; - req_one_access = list(48,12) - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/trash_pit) "alw" = ( /obj/effect/floor_decal/borderfloor{ dir = 10 @@ -6733,116 +6284,6 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/mining_eva) -"alE" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/tether/surfacebase/mining_main/ore) -"alF" = ( -/obj/machinery/firealarm{ - dir = 2; - layer = 3.3; - pixel_x = 0; - pixel_y = 26 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/tether/surfacebase/mining_main/ore) -"alG" = ( -/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 - }, -/obj/machinery/status_display{ - pixel_y = 30 - }, -/obj/machinery/button/remote/blast_door{ - id = "mine_warehouse"; - name = "Warehouse Door Control"; - pixel_x = -26; - pixel_y = 0; - req_access = list(31) - }, -/obj/structure/closet/firecloset, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/lobby) -"alH" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/lobby) -"alI" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 1 - }, -/obj/machinery/firealarm{ - dir = 2; - layer = 3.3; - pixel_x = 0; - pixel_y = 26 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/lobby) -"alJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/tether/surfacebase/mining_main/ore) -"alK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/junction{ - icon_state = "pipe-j2"; - dir = 2 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/lobby) -"alL" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 5 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/obj/structure/flora/pottedplant/stoutbush, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/lobby) "alM" = ( /obj/effect/floor_decal/borderfloor{ dir = 10 @@ -7013,62 +6454,9 @@ /obj/random/junk, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/mining_eva) -"alY" = ( -/obj/effect/floor_decal/rust, -/obj/machinery/conveyor{ - dir = 4; - id = "gloriouscargopipeline" - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/tether/surfacebase/mining_main/ore) -"alZ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/tether/surfacebase/mining_main/ore) -"ama" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/shutters{ - dir = 8; - id = "mine_warehouse"; - name = "Warehouse Shutters" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/lobby) -"amb" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/brown/border, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/lobby) "amc" = ( /turf/simulated/wall, -/area/tether/surfacebase/mining_main/surfacecargo) -"amd" = ( -/obj/structure/table/glass, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 4 - }, -/obj/machinery/computer/guestpass{ - dir = 8; - pixel_x = 25 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/lobby) +/area/tether/surfacebase/cargo/office) "ame" = ( /obj/effect/floor_decal/techfloor{ dir = 10 @@ -7214,109 +6602,10 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/mining_eva) -"amr" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/tether/surfacebase/mining_main/ore) -"ams" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/wall, -/area/tether/surfacebase/mining_main/ore) -"amt" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/tether/surfacebase/mining_main/ore) -"amu" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/blast/shutters{ - dir = 8; - id = "mine_warehouse"; - name = "Warehouse Shutters" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/lobby) -"amv" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/lobby) "amw" = ( /obj/structure/sign/department/cargo, /turf/simulated/wall, -/area/tether/surfacebase/mining_main/surfacecargo) -"amx" = ( -/obj/machinery/door/firedoor/glass, -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 8 - }, -/obj/machinery/door/airlock/multi_tile/glass{ - name = "Mining Lobby" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/monofloor{ - dir = 8 - }, -/area/tether/surfacebase/mining_main/lobby) -"amy" = ( -/obj/machinery/door/firedoor/glass, -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/monofloor{ - dir = 4 - }, -/area/tether/surfacebase/mining_main/lobby) -"amz" = ( -/obj/machinery/button/remote/blast_door{ - id = "mine_warehouse"; - name = "Warehouse Door Control"; - pixel_x = -26; - pixel_y = 24; - req_access = list(31) - }, -/obj/machinery/button/remote/blast_door{ - id = "surfcargooffice"; - name = "Office Shutters"; - pixel_x = -34; - pixel_y = 24; - req_access = list(31) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/landmark/start{ - name = "Cargo Technician" - }, -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/surfacecargo) +/area/tether/surfacebase/cargo/office) "amA" = ( /obj/effect/floor_decal/techfloor{ dir = 10 @@ -7489,25 +6778,10 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/mining_eva) -"amN" = ( -/obj/machinery/light, -/obj/machinery/conveyor{ - dir = 4; - id = "gloriouscargopipeline" - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/tether/surfacebase/mining_main/ore) -"amO" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "gloriouscargopipeline" - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/tether/surfacebase/mining_main/ore) "amP" = ( /obj/machinery/camera/network/cargo, /turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/surfacecargo) +/area/tether/surfacebase/cargo/office) "amQ" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -7516,16 +6790,6 @@ /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/lower/mining_eva) -"amR" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 6 - }, -/obj/structure/flora/pottedplant/stoutbush, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/lobby) "amS" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -7726,21 +6990,6 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/mining_eva) -"ane" = ( -/obj/machinery/door/airlock/glass_mining{ - id_tag = "cargodoor"; - name = "Cargo Office"; - req_access = list(31); - req_one_access = list() - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/surfacecargo) "anf" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/floor_decal/rust, @@ -7870,36 +7119,6 @@ }, /turf/simulated/floor/tiled, /area/storage/primary) -"anm" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/steel_dirty, -/area/tether/surfacebase/mining_main/ore) -"ann" = ( -/obj/machinery/button/remote/blast_door{ - id = "mine_warehouse"; - name = "Warehouse Door Control"; - pixel_x = 0; - pixel_y = -22; - req_access = list(31) - }, -/obj/machinery/conveyor{ - dir = 4; - id = "gloriouscargopipeline" - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/tether/surfacebase/mining_main/ore) -"ano" = ( -/obj/machinery/door/airlock/maintenance/cargo{ - name = "Mining Maintenance Access"; - req_one_access = list(48) - }, -/turf/simulated/floor/plating, -/area/tether/surfacebase/mining_main/ore) "anp" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -8091,52 +7310,13 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/surface_one_hall) -"anE" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/window/northright{ - dir = 2; - name = "Mailing Room"; - req_access = list(50) - }, -/obj/structure/noticeboard{ - pixel_x = 32 - }, -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "surfcargooffice"; - layer = 3.3; - name = "Cargo Office Shutters" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/surfacecargo) "anF" = ( /obj/machinery/door/airlock/maintenance/cargo{ name = "Mining Maintenance Access"; req_one_access = list(48) }, /turf/simulated/floor/plating, -/area/tether/surfacebase/mining_main/surfacecargo) -"anG" = ( -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"anH" = ( -/obj/structure/plasticflaps, -/obj/machinery/conveyor{ - dir = 4; - id = "gloriouscargopipeline" - }, -/turf/simulated/floor/plating, -/area/tether/surfacebase/mining_main/lobby) +/area/tether/surfacebase/cargo/office) "anI" = ( /obj/structure/cable{ icon_state = "0-2"; @@ -8160,30 +7340,6 @@ }, /turf/simulated/floor/tiled/techfloor, /area/tether/surfacebase/emergency_storage/atrium) -"anK" = ( -/obj/structure/catwalk, -/obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/rust, -/obj/item/weapon/reagent_containers/food/drinks/bottle/small/beer{ - pixel_y = 13 - }, -/obj/item/weapon/reagent_containers/food/drinks/bottle/small/beer{ - pixel_x = 9 - }, -/obj/item/weapon/reagent_containers/food/drinks/bottle/small/beer{ - pixel_x = -7; - pixel_y = -7 - }, -/obj/item/weapon/reagent_containers/food/drinks/bottle/small/beer{ - pixel_x = -10; - pixel_y = 5 - }, -/obj/item/trash/raisins{ - desc = "This trash looks like it's had one too many."; - name = "Wasted waste" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/trash_pit) "anL" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/floor_decal/industrial/outline/blue, @@ -8538,11 +7694,6 @@ /obj/random/maintenance/cargo, /turf/simulated/floor/tiled/techfloor, /area/tether/surfacebase/emergency_storage/atrium) -"aop" = ( -/obj/structure/catwalk, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/lower/trash_pit) "aoq" = ( /turf/simulated/floor/tiled/steel_dirty/virgo3b, /area/tether/surfacebase/outside/outside1) @@ -10070,15 +9221,6 @@ /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/lower/vacant_site) -"aqR" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/vacant_site) "aqS" = ( /obj/structure/cable/green{ d1 = 4; @@ -17727,22 +16869,6 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/vacant/vacant_site/east) -"aCL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) "aCM" = ( /obj/effect/floor_decal/steeldecal/steel_decals6{ dir = 1 @@ -20314,32 +19440,6 @@ /obj/effect/floor_decal/corner/mauve/border, /turf/simulated/floor/tiled, /area/rnd/hallway) -"aGK" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown/bordercorner2{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/lobby) "aGL" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/mauve/border, @@ -20392,35 +19492,6 @@ }, /turf/simulated/floor/tiled, /area/rnd/hallway) -"aGO" = ( -/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 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/camera/network/cargo{ - icon_state = "camera"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/lobby) "aGP" = ( /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/mauve/bordercorner, @@ -21014,7 +20085,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/surfacecargo) +/area/tether/surfacebase/cargo/office) "aHN" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -26001,15 +25072,6 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos) -"aQE" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/surfacecargo) "aQF" = ( /obj/machinery/light{ dir = 8 @@ -31235,32 +30297,6 @@ /obj/effect/step_trigger/teleporter/to_plains, /turf/simulated/floor/tiled/steel_dirty/virgo3b, /area/tether/surfacebase/outside/outside1) -"baY" = ( -/obj/structure/table/standard, -/obj/item/weapon/stamp/cargo, -/obj/item/weapon/stamp/denied{ - pixel_x = 4; - pixel_y = -2 - }, -/obj/item/weapon/clipboard, -/obj/item/weapon/folder/yellow, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/effect/floor_decal/corner/brown/bordercorner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown/bordercorner2{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/surfacecargo) "baZ" = ( /obj/machinery/alarm{ dir = 4; @@ -31269,51 +30305,6 @@ }, /turf/simulated/floor/plating, /area/maintenance/lower/mining_eva) -"bba" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/structure/sign/nosmoking_2{ - pixel_x = -32 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/lobby) -"bbb" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 4 - }, -/obj/machinery/alarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/lobby) "bbc" = ( /obj/structure/cable{ d1 = 1; @@ -31355,78 +30346,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/surfacecargo) -"bbg" = ( -/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/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/lobby) -"bbh" = ( -/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 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/lobby) -"bbi" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - name = "Mining Lobby" - }, -/obj/machinery/door/firedoor/glass, -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/monofloor{ - dir = 8 - }, -/area/tether/surfacebase/surface_one_hall) -"bbj" = ( -/obj/machinery/door/firedoor/glass, -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 4 - }, -/turf/simulated/floor/tiled/monofloor{ - dir = 4 - }, -/area/tether/surfacebase/surface_one_hall) +/area/tether/surfacebase/cargo/office) "bbk" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -31573,7 +30493,7 @@ name = "Cargo Office Shutters" }, /turf/simulated/floor/plating, -/area/tether/surfacebase/mining_main/surfacecargo) +/area/tether/surfacebase/cargo/office) "bbs" = ( /obj/machinery/power/apc{ dir = 8; @@ -31602,7 +30522,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/surfacecargo) +/area/tether/surfacebase/cargo/office) "bbt" = ( /obj/effect/floor_decal/borderfloor{ dir = 5 @@ -31625,15 +30545,6 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/surface_one_hall) -"bbu" = ( -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) "bbv" = ( /obj/structure/cable/green{ d1 = 4; @@ -31641,7 +30552,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/surfacecargo) +/area/tether/surfacebase/cargo/office) "bbw" = ( /obj/structure/table/rack, /obj/random/maintenance/cargo, @@ -31649,45 +30560,6 @@ /obj/random/maintenance/medical, /turf/simulated/floor/plating, /area/maintenance/lower/mining_eva) -"bbx" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/surfacecargo) -"bby" = ( -/obj/structure/table/standard, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/weapon/pen/red{ - pixel_x = 2; - pixel_y = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/surfacecargo) -"bbz" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/surfacecargo) "bbA" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ @@ -31704,7 +30576,7 @@ pixel_y = 0 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/surfacecargo) +/area/tether/surfacebase/cargo/office) "bbB" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -31721,12 +30593,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/surfacecargo) -"bbD" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/brown/border, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/surfacecargo) +/area/tether/surfacebase/cargo/office) "bbE" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -31743,7 +30610,7 @@ dir = 6 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/surfacecargo) +/area/tether/surfacebase/cargo/office) "bbG" = ( /obj/machinery/door/airlock/maintenance/common, /obj/structure/disposalpipe/segment, @@ -31932,15 +30799,6 @@ /obj/random/maintenance/medical, /turf/simulated/floor/plating, /area/maintenance/lower/mining_eva) -"bbV" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/brown/border, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -25 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/surfacecargo) "bbW" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, @@ -31952,7 +30810,7 @@ name = "Cargo Office Shutters" }, /turf/simulated/floor/plating, -/area/tether/surfacebase/mining_main/surfacecargo) +/area/tether/surfacebase/cargo/office) "bbX" = ( /obj/machinery/door/airlock/maintenance/common, /obj/structure/disposalpipe/segment, @@ -32345,33 +31203,6 @@ /obj/structure/closet/firecloset, /turf/simulated/floor/tiled, /area/crew_quarters/visitor_laundry) -"bcO" = ( -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown/bordercorner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown/bordercorner2{ - dir = 1 - }, -/obj/machinery/light_switch{ - dir = 2; - name = "light switch "; - pixel_x = 10; - pixel_y = 32 - }, -/obj/machinery/conveyor_switch{ - id = "gloriouscargopipeline"; - name = "Mining Supply conveyor switch"; - pixel_x = 0; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/surfacecargo) "bcP" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow, /obj/machinery/alarm{ @@ -42075,8 +40906,8 @@ apY aqB aoH aoH -apj -apj +bcd +bcd apu aqb ate @@ -42218,7 +41049,7 @@ apr ara aoH aoH -apj +bcd apu asJ ate @@ -42360,7 +41191,7 @@ aqC arb art aoH -apj +bcd apu aqb arL @@ -42502,7 +41333,7 @@ aqD arc aru aoH -apj +bcd apu aqb arL @@ -42644,7 +41475,7 @@ aqE ard arv aoH -apj +bcd apu aqb arL @@ -43463,12 +42294,12 @@ aad aad aad aad -aao -aao -aao -aao -aao -aao +aan +aan +aan +aan +aan +aan aah aah abT @@ -43604,15 +42435,15 @@ aae aae aae aaf -aaf -aao -aau -aaA -aaP -aau -aao -abn -abn +aai +aan +aaq +aav +aay +aaq +aan +aar +aar abT acQ adl @@ -43746,18 +42577,18 @@ aae aae aae aaf -ahb -aao -aav -aav -aav -aav -aao -abo -abn -abn -abn -abn +aak +aan +aas +aas +aas +aas +aan +aaF +aaK +aar +aar +aar abT adN aex @@ -43888,18 +42719,18 @@ aae aae aae aaf -aai -aap +aal +aao +aat aaw +aaw +aaz aaB -aaB -aaS -aaZ -abm -abv -abW +aaG +aaM +abe acR -adm +abv aha aeM alt @@ -44031,20 +42862,20 @@ aae aae aaf aaf -aaq +aap +aau aax -aaO -aaO -aaY -abb -abw -abK -abV -adz -abn -abn -abn -abn +aax +aaA +aaC +aaH +aaN +aaS +abh +aar +abT +abT +abT aeA alX amq @@ -44172,21 +43003,21 @@ aaf aaf aaf aaf -aak +aam +aan +aan +aan +aan +aan +aan aar aar -aar -aar -aar -aar -aar -aar -acY -adq -acU -ahm -adQ -abn +abi +abl +abw +abT +acg +abT aeB afd afC @@ -44314,26 +43145,26 @@ aaf aaf aaf aaf -aal -aat -aay -aaD -ajW -aka -aka -aba +aaf +aah +aah +aah +aah +aah +aah +aah aar -acZ -adD -aeY -adr -adR -aer -aer -aer -aer -aer -aer +aaX +abm +abI +acc +acc +acc +acc +acc +acc +acc +acc bbE abT abT @@ -44456,27 +43287,27 @@ aaf aaf aaf aaf -aam -aas -aaz -aaE -ajW -aka -aba -akc +aaf +aah +aah +aah +aah +aah +aah +aah aar -abY -acx -aeU -acx -adS -aer -aeE +aaX +agm +abK +acc +abZ +abZ +abZ +acm +agg +afQ +acc age -afD -ail -ams -aIA air bcg agM @@ -44598,27 +43429,27 @@ aaf aaf aaf aaf -aan +aaf +aah +aah +aah +aah +aah +aah +aah aar -aar -aar -aar -aar -akc -akc -aar -aca -acy -afb -ads -adT -aes -aeD -aff -alJ -alY -aer -bcf +aaX +agm +abL +acc +adS +adS +adS +acn +aeN +aeF +acc +age bcf bcg agM @@ -44743,24 +43574,24 @@ aaf aaf aah aah +aah +aah +aah +aah +aah aar -aaF -ajX -akc -akc -aar +abd +abn +abN acc -adr -aeZ -acx -adc -aer -afe -agf -agf -amO -ano -bcf +aca +adS +adS +acn +afN +aeF +acc +age bcf bcR agM @@ -44885,24 +43716,24 @@ aaf aaf aah aah +aah +aah +aah +aah +aah aar -aaF -aar -akd -akd -aar -acd -adr -afl -adt -adG -aer -ahY -agf -agg -amN -aer -bcf +aaX +agm +abP +acc +adS +adS +adS +adS +afN +afL +acc +age bcQ air agM @@ -45027,24 +43858,24 @@ aad aah aah aah +aah +aah +aah +aah +aah aar -aaG -aar -ake -akj -aaC -abZ -adr -afg -ahF -ajb -alu -alE -alZ -amr -amO -aer -bcf +aaX +agm +abU +abW +acd +ach +acl +acx +adS +afM +acc +age agM agM agM @@ -45169,24 +44000,24 @@ aah aah aah aah -aar -aaF +aah +aah +aah +aah +aah aar abj -abC -aar -acg -adr -aeU -acx -adX -aer -alF -agf -anm -amO -aer -cGJ +abo +abV +abY +ace +ack +acH +adq +adS +aeJ +afm +aIA agM ahc ahu @@ -45311,23 +44142,23 @@ aah aah aah aah +aah +aah +aah +aaE +aaE aar -aaF -ajX -abd -aby aar -ach -adb -afn -adv -aje -aer -aeI -aeF -amt -ann -amc +aar +aar +acc +acf +acE +acO +adr +adS +agj +acc anF amc amc @@ -45453,22 +44284,22 @@ aah aah aah aah -aar -ajX -aar -abd -aby -abL -abL -acC -afy -abM -abL -abL -aeJ -ama -amu -anH +aah +aah +aah +aaE +aaL +aaL +aaL +aaL +aaL +acc +acc +acc +acc +ads +adT +acc amc amP bbs @@ -45595,24 +44426,24 @@ aah aah aah aah -aar -aaH -aaR -abp -abu -abL -acf -acD -afu -adw +aah +aah +aah +aaE +aaL +aaL +aaL +aaL +aaL +aaL +aaL +adf +acK +adt adZ -abL -alG -afi -amv -agj +aeS amw -bcO +afS bbv bbC amc @@ -45737,26 +44568,26 @@ aah aah aah aah -aar -aaI -aaC -aaC -abE -abM -acA -acE -afE -aeb -aea -abL -alH -afj -ahe -amb -ane -aQE -bbx -bbD +aah +aah +aah +aaE +aaL +aaL +aaL +aaL +aaL +aaL +aaL +adf +acL +adv +aeu +aeR +afe +afg +afu +aeg bbW bbm anW @@ -45879,28 +44710,28 @@ aah aah aah aah -aar -aaI -aaC -akf -abh -abM -acA -acF -afB -aeb -aea -abL -aeL -afP -ago -ahv +aah +aah +aah +aaE +aaL +aaL +aaL +aaL +aaL +aaL +aaL +adf +acP +adC +aee +aeZ amc -baY -bby -bbD -bbW -aCL +adX +afy +afE +afI +afK anW aoj aoS @@ -46021,26 +44852,26 @@ aah aah aah aah -aar -aaJ -aaC -abc -abG -abL -acB -acG -afB -ady +aah +aah +aah +aaE +aaL +aaE +aaL +aaL +aaL +aaL +aaL +adf +afO adU -abL -alI -afx -agx -ahw -anE -amz -bbz -bbV +acY +acY +adE +adY +aed +aeh amc aCN anW @@ -46163,22 +44994,22 @@ aad aah aah aah -aar -aaK -aaC -abq -abF -abL -abL -acH -afF -aiq -abL -abL -aeN -afm -agy -aih +aah +aah +aah +aaE +aaL +aaE +aaE +aaL +aaL +aaL +aaL +adf +acU +aea +aef +afb amc bbf bbA @@ -46305,22 +45136,22 @@ aad aah aah aah -aar +aah +aah +aah +aaE +aaL +aaL +aaL +aaL +aaL +aaL aaL -aar -abe -abJ -abM adf -acI -afB -adA -aec -aeC -afk -afm -afN -aik +aeE +aeb +acY +aeU amc bbr amc @@ -46447,28 +45278,28 @@ aad aah aah aah -aar -aaI -aar -abr -abI -acO -ade -adP -afI -adB -aed -aeu -alK -agl -agD -aiQ -amx -aGK -bba -bbg -bbi -bbu +aah +aah +aah +aaE +aaL +aaL +aaL +aaL +aaL +aaL +aaL +adf +adA +aec +aes +aeY +afn +afs +afx +afB +aeQ +agf anW aoi aoj @@ -46589,28 +45420,28 @@ aad aah aah aah -aar -aaI -aaC -abs -abN -acP -ack -acK -afK +aah +aah +aah +aaE +aaL +aaL +aaL +adw adx -aee -aev -aeQ -agm -agN -aim -amy -aGO -bbb -bbh -bbj -anG +ady +adz +acM +adB +aer +agq +acY +aff +afo +afD +afF +afJ +ago anY aok aok @@ -46731,26 +45562,26 @@ aad aah aah aah -aar -aaI -aaC -abh -abO -abM -acl -acL -afJ -adC -aji -abL -aeR -afo -afN -aio -aeJ -aeJ -aeJ -aeJ +aah +aah +aah +aaE +aaL +aaL +aaL +aaL +aaL +aaL +aaL +adf +acZ +adD +aev +afi +adf +adf +adf +adf agM bbt anZ @@ -46873,23 +45704,23 @@ aad aad aah aah -aar -aaJ -aaC -abi -abQ -abL -abL -abM -afM -aiu -abL -abL -aeS -agn -afO -agq -aeJ +aah +aah +aah +aaE +aaL +aaE +aaE +aaL +aaL +aaL +aaE +adf +adb +adG +aeC +afj +adf aah aah aah @@ -47015,23 +45846,23 @@ aad aad aad aah -aar -aaM -aaC -abt -abR -abP -acm -acM -afL -adE -aeg -abP -afs -afo -afo -agr -aeJ +aah +aah +aah +aaE +aaL +aaE +aaL +aaL +aaL +aaL +aaL +adf +adc +acY +acY +afk +adf aah aah aah @@ -47157,23 +45988,23 @@ aad aad aad aah -aar -aaN -aaX -abk -abS -abP -acn -adY -afS -aiw -aeh -abP -alL -amd -ahd -amR -aeJ +aah +aah +aah +aaE +aaL +aaE +aaL +aaL +aaL +aaL +aaL +adf +ade +adP +aeD +afl +adf aah aah aah @@ -47299,23 +46130,23 @@ aad aad aad aah -aar -aar -aar -aar -abU -abP -abP -abP -abP -abP -abP -abP -aeJ -aeJ -aeJ -aeJ -aeJ +aah +aah +aaU +aaU +aaI +aaU +aaU +aaU +aaU +aaU +aaU +adf +adf +adf +adf +adf +adf aah aah aah @@ -47437,20 +46268,20 @@ aad aad aad aad -aah -aah -aah +aad +aad +aad aah aah aah aaU -abl -aiG -adg -adg -aef -aef -aiC +abH +abH +abX +abX +abH +abH +abX aei aaU aah @@ -47580,19 +46411,19 @@ aad aad aad aad -aah +aad aah aah aah aah aaU -abl +abH abH abH abX abX abH -aiF +abH aek aaU aah @@ -47728,13 +46559,13 @@ aah aah aah aaU -akg -ace -akp +aaD +aaJ +aaO acq aen abH -aiF +abH aek aaU aah @@ -47876,7 +46707,7 @@ aaU aaU aaU abH -aiF +abH ael aaU aah @@ -48018,7 +46849,7 @@ aah aah aaU abH -aiF +abH aem aaU aah @@ -48026,17 +46857,17 @@ aah aah aah aaU -agE -agP -abH -ahy -aiv +abs +aby +abq +abC +abE aaU aah aah aah apF -aqR +abQ arj apF aah @@ -48160,25 +46991,25 @@ aah aah aaU abH -aiG -ajm +abH +aaR aaU aaU aaU aaU aaU aaU -agF +abt agQ anq ahz -anK +abF aaU aaU aaU aaU aaU -aql +abR arh apF aah @@ -48303,24 +47134,24 @@ aah aaU abH abH -abH -alv -abH -abH -afQ -abH -abH -agG +abf +abp +abq +abq +abr +abq +abq +abu anf ahg ahA -aix -ajl -aop -ajl -ajl -abf -aql +abG +abJ +abM +abJ +abJ +abO +abS ark apF aah diff --git a/maps/tether/tether-05-station1.dmm b/maps/tether/tether-05-station1.dmm index bc473fd7da8..efea147b0ef 100644 --- a/maps/tether/tether-05-station1.dmm +++ b/maps/tether/tether-05-station1.dmm @@ -2242,6 +2242,7 @@ "aei" = ( /obj/structure/table/reinforced, /obj/machinery/camera/network/engineering, +/obj/item/clothing/shoes/magboots/adv, /turf/simulated/floor/tiled, /area/crew_quarters/heads/chief) "aej" = ( diff --git a/maps/tether/tether-07-station3.dmm b/maps/tether/tether-07-station3.dmm index d795ad646cd..27581421812 100644 --- a/maps/tether/tether-07-station3.dmm +++ b/maps/tether/tether-07-station3.dmm @@ -1,35 +1,35 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aa" = ( +"aaa" = ( /turf/space, /area/space) -"ab" = ( +"aab" = ( /turf/simulated/mineral/vacuum, /area/mine/explored/upper_level) -"ac" = ( +"aac" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/door/airlock/glass_external, /obj/effect/map_helper/airlock/door/ext_door, /turf/simulated/floor, /area/security/eva) -"ad" = ( +"aad" = ( /obj/structure/lattice, /obj/structure/grille, /turf/space, /area/space) -"ae" = ( +"aae" = ( /obj/structure/lattice, /turf/space, /area/space) -"af" = ( +"aaf" = ( /turf/simulated/wall/r_wall, /area/maintenance/station/sec_upper) -"ag" = ( +"aag" = ( /obj/machinery/light/small{ dir = 4 }, /turf/simulated/floor/tiled, /area/security/eva) -"ah" = ( +"aah" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 1 }, @@ -46,10 +46,10 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armory/red) -"ai" = ( +"aai" = ( /turf/simulated/wall/r_wall, /area/security/armory/red) -"aj" = ( +"aaj" = ( /obj/structure/table/rack{ dir = 8; layer = 2.6 @@ -67,7 +67,7 @@ /obj/item/clothing/head/helmet/space/void/security, /turf/simulated/floor/tiled/dark, /area/security/eva) -"ak" = ( +"aak" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume{ dir = 8; frequency = 1379; @@ -87,7 +87,7 @@ /obj/effect/map_helper/airlock/sensor/chamber_sensor, /turf/simulated/floor/tiled, /area/security/eva) -"al" = ( +"aal" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 1 }, @@ -97,7 +97,7 @@ /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled/dark, /area/security/armory/red) -"am" = ( +"aam" = ( /obj/machinery/door/airlock/glass_external, /obj/structure/sign/securearea{ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; @@ -115,7 +115,7 @@ /obj/effect/map_helper/airlock/door/int_door, /turf/simulated/floor, /area/security/eva) -"an" = ( +"aan" = ( /obj/machinery/door/airlock/maintenance/sec{ name = "Security Airlock Access"; req_access = list(1,2,18) @@ -123,10 +123,10 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor, /area/security/eva) -"ao" = ( +"aao" = ( /turf/simulated/wall/r_wall, /area/security/armory/blue) -"ap" = ( +"aap" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 4 }, @@ -141,7 +141,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armory/red) -"aq" = ( +"aaq" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -159,7 +159,7 @@ }, /turf/simulated/floor/tiled, /area/security/briefing_room) -"ar" = ( +"aar" = ( /obj/machinery/atmospherics/pipe/manifold/hidden{ dir = 8; icon_state = "map" @@ -175,14 +175,14 @@ }, /turf/simulated/floor/tiled, /area/security/eva) -"as" = ( +"aas" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/glass_security{ req_one_access = list(1,38) }, /turf/simulated/floor/tiled, /area/security/hallway) -"at" = ( +"aat" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ d1 = 4; @@ -196,14 +196,14 @@ }, /turf/simulated/floor/tiled, /area/security/briefing_room) -"au" = ( +"aau" = ( /obj/machinery/door/window/northright, /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/dark, /area/security/range) -"av" = ( +"aav" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -226,7 +226,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/heads/hos) -"aw" = ( +"aaw" = ( /obj/effect/floor_decal/borderfloor{ dir = 1; pixel_y = 0 @@ -240,7 +240,7 @@ /obj/machinery/camera/network/security, /turf/simulated/floor/tiled, /area/security/eva) -"ax" = ( +"aax" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/door/airlock/glass_external, /obj/machinery/atmospherics/pipe/simple/hidden{ @@ -250,13 +250,13 @@ /obj/effect/map_helper/airlock/door/int_door, /turf/simulated/floor, /area/security/eva) -"ay" = ( +"aay" = ( /obj/structure/closet/emcloset, /obj/effect/decal/cleanable/cobweb, /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled, /area/security/eva) -"az" = ( +"aaz" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 6 }, @@ -264,7 +264,7 @@ /obj/machinery/light, /turf/simulated/floor/tiled/dark, /area/security/armory/red) -"aA" = ( +"aaA" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -285,7 +285,7 @@ }, /turf/simulated/floor/tiled, /area/security/hallway) -"aB" = ( +"aaB" = ( /obj/machinery/power/apc{ dir = 8; name = "west bump"; @@ -303,7 +303,7 @@ }, /turf/simulated/floor/tiled, /area/security/range) -"aC" = ( +"aaC" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -314,7 +314,7 @@ }, /turf/simulated/floor/tiled, /area/security/range) -"aD" = ( +"aaD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -327,7 +327,7 @@ }, /turf/simulated/floor/tiled, /area/security/range) -"aE" = ( +"aaE" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 }, @@ -340,7 +340,7 @@ }, /turf/simulated/floor/tiled, /area/security/range) -"aF" = ( +"aaF" = ( /obj/structure/railing{ dir = 4 }, @@ -352,7 +352,7 @@ /obj/random/maintenance/engineering, /turf/simulated/floor, /area/maintenance/station/ai) -"aG" = ( +"aaG" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -371,7 +371,7 @@ }, /turf/simulated/floor/tiled, /area/security/hallway) -"aH" = ( +"aaH" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 9 }, @@ -381,15 +381,15 @@ /obj/structure/table/rack/steel, /turf/simulated/floor/tiled/dark, /area/security/armory/blue) -"aI" = ( +"aaI" = ( /turf/simulated/wall, /area/maintenance/station/sec_upper) -"aJ" = ( +"aaJ" = ( /obj/structure/lattice, /obj/structure/railing, /turf/space, /area/space) -"aK" = ( +"aaK" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -402,7 +402,7 @@ }, /turf/simulated/floor/tiled, /area/security/hallway) -"aL" = ( +"aaL" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -428,7 +428,7 @@ }, /turf/simulated/floor/tiled, /area/security/hallway) -"aM" = ( +"aaM" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/blast/regular{ density = 0; @@ -447,7 +447,7 @@ }, /turf/simulated/floor/tiled, /area/security/hallway) -"aN" = ( +"aaN" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -469,11 +469,11 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/security/hallway) -"aO" = ( +"aaO" = ( /obj/structure/sign/warning/secure_area, /turf/simulated/wall/r_wall, /area/space) -"aP" = ( +"aaP" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/red/border, /obj/structure/table/reinforced, @@ -498,7 +498,7 @@ }, /turf/simulated/floor/tiled, /area/security/range) -"aQ" = ( +"aaQ" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/red/border, /obj/machinery/atmospherics/unary/vent_scrubber/on{ @@ -521,7 +521,7 @@ }, /turf/simulated/floor/tiled, /area/security/range) -"aR" = ( +"aaR" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/red/border, /obj/effect/floor_decal/borderfloor/corner2{ @@ -544,7 +544,7 @@ /obj/item/ammo_magazine/m45/practice, /turf/simulated/floor/tiled, /area/security/range) -"aS" = ( +"aaS" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, @@ -560,7 +560,7 @@ /obj/item/weapon/storage/bag/trash, /turf/simulated/floor/tiled, /area/security/range) -"aT" = ( +"aaT" = ( /obj/structure/table/rack{ dir = 8; layer = 2.6 @@ -573,10 +573,10 @@ }, /turf/simulated/floor/tiled/dark, /area/security/eva) -"aU" = ( +"aaU" = ( /turf/simulated/wall/r_wall, /area/security/eva) -"aV" = ( +"aaV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -586,7 +586,7 @@ }, /turf/simulated/floor/tiled, /area/security/eva) -"aW" = ( +"aaW" = ( /obj/machinery/power/apc{ dir = 2; name = "south bump"; @@ -606,7 +606,7 @@ /obj/effect/floor_decal/corner/red/bordercorner2, /turf/simulated/floor/tiled, /area/security/eva) -"aX" = ( +"aaX" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/red/border, /obj/machinery/portable_atmospherics/canister/oxygen, @@ -615,13 +615,13 @@ }, /turf/simulated/floor/tiled, /area/security/eva) -"aY" = ( +"aaY" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/red/border, /obj/machinery/portable_atmospherics/canister/carbon_dioxide, /turf/simulated/floor/tiled, /area/security/eva) -"aZ" = ( +"aaZ" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 9 }, @@ -632,7 +632,7 @@ /obj/item/clothing/head/helmet/bulletproof, /turf/simulated/floor/tiled/dark, /area/security/armory/red) -"ba" = ( +"aba" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 }, @@ -641,7 +641,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/range) -"bb" = ( +"abb" = ( /obj/machinery/door/window/northright, /obj/effect/floor_decal/industrial/outline/yellow, /obj/item/device/radio/intercom/department/security{ @@ -656,22 +656,22 @@ }, /turf/simulated/floor/tiled/dark, /area/security/range) -"bc" = ( +"abc" = ( /turf/simulated/wall, /area/security/eva) -"bd" = ( +"abd" = ( /turf/simulated/floor/tiled/dark, /area/security/armory/blue) -"be" = ( +"abe" = ( /turf/simulated/wall/r_wall, /area/tether/exploration) -"bf" = ( +"abf" = ( /obj/machinery/door/firedoor/glass, /obj/structure/grille, /obj/structure/window/reinforced/full, /turf/simulated/floor, /area/security/range) -"bg" = ( +"abg" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 9 }, @@ -684,13 +684,13 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armory/red) -"bh" = ( +"abh" = ( /obj/structure/railing{ dir = 1 }, /turf/space, /area/space) -"bi" = ( +"abi" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 5 }, @@ -703,7 +703,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armory/red) -"bj" = ( +"abj" = ( /obj/structure/table/rack{ dir = 8; layer = 2.6 @@ -719,7 +719,7 @@ /obj/item/weapon/tank/jetpack/carbondioxide, /turf/simulated/floor/tiled/dark, /area/security/eva) -"bk" = ( +"abk" = ( /obj/effect/floor_decal/borderfloor{ dir = 5 }, @@ -739,7 +739,7 @@ }, /turf/simulated/floor/tiled, /area/security/eva) -"bl" = ( +"abl" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1 }, @@ -749,10 +749,10 @@ /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled/dark, /area/security/armory/red) -"bm" = ( +"abm" = ( /turf/simulated/wall, /area/maintenance/substation/security) -"bn" = ( +"abn" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, @@ -763,7 +763,7 @@ }, /turf/simulated/floor/tiled, /area/security/eva) -"bo" = ( +"abo" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -771,7 +771,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/warden) -"bp" = ( +"abp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, @@ -780,13 +780,13 @@ }, /turf/simulated/floor/tiled/monotile, /area/tether/exploration) -"bq" = ( +"abq" = ( /obj/machinery/door/firedoor/glass, /obj/structure/grille, /obj/structure/window/reinforced/full, /turf/simulated/floor, /area/security/warden) -"br" = ( +"abr" = ( /obj/effect/floor_decal/borderfloor{ dir = 1; pixel_y = 0 @@ -815,7 +815,7 @@ }, /turf/simulated/floor/tiled, /area/security/hallwayaux) -"bs" = ( +"abs" = ( /obj/effect/floor_decal/borderfloor{ dir = 1; pixel_y = 0 @@ -845,7 +845,7 @@ }, /turf/simulated/floor/tiled, /area/security/hallwayaux) -"bt" = ( +"abt" = ( /obj/effect/floor_decal/borderfloor{ dir = 1; pixel_y = 0 @@ -872,7 +872,7 @@ }, /turf/simulated/floor/tiled, /area/security/hallwayaux) -"bu" = ( +"abu" = ( /obj/effect/floor_decal/borderfloor{ dir = 1; pixel_y = 0 @@ -887,7 +887,7 @@ }, /turf/simulated/floor/tiled, /area/security/hallwayaux) -"bv" = ( +"abv" = ( /obj/effect/floor_decal/borderfloorblack, /obj/structure/table/steel, /obj/item/weapon/storage/box/shotgunshells{ @@ -904,7 +904,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armory/red) -"bw" = ( +"abw" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -917,7 +917,7 @@ }, /turf/simulated/floor, /area/maintenance/substation/security) -"bx" = ( +"abx" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ d2 = 8; @@ -937,7 +937,7 @@ }, /turf/simulated/floor/plating, /area/security/armory/blue) -"by" = ( +"aby" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -954,7 +954,7 @@ }, /turf/simulated/floor, /area/maintenance/substation/security) -"bz" = ( +"abz" = ( /obj/machinery/power/sensor{ name = "Powernet Sensor - Security Subgrid"; name_tag = "Security Subgrid" @@ -969,7 +969,7 @@ }, /turf/simulated/floor, /area/maintenance/substation/security) -"bA" = ( +"abA" = ( /obj/machinery/power/smes/buildable{ charge = 0; output_attempt = 0; @@ -987,13 +987,13 @@ /obj/machinery/camera/network/engineering, /turf/simulated/floor, /area/maintenance/substation/security) -"bB" = ( +"abB" = ( /obj/machinery/power/breakerbox/activated{ RCon_tag = "Security Substation Bypass" }, /turf/simulated/floor, /area/maintenance/substation/security) -"bC" = ( +"abC" = ( /obj/structure/table/reinforced, /obj/item/weapon/stamp/ward, /obj/item/weapon/stamp/denied{ @@ -1001,7 +1001,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/warden) -"bD" = ( +"abD" = ( /obj/effect/floor_decal/borderfloor{ dir = 1; pixel_y = 0 @@ -1040,14 +1040,14 @@ }, /turf/simulated/floor/tiled/dark, /area/security/warden) -"bE" = ( +"abE" = ( /obj/effect/landmark/start{ name = "Warden" }, /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled/dark, /area/security/warden) -"bF" = ( +"abF" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -1057,7 +1057,7 @@ /obj/structure/disposalpipe/trunk, /turf/simulated/floor/tiled/dark, /area/security/warden) -"bG" = ( +"abG" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, @@ -1075,7 +1075,7 @@ }, /turf/simulated/floor/tiled, /area/security/range) -"bH" = ( +"abH" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -1100,16 +1100,16 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/security/hallwayaux) -"bI" = ( +"abI" = ( /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/red/bordercorner, /turf/simulated/floor/tiled, /area/security/hallwayaux) -"bJ" = ( +"abJ" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled, /area/security/eva) -"bK" = ( +"abK" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/red/border, /obj/machinery/firealarm{ @@ -1119,7 +1119,7 @@ }, /turf/simulated/floor/tiled, /area/security/hallwayaux) -"bL" = ( +"abL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -1129,7 +1129,7 @@ }, /turf/simulated/floor/tiled/monotile, /area/tether/exploration) -"bM" = ( +"abM" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/red/border, /obj/machinery/atmospherics/unary/vent_scrubber/on{ @@ -1137,7 +1137,7 @@ }, /turf/simulated/floor/tiled, /area/security/hallwayaux) -"bN" = ( +"abN" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/red/border, /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -1145,14 +1145,14 @@ }, /turf/simulated/floor/tiled, /area/security/hallwayaux) -"bO" = ( +"abO" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/red/border, /obj/machinery/light, /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled, /area/security/hallwayaux) -"bP" = ( +"abP" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 8 }, @@ -1162,7 +1162,7 @@ }, /turf/simulated/floor/tiled, /area/security/hallwayaux) -"bQ" = ( +"abQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -1175,7 +1175,7 @@ /obj/effect/floor_decal/corner/red/bordercorner, /turf/simulated/floor/tiled, /area/security/hallwayaux) -"bR" = ( +"abR" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 9 }, @@ -1195,7 +1195,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armory/blue) -"bS" = ( +"abS" = ( /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/borderfloorblack/corner2{ dir = 9 @@ -1213,7 +1213,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armory/red) -"bT" = ( +"abT" = ( /obj/structure/table/steel, /obj/machinery/cell_charger, /obj/item/weapon/cell/high{ @@ -1229,18 +1229,18 @@ }, /turf/simulated/floor, /area/maintenance/substation/security) -"bU" = ( +"abU" = ( /obj/structure/sign/warning/secure_area, /turf/simulated/wall/r_wall, /area/security/armory/red) -"bV" = ( +"abV" = ( /obj/structure/closet/crate, /obj/random/maintenance/security, /obj/random/maintenance/clean, /obj/random/maintenance/cargo, /turf/simulated/floor, /area/maintenance/station/ai) -"bW" = ( +"abW" = ( /obj/machinery/power/terminal{ icon_state = "term"; dir = 1 @@ -1250,7 +1250,7 @@ }, /turf/simulated/floor, /area/maintenance/substation/security) -"bX" = ( +"abX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -1259,7 +1259,7 @@ }, /turf/simulated/floor/tiled/monotile, /area/tether/exploration) -"bY" = ( +"abY" = ( /obj/machinery/light{ dir = 1 }, @@ -1271,7 +1271,7 @@ }, /turf/simulated/floor/tiled/monotile, /area/tether/exploration) -"bZ" = ( +"abZ" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, @@ -1280,7 +1280,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armory/red) -"ca" = ( +"aca" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -1296,7 +1296,7 @@ }, /turf/simulated/floor/tiled, /area/security/range) -"cb" = ( +"acb" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -1311,7 +1311,7 @@ }, /turf/simulated/floor/tiled, /area/security/eva) -"cc" = ( +"acc" = ( /obj/structure/cable/green{ d1 = 1; d2 = 4; @@ -1334,7 +1334,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/warden) -"cd" = ( +"acd" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -1356,7 +1356,7 @@ }, /turf/simulated/floor/tiled, /area/security/warden) -"ce" = ( +"ace" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, @@ -1376,10 +1376,10 @@ /obj/structure/disposalpipe/junction, /turf/simulated/floor/tiled, /area/security/hallwayaux) -"cf" = ( +"acf" = ( /turf/simulated/wall/r_wall, /area/security/hallwayaux) -"cg" = ( +"acg" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/blast/regular{ density = 0; @@ -1393,7 +1393,7 @@ /obj/structure/window/reinforced/full, /turf/simulated/floor, /area/security/hallwayaux) -"ch" = ( +"ach" = ( /obj/effect/floor_decal/borderfloor{ dir = 9 }, @@ -1422,7 +1422,7 @@ }, /turf/simulated/floor/tiled, /area/security/hallwayaux) -"ci" = ( +"aci" = ( /obj/effect/floor_decal/borderfloor{ dir = 1; pixel_y = 0 @@ -1446,7 +1446,7 @@ }, /turf/simulated/floor/tiled, /area/security/hallwayaux) -"cj" = ( +"acj" = ( /obj/effect/floor_decal/borderfloor{ dir = 1; pixel_y = 0 @@ -1473,7 +1473,7 @@ }, /turf/simulated/floor/tiled, /area/security/hallwayaux) -"ck" = ( +"ack" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 10 }, @@ -1485,7 +1485,7 @@ /obj/item/weapon/gun/energy/ionrifle/pistol, /turf/simulated/floor/tiled/dark, /area/security/armory/blue) -"cl" = ( +"acl" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/floor_decal/rust, /obj/machinery/power/apc{ @@ -1496,7 +1496,7 @@ /obj/structure/cable/green, /turf/simulated/floor, /area/maintenance/substation/security) -"cm" = ( +"acm" = ( /obj/effect/floor_decal/borderfloorblack/full, /obj/structure/closet/bombcloset/double, /obj/machinery/camera/network/security{ @@ -1505,7 +1505,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armory/blue) -"cn" = ( +"acn" = ( /obj/machinery/door/airlock/engineering{ name = "Security Substation"; req_one_access = list(1,11,24) @@ -1519,7 +1519,7 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor, /area/maintenance/substation/security) -"co" = ( +"aco" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -1538,7 +1538,7 @@ /obj/machinery/door/airlock/glass_security, /turf/simulated/floor/tiled, /area/security/hallwayaux) -"cp" = ( +"acp" = ( /obj/machinery/access_button{ command = "cycle_interior"; frequency = 1379; @@ -1558,7 +1558,7 @@ }, /turf/simulated/floor/tiled, /area/security/eva) -"cq" = ( +"acq" = ( /obj/random/trash_pile, /obj/effect/decal/cleanable/cobweb{ icon_state = "cobweb2" @@ -1568,7 +1568,7 @@ }, /turf/simulated/floor, /area/maintenance/station/sec_upper) -"cr" = ( +"acr" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -1580,7 +1580,7 @@ }, /turf/simulated/floor/tiled, /area/security/hallwayaux) -"cs" = ( +"acs" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -1589,7 +1589,7 @@ }, /turf/simulated/floor/tiled/monotile, /area/tether/exploration) -"ct" = ( +"act" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/blast/regular{ density = 0; @@ -1603,23 +1603,23 @@ /obj/structure/window/reinforced/full, /turf/simulated/floor, /area/security/hallwayaux) -"cu" = ( +"acu" = ( /obj/structure/table/reinforced, /obj/machinery/photocopier/faxmachine{ department = "Warden's Office" }, /turf/simulated/floor/tiled/dark, /area/security/warden) -"cv" = ( +"acv" = ( /turf/simulated/wall/r_wall, /area/security/range) -"cw" = ( +"acw" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor/glass, /turf/simulated/floor, /area/security/breakroom) -"cx" = ( +"acx" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 }, @@ -1637,7 +1637,7 @@ }, /turf/simulated/floor/tiled, /area/security/hallwayaux) -"cy" = ( +"acy" = ( /obj/machinery/alarm{ dir = 4; icon_state = "alarm0"; @@ -1646,7 +1646,7 @@ }, /turf/simulated/floor, /area/maintenance/station/ai) -"cz" = ( +"acz" = ( /obj/random/junk, /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ @@ -1656,7 +1656,7 @@ }, /turf/simulated/floor, /area/maintenance/substation/security) -"cA" = ( +"acA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -1665,7 +1665,7 @@ }, /turf/simulated/floor/tiled/monotile, /area/tether/exploration) -"cB" = ( +"acB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, @@ -1674,22 +1674,22 @@ }, /turf/simulated/floor/tiled/monotile, /area/tether/exploration) -"cC" = ( +"acC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/monotile, /area/tether/exploration) -"cD" = ( +"acD" = ( /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/industrial/danger/corner, /turf/simulated/floor/tiled/monotile, /area/tether/exploration) -"cE" = ( +"acE" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/industrial/danger, /turf/simulated/floor/tiled/monotile, /area/tether/exploration) -"cF" = ( +"acF" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, @@ -1697,7 +1697,7 @@ /obj/effect/floor_decal/industrial/danger, /turf/simulated/floor/tiled/monotile, /area/tether/exploration) -"cG" = ( +"acG" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, @@ -1705,7 +1705,7 @@ /obj/effect/floor_decal/industrial/danger, /turf/simulated/floor/tiled/monotile, /area/tether/exploration) -"cH" = ( +"acH" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 8 }, @@ -1715,14 +1715,14 @@ }, /turf/simulated/floor/tiled/monotile, /area/tether/exploration) -"cI" = ( +"acI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, /turf/simulated/floor/tiled/monotile, /area/tether/exploration) -"cJ" = ( +"acJ" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, @@ -1734,10 +1734,10 @@ }, /turf/simulated/floor/tiled/monotile, /area/tether/exploration) -"cK" = ( +"acK" = ( /turf/simulated/floor/reinforced, /area/tether/exploration) -"cL" = ( +"acL" = ( /obj/effect/floor_decal/borderfloor{ pixel_y = 16 }, @@ -1756,7 +1756,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/warden) -"cM" = ( +"acM" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -1765,12 +1765,12 @@ }, /turf/simulated/floor/tiled, /area/security/hallwayaux) -"cN" = ( +"acN" = ( /obj/structure/table/reinforced, /obj/item/device/retail_scanner/security, /turf/simulated/floor/tiled/dark, /area/security/warden) -"cO" = ( +"acO" = ( /obj/structure/table/woodentable, /obj/structure/cable/green{ d1 = 4; @@ -1786,10 +1786,10 @@ /obj/item/weapon/deck/cards, /turf/simulated/floor/carpet, /area/security/breakroom) -"cP" = ( +"acP" = ( /turf/simulated/wall, /area/security/observation) -"cQ" = ( +"acQ" = ( /obj/effect/floor_decal/borderfloor/corner2{ dir = 8 }, @@ -1814,7 +1814,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/security/hallwayaux) -"cR" = ( +"acR" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -1823,13 +1823,13 @@ }, /turf/simulated/floor/tiled, /area/security/hallwayaux) -"cS" = ( +"acS" = ( /obj/structure/railing{ dir = 4 }, /turf/simulated/open, /area/security/brig) -"cT" = ( +"acT" = ( /obj/structure/lattice, /obj/structure/catwalk, /obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{ @@ -1837,22 +1837,22 @@ }, /turf/simulated/open, /area/security/brig) -"cU" = ( +"acU" = ( /turf/simulated/wall/r_wall, /area/security/observation) -"cV" = ( +"acV" = ( /obj/structure/railing{ dir = 8 }, /turf/simulated/open, /area/security/brig) -"cW" = ( +"acW" = ( /obj/machinery/door/firedoor/glass, /obj/structure/grille, /obj/structure/window/reinforced/full, /turf/simulated/floor, /area/security/hallwayaux) -"cX" = ( +"acX" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -1864,7 +1864,7 @@ }, /turf/simulated/floor/tiled, /area/security/hallwayaux) -"cY" = ( +"acY" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -1890,17 +1890,17 @@ }, /turf/simulated/floor/tiled, /area/security/hallwayaux) -"cZ" = ( +"acZ" = ( /obj/structure/filingcabinet, /turf/simulated/floor/wood, /area/crew_quarters/heads/hos) -"da" = ( +"ada" = ( /obj/structure/bed/chair/office/dark{ dir = 1 }, /turf/simulated/floor/carpet, /area/security/breakroom) -"db" = ( +"adb" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, @@ -1912,21 +1912,21 @@ }, /turf/simulated/floor/tiled/monotile, /area/tether/exploration) -"dc" = ( +"adc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, /turf/simulated/floor/tiled/monotile, /area/tether/exploration) -"dd" = ( +"add" = ( /obj/structure/toilet, /obj/machinery/light/small{ dir = 1 }, /turf/simulated/floor/tiled/white, /area/security/security_bathroom) -"de" = ( +"ade" = ( /obj/machinery/door/airlock/glass_security{ name = "Break Room"; req_one_access = list(1,38) @@ -1948,14 +1948,14 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/wood, /area/security/breakroom) -"df" = ( +"adf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 }, /turf/simulated/floor/tiled/monotile, /area/tether/exploration) -"dg" = ( +"adg" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, @@ -1967,7 +1967,7 @@ }, /turf/simulated/floor/wood, /area/security/breakroom) -"dh" = ( +"adh" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, @@ -1979,7 +1979,7 @@ }, /turf/simulated/floor/tiled/monotile, /area/tether/exploration) -"di" = ( +"adi" = ( /obj/effect/floor_decal/industrial/outline/blue, /obj/machinery/atmospherics/portables_connector, /obj/machinery/portable_atmospherics/canister/air, @@ -1988,10 +1988,10 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/shuttle/excursion/general) -"dj" = ( +"adj" = ( /turf/simulated/wall/rshull, /area/shuttle/excursion/general) -"dk" = ( +"adk" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, @@ -2003,7 +2003,7 @@ }, /turf/simulated/floor/tiled/monotile, /area/tether/exploration) -"dl" = ( +"adl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ icon_state = "map-scrubbers"; @@ -2011,7 +2011,7 @@ }, /turf/simulated/floor/tiled/monotile, /area/tether/exploration) -"dm" = ( +"adm" = ( /obj/machinery/light{ icon_state = "tube1"; dir = 8 @@ -2020,13 +2020,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/monotile, /area/tether/exploration) -"dn" = ( +"adn" = ( /obj/structure/bed/chair/office/dark{ dir = 1 }, /turf/simulated/floor/tiled/dark, /area/security/warden) -"do" = ( +"ado" = ( /obj/machinery/light, /obj/machinery/recharger/wallcharger{ pixel_x = 4; @@ -2053,11 +2053,11 @@ }, /turf/simulated/floor/tiled/dark, /area/security/warden) -"dp" = ( +"adp" = ( /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/security/hallwayaux) -"dq" = ( +"adq" = ( /obj/machinery/door/airlock/security{ name = "Security Restroom"; req_one_access = list(1,38) @@ -2076,7 +2076,7 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/white, /area/security/security_bathroom) -"dr" = ( +"adr" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/catwalk, /obj/machinery/alarm{ @@ -2087,14 +2087,14 @@ }, /turf/simulated/floor, /area/maintenance/station/sec_upper) -"ds" = ( +"ads" = ( /obj/structure/bed/chair/office/dark, /obj/effect/landmark/start{ name = "Security Officer" }, /turf/simulated/floor/carpet, /area/security/breakroom) -"dt" = ( +"adt" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -2105,7 +2105,7 @@ }, /turf/simulated/floor/carpet, /area/security/breakroom) -"du" = ( +"adu" = ( /obj/effect/landmark{ name = "tripai" }, @@ -2115,7 +2115,7 @@ }, /turf/simulated/floor/bluegrid, /area/ai) -"dv" = ( +"adv" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -2124,31 +2124,31 @@ }, /turf/simulated/floor/tiled/monotile, /area/tether/exploration) -"dw" = ( +"adw" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/catwalk, /turf/simulated/floor, /area/maintenance/station/sec_upper) -"dx" = ( +"adx" = ( /obj/machinery/door/airlock/maintenance/common, /obj/effect/floor_decal/rust, /obj/machinery/door/firedoor/glass, /turf/simulated/floor, /area/maintenance/station/ai) -"dy" = ( +"ady" = ( /obj/structure/bed/padded, /obj/item/weapon/bedsheet/brown, /obj/structure/curtain/open/bed, /turf/simulated/floor/tiled, /area/shuttle/excursion/general) -"dz" = ( +"adz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled/dark, /area/security/security_equiptment_storage) -"dA" = ( +"adA" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ icon_state = "2-8" @@ -2156,7 +2156,7 @@ /obj/structure/catwalk, /turf/simulated/floor, /area/maintenance/station/sec_upper) -"dB" = ( +"adB" = ( /obj/effect/floor_decal/industrial/warning, /obj/structure/cable/cyan{ d1 = 1; @@ -2165,7 +2165,7 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/shuttle/excursion/cargo) -"dC" = ( +"adC" = ( /obj/machinery/alarm{ dir = 4; pixel_x = -23; @@ -2189,7 +2189,7 @@ }, /turf/simulated/floor/tiled/steel_ridged, /area/shuttle/excursion/cockpit) -"dD" = ( +"adD" = ( /obj/structure/cable/cyan{ d1 = 2; d2 = 4; @@ -2203,7 +2203,7 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/shuttle/excursion/cockpit) -"dE" = ( +"adE" = ( /obj/machinery/light{ dir = 4 }, @@ -2226,7 +2226,7 @@ }, /turf/simulated/floor/tiled/steel_ridged, /area/shuttle/excursion/cockpit) -"dF" = ( +"adF" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -2235,7 +2235,7 @@ }, /turf/simulated/floor/tiled/monotile, /area/tether/exploration) -"dG" = ( +"adG" = ( /obj/machinery/door/airlock/vault/bolted{ req_access = list(53) }, @@ -2272,7 +2272,7 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/dark, /area/security/nuke_storage) -"dH" = ( +"adH" = ( /obj/machinery/light{ dir = 4 }, @@ -2280,10 +2280,10 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/monotile, /area/tether/exploration) -"dI" = ( +"adI" = ( /turf/simulated/wall/r_wall, /area/security/warden) -"dJ" = ( +"adJ" = ( /obj/effect/floor_decal/borderfloor{ dir = 9 }, @@ -2308,7 +2308,7 @@ }, /turf/simulated/floor/tiled, /area/security/hallwayaux) -"dK" = ( +"adK" = ( /obj/effect/floor_decal/borderfloor{ dir = 1; pixel_y = 0 @@ -2335,7 +2335,7 @@ }, /turf/simulated/floor/tiled, /area/security/hallwayaux) -"dL" = ( +"adL" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, @@ -2358,7 +2358,7 @@ }, /turf/simulated/floor/tiled, /area/security/hallwayaux) -"dM" = ( +"adM" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, @@ -2375,7 +2375,7 @@ }, /turf/simulated/floor/tiled, /area/security/hallwayaux) -"dN" = ( +"adN" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 1 }, @@ -2394,7 +2394,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armory/blue) -"dO" = ( +"adO" = ( /obj/effect/floor_decal/borderfloor{ dir = 9 }, @@ -2405,10 +2405,10 @@ /obj/machinery/disposal, /turf/simulated/floor/tiled, /area/security/briefing_room) -"dP" = ( +"adP" = ( /turf/simulated/wall, /area/security/security_bathroom) -"dQ" = ( +"adQ" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 8 @@ -2422,20 +2422,20 @@ }, /turf/simulated/floor/tiled, /area/security/range) -"dR" = ( +"adR" = ( /turf/simulated/wall/r_wall, /area/security/breakroom) -"dS" = ( +"adS" = ( /turf/simulated/wall/r_wall, /area/security/security_bathroom) -"dT" = ( +"adT" = ( /obj/structure/cable{ icon_state = "1-2" }, /obj/structure/catwalk, /turf/simulated/floor, /area/maintenance/cargo) -"dU" = ( +"adU" = ( /obj/effect/floor_decal/borderfloor{ dir = 1; pixel_y = 0 @@ -2449,10 +2449,10 @@ }, /turf/simulated/floor/tiled/dark, /area/security/warden) -"dV" = ( +"adV" = ( /turf/simulated/wall/r_wall, /area/maintenance/station/ai) -"dW" = ( +"adW" = ( /obj/machinery/light{ dir = 1 }, @@ -2464,7 +2464,7 @@ /obj/item/clothing/head/helmet/space/void/pilot, /turf/simulated/floor/tiled, /area/shuttle/excursion/general) -"dX" = ( +"adX" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 }, @@ -2478,7 +2478,7 @@ }, /turf/simulated/floor/tiled, /area/security/eva) -"dY" = ( +"adY" = ( /obj/item/device/radio/intercom{ dir = 4; pixel_x = 24 @@ -2486,7 +2486,7 @@ /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled, /area/shuttle/excursion/general) -"dZ" = ( +"adZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/yellow{ dir = 4 }, @@ -2508,14 +2508,14 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/shuttle/excursion/cargo) -"ea" = ( +"aea" = ( /obj/machinery/computer/ship/engines{ dir = 1; icon_state = "computer" }, /turf/simulated/floor/tiled, /area/shuttle/excursion/cockpit) -"eb" = ( +"aeb" = ( /obj/structure/cable/cyan{ d1 = 1; d2 = 2; @@ -2525,7 +2525,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/steel_grid, /area/shuttle/excursion/cockpit) -"ec" = ( +"aec" = ( /obj/structure/cable/yellow{ d1 = 1; d2 = 4; @@ -2539,11 +2539,11 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/shuttle/excursion/general) -"ed" = ( +"aed" = ( /obj/structure/railing, /turf/space, /area/space) -"ee" = ( +"aee" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 8 }, @@ -2556,7 +2556,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armory/blue) -"ef" = ( +"aef" = ( /obj/effect/floor_decal/borderfloor{ dir = 10 }, @@ -2565,7 +2565,7 @@ }, /turf/simulated/floor/tiled, /area/security/hallwayaux) -"eg" = ( +"aeg" = ( /obj/structure/cable/yellow{ d1 = 4; d2 = 8; @@ -2588,7 +2588,7 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/shuttle/excursion/general) -"eh" = ( +"aeh" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 8 }, @@ -2606,7 +2606,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/security/hallwayaux) -"ei" = ( +"aei" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -2623,7 +2623,7 @@ /obj/machinery/door/airlock/glass_security, /turf/simulated/floor/tiled, /area/security/hallway) -"ej" = ( +"aej" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -2642,7 +2642,7 @@ }, /turf/simulated/floor/tiled, /area/security/hallway) -"ek" = ( +"aek" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/red/border, /obj/item/device/radio/intercom{ @@ -2650,7 +2650,7 @@ }, /turf/simulated/floor/tiled, /area/security/hallwayaux) -"el" = ( +"ael" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" @@ -2668,7 +2668,7 @@ }, /turf/simulated/floor/wood, /area/security/breakroom) -"em" = ( +"aem" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -2676,7 +2676,7 @@ }, /turf/simulated/floor/bluegrid, /area/ai) -"en" = ( +"aen" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 4 }, @@ -2714,7 +2714,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armory/blue) -"eo" = ( +"aeo" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -2726,17 +2726,17 @@ }, /turf/simulated/floor/tiled, /area/security/hallway) -"ep" = ( +"aep" = ( /turf/simulated/wall, /area/security/security_lockerroom) -"eq" = ( +"aeq" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, /turf/simulated/floor/tiled/dark, /area/security/security_lockerroom) -"er" = ( +"aer" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/red/border, /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -2749,7 +2749,7 @@ }, /turf/simulated/floor/tiled, /area/security/hallwayaux) -"es" = ( +"aes" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/railing{ dir = 8 @@ -2763,7 +2763,7 @@ /obj/random/maintenance/clean, /turf/simulated/floor, /area/maintenance/cargo) -"et" = ( +"aet" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -2772,7 +2772,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/heads/hos) -"eu" = ( +"aeu" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 8 }, @@ -2795,7 +2795,7 @@ /obj/item/device/holowarrant, /turf/simulated/floor/tiled/dark, /area/security/security_lockerroom) -"ev" = ( +"aev" = ( /obj/effect/floor_decal/borderfloorblack/corner{ icon_state = "borderfloorcorner_black"; dir = 8 @@ -2810,7 +2810,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/security_lockerroom) -"ew" = ( +"aew" = ( /obj/structure/cable/green{ d2 = 2; icon_state = "0-2" @@ -2825,7 +2825,7 @@ }, /turf/simulated/floor/tiled/white, /area/security/security_bathroom) -"ex" = ( +"aex" = ( /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, /obj/structure/cable/cyan{ @@ -2835,13 +2835,13 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/shuttle/excursion/general) -"ey" = ( +"aey" = ( /turf/simulated/floor/carpet, /area/security/breakroom) -"ez" = ( +"aez" = ( /turf/simulated/floor/tiled/dark, /area/security/warden) -"eA" = ( +"aeA" = ( /obj/effect/floor_decal/corner/red{ icon_state = "corner_white"; dir = 10 @@ -2869,7 +2869,7 @@ }, /turf/simulated/floor/tiled, /area/security/hallwayaux) -"eB" = ( +"aeB" = ( /obj/effect/floor_decal/corner/red{ icon_state = "corner_white"; dir = 10 @@ -2894,7 +2894,7 @@ }, /turf/simulated/floor/tiled, /area/security/hallwayaux) -"eC" = ( +"aeC" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -2911,13 +2911,13 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/security/hallwayaux) -"eD" = ( +"aeD" = ( /obj/machinery/door/firedoor/glass, /obj/structure/grille, /obj/structure/window/reinforced/full, /turf/simulated/floor, /area/security/observation) -"eE" = ( +"aeE" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -2935,7 +2935,7 @@ /obj/machinery/door/firedoor/glass/hidden/steel, /turf/simulated/floor/tiled, /area/security/hallway) -"eF" = ( +"aeF" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -2949,26 +2949,26 @@ }, /turf/simulated/floor/wood, /area/security/breakroom) -"eG" = ( +"aeG" = ( /obj/structure/table/woodentable, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/carpet, /area/crew_quarters/heads/hos) -"eH" = ( +"aeH" = ( /obj/structure/table/woodentable, /obj/item/weapon/folder/red_hos, /obj/item/weapon/stamp/hos, /turf/simulated/floor/carpet, /area/crew_quarters/heads/hos) -"eI" = ( +"aeI" = ( /obj/effect/decal/cleanable/dirt, /turf/simulated/floor, /area/maintenance/station/ai) -"eJ" = ( +"aeJ" = ( /turf/simulated/floor/wood, /area/security/breakroom) -"eK" = ( +"aeK" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 6 }, @@ -2986,7 +2986,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/security_lockerroom) -"eL" = ( +"aeL" = ( /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ @@ -2996,14 +2996,14 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor, /area/maintenance/cargo) -"eM" = ( +"aeM" = ( /obj/structure/railing{ dir = 4 }, /obj/random/junk, /turf/simulated/floor, /area/maintenance/station/ai) -"eN" = ( +"aeN" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -3019,7 +3019,7 @@ /obj/effect/floor_decal/corner/lightgrey/bordercorner, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"eO" = ( +"aeO" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ d1 = 4; @@ -3042,7 +3042,7 @@ }, /turf/simulated/floor/lino, /area/security/detectives_office) -"eP" = ( +"aeP" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -3058,7 +3058,7 @@ /obj/effect/floor_decal/corner/lightgrey/border, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"eQ" = ( +"aeQ" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -3075,7 +3075,7 @@ /obj/effect/floor_decal/corner/lightgrey/border, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"eR" = ( +"aeR" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -3096,16 +3096,16 @@ /obj/effect/floor_decal/corner/lightgrey/border, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"eS" = ( +"aeS" = ( /obj/item/frame, /obj/effect/floor_decal/rust, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor, /area/maintenance/station/ai) -"eT" = ( +"aeT" = ( /turf/simulated/wall, /area/security/security_equiptment_storage) -"eU" = ( +"aeU" = ( /obj/structure/catwalk, /obj/structure/cable{ d1 = 1; @@ -3121,7 +3121,7 @@ }, /turf/simulated/floor, /area/maintenance/station/sec_upper) -"eV" = ( +"aeV" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -3140,7 +3140,7 @@ /obj/machinery/door/airlock/glass_security, /turf/simulated/floor/tiled, /area/security/hallway) -"eW" = ( +"aeW" = ( /obj/structure/closet/crate, /obj/random/maintenance/security, /obj/random/maintenance/clean, @@ -3150,19 +3150,19 @@ }, /turf/simulated/floor, /area/maintenance/station/sec_upper) -"eX" = ( +"aeX" = ( /obj/machinery/door/firedoor/glass, /obj/structure/grille, /obj/structure/window/reinforced/full, /turf/simulated/floor, /area/security/briefing_room) -"eY" = ( +"aeY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, /turf/simulated/floor/wood, /area/security/breakroom) -"eZ" = ( +"aeZ" = ( /obj/effect/floor_decal/borderfloor{ dir = 5 }, @@ -3174,7 +3174,7 @@ /obj/structure/table/reinforced, /turf/simulated/floor/tiled, /area/security/briefing_room) -"fa" = ( +"afa" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" @@ -3194,7 +3194,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"fb" = ( +"afb" = ( /obj/machinery/light_switch{ dir = 4; icon_state = "light1"; @@ -3202,11 +3202,11 @@ }, /turf/simulated/floor/tiled/white, /area/security/security_bathroom) -"fc" = ( +"afc" = ( /obj/structure/catwalk, /turf/simulated/floor, /area/maintenance/station/sec_upper) -"fd" = ( +"afd" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ d1 = 1; @@ -3219,7 +3219,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/dark, /area/security/security_lockerroom) -"fe" = ( +"afe" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -3242,7 +3242,7 @@ }, /turf/simulated/floor/tiled, /area/security/hallway) -"ff" = ( +"aff" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" @@ -3260,7 +3260,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/heads/hos) -"fg" = ( +"afg" = ( /obj/structure/cable/cyan{ d1 = 1; d2 = 2; @@ -3268,13 +3268,13 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/shuttle/excursion/general) -"fh" = ( +"afh" = ( /obj/machinery/light/spot{ pixel_y = 32 }, /turf/simulated/wall/rshull, /area/shuttle/excursion/general) -"fi" = ( +"afi" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ icon_state = "intact-scrubbers"; dir = 5 @@ -3284,7 +3284,7 @@ }, /turf/simulated/floor/tiled, /area/shuttle/excursion/general) -"fj" = ( +"afj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -3294,7 +3294,7 @@ }, /turf/simulated/floor/tiled, /area/shuttle/excursion/general) -"fk" = ( +"afk" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 1 }, @@ -3319,11 +3319,11 @@ }, /turf/simulated/floor/tiled/dark, /area/security/security_equiptment_storage) -"fl" = ( +"afl" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled/dark, /area/security/warden) -"fm" = ( +"afm" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -3342,7 +3342,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/security/hallway) -"fn" = ( +"afn" = ( /obj/machinery/door/firedoor/glass, /obj/structure/table/reinforced, /obj/machinery/door/window/brigdoor/westleft{ @@ -3366,7 +3366,7 @@ }, /turf/simulated/floor/tiled, /area/security/warden) -"fo" = ( +"afo" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 1 }, @@ -3385,12 +3385,12 @@ }, /turf/simulated/floor/tiled/dark, /area/security/evidence_storage) -"fp" = ( +"afp" = ( /obj/random/junk, /obj/effect/floor_decal/rust, /turf/simulated/floor, /area/maintenance/station/ai) -"fq" = ( +"afq" = ( /obj/structure/railing{ icon_state = "railing0"; dir = 1 @@ -3400,7 +3400,7 @@ }, /turf/simulated/floor, /area/maintenance/station/sec_upper) -"fr" = ( +"afr" = ( /obj/machinery/photocopier, /obj/machinery/power/apc{ dir = 2; @@ -3410,11 +3410,11 @@ /obj/structure/cable/green, /turf/simulated/floor/wood, /area/crew_quarters/heads/hos) -"fs" = ( +"afs" = ( /obj/structure/flora/pottedplant/stoutbush, /turf/simulated/floor/tiled, /area/security/hallway) -"ft" = ( +"aft" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/red/border, /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -3423,7 +3423,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/security/hallway) -"fu" = ( +"afu" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -3431,7 +3431,7 @@ }, /turf/simulated/floor/tiled, /area/security/hallway) -"fv" = ( +"afv" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ d1 = 4; @@ -3445,7 +3445,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/evidence_storage) -"fw" = ( +"afw" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/security{ name = "Evidence Storage"; @@ -3454,7 +3454,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/security_processing) -"fx" = ( +"afx" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ icon_state = "intact-scrubbers"; dir = 4 @@ -3476,10 +3476,10 @@ }, /turf/simulated/floor/tiled/steel_ridged, /area/shuttle/excursion/general) -"fy" = ( +"afy" = ( /turf/simulated/wall/r_wall, /area/ai) -"fz" = ( +"afz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -3490,7 +3490,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/security_equiptment_storage) -"fA" = ( +"afA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, @@ -3502,7 +3502,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/security_equiptment_storage) -"fB" = ( +"afB" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -3510,7 +3510,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/security_equiptment_storage) -"fC" = ( +"afC" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ d1 = 4; @@ -3523,7 +3523,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/security_equiptment_storage) -"fD" = ( +"afD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -3540,12 +3540,12 @@ /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled, /area/security/hallway) -"fE" = ( +"afE" = ( /obj/random/junk, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor, /area/maintenance/station/ai) -"fF" = ( +"afF" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -3568,7 +3568,7 @@ }, /turf/simulated/floor/tiled, /area/security/hallway) -"fG" = ( +"afG" = ( /obj/effect/floor_decal/steeldecal/steel_decals10{ dir = 10 }, @@ -3582,10 +3582,10 @@ /obj/structure/curtain/open/shower/security, /turf/simulated/floor/tiled, /area/security/security_bathroom) -"fH" = ( +"afH" = ( /turf/simulated/wall, /area/security/detectives_office) -"fI" = ( +"afI" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 4 }, @@ -3600,7 +3600,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/evidence_storage) -"fJ" = ( +"afJ" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 6 }, @@ -3612,7 +3612,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armory/blue) -"fK" = ( +"afK" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -3636,12 +3636,12 @@ /obj/item/device/retail_scanner/security, /turf/simulated/floor/tiled, /area/security/security_processing) -"fL" = ( +"afL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/dark, /area/security/evidence_storage) -"fM" = ( +"afM" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 }, @@ -3654,7 +3654,7 @@ /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled/dark, /area/security/armory/blue) -"fN" = ( +"afN" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -3665,7 +3665,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/evidence_storage) -"fO" = ( +"afO" = ( /obj/structure/cable/green{ d1 = 1; d2 = 8; @@ -3687,10 +3687,10 @@ }, /turf/simulated/floor/tiled/white, /area/security/forensics) -"fP" = ( +"afP" = ( /turf/simulated/wall/r_wall, /area/ai_core_foyer) -"fQ" = ( +"afQ" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -3709,7 +3709,7 @@ /obj/effect/floor_decal/corner/lightgrey/border, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"fR" = ( +"afR" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/multi_tile/glass{ name = "Security Lobby" @@ -3721,7 +3721,7 @@ dir = 8 }, /area/security/lobby) -"fS" = ( +"afS" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -3733,7 +3733,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"fT" = ( +"afT" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -3757,13 +3757,13 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"fU" = ( +"afU" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/bluegrid, /area/ai) -"fV" = ( +"afV" = ( /obj/machinery/atmospherics/portables_connector{ dir = 1 }, @@ -3771,7 +3771,7 @@ /obj/machinery/portable_atmospherics/canister/empty, /turf/simulated/floor/tiled/techfloor/grid, /area/shuttle/excursion/general) -"fW" = ( +"afW" = ( /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/borderfloorblack/corner2{ dir = 9 @@ -3780,12 +3780,12 @@ /obj/machinery/light, /turf/simulated/floor/tiled/dark, /area/security/security_equiptment_storage) -"fX" = ( +"afX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/dark, /area/security/security_equiptment_storage) -"fY" = ( +"afY" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 6 }, @@ -3801,7 +3801,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/security_equiptment_storage) -"fZ" = ( +"afZ" = ( /obj/effect/floor_decal/corner/lightgrey{ dir = 6 }, @@ -3821,7 +3821,7 @@ /obj/machinery/vending/fitness, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"ga" = ( +"aga" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -3848,11 +3848,11 @@ }, /turf/simulated/floor/tiled, /area/security/hallway) -"gb" = ( +"agb" = ( /obj/structure/railing, /turf/simulated/open, /area/security/brig) -"gc" = ( +"agc" = ( /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/white/border, /obj/machinery/dnaforensics, @@ -3862,7 +3862,7 @@ }, /turf/simulated/floor/tiled/white, /area/security/forensics) -"gd" = ( +"agd" = ( /obj/structure/closet/crate, /obj/item/target, /obj/item/target, @@ -3872,31 +3872,31 @@ /obj/item/target, /turf/simulated/floor/tiled/dark, /area/security/range) -"ge" = ( +"age" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/target_stake, /turf/simulated/floor/tiled/dark, /area/security/range) -"gf" = ( +"agf" = ( /turf/simulated/floor/tiled/dark, /area/security/range) -"gg" = ( +"agg" = ( /turf/simulated/floor/airless, /area/space) -"gh" = ( +"agh" = ( /obj/machinery/light{ icon_state = "tube1"; dir = 8 }, /turf/simulated/floor/tiled/dark, /area/security/range) -"gi" = ( +"agi" = ( /obj/machinery/light{ dir = 4 }, /turf/simulated/floor/tiled/dark, /area/security/range) -"gj" = ( +"agj" = ( /obj/machinery/access_button{ command = "cycle_exterior"; frequency = 1379; @@ -3908,27 +3908,27 @@ }, /turf/simulated/floor/airless, /area/space) -"gk" = ( +"agk" = ( /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark, /area/security/range) -"gl" = ( +"agl" = ( /obj/machinery/door/airlock/glass_external, /obj/effect/floor_decal/industrial/hatch/yellow, /obj/effect/map_helper/airlock/door/ext_door, /turf/simulated/floor, /area/security/eva) -"gm" = ( +"agm" = ( /obj/structure/grille, /turf/space, /area/space) -"gn" = ( +"agn" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 1 }, /turf/simulated/floor/tiled/dark, /area/security/armory/red) -"go" = ( +"ago" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 5 }, @@ -3948,7 +3948,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armory/red) -"gp" = ( +"agp" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 9 }, @@ -3965,7 +3965,7 @@ /obj/item/clothing/head/helmet/laserproof, /turf/simulated/floor/tiled/dark, /area/security/armory/red) -"gq" = ( +"agq" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 1 }, @@ -3974,7 +3974,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armory/red) -"gr" = ( +"agr" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 5 }, @@ -3992,7 +3992,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armory/red) -"gs" = ( +"ags" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 9 }, @@ -4007,7 +4007,7 @@ /obj/item/weapon/shield/riot, /turf/simulated/floor/tiled/dark, /area/security/armory/red) -"gt" = ( +"agt" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 5 }, @@ -4015,25 +4015,25 @@ /obj/item/weapon/gun/energy/ionrifle, /turf/simulated/floor/tiled/dark, /area/security/armory/red) -"gu" = ( +"agu" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /turf/simulated/floor/tiled/dark, /area/security/range) -"gv" = ( +"agv" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/tiled/dark, /area/security/range) -"gw" = ( +"agw" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/tiled/dark, /area/security/range) -"gx" = ( +"agx" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume{ dir = 2; frequency = 1379; @@ -4042,10 +4042,10 @@ /obj/effect/map_helper/airlock/atmos/chamber_pump, /turf/simulated/floor/tiled, /area/security/eva) -"gy" = ( +"agy" = ( /turf/simulated/wall, /area/maintenance/station/ai) -"gz" = ( +"agz" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 10 }, @@ -4063,7 +4063,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armory/red) -"gA" = ( +"agA" = ( /obj/effect/floor_decal/industrial/warning, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 @@ -4073,7 +4073,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armory/red) -"gB" = ( +"agB" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 6 }, @@ -4088,7 +4088,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armory/red) -"gC" = ( +"agC" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 10 }, @@ -4109,11 +4109,11 @@ /obj/item/clothing/head/helmet/laserproof, /turf/simulated/floor/tiled/dark, /area/security/armory/red) -"gD" = ( +"agD" = ( /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled/dark, /area/security/armory/red) -"gE" = ( +"agE" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 6 }, @@ -4125,7 +4125,7 @@ /obj/structure/table/rack/shelf/steel, /turf/simulated/floor/tiled/dark, /area/security/armory/red) -"gF" = ( +"agF" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 10 }, @@ -4147,7 +4147,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armory/red) -"gG" = ( +"agG" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 6 }, @@ -4159,7 +4159,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armory/red) -"gH" = ( +"agH" = ( /obj/machinery/alarm{ dir = 4; icon_state = "alarm0"; @@ -4168,19 +4168,19 @@ }, /turf/simulated/floor/tiled/dark, /area/security/range) -"gI" = ( +"agI" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/dark, /area/security/range) -"gJ" = ( +"agJ" = ( /turf/simulated/mineral/vacuum, /area/maintenance/station/ai) -"gK" = ( +"agK" = ( /turf/simulated/floor, /area/maintenance/station/ai) -"gL" = ( +"agL" = ( /obj/machinery/atmospherics/binary/pump, /obj/machinery/firealarm{ dir = 1; @@ -4197,7 +4197,7 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/shuttle/excursion/general) -"gM" = ( +"agM" = ( /obj/machinery/atmospherics/portables_connector{ dir = 1 }, @@ -4205,7 +4205,7 @@ /obj/machinery/portable_atmospherics/canister/phoron, /turf/simulated/floor/tiled/techfloor/grid, /area/shuttle/excursion/general) -"gN" = ( +"agN" = ( /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; dir = 1 @@ -4214,7 +4214,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/dark, /area/security/armory/red) -"gO" = ( +"agO" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 1 }, @@ -4223,7 +4223,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armory/red) -"gP" = ( +"agP" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 1 }, @@ -4232,24 +4232,24 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armory/red) -"gQ" = ( +"agQ" = ( /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; dir = 1 }, /turf/simulated/floor/tiled/dark, /area/security/armory/red) -"gR" = ( +"agR" = ( /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled/dark, /area/security/range) -"gS" = ( +"agS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled/dark, /area/security/range) -"gT" = ( +"agT" = ( /obj/structure/table/rack{ dir = 8; layer = 2.6 @@ -4267,7 +4267,7 @@ /obj/item/clothing/head/helmet/space/void/security, /turf/simulated/floor/tiled/dark, /area/security/eva) -"gU" = ( +"agU" = ( /obj/structure/table/rack{ dir = 8; layer = 2.6 @@ -4282,7 +4282,7 @@ /obj/item/weapon/tank/jetpack/carbondioxide, /turf/simulated/floor/tiled/dark, /area/security/eva) -"gV" = ( +"agV" = ( /obj/effect/floor_decal/borderfloor{ dir = 1; pixel_y = 0 @@ -4299,7 +4299,7 @@ }, /turf/simulated/floor/tiled, /area/security/eva) -"gW" = ( +"agW" = ( /obj/effect/floor_decal/borderfloor{ dir = 1; pixel_y = 0 @@ -4319,7 +4319,7 @@ }, /turf/simulated/floor/tiled, /area/security/eva) -"gX" = ( +"agX" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 }, @@ -4329,7 +4329,7 @@ }, /turf/simulated/floor/tiled, /area/security/eva) -"gY" = ( +"agY" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ icon_state = "intact-scrubbers"; @@ -4337,14 +4337,14 @@ }, /turf/simulated/floor/tiled, /area/security/eva) -"gZ" = ( +"agZ" = ( /obj/machinery/alarm{ pixel_y = 22 }, /obj/structure/closet/emcloset, /turf/simulated/floor/tiled, /area/security/eva) -"ha" = ( +"aha" = ( /obj/machinery/atmospherics/pipe/manifold/hidden{ dir = 1; icon_state = "map" @@ -4352,21 +4352,21 @@ /obj/machinery/meter, /turf/simulated/floor/tiled, /area/security/eva) -"hb" = ( +"ahb" = ( /obj/machinery/atmospherics/portables_connector{ dir = 8 }, /obj/machinery/portable_atmospherics/canister/air/airlock, /turf/simulated/floor/tiled, /area/security/eva) -"hc" = ( +"ahc" = ( /obj/machinery/atmospherics/unary/engine{ dir = 1 }, /turf/simulated/floor/reinforced, /turf/simulated/shuttle/plating/airless/carry, /area/shuttle/excursion/cargo) -"hd" = ( +"ahd" = ( /obj/structure/table/woodentable, /obj/machinery/photocopier/faxmachine{ department = "Head of Security" @@ -4374,7 +4374,7 @@ /obj/machinery/camera/network/security, /turf/simulated/floor/wood, /area/crew_quarters/heads/hos) -"he" = ( +"ahe" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 2 }, @@ -4389,7 +4389,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"hf" = ( +"ahf" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 5 }, @@ -4399,13 +4399,13 @@ /obj/structure/table/rack/shelf/steel, /turf/simulated/floor/tiled/dark, /area/security/armory/blue) -"hg" = ( +"ahg" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 8 }, /turf/simulated/floor/tiled/dark, /area/security/armory/red) -"hh" = ( +"ahh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, @@ -4414,7 +4414,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armory/red) -"hi" = ( +"ahi" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -4423,7 +4423,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armory/red) -"hj" = ( +"ahj" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, @@ -4437,7 +4437,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armory/red) -"hk" = ( +"ahk" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 }, @@ -4451,7 +4451,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armory/red) -"hl" = ( +"ahl" = ( /obj/structure/table/reinforced, /obj/structure/window/reinforced{ dir = 1 @@ -4468,12 +4468,12 @@ }, /turf/simulated/floor/tiled/dark, /area/security/range) -"hm" = ( +"ahm" = ( /obj/machinery/door/window/northright, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark, /area/security/range) -"hn" = ( +"ahn" = ( /obj/structure/table/reinforced, /obj/structure/window/reinforced{ dir = 1 @@ -4482,7 +4482,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/dark, /area/security/range) -"ho" = ( +"aho" = ( /obj/structure/table/reinforced, /obj/structure/window/reinforced{ dir = 1 @@ -4490,19 +4490,19 @@ /obj/item/weapon/gun/energy/laser/practice, /turf/simulated/floor/tiled/dark, /area/security/range) -"hp" = ( +"ahp" = ( /turf/simulated/wall, /area/security/range) -"hq" = ( +"ahq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 }, /turf/simulated/floor/tiled, /area/security/eva) -"hr" = ( +"ahr" = ( /turf/simulated/floor/tiled, /area/security/eva) -"hs" = ( +"ahs" = ( /obj/structure/railing{ dir = 4 }, @@ -4512,7 +4512,7 @@ /obj/random/cigarettes, /turf/simulated/floor, /area/maintenance/station/ai) -"ht" = ( +"aht" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -4524,7 +4524,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/foyer) -"hu" = ( +"ahu" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/blast/regular{ density = 0; @@ -4540,7 +4540,7 @@ }, /turf/simulated/floor, /area/security/eva) -"hv" = ( +"ahv" = ( /obj/machinery/light, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -4550,17 +4550,17 @@ }, /turf/simulated/floor/tiled, /area/security/eva) -"hw" = ( +"ahw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/universal{ dir = 4 }, /turf/simulated/floor/tiled, /area/security/eva) -"hx" = ( +"ahx" = ( /obj/structure/undies_wardrobe, /turf/simulated/floor/tiled/white, /area/security/security_bathroom) -"hy" = ( +"ahy" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -4568,7 +4568,7 @@ }, /turf/simulated/wall/r_wall, /area/ai) -"hz" = ( +"ahz" = ( /obj/machinery/porta_turret/ai_defense, /obj/structure/cable{ d1 = 4; @@ -4577,7 +4577,7 @@ }, /turf/simulated/floor/bluegrid, /area/ai) -"hA" = ( +"ahA" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 10 }, @@ -4587,12 +4587,12 @@ /obj/structure/table/rack/steel, /turf/simulated/floor/tiled/dark, /area/security/armory/blue) -"hB" = ( +"ahB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/dark, /area/security/armory/blue) -"hC" = ( +"ahC" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 8 }, @@ -4608,7 +4608,7 @@ /obj/item/weapon/storage/box/holowarrants, /turf/simulated/floor/tiled/dark, /area/security/security_equiptment_storage) -"hD" = ( +"ahD" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 10 }, @@ -4623,10 +4623,10 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armory/red) -"hE" = ( +"ahE" = ( /turf/simulated/floor/tiled/dark, /area/security/armory/red) -"hF" = ( +"ahF" = ( /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/borderfloorblack/corner2, /obj/structure/table/steel, @@ -4650,7 +4650,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armory/red) -"hG" = ( +"ahG" = ( /obj/effect/floor_decal/borderfloorblack, /obj/structure/table/steel, /obj/item/weapon/cell/device/weapon{ @@ -4675,7 +4675,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armory/red) -"hH" = ( +"ahH" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, @@ -4701,7 +4701,7 @@ /obj/structure/cable/green, /turf/simulated/floor/tiled, /area/security/observation) -"hI" = ( +"ahI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -4711,13 +4711,13 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armory/red) -"hJ" = ( +"ahJ" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 }, /turf/simulated/floor/tiled, /area/security/range) -"hK" = ( +"ahK" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, @@ -4728,7 +4728,7 @@ }, /turf/simulated/floor/tiled, /area/security/eva) -"hL" = ( +"ahL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -4737,7 +4737,7 @@ }, /turf/simulated/floor/tiled, /area/security/eva) -"hM" = ( +"ahM" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -4746,7 +4746,7 @@ }, /turf/simulated/floor/tiled, /area/security/eva) -"hN" = ( +"ahN" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, @@ -4755,7 +4755,7 @@ }, /turf/simulated/floor/tiled, /area/security/eva) -"hO" = ( +"ahO" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -4767,7 +4767,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/foyer) -"hP" = ( +"ahP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -4776,7 +4776,7 @@ }, /turf/simulated/floor/tiled, /area/security/eva) -"hQ" = ( +"ahQ" = ( /obj/effect/floor_decal/borderfloor{ dir = 6 }, @@ -4796,7 +4796,7 @@ }, /turf/simulated/floor/tiled, /area/security/eva) -"hR" = ( +"ahR" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -4817,7 +4817,7 @@ }, /turf/simulated/floor/tiled, /area/security/hallwayaux) -"hS" = ( +"ahS" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ icon_state = "0-4" @@ -4836,7 +4836,7 @@ }, /turf/simulated/floor/plating, /area/security/armory/blue) -"hT" = ( +"ahT" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -4856,7 +4856,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armory/blue) -"hU" = ( +"ahU" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/security/armory{ color = ""; @@ -4867,7 +4867,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/warden) -"hV" = ( +"ahV" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -4889,7 +4889,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armory/red) -"hW" = ( +"ahW" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/security{ name = "Armory Storage"; @@ -4910,7 +4910,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armory/red) -"hX" = ( +"ahX" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/structure/cable{ icon_state = "1-8" @@ -4921,7 +4921,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"hY" = ( +"ahY" = ( /obj/structure/table/rack{ dir = 8; layer = 2.6 @@ -4935,7 +4935,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/eva) -"hZ" = ( +"ahZ" = ( /obj/effect/floor_decal/steeldecal/steel_decals6{ dir = 1 }, @@ -4947,7 +4947,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"ia" = ( +"aia" = ( /obj/machinery/power/terminal{ dir = 4 }, @@ -4957,11 +4957,11 @@ }, /turf/simulated/floor/bluegrid, /area/ai) -"ib" = ( +"aib" = ( /obj/structure/catwalk, /turf/simulated/floor, /area/maintenance/station/ai) -"ic" = ( +"aic" = ( /obj/machinery/power/smes/buildable{ charge = 5e+006; input_attempt = 1; @@ -4975,7 +4975,7 @@ /obj/machinery/camera/network/command, /turf/simulated/floor/bluegrid, /area/ai) -"id" = ( +"aid" = ( /obj/machinery/light/small{ dir = 4 }, @@ -4987,7 +4987,7 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor, /area/maintenance/station/ai) -"ie" = ( +"aie" = ( /obj/structure/cable/cyan{ d2 = 8; icon_state = "0-8" @@ -5002,7 +5002,7 @@ }, /turf/simulated/floor/bluegrid, /area/ai) -"if" = ( +"aif" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 5 }, @@ -5040,7 +5040,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armory/blue) -"ig" = ( +"aig" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 9 }, @@ -5064,7 +5064,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armory/blue) -"ih" = ( +"aih" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -5074,7 +5074,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armory/blue) -"ii" = ( +"aii" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 5 }, @@ -5099,7 +5099,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armory/blue) -"ij" = ( +"aij" = ( /obj/effect/floor_decal/borderfloor{ dir = 9 }, @@ -5140,7 +5140,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/warden) -"ik" = ( +"aik" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -5162,7 +5162,7 @@ }, /turf/simulated/floor/tiled, /area/security/hallwayaux) -"il" = ( +"ail" = ( /obj/machinery/power/apc{ dir = 4; name = "east bump"; @@ -5190,7 +5190,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/warden) -"im" = ( +"aim" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -5220,13 +5220,13 @@ }, /turf/simulated/floor/tiled, /area/security/hallwayaux) -"in" = ( +"ain" = ( /obj/machinery/door/firedoor/glass, /obj/structure/grille, /obj/structure/window/reinforced/full, /turf/simulated/floor, /area/security/eva) -"io" = ( +"aio" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/glass_security{ name = "Security EVA"; @@ -5234,7 +5234,7 @@ }, /turf/simulated/floor/tiled, /area/security/eva) -"ip" = ( +"aip" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -5272,7 +5272,7 @@ }, /turf/simulated/floor/tiled, /area/security/hallway) -"iq" = ( +"aiq" = ( /obj/structure/catwalk, /obj/structure/cable{ d1 = 1; @@ -5287,7 +5287,7 @@ }, /turf/simulated/floor, /area/maintenance/station/sec_upper) -"ir" = ( +"air" = ( /obj/structure/cable/cyan{ d1 = 2; d2 = 8; @@ -5295,18 +5295,18 @@ }, /turf/simulated/floor/bluegrid, /area/ai) -"is" = ( +"ais" = ( /obj/machinery/porta_turret/ai_defense, /turf/simulated/floor/bluegrid, /area/ai) -"it" = ( +"ait" = ( /obj/machinery/disposal/deliveryChute{ dir = 4 }, /obj/structure/disposalpipe/trunk, /turf/simulated/floor/tiled/techfloor/grid, /area/shuttle/excursion/cargo) -"iu" = ( +"aiu" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 8 }, @@ -5320,7 +5320,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armory/blue) -"iv" = ( +"aiv" = ( /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; dir = 4 @@ -5334,7 +5334,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armory/blue) -"iw" = ( +"aiw" = ( /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; dir = 8 @@ -5347,7 +5347,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armory/blue) -"ix" = ( +"aix" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4 }, @@ -5361,7 +5361,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armory/blue) -"iy" = ( +"aiy" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/security{ name = "Blue Armory"; @@ -5370,7 +5370,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/warden) -"iz" = ( +"aiz" = ( /obj/effect/floor_decal/borderfloor{ dir = 1; pixel_y = 0 @@ -5396,7 +5396,7 @@ }, /turf/simulated/floor/tiled, /area/security/hallwayaux) -"iA" = ( +"aiA" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, /obj/structure/cable/green{ @@ -5414,7 +5414,7 @@ }, /turf/simulated/floor/tiled, /area/security/hallwayaux) -"iB" = ( +"aiB" = ( /obj/effect/floor_decal/borderfloor{ dir = 1; pixel_y = 0 @@ -5444,7 +5444,7 @@ }, /turf/simulated/floor/tiled, /area/security/hallwayaux) -"iC" = ( +"aiC" = ( /obj/effect/floor_decal/borderfloor{ dir = 1; pixel_y = 0 @@ -5473,7 +5473,7 @@ }, /turf/simulated/floor/tiled, /area/security/hallwayaux) -"iD" = ( +"aiD" = ( /obj/effect/floor_decal/borderfloor{ dir = 1; pixel_y = 0 @@ -5503,7 +5503,7 @@ }, /turf/simulated/floor/tiled, /area/security/hallwayaux) -"iE" = ( +"aiE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -5517,7 +5517,7 @@ }, /turf/simulated/floor/tiled, /area/security/hallwayaux) -"iF" = ( +"aiF" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -5536,7 +5536,7 @@ }, /turf/simulated/floor/tiled, /area/security/hallwayaux) -"iG" = ( +"aiG" = ( /obj/effect/floor_decal/borderfloor{ dir = 1; pixel_y = 0 @@ -5571,7 +5571,7 @@ }, /turf/simulated/floor/tiled, /area/security/hallwayaux) -"iH" = ( +"aiH" = ( /obj/effect/floor_decal/borderfloor{ dir = 5 }, @@ -5585,7 +5585,7 @@ }, /turf/simulated/floor/tiled, /area/security/hallwayaux) -"iI" = ( +"aiI" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ d1 = 4; @@ -5607,13 +5607,13 @@ }, /turf/simulated/floor, /area/maintenance/substation/security) -"iJ" = ( +"aiJ" = ( /obj/structure/railing{ dir = 8 }, /turf/simulated/floor, /area/maintenance/station/ai) -"iK" = ( +"aiK" = ( /obj/machinery/conveyor{ dir = 8; id = "shuttle_outbound" @@ -5621,7 +5621,7 @@ /obj/structure/plasticflaps, /turf/simulated/floor/tiled/techfloor/grid, /area/shuttle/excursion/cargo) -"iL" = ( +"aiL" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 6 }, @@ -5646,7 +5646,7 @@ /obj/item/weapon/storage/box/trackimp, /turf/simulated/floor/tiled/dark, /area/security/armory/blue) -"iM" = ( +"aiM" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 8 }, @@ -5662,7 +5662,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armory/blue) -"iN" = ( +"aiN" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 4 }, @@ -5695,7 +5695,7 @@ /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled/dark, /area/security/armory/blue) -"iO" = ( +"aiO" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ d2 = 2; @@ -5714,7 +5714,7 @@ }, /turf/simulated/floor, /area/security/warden) -"iP" = ( +"aiP" = ( /obj/structure/table/reinforced, /obj/item/weapon/paper_bin{ pixel_x = -3; @@ -5728,24 +5728,24 @@ }, /turf/simulated/floor/tiled/dark, /area/security/warden) -"iQ" = ( +"aiQ" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/red/border, /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/glass_security, /turf/simulated/floor/tiled, /area/security/hallwayaux) -"iR" = ( +"aiR" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/red/border, /turf/simulated/floor/tiled, /area/security/hallwayaux) -"iS" = ( +"aiS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/item/weapon/bone/skull/unathi, /turf/simulated/floor/carpet, /area/crew_quarters/heads/hos) -"iT" = ( +"aiT" = ( /obj/effect/floor_decal/borderfloor{ dir = 6 }, @@ -5754,38 +5754,38 @@ }, /turf/simulated/floor/tiled, /area/security/hallwayaux) -"iU" = ( +"aiU" = ( /turf/simulated/wall/r_wall, /area/maintenance/substation/security) -"iV" = ( +"aiV" = ( /turf/simulated/wall, /area/maintenance/cargo) -"iW" = ( +"aiW" = ( /obj/structure/fuel_port{ pixel_x = 0; pixel_y = 3 }, /turf/simulated/floor/tiled/monofloor, /area/shuttle/excursion/cargo) -"iX" = ( +"aiX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/yellow{ dir = 6 }, /turf/simulated/wall/rshull, /area/shuttle/excursion/cargo) -"iY" = ( +"aiY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/yellow{ dir = 4 }, /turf/simulated/wall/rshull, /area/shuttle/excursion/cargo) -"iZ" = ( +"aiZ" = ( /obj/effect/floor_decal/borderfloorblack/full, /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/deployable/barrier, /turf/simulated/floor/tiled/dark, /area/security/armory/blue) -"ja" = ( +"aja" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 8 }, @@ -5794,7 +5794,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armory/blue) -"jb" = ( +"ajb" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, @@ -5806,7 +5806,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armory/blue) -"jc" = ( +"ajc" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 4 }, @@ -5824,7 +5824,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armory/blue) -"jd" = ( +"ajd" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green, /obj/structure/cable/green{ @@ -5842,10 +5842,10 @@ }, /turf/simulated/floor, /area/security/warden) -"je" = ( +"aje" = ( /turf/simulated/wall/r_wall, /area/crew_quarters/heads/hos) -"jf" = ( +"ajf" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/steeldecal/steel_decals6{ dir = 4 @@ -5854,11 +5854,11 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"jg" = ( +"ajg" = ( /obj/effect/floor_decal/borderfloorblack/full, /turf/simulated/floor/tiled/dark, /area/security/armory/blue) -"jh" = ( +"ajh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -5868,7 +5868,7 @@ /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled, /area/security/briefing_room) -"ji" = ( +"aji" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 4 }, @@ -5901,7 +5901,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armory/blue) -"jj" = ( +"ajj" = ( /obj/effect/floor_decal/borderfloor{ pixel_y = 16 }, @@ -5921,10 +5921,10 @@ }, /turf/simulated/floor/tiled/dark, /area/security/warden) -"jk" = ( +"ajk" = ( /turf/simulated/open, /area/security/brig) -"jl" = ( +"ajl" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -5936,7 +5936,7 @@ }, /turf/simulated/floor/tiled, /area/security/hallway) -"jm" = ( +"ajm" = ( /obj/effect/floor_decal/corner/lightgrey{ dir = 9 }, @@ -5958,13 +5958,13 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"jn" = ( +"ajn" = ( /obj/machinery/newscaster/security_unit{ pixel_y = 32 }, /turf/simulated/floor/wood, /area/security/breakroom) -"jo" = ( +"ajo" = ( /obj/machinery/light{ dir = 1 }, @@ -5976,17 +5976,17 @@ }, /turf/simulated/floor/wood, /area/security/breakroom) -"jp" = ( +"ajp" = ( /obj/machinery/alarm{ pixel_y = 22 }, /turf/simulated/floor/wood, /area/security/breakroom) -"jq" = ( +"ajq" = ( /obj/machinery/space_heater, /turf/simulated/floor, /area/maintenance/station/sec_upper) -"jr" = ( +"ajr" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -6002,22 +6002,22 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"js" = ( +"ajs" = ( /obj/machinery/light{ dir = 8 }, /turf/simulated/floor/bluegrid, /area/ai) -"jt" = ( +"ajt" = ( /turf/simulated/floor/bluegrid, /area/ai) -"ju" = ( +"aju" = ( /obj/effect/floor_decal/borderfloorblack/full, /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/flasher/portable, /turf/simulated/floor/tiled/dark, /area/security/armory/blue) -"jv" = ( +"ajv" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 5 }, @@ -6034,7 +6034,7 @@ /obj/machinery/camera/network/security, /turf/simulated/floor/tiled/dark, /area/security/security_lockerroom) -"jw" = ( +"ajw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 @@ -6047,7 +6047,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/security/hallwayaux) -"jx" = ( +"ajx" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -6059,13 +6059,13 @@ }, /turf/simulated/floor/tiled, /area/security/hallwayaux) -"jy" = ( +"ajy" = ( /obj/structure/railing{ dir = 1 }, /turf/simulated/open, /area/security/brig) -"jz" = ( +"ajz" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -6078,7 +6078,7 @@ }, /turf/simulated/floor/tiled, /area/security/hallway) -"jA" = ( +"ajA" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -6097,21 +6097,21 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/security/hallwayaux) -"jB" = ( +"ajB" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/carpet, /area/security/breakroom) -"jC" = ( +"ajC" = ( /obj/structure/bed/chair/office/dark, /obj/effect/landmark/start{ name = "Detective" }, /turf/simulated/floor/carpet, /area/security/breakroom) -"jD" = ( +"ajD" = ( /turf/simulated/wall/durasteel, /area/ai) -"jE" = ( +"ajE" = ( /obj/effect/floor_decal/borderfloorblack/full, /obj/machinery/light{ icon_state = "tube1"; @@ -6120,7 +6120,7 @@ /obj/structure/closet/l3closet/security, /turf/simulated/floor/tiled/dark, /area/security/armory/blue) -"jF" = ( +"ajF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, @@ -6134,7 +6134,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armory/blue) -"jG" = ( +"ajG" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -6158,7 +6158,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armory/blue) -"jH" = ( +"ajH" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 8 }, @@ -6189,7 +6189,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armory/blue) -"jI" = ( +"ajI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -6206,7 +6206,7 @@ }, /turf/simulated/floor/tiled, /area/security/hallwayaux) -"jJ" = ( +"ajJ" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -6221,7 +6221,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"jK" = ( +"ajK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -6235,7 +6235,7 @@ }, /turf/simulated/floor/tiled, /area/security/hallway) -"jL" = ( +"ajL" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -6253,18 +6253,18 @@ }, /turf/simulated/floor/tiled, /area/security/observation) -"jM" = ( +"ajM" = ( /obj/effect/floor_decal/carpet{ dir = 1 }, /turf/simulated/floor/carpet, /area/crew_quarters/heads/hos) -"jN" = ( +"ajN" = ( /obj/structure/table/woodentable, /obj/item/weapon/storage/box/donut, /turf/simulated/floor/carpet, /area/security/breakroom) -"jO" = ( +"ajO" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/railing, /obj/structure/table/rack{ @@ -6274,7 +6274,7 @@ /obj/random/maintenance/cargo, /turf/simulated/floor/plating, /area/maintenance/station/cargo) -"jP" = ( +"ajP" = ( /obj/structure/cable/cyan{ d1 = 1; d2 = 2; @@ -6282,14 +6282,14 @@ }, /turf/simulated/floor/bluegrid, /area/ai) -"jQ" = ( +"ajQ" = ( /obj/machinery/light{ icon_state = "tube1"; dir = 4 }, /turf/simulated/floor/bluegrid, /area/ai) -"jR" = ( +"ajR" = ( /obj/effect/floor_decal/borderfloorblack/full, /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/alarm{ @@ -6300,7 +6300,7 @@ /obj/machinery/deployable/barrier, /turf/simulated/floor/tiled/dark, /area/security/armory/blue) -"jS" = ( +"ajS" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -6308,7 +6308,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armory/blue) -"jT" = ( +"ajT" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/security{ name = "Armory Storage"; @@ -6327,7 +6327,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armory/blue) -"jU" = ( +"ajU" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, @@ -6349,7 +6349,7 @@ }, /turf/simulated/floor/tiled, /area/security/hallwayaux) -"jV" = ( +"ajV" = ( /obj/item/device/radio/intercom{ pixel_y = -24 }, @@ -6359,7 +6359,7 @@ }, /turf/simulated/floor/tiled, /area/shuttle/excursion/general) -"jW" = ( +"ajW" = ( /obj/structure/bed/chair/office/dark{ dir = 4 }, @@ -6368,7 +6368,7 @@ }, /turf/simulated/floor/carpet, /area/security/breakroom) -"jX" = ( +"ajX" = ( /obj/structure/table/woodentable, /obj/structure/cable/green{ d1 = 4; @@ -6383,7 +6383,7 @@ }, /turf/simulated/floor/carpet, /area/security/breakroom) -"jY" = ( +"ajY" = ( /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; dir = 1 @@ -6391,14 +6391,14 @@ /obj/machinery/recharge_station, /turf/simulated/floor/tiled/techfloor/grid, /area/shuttle/excursion/cargo) -"jZ" = ( +"ajZ" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/techfloor/grid, /area/shuttle/excursion/cargo) -"ka" = ( +"aka" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, @@ -6409,14 +6409,14 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/techfloor/grid, /area/shuttle/excursion/cargo) -"kb" = ( +"akb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/yellow, /obj/effect/floor_decal/industrial/outline/red, /obj/structure/closet/secure_closet/guncabinet/excursion, /obj/item/weapon/pickaxe, /turf/simulated/floor/tiled/techfloor/grid, /area/shuttle/excursion/cargo) -"kc" = ( +"akc" = ( /obj/effect/floor_decal/borderfloorblack/full, /obj/effect/floor_decal/steeldecal/steel_decals5{ dir = 4 @@ -6438,7 +6438,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armory/blue) -"kd" = ( +"akd" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -6457,7 +6457,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armory/blue) -"ke" = ( +"ake" = ( /obj/machinery/mech_recharger, /obj/effect/floor_decal/corner_techfloor_grid{ dir = 5 @@ -6465,11 +6465,11 @@ /obj/effect/floor_decal/techfloor, /turf/simulated/floor/tiled/dark, /area/security/armory/blue) -"kf" = ( +"akf" = ( /obj/structure/sign/warning/secure_area, /turf/simulated/wall/r_wall, /area/security/armory/blue) -"kg" = ( +"akg" = ( /obj/structure/railing{ dir = 8 }, @@ -6485,11 +6485,11 @@ }, /turf/simulated/floor, /area/maintenance/station/sec_upper) -"kh" = ( +"akh" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/wood, /area/security/breakroom) -"ki" = ( +"aki" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -6506,7 +6506,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"kj" = ( +"akj" = ( /obj/machinery/embedded_controller/radio/airlock/docking_port{ frequency = 1380; id_tag = "expshuttle_docker"; @@ -6525,7 +6525,7 @@ /obj/effect/map_helper/airlock/atmos/chamber_pump, /turf/simulated/floor/tiled/techfloor/grid, /area/shuttle/excursion/cargo) -"kk" = ( +"akk" = ( /obj/effect/floor_decal/industrial/warning{ dir = 5 }, @@ -6546,7 +6546,7 @@ /obj/effect/map_helper/airlock/atmos/pump_out_internal, /turf/simulated/floor/tiled/techfloor/grid, /area/shuttle/excursion/cargo) -"kl" = ( +"akl" = ( /obj/structure/cable/cyan{ d2 = 2; icon_state = "0-2" @@ -6558,7 +6558,7 @@ }, /turf/simulated/floor/bluegrid, /area/ai) -"km" = ( +"akm" = ( /obj/effect/landmark/start{ name = "AI" }, @@ -6592,7 +6592,7 @@ }, /turf/simulated/floor/bluegrid, /area/ai) -"kn" = ( +"akn" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -6610,10 +6610,10 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"ko" = ( +"ako" = ( /turf/simulated/wall/r_wall, /area/security/security_equiptment_storage) -"kp" = ( +"akp" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/camera/network/security{ icon_state = "camera"; @@ -6624,7 +6624,7 @@ }, /turf/simulated/floor/tiled, /area/security/eva) -"kq" = ( +"akq" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -6638,7 +6638,7 @@ }, /turf/simulated/floor/tiled, /area/security/hallwayaux) -"kr" = ( +"akr" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -6655,7 +6655,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/security/hallwayaux) -"ks" = ( +"aks" = ( /obj/structure/cable{ icon_state = "2-8" }, @@ -6673,7 +6673,7 @@ }, /turf/simulated/floor, /area/maintenance/station/sec_upper) -"kt" = ( +"akt" = ( /obj/effect/floor_decal/rust, /obj/structure/railing{ dir = 4 @@ -6687,7 +6687,7 @@ /obj/random/maintenance/clean, /turf/simulated/floor, /area/maintenance/station/sec_upper) -"ku" = ( +"aku" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/railing{ dir = 4 @@ -6695,7 +6695,7 @@ /obj/random/trash_pile, /turf/simulated/floor, /area/maintenance/station/sec_upper) -"kv" = ( +"akv" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -6703,7 +6703,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/heads/hos) -"kw" = ( +"akw" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -6717,7 +6717,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"kx" = ( +"akx" = ( /obj/machinery/door/airlock/glass_external, /obj/machinery/access_button{ command = "cycle_interior"; @@ -6734,7 +6734,7 @@ /obj/effect/map_helper/airlock/door/int_door, /turf/simulated/floor/tiled/techfloor/grid, /area/shuttle/excursion/cargo) -"ky" = ( +"aky" = ( /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; dir = 8 @@ -6742,7 +6742,7 @@ /obj/machinery/atmospherics/pipe/manifold4w/visible, /turf/simulated/floor/tiled/techfloor/grid, /area/shuttle/excursion/cargo) -"kz" = ( +"akz" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 1 }, @@ -6760,7 +6760,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/security_equiptment_storage) -"kA" = ( +"akA" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 1 }, @@ -6786,7 +6786,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/security_equiptment_storage) -"kB" = ( +"akB" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 1 }, @@ -6806,7 +6806,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/security_equiptment_storage) -"kC" = ( +"akC" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 5 }, @@ -6816,7 +6816,7 @@ /obj/machinery/vending/security, /turf/simulated/floor/tiled/dark, /area/security/security_equiptment_storage) -"kD" = ( +"akD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 }, @@ -6830,20 +6830,20 @@ }, /turf/simulated/floor/tiled, /area/security/observation) -"kE" = ( +"akE" = ( /obj/structure/bed/chair/office/dark{ dir = 1 }, /turf/simulated/floor/tiled, /area/security/observation) -"kF" = ( +"akF" = ( /obj/machinery/light_switch{ dir = 1; pixel_y = -24 }, /turf/simulated/floor/wood, /area/security/breakroom) -"kG" = ( +"akG" = ( /obj/structure/table/woodentable, /obj/machinery/chemical_dispenser/bar_soft/full{ dir = 1 @@ -6851,26 +6851,26 @@ /obj/machinery/light, /turf/simulated/floor/wood, /area/security/breakroom) -"kH" = ( +"akH" = ( /obj/structure/table/woodentable, /obj/item/weapon/storage/box/glasses/square, /turf/simulated/floor/wood, /area/security/breakroom) -"kI" = ( +"akI" = ( /obj/structure/bookcase, /obj/item/weapon/book/manual/security_space_law, /obj/item/weapon/book/manual/standard_operating_procedure, /obj/item/weapon/book/manual/command_guide, /turf/simulated/floor/wood, /area/crew_quarters/heads/hos) -"kJ" = ( +"akJ" = ( /obj/structure/railing{ dir = 4 }, /obj/random/trash_pile, /turf/simulated/floor, /area/maintenance/station/sec_upper) -"kK" = ( +"akK" = ( /obj/effect/landmark{ name = "tripai" }, @@ -6880,13 +6880,13 @@ }, /turf/simulated/floor/bluegrid, /area/ai) -"kL" = ( +"akL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, /turf/simulated/floor/tiled/dark, /area/security/security_equiptment_storage) -"kM" = ( +"akM" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/light/small{ dir = 8 @@ -6899,7 +6899,7 @@ /obj/structure/catwalk, /turf/simulated/floor, /area/maintenance/station/sec_upper) -"kN" = ( +"akN" = ( /obj/effect/floor_decal/borderfloor/shifted{ icon_state = "borderfloor_shifted"; dir = 1 @@ -6918,7 +6918,7 @@ }, /turf/simulated/floor/tiled, /area/security/observation) -"kO" = ( +"akO" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, @@ -6930,7 +6930,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/heads/hos) -"kP" = ( +"akP" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/red/border, /obj/item/device/radio/intercom/department/security{ @@ -6940,13 +6940,13 @@ }, /turf/simulated/floor/tiled, /area/security/briefing_room) -"kQ" = ( +"akQ" = ( /obj/machinery/atmospherics/pipe/manifold/visible{ dir = 4 }, /turf/simulated/floor/tiled/techfloor/grid, /area/shuttle/excursion/cargo) -"kR" = ( +"akR" = ( /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; dir = 4 @@ -6964,7 +6964,7 @@ /obj/effect/overmap/visitable/ship/landable/excursion, /turf/simulated/floor/tiled/techfloor/grid, /area/shuttle/excursion/cargo) -"kS" = ( +"akS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -6974,7 +6974,7 @@ /obj/machinery/camera/network/exploration, /turf/simulated/floor/tiled/monotile, /area/tether/exploration) -"kT" = ( +"akT" = ( /obj/effect/floor_decal/techfloor, /obj/effect/floor_decal/techfloor{ dir = 1 @@ -6987,14 +6987,14 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/ai) -"kU" = ( +"akU" = ( /obj/effect/floor_decal/techfloor, /obj/effect/floor_decal/techfloor{ dir = 1 }, /turf/simulated/floor/tiled/techfloor/grid, /area/ai) -"kV" = ( +"akV" = ( /obj/structure/catwalk, /obj/random/junk, /obj/structure/cable{ @@ -7005,13 +7005,13 @@ }, /turf/simulated/floor, /area/maintenance/station/ai) -"kW" = ( +"akW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, /turf/simulated/floor/tiled/white, /area/security/security_bathroom) -"kX" = ( +"akX" = ( /obj/structure/cable/cyan{ d1 = 1; d2 = 2; @@ -7025,7 +7025,7 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/ai) -"kY" = ( +"akY" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 10 }, @@ -7041,10 +7041,10 @@ }, /turf/simulated/floor/tiled/dark, /area/security/security_equiptment_storage) -"kZ" = ( +"akZ" = ( /turf/simulated/floor/tiled/dark, /area/security/security_equiptment_storage) -"la" = ( +"ala" = ( /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/borderfloorblack/corner2, /obj/structure/table/rack/shelf/steel, @@ -7053,7 +7053,7 @@ /obj/item/clothing/glasses/hud/security, /turf/simulated/floor/tiled/dark, /area/security/security_equiptment_storage) -"lb" = ( +"alb" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -7070,7 +7070,7 @@ }, /turf/simulated/floor/tiled, /area/security/hallway) -"lc" = ( +"alc" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -7081,7 +7081,7 @@ /obj/machinery/door/airlock/glass_security, /turf/simulated/floor/tiled, /area/security/hallwayaux) -"ld" = ( +"ald" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -7102,10 +7102,10 @@ }, /turf/simulated/floor/tiled, /area/security/hallwayaux) -"le" = ( +"ale" = ( /turf/simulated/wall/r_wall, /area/security/briefing_room) -"lf" = ( +"alf" = ( /obj/effect/floor_decal/borderfloor{ dir = 1; pixel_y = 0 @@ -7116,7 +7116,7 @@ /obj/machinery/photocopier, /turf/simulated/floor/tiled, /area/security/briefing_room) -"lg" = ( +"alg" = ( /obj/effect/floor_decal/borderfloor{ dir = 1; pixel_y = 0 @@ -7130,7 +7130,7 @@ }, /turf/simulated/floor/tiled, /area/security/briefing_room) -"lh" = ( +"alh" = ( /obj/effect/floor_decal/borderfloor{ dir = 1; pixel_y = 0 @@ -7147,7 +7147,7 @@ }, /turf/simulated/floor/tiled, /area/security/briefing_room) -"li" = ( +"ali" = ( /obj/effect/floor_decal/borderfloor{ dir = 1; pixel_y = 0 @@ -7169,7 +7169,7 @@ }, /turf/simulated/floor/tiled, /area/security/briefing_room) -"lj" = ( +"alj" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ d2 = 4; @@ -7197,7 +7197,7 @@ }, /turf/simulated/floor, /area/crew_quarters/heads/hos) -"lk" = ( +"alk" = ( /obj/machinery/door/airlock/hatch{ icon_state = "door_locked"; id_tag = null; @@ -7207,7 +7207,7 @@ }, /turf/simulated/floor/tiled/dark, /area/ai) -"ll" = ( +"all" = ( /obj/machinery/ai_slipper{ icon_state = "motion0" }, @@ -7235,7 +7235,7 @@ /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled/dark, /area/ai) -"lm" = ( +"alm" = ( /obj/structure/cable/cyan{ d1 = 1; d2 = 2; @@ -7247,21 +7247,21 @@ /obj/effect/floor_decal/techfloor/corner, /turf/simulated/floor/tiled/techfloor/grid, /area/ai) -"ln" = ( +"aln" = ( /obj/effect/floor_decal/techfloor{ dir = 1 }, /obj/effect/floor_decal/techfloor, /turf/simulated/floor/tiled/techfloor/grid, /area/ai) -"lo" = ( +"alo" = ( /obj/structure/closet/crate, /obj/item/clothing/accessory/tie/horrible, /obj/random/drinkbottle, /obj/item/weapon/flame/lighter/random, /turf/simulated/floor, /area/maintenance/station/ai) -"lp" = ( +"alp" = ( /obj/effect/floor_decal/techfloor{ dir = 1 }, @@ -7272,7 +7272,7 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/ai) -"lq" = ( +"alq" = ( /obj/machinery/recharger, /obj/structure/table/steel, /obj/machinery/light{ @@ -7293,7 +7293,7 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/shuttle/excursion/cargo) -"lr" = ( +"alr" = ( /obj/effect/floor_decal/techfloor{ dir = 8 }, @@ -7307,7 +7307,7 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/ai) -"ls" = ( +"als" = ( /obj/effect/floor_decal/techfloor{ dir = 4 }, @@ -7321,7 +7321,7 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/ai) -"lt" = ( +"alt" = ( /obj/structure/closet, /obj/random/maintenance/medical, /obj/random/maintenance/medical, @@ -7329,7 +7329,7 @@ /obj/effect/floor_decal/rust, /turf/simulated/floor, /area/maintenance/station/ai) -"lu" = ( +"alu" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green, /obj/structure/grille, @@ -7353,7 +7353,7 @@ }, /turf/simulated/floor, /area/crew_quarters/heads/hos) -"lv" = ( +"alv" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/blast/regular{ density = 0; @@ -7369,7 +7369,7 @@ }, /turf/simulated/floor, /area/security/security_processing) -"lw" = ( +"alw" = ( /obj/machinery/door/firedoor/glass, /obj/structure/grille, /obj/structure/window/reinforced/polarized/full{ @@ -7377,7 +7377,7 @@ }, /turf/simulated/floor, /area/security/security_processing) -"lx" = ( +"alx" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/security{ name = "Equipment Storage"; @@ -7385,7 +7385,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/security_equiptment_storage) -"ly" = ( +"aly" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -7395,7 +7395,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/security_equiptment_storage) -"lz" = ( +"alz" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -7412,7 +7412,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/security/hallway) -"lA" = ( +"alA" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -7421,7 +7421,7 @@ }, /turf/simulated/floor/tiled, /area/security/hallway) -"lB" = ( +"alB" = ( /obj/structure/railing{ dir = 8 }, @@ -7430,10 +7430,10 @@ }, /turf/simulated/open, /area/security/hallway) -"lC" = ( +"alC" = ( /turf/simulated/open, /area/security/hallway) -"lD" = ( +"alD" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/blast/regular{ density = 0; @@ -7447,7 +7447,7 @@ /obj/structure/window/reinforced/full, /turf/simulated/floor, /area/security/hallway) -"lE" = ( +"alE" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -7456,7 +7456,7 @@ }, /turf/simulated/floor/tiled, /area/security/hallway) -"lF" = ( +"alF" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -7479,7 +7479,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/security/hallway) -"lG" = ( +"alG" = ( /obj/effect/floor_decal/borderfloor{ dir = 8; icon_state = "borderfloor"; @@ -7499,10 +7499,10 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/security/briefing_room) -"lH" = ( +"alH" = ( /turf/simulated/floor/tiled, /area/security/briefing_room) -"lI" = ( +"alI" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 4 }, @@ -7511,7 +7511,7 @@ }, /turf/simulated/floor/tiled, /area/security/briefing_room) -"lJ" = ( +"alJ" = ( /obj/effect/floor_decal/borderfloor{ dir = 1; pixel_y = 0 @@ -7529,7 +7529,7 @@ }, /turf/simulated/floor/tiled, /area/security/briefing_room) -"lK" = ( +"alK" = ( /obj/effect/floor_decal/borderfloor{ dir = 5 }, @@ -7545,13 +7545,13 @@ /obj/structure/table/reinforced, /turf/simulated/floor/tiled, /area/security/briefing_room) -"lL" = ( +"alL" = ( /obj/structure/catwalk, /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/maintenance/common, /turf/simulated/floor, /area/maintenance/station/sec_upper) -"lM" = ( +"alM" = ( /obj/machinery/ai_slipper{ icon_state = "motion0" }, @@ -7568,7 +7568,7 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/ai) -"lN" = ( +"alN" = ( /obj/effect/floor_decal/techfloor{ dir = 1 }, @@ -7580,7 +7580,7 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/ai) -"lO" = ( +"alO" = ( /obj/structure/cable/cyan{ d1 = 2; d2 = 4; @@ -7604,7 +7604,7 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/ai) -"lP" = ( +"alP" = ( /obj/machinery/ai_slipper{ icon_state = "motion0" }, @@ -7621,14 +7621,14 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/ai) -"lQ" = ( +"alQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, /turf/simulated/floor/tiled/monotile, /area/tether/exploration) -"lR" = ( +"alR" = ( /obj/machinery/alarm{ dir = 1; icon_state = "alarm0"; @@ -7636,7 +7636,7 @@ }, /turf/simulated/floor/bluegrid, /area/ai) -"lS" = ( +"alS" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, @@ -7646,7 +7646,7 @@ }, /turf/simulated/floor/bluegrid, /area/ai) -"lT" = ( +"alT" = ( /obj/effect/floor_decal/techfloor{ dir = 4 }, @@ -7666,7 +7666,7 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/ai) -"lU" = ( +"alU" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -7694,13 +7694,13 @@ /obj/machinery/recharger, /turf/simulated/floor/tiled, /area/security/security_processing) -"lV" = ( +"alV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, /turf/simulated/floor/tiled/monotile, /area/tether/exploration) -"lW" = ( +"alW" = ( /obj/structure/cable/green{ icon_state = "0-2" }, @@ -7716,7 +7716,7 @@ /obj/structure/cable/green, /turf/simulated/floor/tiled/monotile, /area/tether/exploration) -"lX" = ( +"alX" = ( /obj/effect/floor_decal/techfloor{ dir = 8 }, @@ -7741,7 +7741,7 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/ai) -"lY" = ( +"alY" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 8 }, @@ -7763,7 +7763,7 @@ }, /turf/simulated/floor/tiled/white, /area/shuttle/medivac/general) -"lZ" = ( +"alZ" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green, /obj/structure/grille, @@ -7784,7 +7784,7 @@ }, /turf/simulated/floor, /area/crew_quarters/heads/hos) -"ma" = ( +"ama" = ( /obj/machinery/door/firedoor/glass, /obj/structure/grille, /obj/structure/window/reinforced/polarized/full{ @@ -7792,7 +7792,7 @@ }, /turf/simulated/floor, /area/security/breakroom) -"mb" = ( +"amb" = ( /obj/structure/grille, /obj/structure/cable/green{ d2 = 4; @@ -7804,7 +7804,7 @@ }, /turf/simulated/floor, /area/security/forensics) -"mc" = ( +"amc" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 9 }, @@ -7834,7 +7834,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/security_lockerroom) -"md" = ( +"amd" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 1 }, @@ -7863,7 +7863,7 @@ /obj/item/device/retail_scanner/security, /turf/simulated/floor/tiled/dark, /area/security/security_lockerroom) -"me" = ( +"ame" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 1 }, @@ -7904,12 +7904,12 @@ /obj/item/device/retail_scanner/security, /turf/simulated/floor/tiled/dark, /area/security/security_lockerroom) -"mf" = ( +"amf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/dark, /area/security/security_lockerroom) -"mg" = ( +"amg" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 8 }, @@ -7926,13 +7926,13 @@ }, /turf/simulated/floor/tiled/dark, /area/security/evidence_storage) -"mh" = ( +"amh" = ( /obj/machinery/door/firedoor/glass, /obj/structure/grille, /obj/structure/window/reinforced/full, /turf/simulated/floor, /area/security/security_lockerroom) -"mi" = ( +"ami" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -7944,7 +7944,7 @@ }, /turf/simulated/floor/tiled, /area/security/hallway) -"mj" = ( +"amj" = ( /obj/effect/floor_decal/borderfloor{ dir = 1; pixel_y = 0 @@ -7974,7 +7974,7 @@ }, /turf/simulated/floor/tiled, /area/security/hallway) -"mk" = ( +"amk" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, @@ -7993,7 +7993,7 @@ }, /turf/simulated/floor/tiled, /area/security/hallway) -"ml" = ( +"aml" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, @@ -8006,22 +8006,22 @@ }, /turf/simulated/floor/tiled, /area/security/briefing_room) -"mm" = ( +"amm" = ( /obj/structure/bed/chair{ dir = 4 }, /turf/simulated/floor/tiled, /area/security/briefing_room) -"mn" = ( +"amn" = ( /obj/structure/table/glass, /obj/item/weapon/folder/red, /turf/simulated/floor/tiled, /area/security/briefing_room) -"mo" = ( +"amo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/security/briefing_room) -"mp" = ( +"amp" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -8032,10 +8032,10 @@ /obj/structure/table/reinforced, /turf/simulated/floor/tiled, /area/security/briefing_room) -"mq" = ( +"amq" = ( /turf/simulated/floor/tiled/monotile, /area/tether/exploration) -"mr" = ( +"amr" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 4 }, @@ -8044,7 +8044,7 @@ }, /turf/simulated/floor/tiled/monotile, /area/tether/exploration) -"ms" = ( +"ams" = ( /obj/effect/floor_decal/borderfloor{ dir = 1; icon_state = "borderfloor"; @@ -8055,7 +8055,7 @@ }, /turf/simulated/floor/tiled/monotile, /area/tether/exploration) -"mt" = ( +"amt" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 1 }, @@ -8065,7 +8065,7 @@ }, /turf/simulated/floor/tiled/monotile, /area/tether/exploration) -"mu" = ( +"amu" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 @@ -8076,20 +8076,20 @@ }, /turf/simulated/floor/tiled/monotile, /area/tether/exploration) -"mv" = ( +"amv" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/alarm{ pixel_y = 22 }, /turf/simulated/floor/tiled, /area/security/hallwayaux) -"mw" = ( +"amw" = ( /obj/effect/floor_decal/techfloor{ dir = 1 }, /turf/simulated/floor/bluegrid, /area/ai_core_foyer) -"mx" = ( +"amx" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 8 }, @@ -8108,10 +8108,10 @@ /obj/item/weapon/hand_labeler, /turf/simulated/floor/tiled/dark, /area/security/security_lockerroom) -"my" = ( +"amy" = ( /turf/simulated/floor/wood, /area/crew_quarters/heads/hos) -"mz" = ( +"amz" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -8130,7 +8130,7 @@ /obj/structure/table/steel, /turf/simulated/floor/tiled, /area/security/security_processing) -"mA" = ( +"amA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -8140,7 +8140,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/dark, /area/security/security_lockerroom) -"mB" = ( +"amB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -8149,14 +8149,14 @@ }, /turf/simulated/floor/tiled/dark, /area/security/security_lockerroom) -"mC" = ( +"amC" = ( /obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/tiled/dark, /area/security/security_lockerroom) -"mD" = ( +"amD" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 4 }, @@ -8169,7 +8169,7 @@ /obj/structure/closet/wardrobe/red, /turf/simulated/floor/tiled/dark, /area/security/security_lockerroom) -"mE" = ( +"amE" = ( /obj/structure/grille, /obj/structure/cable/green, /obj/structure/cable/green{ @@ -8184,7 +8184,7 @@ }, /turf/simulated/floor, /area/security/forensics) -"mF" = ( +"amF" = ( /obj/structure/grille, /obj/structure/cable/green{ icon_state = "0-8" @@ -8195,7 +8195,7 @@ }, /turf/simulated/floor, /area/security/forensics) -"mG" = ( +"amG" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -8226,10 +8226,10 @@ }, /turf/simulated/floor/tiled/white, /area/security/forensics) -"mH" = ( +"amH" = ( /turf/simulated/wall/r_wall, /area/security/hallway) -"mI" = ( +"amI" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ icon_state = "0-4" @@ -8248,7 +8248,7 @@ }, /turf/simulated/floor, /area/lawoffice) -"mJ" = ( +"amJ" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ d2 = 8; @@ -8271,7 +8271,7 @@ }, /turf/simulated/floor, /area/lawoffice) -"mK" = ( +"amK" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/red/border, /obj/effect/floor_decal/borderfloor/corner2, @@ -8279,7 +8279,7 @@ /obj/machinery/light, /turf/simulated/floor/tiled, /area/security/hallway) -"mL" = ( +"amL" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/red/border, /obj/item/device/radio/intercom{ @@ -8291,7 +8291,7 @@ }, /turf/simulated/floor/tiled, /area/security/hallway) -"mM" = ( +"amM" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -8308,13 +8308,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/security/briefing_room) -"mN" = ( +"amN" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/structure/table/glass, /obj/item/weapon/folder/red, /turf/simulated/floor/tiled, /area/security/briefing_room) -"mO" = ( +"amO" = ( /obj/structure/bed/chair{ dir = 4 }, @@ -8323,13 +8323,13 @@ }, /turf/simulated/floor/tiled, /area/security/briefing_room) -"mP" = ( +"amP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/red/bordercorner, /turf/simulated/floor/tiled, /area/security/briefing_room) -"mQ" = ( +"amQ" = ( /obj/effect/floor_decal/borderfloor{ dir = 6 }, @@ -8341,12 +8341,12 @@ }, /turf/simulated/floor/tiled, /area/security/briefing_room) -"mR" = ( +"amR" = ( /obj/effect/floor_decal/rust, /obj/structure/catwalk, /turf/simulated/floor, /area/maintenance/station/sec_upper) -"mS" = ( +"amS" = ( /obj/effect/floor_decal/borderfloor{ dir = 6 }, @@ -8358,14 +8358,14 @@ }, /turf/simulated/floor/tiled, /area/security/hallwayaux) -"mT" = ( +"amT" = ( /obj/random/toolbox, /obj/item/clothing/gloves/fyellow, /obj/effect/decal/cleanable/ash, /obj/effect/floor_decal/rust, /turf/simulated/floor, /area/maintenance/station/ai) -"mU" = ( +"amU" = ( /obj/structure/bed/chair/office/dark{ dir = 8 }, @@ -8380,7 +8380,7 @@ }, /turf/simulated/floor/carpet, /area/security/breakroom) -"mV" = ( +"amV" = ( /obj/structure/railing, /obj/structure/railing{ dir = 4 @@ -8388,14 +8388,14 @@ /obj/random/trash_pile, /turf/simulated/floor, /area/maintenance/cargo) -"mW" = ( +"amW" = ( /obj/machinery/recharge_station, /obj/machinery/light/small{ dir = 1 }, /turf/simulated/floor/tiled/white, /area/security/security_bathroom) -"mX" = ( +"amX" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -8411,7 +8411,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"mY" = ( +"amY" = ( /obj/effect/floor_decal/techfloor{ dir = 1 }, @@ -8427,7 +8427,7 @@ }, /turf/simulated/floor/bluegrid, /area/ai_core_foyer) -"mZ" = ( +"amZ" = ( /obj/structure/cable/cyan{ d1 = 1; d2 = 8; @@ -8451,7 +8451,7 @@ }, /turf/simulated/floor/bluegrid, /area/ai_core_foyer) -"na" = ( +"ana" = ( /obj/effect/floor_decal/techfloor{ dir = 1 }, @@ -8462,7 +8462,7 @@ }, /turf/simulated/floor/bluegrid, /area/ai_core_foyer) -"nb" = ( +"anb" = ( /obj/structure/catwalk, /obj/structure/cable{ icon_state = "1-8" @@ -8473,7 +8473,7 @@ }, /turf/simulated/floor, /area/maintenance/station/ai) -"nc" = ( +"anc" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -8488,7 +8488,7 @@ /obj/item/device/radio/beacon, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"nd" = ( +"and" = ( /obj/effect/floor_decal/techfloor{ dir = 1 }, @@ -8497,7 +8497,7 @@ }, /turf/simulated/floor/bluegrid, /area/ai_core_foyer) -"ne" = ( +"ane" = ( /obj/structure/extinguisher_cabinet{ dir = 1; icon_state = "extinguisher_closed"; @@ -8505,7 +8505,7 @@ }, /turf/simulated/floor/wood, /area/security/breakroom) -"nf" = ( +"anf" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -8523,7 +8523,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"ng" = ( +"ang" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -8541,7 +8541,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"nh" = ( +"anh" = ( /obj/structure/catwalk, /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ @@ -8555,14 +8555,14 @@ }, /turf/simulated/floor, /area/maintenance/station/ai) -"ni" = ( +"ani" = ( /obj/structure/bookcase, /obj/item/weapon/book/manual/security_space_law, /obj/item/weapon/book/manual/security_space_law, /obj/item/weapon/book/manual/standard_operating_procedure, /turf/simulated/floor/wood, /area/security/breakroom) -"nj" = ( +"anj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ d1 = 2; @@ -8572,14 +8572,14 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/dark, /area/security/security_lockerroom) -"nk" = ( +"ank" = ( /obj/effect/floor_decal/borderfloorblack/corner, /obj/effect/floor_decal/corner/red/bordercorner, /obj/structure/table/bench/steel, /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled/dark, /area/security/security_lockerroom) -"nl" = ( +"anl" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 4 }, @@ -8598,7 +8598,7 @@ /obj/item/device/holowarrant, /turf/simulated/floor/tiled/dark, /area/security/security_lockerroom) -"nm" = ( +"anm" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ d2 = 8; @@ -8618,7 +8618,7 @@ }, /turf/simulated/floor, /area/lawoffice) -"nn" = ( +"ann" = ( /obj/machinery/door/firedoor/glass, /obj/structure/grille, /obj/structure/window/reinforced/polarized/full{ @@ -8630,10 +8630,10 @@ }, /turf/simulated/floor, /area/lawoffice) -"no" = ( +"ano" = ( /turf/simulated/wall, /area/security/hallway) -"np" = ( +"anp" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -8644,7 +8644,7 @@ }, /turf/simulated/floor/tiled, /area/security/hallway) -"nq" = ( +"anq" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -8663,7 +8663,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/security/hallway) -"nr" = ( +"anr" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -8678,7 +8678,7 @@ }, /turf/simulated/floor/tiled, /area/security/briefing_room) -"ns" = ( +"ans" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -8690,7 +8690,7 @@ }, /turf/simulated/floor/tiled, /area/security/briefing_room) -"nt" = ( +"ant" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 @@ -8700,7 +8700,7 @@ /obj/item/weapon/storage/box/donut, /turf/simulated/floor/tiled, /area/security/briefing_room) -"nu" = ( +"anu" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -8709,7 +8709,7 @@ /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled, /area/security/security_processing) -"nv" = ( +"anv" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 }, @@ -8724,7 +8724,7 @@ }, /turf/simulated/floor/tiled, /area/security/briefing_room) -"nw" = ( +"anw" = ( /obj/effect/floor_decal/corner/red{ icon_state = "corner_white"; dir = 6 @@ -8735,22 +8735,22 @@ }, /turf/simulated/floor/tiled, /area/security/briefing_room) -"nx" = ( +"anx" = ( /obj/structure/catwalk, /turf/simulated/floor, /area/maintenance/cargo) -"ny" = ( +"any" = ( /obj/effect/floor_decal/techfloor{ dir = 9 }, /obj/machinery/porta_turret, /turf/simulated/floor/bluegrid, /area/ai_core_foyer) -"nz" = ( +"anz" = ( /obj/machinery/light, /turf/simulated/floor/tiled/monotile, /area/tether/exploration) -"nA" = ( +"anA" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -8765,7 +8765,7 @@ }, /turf/simulated/floor/tiled, /area/security/hallway) -"nB" = ( +"anB" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -8775,13 +8775,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/monotile, /area/tether/exploration) -"nC" = ( +"anC" = ( /obj/effect/floor_decal/techfloor{ dir = 8 }, /turf/simulated/floor/bluegrid, /area/ai_core_foyer) -"nD" = ( +"anD" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, @@ -8794,7 +8794,7 @@ /obj/item/clothing/suit/space/void/security/fluff/hos, /turf/simulated/floor/wood, /area/crew_quarters/heads/hos) -"nE" = ( +"anE" = ( /obj/structure/table/woodentable, /obj/item/weapon/paper{ desc = ""; @@ -8819,7 +8819,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/heads/hos) -"nF" = ( +"anF" = ( /obj/structure/bed/chair/comfy/black, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 @@ -8851,7 +8851,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/heads/hos) -"nG" = ( +"anG" = ( /obj/structure/cable/green{ d2 = 4; icon_state = "0-4" @@ -8873,7 +8873,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/delivery) -"nH" = ( +"anH" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 8 }, @@ -8892,7 +8892,7 @@ /obj/item/device/holowarrant, /turf/simulated/floor/tiled/dark, /area/security/security_lockerroom) -"nI" = ( +"anI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, @@ -8904,7 +8904,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/dark, /area/security/security_lockerroom) -"nJ" = ( +"anJ" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 4 }, @@ -8917,7 +8917,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/security_lockerroom) -"nK" = ( +"anK" = ( /obj/structure/bed/chair/office/dark{ dir = 4 }, @@ -8937,14 +8937,14 @@ }, /turf/simulated/floor/carpet, /area/security/breakroom) -"nL" = ( +"anL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 }, /turf/simulated/floor/tiled/dark, /area/security/security_lockerroom) -"nM" = ( +"anM" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 4 }, @@ -8958,10 +8958,10 @@ /obj/item/device/holowarrant, /turf/simulated/floor/tiled/dark, /area/security/security_lockerroom) -"nN" = ( +"anN" = ( /turf/simulated/floor/tiled, /area/security/hallway) -"nO" = ( +"anO" = ( /obj/effect/floor_decal/steeldecal/steel_decals9{ dir = 1 }, @@ -8970,7 +8970,7 @@ }, /turf/simulated/floor/tiled, /area/security/hallway) -"nP" = ( +"anP" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -8982,7 +8982,7 @@ }, /turf/simulated/floor/tiled, /area/security/hallway) -"nQ" = ( +"anQ" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -9007,7 +9007,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/security/hallway) -"nR" = ( +"anR" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -9024,7 +9024,7 @@ }, /turf/simulated/floor/tiled, /area/security/briefing_room) -"nS" = ( +"anS" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, @@ -9032,7 +9032,7 @@ /obj/item/weapon/folder/red, /turf/simulated/floor/tiled, /area/security/briefing_room) -"nT" = ( +"anT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/borderfloor/corner{ dir = 4 @@ -9042,7 +9042,7 @@ }, /turf/simulated/floor/tiled, /area/security/briefing_room) -"nU" = ( +"anU" = ( /obj/effect/floor_decal/borderfloor{ dir = 5 }, @@ -9054,13 +9054,13 @@ }, /turf/simulated/floor/tiled, /area/security/briefing_room) -"nV" = ( +"anV" = ( /obj/structure/ladder{ pixel_y = 16 }, /turf/simulated/floor, /area/maintenance/station/ai) -"nW" = ( +"anW" = ( /obj/machinery/firealarm{ dir = 8; pixel_x = -26 @@ -9072,7 +9072,7 @@ /obj/structure/closet/secure_closet/hos2, /turf/simulated/floor/wood, /area/crew_quarters/heads/hos) -"nX" = ( +"anX" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -9083,11 +9083,11 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/heads/hos) -"nY" = ( +"anY" = ( /obj/structure/table/woodentable, /turf/simulated/floor/carpet, /area/security/breakroom) -"nZ" = ( +"anZ" = ( /obj/effect/floor_decal/spline/plain, /obj/structure/flora/pottedplant/stoutbush, /obj/machinery/button/windowtint{ @@ -9101,7 +9101,7 @@ }, /turf/simulated/floor/tiled/dark, /area/lawoffice) -"oa" = ( +"aoa" = ( /obj/item/device/radio/intercom{ dir = 4; pixel_x = 24 @@ -9112,7 +9112,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/heads/hos) -"ob" = ( +"aob" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 10 }, @@ -9134,7 +9134,7 @@ /obj/item/device/holowarrant, /turf/simulated/floor/tiled/dark, /area/security/security_lockerroom) -"oc" = ( +"aoc" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -9143,7 +9143,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/dark, /area/security/security_lockerroom) -"od" = ( +"aod" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 10 }, @@ -9162,7 +9162,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/security_lockerroom) -"oe" = ( +"aoe" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 6 }, @@ -9175,10 +9175,10 @@ /obj/item/device/holowarrant, /turf/simulated/floor/tiled/dark, /area/security/security_lockerroom) -"of" = ( +"aof" = ( /turf/simulated/wall/r_wall, /area/security/security_processing) -"og" = ( +"aog" = ( /obj/machinery/door/firedoor/glass, /obj/structure/grille, /obj/structure/window/reinforced/polarized/full{ @@ -9186,7 +9186,7 @@ }, /turf/simulated/floor, /area/lawoffice) -"oh" = ( +"aoh" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -9201,7 +9201,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"oi" = ( +"aoi" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -9215,7 +9215,7 @@ }, /turf/simulated/floor/tiled, /area/security/hallway) -"oj" = ( +"aoj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -9231,7 +9231,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/security/hallway) -"ok" = ( +"aok" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -9239,7 +9239,7 @@ }, /turf/simulated/floor/tiled, /area/security/briefing_room) -"ol" = ( +"aol" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -9250,7 +9250,7 @@ }, /turf/simulated/floor/tiled, /area/security/briefing_room) -"om" = ( +"aom" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -9260,7 +9260,7 @@ /obj/item/weapon/folder/red, /turf/simulated/floor/tiled, /area/security/briefing_room) -"on" = ( +"aon" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -9269,7 +9269,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/security/briefing_room) -"oo" = ( +"aoo" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -9292,7 +9292,7 @@ /obj/structure/table/reinforced, /turf/simulated/floor/tiled, /area/security/briefing_room) -"op" = ( +"aop" = ( /obj/structure/cable{ icon_state = "1-2" }, @@ -9300,19 +9300,19 @@ /obj/random/junk, /turf/simulated/floor, /area/maintenance/cargo) -"oq" = ( +"aoq" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/maintenance/common, /obj/structure/catwalk, /turf/simulated/floor/plating, /area/maintenance/station/cargo) -"or" = ( +"aor" = ( /obj/structure/railing{ dir = 8 }, /turf/simulated/floor, /area/maintenance/cargo) -"os" = ( +"aos" = ( /obj/machinery/light/small{ dir = 1 }, @@ -9320,18 +9320,18 @@ /obj/structure/table/steel, /turf/simulated/floor, /area/maintenance/cargo) -"ot" = ( +"aot" = ( /obj/structure/lattice, /obj/structure/grille, /obj/structure/grille, /turf/space, /area/space) -"ou" = ( +"aou" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/catwalk, /turf/simulated/floor/plating, /area/maintenance/station/cargo) -"ov" = ( +"aov" = ( /obj/structure/bed/chair/office/dark{ dir = 1 }, @@ -9340,19 +9340,19 @@ /obj/effect/floor_decal/carpet, /turf/simulated/floor/carpet, /area/crew_quarters/heads/hos) -"ow" = ( +"aow" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/carpet, /turf/simulated/floor/carpet, /area/crew_quarters/heads/hos) -"ox" = ( +"aox" = ( /obj/machinery/light_switch{ dir = 8; pixel_x = 28 }, /turf/simulated/floor/wood, /area/crew_quarters/heads/hos) -"oy" = ( +"aoy" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -9361,13 +9361,13 @@ }, /turf/simulated/floor/tiled/dark, /area/security/security_lockerroom) -"oz" = ( +"aoz" = ( /turf/simulated/wall, /area/security/evidence_storage) -"oA" = ( +"aoA" = ( /turf/simulated/wall, /area/security/security_processing) -"oB" = ( +"aoB" = ( /obj/effect/floor_decal/borderfloor{ dir = 9 }, @@ -9383,7 +9383,7 @@ /obj/item/device/taperecorder, /turf/simulated/floor/tiled, /area/security/security_processing) -"oC" = ( +"aoC" = ( /obj/effect/floor_decal/borderfloor{ dir = 1; pixel_y = 0 @@ -9396,7 +9396,7 @@ /obj/machinery/camera/network/security, /turf/simulated/floor/tiled, /area/security/security_processing) -"oD" = ( +"aoD" = ( /obj/effect/floor_decal/borderfloor{ dir = 1; pixel_y = 0 @@ -9415,7 +9415,7 @@ /obj/item/weapon/pen, /turf/simulated/floor/tiled, /area/security/security_processing) -"oE" = ( +"aoE" = ( /obj/effect/floor_decal/borderfloor{ dir = 1; pixel_y = 0 @@ -9427,7 +9427,7 @@ /obj/structure/table/steel, /turf/simulated/floor/tiled, /area/security/security_processing) -"oF" = ( +"aoF" = ( /obj/effect/floor_decal/borderfloor{ dir = 5 }, @@ -9437,7 +9437,7 @@ /obj/structure/table/steel, /turf/simulated/floor/tiled, /area/security/security_processing) -"oG" = ( +"aoG" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -9460,7 +9460,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/security/hallway) -"oH" = ( +"aoH" = ( /obj/effect/floor_decal/borderfloor{ dir = 10 }, @@ -9475,12 +9475,12 @@ }, /turf/simulated/floor/tiled, /area/security/briefing_room) -"oI" = ( +"aoI" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/red/border, /turf/simulated/floor/tiled, /area/security/briefing_room) -"oJ" = ( +"aoJ" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/red/border, /obj/machinery/light, @@ -9490,7 +9490,7 @@ }, /turf/simulated/floor/tiled, /area/security/briefing_room) -"oK" = ( +"aoK" = ( /obj/machinery/requests_console{ department = "Cargo Bay"; departmentType = 2; @@ -9506,7 +9506,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"oL" = ( +"aoL" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/red/border, /obj/item/device/radio/intercom{ @@ -9514,7 +9514,7 @@ }, /turf/simulated/floor/tiled, /area/security/briefing_room) -"oM" = ( +"aoM" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/red/border, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -9522,7 +9522,7 @@ }, /turf/simulated/floor/tiled, /area/security/briefing_room) -"oN" = ( +"aoN" = ( /obj/effect/floor_decal/borderfloor{ dir = 6 }, @@ -9542,7 +9542,7 @@ /obj/structure/table/reinforced, /turf/simulated/floor/tiled, /area/security/briefing_room) -"oO" = ( +"aoO" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" @@ -9551,7 +9551,7 @@ /obj/effect/floor_decal/rust, /turf/simulated/floor, /area/maintenance/cargo) -"oP" = ( +"aoP" = ( /obj/structure/disposalpipe/tagger{ dir = 8; name = "package tagger - Trash"; @@ -9563,7 +9563,7 @@ }, /turf/simulated/floor, /area/maintenance/cargo) -"oQ" = ( +"aoQ" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" @@ -9571,30 +9571,30 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor, /area/maintenance/cargo) -"oR" = ( +"aoR" = ( /obj/random/trash_pile, /obj/effect/floor_decal/rust, /turf/simulated/floor, /area/maintenance/cargo) -"oS" = ( +"aoS" = ( /obj/random/action_figure, /obj/structure/table/steel, /turf/simulated/floor, /area/maintenance/cargo) -"oT" = ( +"aoT" = ( /obj/random/mouseremains, /obj/effect/floor_decal/rust, /turf/simulated/floor, /area/maintenance/station/ai) -"oU" = ( +"aoU" = ( /obj/structure/table/bench, /turf/simulated/floor, /area/maintenance/station/ai) -"oV" = ( +"aoV" = ( /obj/item/weapon/stool, /turf/simulated/floor, /area/maintenance/cargo) -"oW" = ( +"aoW" = ( /obj/structure/table/woodentable, /obj/structure/cable/green{ d1 = 4; @@ -9610,7 +9610,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/heads/hos) -"oX" = ( +"aoX" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -9628,7 +9628,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/heads/hos) -"oY" = ( +"aoY" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -9656,7 +9656,7 @@ }, /turf/simulated/floor/tiled, /area/security/hallway) -"oZ" = ( +"aoZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, @@ -9675,7 +9675,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/heads/hos) -"pa" = ( +"apa" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -9694,7 +9694,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/heads/hos) -"pb" = ( +"apb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -9711,7 +9711,7 @@ }, /turf/simulated/floor/tiled, /area/security/hallway) -"pc" = ( +"apc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -9734,7 +9734,7 @@ }, /turf/simulated/floor/tiled, /area/security/hallway) -"pd" = ( +"apd" = ( /obj/effect/floor_decal/borderfloor{ dir = 1; pixel_y = 0 @@ -9764,7 +9764,7 @@ }, /turf/simulated/floor/tiled, /area/security/hallway) -"pe" = ( +"ape" = ( /obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/structure/cable/green{ @@ -9778,7 +9778,7 @@ }, /turf/simulated/floor/tiled, /area/security/hallway) -"pf" = ( +"apf" = ( /obj/effect/floor_decal/borderfloor{ dir = 1; pixel_y = 0 @@ -9805,7 +9805,7 @@ }, /turf/simulated/floor/tiled, /area/security/hallway) -"pg" = ( +"apg" = ( /obj/effect/floor_decal/borderfloor{ dir = 1; pixel_y = 0 @@ -9829,7 +9829,7 @@ }, /turf/simulated/floor/tiled, /area/security/hallway) -"ph" = ( +"aph" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 1 }, @@ -9861,7 +9861,7 @@ /obj/structure/disposalpipe/junction, /turf/simulated/floor/tiled, /area/security/hallway) -"pi" = ( +"api" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -9885,7 +9885,7 @@ }, /turf/simulated/floor/tiled, /area/security/hallway) -"pj" = ( +"apj" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 9 }, @@ -9898,7 +9898,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/evidence_storage) -"pk" = ( +"apk" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 5 }, @@ -9910,7 +9910,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/evidence_storage) -"pl" = ( +"apl" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -9923,7 +9923,7 @@ /obj/effect/floor_decal/corner/brown/bordercorner2, /turf/simulated/floor/tiled, /area/quartermaster/office) -"pm" = ( +"apm" = ( /obj/structure/bed/chair/office/dark{ dir = 8 }, @@ -9948,7 +9948,7 @@ }, /turf/simulated/floor/carpet, /area/security/breakroom) -"pn" = ( +"apn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -9956,7 +9956,7 @@ /obj/structure/table/steel, /turf/simulated/floor/tiled, /area/security/security_processing) -"po" = ( +"apo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, @@ -9966,7 +9966,7 @@ }, /turf/simulated/floor/tiled, /area/security/security_processing) -"pp" = ( +"app" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -9976,7 +9976,7 @@ /obj/structure/table/steel, /turf/simulated/floor/tiled, /area/security/security_processing) -"pq" = ( +"apq" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -10006,10 +10006,10 @@ }, /turf/simulated/floor/tiled, /area/security/hallway) -"pr" = ( +"apr" = ( /turf/simulated/wall, /area/security/briefing_room) -"ps" = ( +"aps" = ( /obj/structure/disposalpipe/junction{ icon_state = "pipe-j2"; dir = 2 @@ -10019,14 +10019,14 @@ }, /turf/simulated/floor, /area/maintenance/cargo) -"pt" = ( +"apt" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/catwalk, /turf/simulated/floor, /area/maintenance/cargo) -"pu" = ( +"apu" = ( /obj/structure/disposalpipe/sortjunction/wildcard/flipped{ dir = 1 }, @@ -10036,13 +10036,13 @@ }, /turf/simulated/floor, /area/maintenance/cargo) -"pv" = ( +"apv" = ( /obj/structure/railing, /obj/effect/decal/cleanable/dirt, /obj/effect/floor_decal/rust, /turf/simulated/floor, /area/maintenance/cargo) -"pw" = ( +"apw" = ( /obj/structure/railing, /obj/machinery/light/small{ dir = 1 @@ -10050,7 +10050,7 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor, /area/maintenance/cargo) -"px" = ( +"apx" = ( /obj/structure/railing, /obj/machinery/power/apc{ dir = 1; @@ -10064,7 +10064,7 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor, /area/maintenance/cargo) -"py" = ( +"apy" = ( /obj/structure/railing, /obj/structure/cable/green{ d1 = 2; @@ -10082,16 +10082,16 @@ /obj/effect/floor_decal/rust, /turf/simulated/floor, /area/maintenance/cargo) -"pz" = ( +"apz" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/bluegrid, /area/ai_core_foyer) -"pA" = ( +"apA" = ( /obj/random/trash, /obj/effect/floor_decal/rust, /turf/simulated/floor, /area/maintenance/station/ai) -"pB" = ( +"apB" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ d1 = 4; @@ -10114,14 +10114,14 @@ }, /turf/simulated/floor/tiled/white, /area/security/forensics) -"pC" = ( +"apC" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 1 }, /turf/simulated/floor/wood, /area/crew_quarters/heads/hos) -"pD" = ( +"apD" = ( /obj/effect/floor_decal/borderfloor{ dir = 1; pixel_y = 0 @@ -10147,7 +10147,7 @@ /obj/machinery/camera/network/security, /turf/simulated/floor/tiled, /area/security/hallway) -"pE" = ( +"apE" = ( /obj/effect/floor_decal/borderfloor{ dir = 1; pixel_y = 0 @@ -10179,7 +10179,7 @@ }, /turf/simulated/floor/tiled, /area/security/hallway) -"pF" = ( +"apF" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/red/border, /obj/effect/floor_decal/borderfloor/corner2{ @@ -10193,12 +10193,12 @@ }, /turf/simulated/floor/tiled, /area/security/hallway) -"pG" = ( +"apG" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/red/border, /turf/simulated/floor/tiled, /area/security/hallway) -"pH" = ( +"apH" = ( /obj/effect/floor_decal/borderfloor{ dir = 1; pixel_y = 0 @@ -10217,7 +10217,7 @@ }, /turf/simulated/floor/tiled, /area/security/hallway) -"pI" = ( +"apI" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 8 }, @@ -10240,7 +10240,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/security/hallway) -"pJ" = ( +"apJ" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -10248,7 +10248,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/evidence_storage) -"pK" = ( +"apK" = ( /obj/structure/cable/green{ d1 = 1; d2 = 8; @@ -10256,13 +10256,13 @@ }, /turf/simulated/floor/tiled/dark, /area/security/evidence_storage) -"pL" = ( +"apL" = ( /turf/simulated/floor/tiled/dark, /area/security/evidence_storage) -"pM" = ( +"apM" = ( /turf/simulated/floor/tiled, /area/security/security_processing) -"pN" = ( +"apN" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/paleblue/border, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -10274,12 +10274,12 @@ /obj/machinery/light, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"pO" = ( +"apO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/security/security_processing) -"pP" = ( +"apP" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -10294,7 +10294,7 @@ }, /turf/simulated/floor/tiled, /area/security/security_processing) -"pQ" = ( +"apQ" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -10314,7 +10314,7 @@ }, /turf/simulated/floor/tiled, /area/security/hallway) -"pR" = ( +"apR" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, @@ -10331,7 +10331,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/security/hallway) -"pS" = ( +"apS" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/paleblue/border, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -10343,7 +10343,7 @@ /obj/machinery/computer/timeclock/premade/south, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"pT" = ( +"apT" = ( /obj/structure/catwalk, /obj/structure/cable{ d1 = 4; @@ -10354,7 +10354,7 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor, /area/maintenance/station/sec_upper) -"pU" = ( +"apU" = ( /obj/structure/cable{ icon_state = "1-2" }, @@ -10362,7 +10362,7 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor, /area/maintenance/cargo) -"pV" = ( +"apV" = ( /obj/structure/disposalpipe/tagger/partial{ name = "partial tagger - Sorting Office"; sort_tag = "Sorting Office" @@ -10373,7 +10373,7 @@ /obj/structure/railing, /turf/simulated/floor, /area/maintenance/cargo) -"pW" = ( +"apW" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" @@ -10381,7 +10381,7 @@ /obj/structure/catwalk, /turf/simulated/floor, /area/maintenance/cargo) -"pX" = ( +"apX" = ( /obj/structure/disposalpipe/junction{ dir = 8; icon_state = "pipe-j2" @@ -10389,7 +10389,7 @@ /obj/structure/catwalk, /turf/simulated/floor, /area/maintenance/cargo) -"pY" = ( +"apY" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" @@ -10402,40 +10402,40 @@ }, /turf/simulated/floor, /area/maintenance/cargo) -"pZ" = ( +"apZ" = ( /obj/random/junk, /turf/simulated/floor, /area/maintenance/station/ai) -"qa" = ( +"aqa" = ( /turf/simulated/floor/bluegrid, /area/ai_core_foyer) -"qb" = ( +"aqb" = ( /obj/structure/railing{ dir = 8 }, /obj/structure/railing, /turf/simulated/floor, /area/maintenance/cargo) -"qc" = ( +"aqc" = ( /turf/simulated/wall/r_wall, /area/security/forensics) -"qd" = ( +"aqd" = ( /turf/simulated/wall, /area/security/forensics) -"qe" = ( +"aqe" = ( /obj/machinery/door/firedoor/glass, /obj/structure/grille, /obj/structure/window/reinforced/full, /turf/simulated/floor, /area/security/detectives_office) -"qf" = ( +"aqf" = ( /obj/machinery/door/firedoor/glass, /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/structure/disposalpipe/segment, /turf/simulated/floor, /area/security/detectives_office) -"qg" = ( +"aqg" = ( /obj/structure/table/woodentable, /obj/item/device/taperecorder{ pixel_x = -4; @@ -10446,7 +10446,7 @@ }, /turf/simulated/floor/carpet, /area/security/detectives_office) -"qh" = ( +"aqh" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -10471,7 +10471,7 @@ /obj/item/weapon/storage/box/evidence, /turf/simulated/floor/tiled, /area/security/security_processing) -"qi" = ( +"aqi" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -10479,7 +10479,7 @@ }, /turf/simulated/floor/tiled, /area/security/security_processing) -"qj" = ( +"aqj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -10489,7 +10489,7 @@ }, /turf/simulated/floor/tiled, /area/security/security_processing) -"qk" = ( +"aqk" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ d1 = 4; @@ -10502,7 +10502,7 @@ }, /turf/simulated/floor/tiled, /area/security/security_processing) -"ql" = ( +"aql" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -10514,7 +10514,7 @@ }, /turf/simulated/floor/tiled, /area/security/hallway) -"qm" = ( +"aqm" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4 @@ -10536,34 +10536,34 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/security/hallway) -"qn" = ( +"aqn" = ( /obj/machinery/door/firedoor/glass, /obj/effect/decal/cleanable/dirt, /obj/structure/catwalk, /obj/machinery/door/airlock/maintenance/common, /turf/simulated/floor, /area/maintenance/station/sec_upper) -"qo" = ( +"aqo" = ( /obj/structure/cable{ icon_state = "1-2" }, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor, /area/maintenance/cargo) -"qp" = ( +"aqp" = ( /obj/structure/disposalpipe/segment, /obj/structure/catwalk, /turf/simulated/floor, /area/maintenance/cargo) -"qq" = ( +"aqq" = ( /obj/structure/catwalk, /obj/effect/floor_decal/rust, /turf/simulated/floor, /area/maintenance/cargo) -"qr" = ( +"aqr" = ( /turf/simulated/wall, /area/quartermaster/delivery) -"qs" = ( +"aqs" = ( /obj/machinery/disposal/deliveryChute, /obj/structure/disposalpipe/trunk{ dir = 1 @@ -10574,7 +10574,7 @@ /obj/effect/floor_decal/rust, /turf/simulated/floor, /area/quartermaster/delivery) -"qt" = ( +"aqt" = ( /obj/machinery/door/airlock/maintenance/cargo{ req_access = list(50); req_one_access = list(48) @@ -10588,10 +10588,10 @@ }, /turf/simulated/floor, /area/quartermaster/delivery) -"qu" = ( +"aqu" = ( /turf/simulated/wall, /area/quartermaster/office) -"qv" = ( +"aqv" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ d2 = 2; @@ -10612,7 +10612,7 @@ }, /turf/simulated/floor, /area/security/forensics) -"qw" = ( +"aqw" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 9 }, @@ -10623,7 +10623,7 @@ /obj/item/weapon/forensics/sample_kit, /turf/simulated/floor/tiled/white, /area/security/forensics) -"qx" = ( +"aqx" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 1 }, @@ -10634,7 +10634,7 @@ /obj/machinery/microscope, /turf/simulated/floor/tiled/white, /area/security/forensics) -"qy" = ( +"aqy" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 1 }, @@ -10644,7 +10644,7 @@ /obj/machinery/dnaforensics, /turf/simulated/floor/tiled/white, /area/security/forensics) -"qz" = ( +"aqz" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 9 }, @@ -10666,7 +10666,7 @@ }, /turf/simulated/floor/tiled/white, /area/security/forensics) -"qA" = ( +"aqA" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 1 }, @@ -10683,7 +10683,7 @@ }, /turf/simulated/floor/tiled/white, /area/security/forensics) -"qB" = ( +"aqB" = ( /obj/machinery/disposal, /obj/effect/floor_decal/borderfloorwhite{ dir = 5 @@ -10700,45 +10700,45 @@ /obj/structure/disposalpipe/trunk, /turf/simulated/floor/tiled/white, /area/security/forensics) -"qC" = ( +"aqC" = ( /obj/machinery/door/firedoor/glass, /obj/structure/grille, /obj/structure/window/reinforced/full, /turf/simulated/floor, /area/security/forensics) -"qD" = ( +"aqD" = ( /obj/structure/filingcabinet/chestdrawer, /turf/simulated/floor/lino, /area/security/detectives_office) -"qE" = ( +"aqE" = ( /obj/structure/table/woodentable, /turf/simulated/floor/lino, /area/security/detectives_office) -"qF" = ( +"aqF" = ( /obj/structure/table/woodentable, /obj/machinery/alarm{ pixel_y = 22 }, /turf/simulated/floor/lino, /area/security/detectives_office) -"qG" = ( +"aqG" = ( /obj/structure/bookcase, /obj/item/weapon/book/manual/security_space_law, /obj/item/weapon/book/manual/security_space_law, /turf/simulated/floor/lino, /area/security/detectives_office) -"qH" = ( +"aqH" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 1 }, /turf/simulated/floor/lino, /area/security/detectives_office) -"qI" = ( +"aqI" = ( /obj/structure/flora/pottedplant, /turf/simulated/floor/lino, /area/security/detectives_office) -"qJ" = ( +"aqJ" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -10763,7 +10763,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/security/hallway) -"qK" = ( +"aqK" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 8 }, @@ -10775,7 +10775,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/evidence_storage) -"qL" = ( +"aqL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, @@ -10784,7 +10784,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/evidence_storage) -"qM" = ( +"aqM" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 4 }, @@ -10801,13 +10801,13 @@ }, /turf/simulated/floor/tiled/dark, /area/security/evidence_storage) -"qN" = ( +"aqN" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/tiled, /area/security/security_processing) -"qO" = ( +"aqO" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, @@ -10816,7 +10816,7 @@ }, /turf/simulated/floor/tiled, /area/security/security_processing) -"qP" = ( +"aqP" = ( /obj/effect/floor_decal/borderfloor{ dir = 1; pixel_y = 0 @@ -10841,7 +10841,7 @@ }, /turf/simulated/floor/tiled, /area/security/hallway) -"qQ" = ( +"aqQ" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/paleblue/border, /obj/effect/floor_decal/borderfloor/corner2{ @@ -10858,7 +10858,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"qR" = ( +"aqR" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/red/border, /obj/effect/floor_decal/borderfloor/corner2{ @@ -10872,7 +10872,7 @@ }, /turf/simulated/floor/tiled, /area/security/hallway) -"qS" = ( +"aqS" = ( /obj/effect/floor_decal/spline/plain{ icon_state = "spline_plain"; dir = 9 @@ -10884,19 +10884,19 @@ }, /turf/simulated/floor/tiled/dark, /area/lawoffice) -"qT" = ( +"aqT" = ( /turf/simulated/floor, /area/maintenance/station/elevator) -"qU" = ( +"aqU" = ( /obj/machinery/portable_atmospherics/powered/pump/filled, /turf/simulated/floor, /area/maintenance/station/sec_upper) -"qV" = ( +"aqV" = ( /obj/effect/floor_decal/rust, /obj/effect/decal/cleanable/cobweb, /turf/simulated/floor, /area/maintenance/station/elevator) -"qW" = ( +"aqW" = ( /obj/structure/cable{ icon_state = "1-2" }, @@ -10910,7 +10910,7 @@ /obj/effect/floor_decal/rust, /turf/simulated/floor, /area/maintenance/cargo) -"qX" = ( +"aqX" = ( /obj/machinery/door/firedoor/glass, /obj/structure/disposalpipe/segment, /obj/machinery/door/airlock/maintenance/cargo{ @@ -10919,7 +10919,7 @@ }, /turf/simulated/floor, /area/maintenance/cargo) -"qY" = ( +"aqY" = ( /obj/machinery/conveyor{ dir = 1; id = "packageSort1" @@ -10927,7 +10927,7 @@ /obj/structure/plasticflaps, /turf/simulated/floor, /area/quartermaster/delivery) -"qZ" = ( +"aqZ" = ( /obj/structure/flora/pottedplant/stoutbush, /obj/effect/floor_decal/borderfloor{ dir = 5 @@ -10938,7 +10938,7 @@ /obj/machinery/camera/network/cargo, /turf/simulated/floor/tiled, /area/quartermaster/office) -"ra" = ( +"ara" = ( /obj/structure/disposalpipe/sortjunction/untagged/flipped{ dir = 1 }, @@ -10955,7 +10955,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/delivery) -"rb" = ( +"arb" = ( /obj/machinery/photocopier, /obj/effect/floor_decal/borderfloor{ dir = 9 @@ -10965,7 +10965,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"rc" = ( +"arc" = ( /obj/structure/closet/emcloset, /obj/effect/floor_decal/borderfloor{ dir = 5 @@ -10975,7 +10975,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"rd" = ( +"ard" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green, /obj/structure/cable/green{ @@ -10996,7 +10996,7 @@ }, /turf/simulated/floor, /area/security/forensics) -"re" = ( +"are" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -11017,7 +11017,7 @@ /obj/item/weapon/forensics/sample_kit/powder, /turf/simulated/floor/tiled/white, /area/security/forensics) -"rf" = ( +"arf" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -11026,7 +11026,7 @@ /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled/white, /area/security/forensics) -"rg" = ( +"arg" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -11034,7 +11034,7 @@ }, /turf/simulated/floor/tiled/white, /area/security/forensics) -"rh" = ( +"arh" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -11048,7 +11048,7 @@ }, /turf/simulated/floor/tiled/white, /area/security/forensics) -"ri" = ( +"ari" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -11061,7 +11061,7 @@ }, /turf/simulated/floor/tiled/white, /area/security/forensics) -"rj" = ( +"arj" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/structure/cable/green{ d1 = 4; @@ -11070,7 +11070,7 @@ }, /turf/simulated/floor/tiled/white, /area/security/forensics) -"rk" = ( +"ark" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -11088,7 +11088,7 @@ }, /turf/simulated/floor/tiled/white, /area/security/forensics) -"rl" = ( +"arl" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 @@ -11096,7 +11096,7 @@ /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"rm" = ( +"arm" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -11113,7 +11113,7 @@ }, /turf/simulated/floor/lino, /area/security/detectives_office) -"rn" = ( +"arn" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -11130,7 +11130,7 @@ }, /turf/simulated/floor/lino, /area/security/detectives_office) -"ro" = ( +"aro" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -11147,7 +11147,7 @@ }, /turf/simulated/floor/lino, /area/security/detectives_office) -"rp" = ( +"arp" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -11169,14 +11169,14 @@ }, /turf/simulated/floor/lino, /area/security/detectives_office) -"rq" = ( +"arq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/steeldecal/steel_decals6, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"rr" = ( +"arr" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, @@ -11200,7 +11200,7 @@ }, /turf/simulated/floor/tiled, /area/security/hallway) -"rs" = ( +"ars" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -11216,7 +11216,7 @@ }, /turf/simulated/floor/tiled, /area/security/hallway) -"rt" = ( +"art" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 10 }, @@ -11233,7 +11233,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/evidence_storage) -"ru" = ( +"aru" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 6 }, @@ -11243,7 +11243,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/evidence_storage) -"rv" = ( +"arv" = ( /obj/effect/floor_decal/borderfloor{ dir = 10 }, @@ -11258,12 +11258,12 @@ /obj/structure/filingcabinet/chestdrawer, /turf/simulated/floor/tiled, /area/security/security_processing) -"rw" = ( +"arw" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/red/border, /turf/simulated/floor/tiled, /area/security/security_processing) -"rx" = ( +"arx" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/red/border, /obj/effect/floor_decal/borderfloor/corner2{ @@ -11274,7 +11274,7 @@ }, /turf/simulated/floor/tiled, /area/security/security_processing) -"ry" = ( +"ary" = ( /obj/effect/floor_decal/borderfloor{ dir = 6 }, @@ -11286,7 +11286,7 @@ /obj/structure/table/steel, /turf/simulated/floor/tiled, /area/security/security_processing) -"rz" = ( +"arz" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -11311,7 +11311,7 @@ }, /turf/simulated/floor/tiled, /area/security/hallway) -"rA" = ( +"arA" = ( /obj/effect/floor_decal/borderfloorblack/full, /obj/effect/floor_decal/steeldecal/steel_decals5{ dir = 8 @@ -11337,7 +11337,7 @@ /obj/structure/cable/green, /turf/simulated/floor/tiled/dark, /area/security/armory/blue) -"rB" = ( +"arB" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ d1 = 4; @@ -11362,7 +11362,7 @@ /obj/structure/catwalk, /turf/simulated/floor, /area/security/hallway) -"rC" = ( +"arC" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/paleblue/border, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -11375,18 +11375,18 @@ /obj/effect/floor_decal/corner/paleblue/bordercorner2, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"rD" = ( +"arD" = ( /obj/structure/railing, /turf/simulated/floor, /area/maintenance/station/elevator) -"rE" = ( +"arE" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/railing{ dir = 4 }, /turf/simulated/floor, /area/maintenance/station/elevator) -"rF" = ( +"arF" = ( /obj/structure/cable{ icon_state = "1-2" }, @@ -11394,15 +11394,15 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor, /area/maintenance/cargo) -"rG" = ( +"arG" = ( /obj/effect/decal/cleanable/dirt, /turf/simulated/floor, /area/maintenance/cargo) -"rH" = ( +"arH" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor, /area/maintenance/cargo) -"rI" = ( +"arI" = ( /obj/structure/closet, /obj/random/maintenance/cargo, /obj/random/maintenance/clean, @@ -11412,14 +11412,14 @@ /obj/random/maintenance/clean, /turf/simulated/floor, /area/maintenance/cargo) -"rJ" = ( +"arJ" = ( /obj/machinery/conveyor{ dir = 1; id = "packageSort1" }, /turf/simulated/floor, /area/quartermaster/delivery) -"rK" = ( +"arK" = ( /obj/structure/disposalpipe/junction{ icon_state = "pipe-j2"; dir = 2 @@ -11437,7 +11437,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/delivery) -"rL" = ( +"arL" = ( /obj/structure/disposalpipe/sortjunction/flipped{ dir = 1; name = "Sorting Office"; @@ -11456,7 +11456,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/delivery) -"rM" = ( +"arM" = ( /obj/effect/floor_decal/spline/plain{ icon_state = "spline_plain"; dir = 5 @@ -11471,7 +11471,7 @@ }, /turf/simulated/floor/tiled/dark, /area/lawoffice) -"rN" = ( +"arN" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -11495,7 +11495,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/delivery) -"rO" = ( +"arO" = ( /obj/machinery/door/airlock/glass_mining{ name = "Delivery Office"; req_access = list(50); @@ -11520,7 +11520,7 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/quartermaster/delivery) -"rP" = ( +"arP" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -11544,7 +11544,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"rQ" = ( +"arQ" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -11561,7 +11561,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"rR" = ( +"arR" = ( /obj/machinery/light{ dir = 1 }, @@ -11578,7 +11578,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"rS" = ( +"arS" = ( /obj/structure/railing{ dir = 8 }, @@ -11589,13 +11589,13 @@ }, /turf/simulated/open, /area/maintenance/station/ai) -"rT" = ( +"arT" = ( /obj/structure/catwalk, /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment, /turf/simulated/floor, /area/maintenance/station/ai) -"rU" = ( +"arU" = ( /obj/structure/catwalk, /obj/structure/disposalpipe/segment{ dir = 4; @@ -11603,7 +11603,7 @@ }, /turf/simulated/floor, /area/maintenance/station/ai) -"rV" = ( +"arV" = ( /obj/structure/catwalk, /obj/structure/disposalpipe/segment{ dir = 8; @@ -11611,7 +11611,7 @@ }, /turf/simulated/floor, /area/maintenance/station/ai) -"rW" = ( +"arW" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 1 }, @@ -11620,7 +11620,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"rX" = ( +"arX" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 4 }, @@ -11629,7 +11629,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"rY" = ( +"arY" = ( /obj/structure/table/steel, /obj/item/weapon/paper_bin{ pixel_x = -3; @@ -11643,11 +11643,11 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/delivery) -"rZ" = ( +"arZ" = ( /obj/structure/noticeboard, /turf/simulated/wall, /area/quartermaster/office) -"sa" = ( +"asa" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -11674,7 +11674,7 @@ }, /turf/simulated/floor/tiled/white, /area/security/forensics) -"sb" = ( +"asb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, @@ -11686,7 +11686,7 @@ }, /turf/simulated/floor/tiled/white, /area/security/forensics) -"sc" = ( +"asc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -11707,7 +11707,7 @@ /obj/item/weapon/hand_labeler, /turf/simulated/floor/tiled/white, /area/security/forensics) -"sd" = ( +"asd" = ( /obj/effect/floor_decal/borderfloorwhite/corner2{ dir = 10 }, @@ -11741,14 +11741,14 @@ }, /turf/simulated/floor/tiled/white, /area/security/forensics) -"se" = ( +"ase" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/security/forensics) -"sf" = ( +"asf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, @@ -11780,14 +11780,14 @@ }, /turf/simulated/floor/tiled/white, /area/security/forensics) -"sg" = ( +"asg" = ( /obj/machinery/light{ icon_state = "tube1"; dir = 8 }, /turf/simulated/floor/carpet, /area/security/detectives_office) -"sh" = ( +"ash" = ( /obj/structure/table/woodentable, /obj/item/weapon/paper_bin, /obj/item/clothing/glasses/sunglasses, @@ -11797,7 +11797,7 @@ }, /turf/simulated/floor/carpet, /area/security/detectives_office) -"si" = ( +"asi" = ( /obj/structure/table/woodentable, /obj/item/device/flashlight/lamp/green, /obj/machinery/atmospherics/unary/vent_scrubber/on{ @@ -11805,7 +11805,7 @@ }, /turf/simulated/floor/carpet, /area/security/detectives_office) -"sj" = ( +"asj" = ( /obj/structure/table/woodentable, /obj/item/weapon/handcuffs, /obj/item/weapon/storage/fancy/cigarettes/dromedaryco, @@ -11814,7 +11814,7 @@ }, /turf/simulated/floor/carpet, /area/security/detectives_office) -"sk" = ( +"ask" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -11829,7 +11829,7 @@ }, /turf/simulated/floor/carpet, /area/security/detectives_office) -"sl" = ( +"asl" = ( /obj/machinery/light{ dir = 4 }, @@ -11839,7 +11839,7 @@ }, /turf/simulated/floor/carpet, /area/security/detectives_office) -"sm" = ( +"asm" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -11867,7 +11867,7 @@ }, /turf/simulated/floor/tiled, /area/security/hallway) -"sn" = ( +"asn" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -11878,18 +11878,18 @@ }, /turf/simulated/floor/tiled, /area/security/security_processing) -"so" = ( +"aso" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/catwalk, /turf/simulated/floor, /area/maintenance/station/elevator) -"sp" = ( +"asp" = ( /turf/simulated/wall/r_wall, /area/hallway/station/upper) -"sq" = ( +"asq" = ( /turf/simulated/wall, /area/hallway/station/upper) -"sr" = ( +"asr" = ( /obj/structure/cable{ d1 = 1; d2 = 4; @@ -11906,7 +11906,7 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor, /area/maintenance/cargo) -"ss" = ( +"ass" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ d1 = 4; @@ -11916,7 +11916,7 @@ }, /turf/simulated/floor, /area/maintenance/cargo) -"st" = ( +"ast" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 2; @@ -11925,7 +11925,7 @@ }, /turf/simulated/floor, /area/maintenance/cargo) -"su" = ( +"asu" = ( /obj/structure/closet/crate, /obj/random/maintenance/cargo, /obj/random/maintenance/cargo, @@ -11936,14 +11936,14 @@ /obj/random/maintenance/clean, /turf/simulated/floor, /area/maintenance/cargo) -"sv" = ( +"asv" = ( /obj/item/weapon/stool, /obj/effect/floor_decal/industrial/warning{ dir = 9 }, /turf/simulated/floor/tiled/steel_grid, /area/quartermaster/delivery) -"sw" = ( +"asw" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -11953,20 +11953,20 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/delivery) -"sx" = ( +"asx" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, /turf/simulated/floor/tiled, /area/quartermaster/delivery) -"sy" = ( +"asy" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled, /area/quartermaster/delivery) -"sz" = ( +"asz" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -11978,7 +11978,7 @@ /obj/effect/floor_decal/steeldecal/steel_decals4, /turf/simulated/floor/tiled, /area/quartermaster/delivery) -"sA" = ( +"asA" = ( /obj/machinery/door/airlock/glass_mining{ name = "Delivery Office"; req_access = list(50); @@ -11990,7 +11990,7 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/quartermaster/delivery) -"sB" = ( +"asB" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -12007,7 +12007,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"sC" = ( +"asC" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -12028,7 +12028,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"sD" = ( +"asD" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -12046,7 +12046,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"sE" = ( +"asE" = ( /obj/machinery/newscaster{ layer = 3.3; pixel_x = -27; @@ -12069,7 +12069,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/foyer) -"sF" = ( +"asF" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -12089,7 +12089,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"sG" = ( +"asG" = ( /obj/machinery/door/airlock/glass_mining{ id_tag = "cargodoor"; name = "Cargo Office"; @@ -12105,7 +12105,7 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/quartermaster/office) -"sH" = ( +"asH" = ( /obj/effect/floor_decal/rust, /obj/structure/disposalpipe/segment{ dir = 4; @@ -12113,17 +12113,17 @@ }, /turf/simulated/floor, /area/maintenance/station/ai) -"sI" = ( +"asI" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"sJ" = ( +"asJ" = ( /turf/simulated/floor/tiled, /area/quartermaster/office) -"sK" = ( +"asK" = ( /obj/structure/bed/chair/comfy/brown, /obj/effect/floor_decal/borderfloor{ dir = 5 @@ -12133,7 +12133,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"sL" = ( +"asL" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ d2 = 2; @@ -12157,20 +12157,20 @@ }, /turf/simulated/floor, /area/security/forensics) -"sM" = ( +"asM" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /turf/simulated/floor/tiled/white, /area/security/forensics) -"sN" = ( +"asN" = ( /turf/simulated/floor/tiled/white, /area/security/forensics) -"sO" = ( +"asO" = ( /obj/machinery/door/window/eastright, /turf/simulated/floor/tiled/white, /area/security/forensics) -"sP" = ( +"asP" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -12178,7 +12178,7 @@ }, /turf/simulated/floor/tiled/white, /area/security/forensics) -"sQ" = ( +"asQ" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 4 }, @@ -12190,10 +12190,10 @@ }, /turf/simulated/floor/tiled/white, /area/security/forensics) -"sR" = ( +"asR" = ( /turf/simulated/floor/carpet, /area/security/detectives_office) -"sS" = ( +"asS" = ( /obj/structure/bed/chair/office/dark{ dir = 4 }, @@ -12202,11 +12202,11 @@ }, /turf/simulated/floor/carpet, /area/security/detectives_office) -"sT" = ( +"asT" = ( /obj/structure/table/woodentable, /turf/simulated/floor/carpet, /area/security/detectives_office) -"sU" = ( +"asU" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -12220,7 +12220,7 @@ }, /turf/simulated/floor/carpet, /area/security/detectives_office) -"sV" = ( +"asV" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -12244,7 +12244,7 @@ }, /turf/simulated/floor/tiled, /area/security/hallway) -"sW" = ( +"asW" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/blast/regular{ density = 0; @@ -12275,7 +12275,7 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"sX" = ( +"asX" = ( /obj/structure/cable{ d1 = 2; d2 = 8; @@ -12294,7 +12294,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"sY" = ( +"asY" = ( /obj/effect/floor_decal/borderfloor{ dir = 1; pixel_y = 0 @@ -12322,7 +12322,7 @@ }, /turf/simulated/floor/tiled, /area/security/hallway) -"sZ" = ( +"asZ" = ( /obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/structure/disposalpipe/segment{ @@ -12330,7 +12330,7 @@ }, /turf/simulated/floor/tiled, /area/security/hallway) -"ta" = ( +"ata" = ( /obj/effect/floor_decal/borderfloor{ dir = 1; pixel_y = 0 @@ -12358,14 +12358,14 @@ }, /turf/simulated/floor/tiled, /area/security/hallway) -"tb" = ( +"atb" = ( /obj/machinery/camera/network/security{ icon_state = "camera"; dir = 10 }, /turf/simulated/mineral/floor/vacuum, /area/security/nuke_storage) -"tc" = ( +"atc" = ( /obj/effect/floor_decal/steeldecal/steel_decals4{ dir = 5 }, @@ -12383,7 +12383,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"td" = ( +"atd" = ( /obj/effect/floor_decal/borderfloor{ dir = 1; pixel_y = 0 @@ -12413,7 +12413,7 @@ }, /turf/simulated/floor/tiled, /area/security/hallway) -"te" = ( +"ate" = ( /obj/structure/cable/green{ icon_state = "32-2" }, @@ -12421,7 +12421,7 @@ /obj/structure/railing, /turf/simulated/open, /area/maintenance/station/elevator) -"tf" = ( +"atf" = ( /obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/structure/cable/green{ @@ -12435,7 +12435,7 @@ }, /turf/simulated/floor/tiled, /area/security/hallway) -"tg" = ( +"atg" = ( /obj/structure/cable{ icon_state = "1-2" }, @@ -12453,7 +12453,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"th" = ( +"ath" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 1 }, @@ -12477,7 +12477,7 @@ }, /turf/simulated/floor/tiled, /area/security/hallway) -"ti" = ( +"ati" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, @@ -12495,7 +12495,7 @@ }, /turf/simulated/floor/tiled, /area/security/hallway) -"tj" = ( +"atj" = ( /obj/effect/floor_decal/borderfloor{ dir = 4; pixel_x = -16 @@ -12524,25 +12524,25 @@ }, /turf/simulated/floor/tiled, /area/security/hallway) -"tk" = ( +"atk" = ( /obj/structure/catwalk, /obj/structure/disposalpipe/segment, /turf/simulated/floor, /area/maintenance/station/elevator) -"tl" = ( +"atl" = ( /turf/simulated/wall/r_wall, /area/maintenance/station/elevator) -"tm" = ( +"atm" = ( /obj/machinery/atmospherics/pipe/cap/hidden, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/station/elevator) -"tn" = ( +"atn" = ( /turf/simulated/shuttle/wall/voidcraft/green{ hard_corner = 1 }, /area/tether/elevator) -"to" = ( +"ato" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -12568,7 +12568,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"tp" = ( +"atp" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -12585,7 +12585,7 @@ /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"tq" = ( +"atq" = ( /obj/effect/floor_decal/borderfloor{ dir = 5 }, @@ -12601,7 +12601,7 @@ /obj/structure/flora/pottedplant/stoutbush, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"tr" = ( +"atr" = ( /obj/effect/floor_decal/corner/lightgrey{ dir = 6 }, @@ -12624,7 +12624,7 @@ /obj/machinery/vending/cola, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"ts" = ( +"ats" = ( /obj/effect/floor_decal/corner/lightgrey{ dir = 6 }, @@ -12644,7 +12644,7 @@ /obj/machinery/vending/snack, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"tt" = ( +"att" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/paleblue/border, /obj/machinery/door/firedoor/glass/hidden/steel{ @@ -12661,7 +12661,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"tu" = ( +"atu" = ( /obj/machinery/conveyor{ dir = 1; id = "packageSort1" @@ -12671,25 +12671,25 @@ }, /turf/simulated/floor/plating, /area/quartermaster/delivery) -"tv" = ( +"atv" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 }, /turf/simulated/floor/tiled/steel_grid, /area/quartermaster/delivery) -"tw" = ( +"atw" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /turf/simulated/floor/tiled, /area/quartermaster/delivery) -"tx" = ( +"atx" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 }, /turf/simulated/floor/tiled, /area/quartermaster/delivery) -"ty" = ( +"aty" = ( /obj/structure/table/steel, /obj/item/weapon/storage/box, /obj/item/weapon/storage/box, @@ -12712,7 +12712,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/delivery) -"tz" = ( +"atz" = ( /obj/machinery/door/airlock/glass_mining{ id_tag = "cargodoor"; name = "Cargo Office"; @@ -12724,15 +12724,15 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/steel_grid, /area/quartermaster/office) -"tA" = ( +"atA" = ( /obj/structure/sign/department/cargo, /turf/simulated/wall, /area/quartermaster/office) -"tB" = ( +"atB" = ( /obj/machinery/status_display/supply_display, /turf/simulated/wall, /area/quartermaster/office) -"tC" = ( +"atC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, @@ -12744,20 +12744,20 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"tD" = ( +"atD" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"tE" = ( +"atE" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"tF" = ( +"atF" = ( /obj/structure/table/standard, /obj/item/weapon/material/ashtray/glass, /obj/machinery/newscaster{ @@ -12773,7 +12773,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"tG" = ( +"atG" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green, /obj/machinery/door/blast/regular{ @@ -12791,7 +12791,7 @@ }, /turf/simulated/floor, /area/security/forensics) -"tH" = ( +"atH" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 10 }, @@ -12808,13 +12808,13 @@ }, /turf/simulated/floor/tiled/white, /area/security/forensics) -"tI" = ( +"atI" = ( /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/white/border, /obj/machinery/chem_master, /turf/simulated/floor/tiled/white, /area/security/forensics) -"tJ" = ( +"atJ" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -12839,7 +12839,7 @@ }, /turf/simulated/floor/tiled/white, /area/security/forensics) -"tK" = ( +"atK" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 10 }, @@ -12867,7 +12867,7 @@ }, /turf/simulated/floor/tiled/white, /area/security/forensics) -"tL" = ( +"atL" = ( /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/red/border, /obj/structure/cable/green{ @@ -12877,7 +12877,7 @@ }, /turf/simulated/floor/tiled/white, /area/security/forensics) -"tM" = ( +"atM" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 6 }, @@ -12889,7 +12889,7 @@ }, /turf/simulated/floor/tiled/white, /area/security/forensics) -"tN" = ( +"atN" = ( /obj/structure/closet/secure_closet/detective, /obj/item/weapon/reagent_containers/spray/pepper, /obj/item/weapon/gun/energy/taser, @@ -12902,7 +12902,7 @@ }, /turf/simulated/floor/carpet, /area/security/detectives_office) -"tO" = ( +"atO" = ( /obj/machinery/computer/security/wooden_tv, /obj/machinery/firealarm{ dir = 1; @@ -12911,14 +12911,14 @@ }, /turf/simulated/floor/carpet, /area/security/detectives_office) -"tP" = ( +"atP" = ( /obj/item/device/radio/intercom{ dir = 4; pixel_x = 24 }, /turf/simulated/floor/wood, /area/security/breakroom) -"tQ" = ( +"atQ" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 9 }, @@ -12930,7 +12930,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/security_equiptment_storage) -"tR" = ( +"atR" = ( /obj/machinery/power/apc{ dir = 2; name = "south bump"; @@ -12940,7 +12940,7 @@ /obj/machinery/computer/security/wooden_tv, /turf/simulated/floor/carpet, /area/security/detectives_office) -"tS" = ( +"atS" = ( /obj/effect/floor_decal/borderfloor{ dir = 10 }, @@ -12949,7 +12949,7 @@ }, /turf/simulated/floor/tiled, /area/security/hallway) -"tT" = ( +"atT" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/red/border, /obj/effect/floor_decal/borderfloor/corner2{ @@ -12960,12 +12960,12 @@ }, /turf/simulated/floor/tiled, /area/security/hallway) -"tU" = ( +"atU" = ( /obj/structure/reagent_dispensers/watertank, /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled, /area/maintenance/station/cargo) -"tV" = ( +"atV" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/red/border, /obj/effect/floor_decal/borderfloor/corner2, @@ -12975,7 +12975,7 @@ }, /turf/simulated/floor/tiled, /area/security/hallway) -"tW" = ( +"atW" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/red/border, /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -12983,7 +12983,7 @@ }, /turf/simulated/floor/tiled, /area/security/hallway) -"tX" = ( +"atX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -12994,14 +12994,14 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/security/hallway) -"tY" = ( +"atY" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/red/border, /obj/effect/floor_decal/borderfloor/corner2, /obj/effect/floor_decal/corner/red/bordercorner2, /turf/simulated/floor/tiled, /area/security/hallway) -"tZ" = ( +"atZ" = ( /obj/effect/floor_decal/borderfloor{ dir = 1; pixel_y = 0 @@ -13036,7 +13036,7 @@ }, /turf/simulated/floor/tiled, /area/security/hallway) -"ua" = ( +"aua" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/red/border, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -13049,14 +13049,14 @@ }, /turf/simulated/floor/tiled, /area/security/hallway) -"ub" = ( +"aub" = ( /obj/structure/mopbucket, /obj/item/weapon/reagent_containers/glass/bucket, /obj/item/weapon/mop, /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled, /area/maintenance/station/cargo) -"uc" = ( +"auc" = ( /obj/effect/floor_decal/steeldecal/steel_decals4{ dir = 8 }, @@ -13065,7 +13065,7 @@ }, /turf/simulated/floor/tiled, /area/security/hallway) -"ud" = ( +"aud" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, @@ -13077,7 +13077,7 @@ }, /turf/simulated/floor/tiled, /area/security/hallway) -"ue" = ( +"aue" = ( /obj/structure/table/rack{ dir = 8; layer = 2.9 @@ -13094,7 +13094,7 @@ }, /turf/simulated/floor, /area/maintenance/station/elevator) -"uf" = ( +"auf" = ( /obj/structure/cable{ d1 = 2; d2 = 4; @@ -13110,7 +13110,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor, /area/maintenance/station/elevator) -"ug" = ( +"aug" = ( /obj/machinery/door/airlock/maintenance/engi, /obj/structure/cable{ icon_state = "4-8" @@ -13124,7 +13124,7 @@ }, /turf/simulated/floor, /area/maintenance/station/elevator) -"uh" = ( +"auh" = ( /obj/structure/cable{ icon_state = "2-8" }, @@ -13138,21 +13138,21 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/station/elevator) -"ui" = ( +"aui" = ( /turf/simulated/floor/holofloor/tiled/dark, /area/tether/elevator) -"uj" = ( +"auj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 2 }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"uk" = ( +"auk" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"ul" = ( +"aul" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -13167,10 +13167,10 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"um" = ( +"aum" = ( /turf/simulated/floor/wood, /area/hallway/station/upper) -"un" = ( +"aun" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -13183,7 +13183,7 @@ /obj/effect/floor_decal/corner/lightgrey/border, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"uo" = ( +"auo" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" @@ -13196,7 +13196,7 @@ /obj/machinery/floodlight, /turf/simulated/floor, /area/storage/emergency_storage/emergency3) -"up" = ( +"aup" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" @@ -13212,7 +13212,7 @@ }, /turf/simulated/floor, /area/storage/emergency_storage/emergency3) -"uq" = ( +"auq" = ( /obj/structure/table/rack{ dir = 1 }, @@ -13234,14 +13234,14 @@ }, /turf/simulated/floor/plating, /area/storage/emergency_storage/emergency3) -"ur" = ( +"aur" = ( /obj/machinery/conveyor{ dir = 1; id = "packageSort1" }, /turf/simulated/floor/plating, /area/quartermaster/delivery) -"us" = ( +"aus" = ( /obj/machinery/conveyor_switch/oneway{ id = "packageSort1" }, @@ -13250,14 +13250,14 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/quartermaster/delivery) -"ut" = ( +"aut" = ( /turf/simulated/floor/tiled, /area/quartermaster/delivery) -"uu" = ( +"auu" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/quartermaster/delivery) -"uv" = ( +"auv" = ( /obj/structure/table/steel, /obj/item/weapon/wrapping_paper, /obj/item/weapon/wrapping_paper, @@ -13278,13 +13278,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/universal, /turf/simulated/floor/tiled, /area/quartermaster/delivery) -"uw" = ( +"auw" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, /area/quartermaster/delivery) -"ux" = ( +"aux" = ( /obj/machinery/computer/guestpass{ pixel_y = 32 }, @@ -13296,7 +13296,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/foyer) -"uy" = ( +"auy" = ( /obj/machinery/alarm{ pixel_y = 22 }, @@ -13318,7 +13318,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/foyer) -"uz" = ( +"auz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -13329,7 +13329,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/foyer) -"uA" = ( +"auA" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -13354,7 +13354,7 @@ /obj/item/weapon/pen, /turf/simulated/floor/tiled, /area/quartermaster/foyer) -"uB" = ( +"auB" = ( /obj/machinery/computer/supplycomp, /obj/effect/floor_decal/borderfloor{ dir = 5 @@ -13370,7 +13370,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/foyer) -"uC" = ( +"auC" = ( /obj/structure/catwalk, /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment{ @@ -13379,12 +13379,12 @@ }, /turf/simulated/floor, /area/maintenance/station/ai) -"uD" = ( +"auD" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/quartermaster/office) -"uE" = ( +"auE" = ( /obj/structure/bed/chair/comfy/brown{ dir = 1 }, @@ -13400,11 +13400,11 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"uF" = ( +"auF" = ( /obj/structure/sign/warning/secure_area, /turf/simulated/wall/r_wall, /area/security/forensics) -"uG" = ( +"auG" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/blast/regular{ density = 0; @@ -13423,7 +13423,7 @@ /obj/structure/window/reinforced, /turf/simulated/floor, /area/security/forensics) -"uH" = ( +"auH" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/blast/regular{ density = 0; @@ -13442,7 +13442,7 @@ /obj/structure/cable/green, /turf/simulated/floor, /area/security/forensics) -"uI" = ( +"auI" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/blast/regular{ density = 0; @@ -13461,10 +13461,10 @@ /obj/structure/window/reinforced, /turf/simulated/floor, /area/security/forensics) -"uJ" = ( +"auJ" = ( /turf/simulated/wall/r_wall, /area/security/detectives_office) -"uK" = ( +"auK" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/paleblue/border, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -13480,14 +13480,14 @@ /obj/effect/floor_decal/corner/paleblue/bordercorner2, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"uL" = ( +"auL" = ( /obj/machinery/washing_machine, /obj/machinery/light{ dir = 4 }, /turf/simulated/floor/tiled/white, /area/security/security_bathroom) -"uM" = ( +"auM" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ d1 = 1; @@ -13520,7 +13520,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/dark, /area/lawoffice) -"uN" = ( +"auN" = ( /obj/machinery/alarm{ dir = 8; icon_state = "alarm0"; @@ -13542,13 +13542,13 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"uO" = ( +"auO" = ( /turf/simulated/wall/r_wall, /area/lawoffice) -"uP" = ( +"auP" = ( /turf/simulated/wall/r_wall, /area/security/lobby) -"uQ" = ( +"auQ" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ icon_state = "0-4" @@ -13557,7 +13557,7 @@ /obj/structure/window/reinforced/full, /turf/simulated/floor, /area/security/lobby) -"uR" = ( +"auR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -13582,7 +13582,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/security/lobby) -"uS" = ( +"auS" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ d2 = 8; @@ -13592,7 +13592,7 @@ /obj/structure/window/reinforced/full, /turf/simulated/floor, /area/security/lobby) -"uT" = ( +"auT" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ icon_state = "0-4" @@ -13609,7 +13609,7 @@ /obj/structure/window/reinforced/full, /turf/simulated/floor, /area/security/hallway) -"uU" = ( +"auU" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/blast/regular{ density = 0; @@ -13634,7 +13634,7 @@ }, /turf/simulated/floor, /area/security/hallway) -"uV" = ( +"auV" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ d2 = 8; @@ -13652,7 +13652,7 @@ /obj/structure/window/reinforced/full, /turf/simulated/floor, /area/security/hallway) -"uW" = ( +"auW" = ( /obj/structure/cable{ icon_state = "1-2" }, @@ -13662,7 +13662,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor, /area/maintenance/station/elevator) -"uX" = ( +"auX" = ( /obj/structure/lattice, /obj/machinery/atmospherics/pipe/zpipe/down{ dir = 1 @@ -13679,20 +13679,20 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/open, /area/maintenance/station/elevator) -"uY" = ( +"auY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/door/firedoor/glass/hidden/steel, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"uZ" = ( +"auZ" = ( /obj/structure/table/bench/wooden, /turf/simulated/floor/wood, /area/hallway/station/upper) -"va" = ( +"ava" = ( /obj/structure/bed/chair/comfy/brown, /turf/simulated/floor/wood, /area/hallway/station/upper) -"vb" = ( +"avb" = ( /obj/structure/cable{ icon_state = "1-2" }, @@ -13700,11 +13700,11 @@ /obj/machinery/space_heater, /turf/simulated/floor, /area/storage/emergency_storage/emergency3) -"vc" = ( +"avc" = ( /obj/effect/decal/cleanable/dirt, /turf/simulated/floor, /area/storage/emergency_storage/emergency3) -"vd" = ( +"avd" = ( /obj/structure/closet/crate, /obj/random/junk, /obj/random/maintenance/medical, @@ -13721,7 +13721,7 @@ /obj/item/device/t_scanner, /turf/simulated/floor, /area/storage/emergency_storage/emergency3) -"ve" = ( +"ave" = ( /obj/machinery/conveyor{ dir = 1; id = "packageSort1" @@ -13729,7 +13729,7 @@ /obj/structure/plasticflaps, /turf/simulated/floor/plating, /area/quartermaster/delivery) -"vf" = ( +"avf" = ( /obj/machinery/requests_console{ department = "Cargo Bay"; departmentType = 2; @@ -13751,13 +13751,13 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/delivery) -"vg" = ( +"avg" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/tiled, /area/quartermaster/delivery) -"vh" = ( +"avh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, @@ -13766,7 +13766,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/delivery) -"vi" = ( +"avi" = ( /obj/structure/table/steel, /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -13782,7 +13782,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/delivery) -"vj" = ( +"avj" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -13800,19 +13800,19 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/foyer) -"vk" = ( +"avk" = ( /turf/simulated/floor/tiled, /area/quartermaster/foyer) -"vl" = ( +"avl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/quartermaster/foyer) -"vm" = ( +"avm" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/quartermaster/foyer) -"vn" = ( +"avn" = ( /obj/structure/table/reinforced, /obj/machinery/door/firedoor/border_only, /obj/machinery/door/window/northright{ @@ -13822,7 +13822,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"vo" = ( +"avo" = ( /obj/random/trash, /obj/structure/disposalpipe/segment{ dir = 8; @@ -13830,7 +13830,7 @@ }, /turf/simulated/floor, /area/maintenance/station/ai) -"vp" = ( +"avp" = ( /obj/structure/cable{ icon_state = "1-2" }, @@ -13840,13 +13840,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor, /area/maintenance/station/cargo) -"vq" = ( +"avq" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"vr" = ( +"avr" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 8 @@ -13862,16 +13862,16 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"vs" = ( +"avs" = ( /turf/simulated/floor/airless, /area/mine/explored/upper_level) -"vt" = ( +"avt" = ( /turf/simulated/mineral/floor/vacuum, /area/mine/explored/upper_level) -"vu" = ( +"avu" = ( /turf/simulated/wall, /area/lawoffice) -"vv" = ( +"avv" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/brown/border, /obj/effect/floor_decal/borderfloor/corner2{ @@ -13885,7 +13885,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/foyer) -"vw" = ( +"avw" = ( /obj/effect/floor_decal/spline/plain{ icon_state = "spline_plain"; dir = 1 @@ -13919,7 +13919,7 @@ }, /turf/simulated/floor/tiled/dark, /area/lawoffice) -"vx" = ( +"avx" = ( /obj/effect/floor_decal/spline/plain{ icon_state = "spline_plain"; dir = 1 @@ -13933,7 +13933,7 @@ /obj/item/weapon/book/manual/command_guide, /turf/simulated/floor/tiled/dark, /area/lawoffice) -"vy" = ( +"avy" = ( /obj/effect/floor_decal/spline/plain{ icon_state = "spline_plain"; dir = 1 @@ -13953,7 +13953,7 @@ }, /turf/simulated/floor/tiled/dark, /area/lawoffice) -"vz" = ( +"avz" = ( /obj/effect/floor_decal/spline/plain{ icon_state = "spline_plain"; dir = 1 @@ -13966,7 +13966,7 @@ /obj/machinery/photocopier, /turf/simulated/floor/tiled/dark, /area/lawoffice) -"vA" = ( +"avA" = ( /obj/effect/floor_decal/spline/plain{ icon_state = "spline_plain"; dir = 1 @@ -13979,7 +13979,7 @@ /obj/machinery/papershredder, /turf/simulated/floor/tiled/dark, /area/lawoffice) -"vB" = ( +"avB" = ( /obj/structure/cable/green{ d1 = 1; d2 = 8; @@ -13991,7 +13991,7 @@ }, /turf/simulated/floor/tiled/dark, /area/lawoffice) -"vC" = ( +"avC" = ( /obj/effect/floor_decal/spline/plain{ icon_state = "spline_plain"; dir = 1 @@ -14002,7 +14002,7 @@ /obj/structure/filingcabinet/chestdrawer, /turf/simulated/floor/tiled/dark, /area/lawoffice) -"vD" = ( +"avD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4 @@ -14014,7 +14014,7 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"vE" = ( +"avE" = ( /obj/effect/floor_decal/borderfloor{ dir = 9 }, @@ -14035,7 +14035,7 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"vF" = ( +"avF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -14046,7 +14046,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/security/lobby) -"vG" = ( +"avG" = ( /obj/effect/floor_decal/borderfloor{ dir = 5 }, @@ -14072,7 +14072,7 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"vH" = ( +"avH" = ( /obj/effect/floor_decal/borderfloor{ dir = 9 }, @@ -14099,7 +14099,7 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"vI" = ( +"avI" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -14110,7 +14110,7 @@ /obj/structure/bed/chair, /turf/simulated/floor/tiled, /area/security/lobby) -"vJ" = ( +"avJ" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -14126,7 +14126,7 @@ /obj/structure/flora/pottedplant/stoutbush, /turf/simulated/floor/tiled, /area/security/lobby) -"vK" = ( +"avK" = ( /obj/effect/floor_decal/steeldecal/steel_decals4{ dir = 4 }, @@ -14135,7 +14135,7 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"vL" = ( +"avL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, @@ -14147,7 +14147,7 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"vM" = ( +"avM" = ( /obj/machinery/power/apc{ cell_type = /obj/item/weapon/cell/super; dir = 8; @@ -14166,7 +14166,7 @@ }, /turf/simulated/floor, /area/maintenance/station/elevator) -"vN" = ( +"avN" = ( /obj/structure/cable{ icon_state = "1-2" }, @@ -14182,15 +14182,15 @@ }, /turf/simulated/floor, /area/maintenance/station/elevator) -"vO" = ( +"avO" = ( /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/station/elevator) -"vP" = ( +"avP" = ( /obj/structure/table/woodentable, /turf/simulated/floor/wood, /area/hallway/station/upper) -"vQ" = ( +"avQ" = ( /obj/structure/table/woodentable, /obj/item/device/radio/intercom{ dir = 4; @@ -14198,25 +14198,25 @@ }, /turf/simulated/floor/wood, /area/hallway/station/upper) -"vR" = ( +"avR" = ( /obj/structure/cable{ icon_state = "1-2" }, /obj/structure/disposalpipe/segment, /turf/simulated/floor, /area/storage/emergency_storage/emergency3) -"vS" = ( +"avS" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/floor_decal/rust, /obj/machinery/light/small, /turf/simulated/floor, /area/storage/emergency_storage/emergency3) -"vT" = ( +"avT" = ( /obj/effect/floor_decal/rust, /obj/machinery/portable_atmospherics/powered/pump/filled, /turf/simulated/floor, /area/storage/emergency_storage/emergency3) -"vU" = ( +"avU" = ( /obj/structure/disposalpipe/trunk, /obj/structure/disposaloutlet{ dir = 1 @@ -14228,7 +14228,7 @@ }, /turf/simulated/floor/plating, /area/quartermaster/delivery) -"vV" = ( +"avV" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/steeldecal/steel_decals4{ dir = 5 @@ -14238,7 +14238,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/delivery) -"vW" = ( +"avW" = ( /obj/structure/filingcabinet/filingcabinet, /obj/machinery/light, /obj/effect/floor_decal/borderfloor, @@ -14247,7 +14247,7 @@ /obj/effect/floor_decal/corner/brown/bordercorner2, /turf/simulated/floor/tiled, /area/quartermaster/delivery) -"vX" = ( +"avX" = ( /obj/structure/bed/chair, /obj/effect/landmark/start{ name = "Cargo Technician" @@ -14258,7 +14258,7 @@ /obj/effect/floor_decal/corner/brown/border, /turf/simulated/floor/tiled, /area/quartermaster/delivery) -"vY" = ( +"avY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, @@ -14290,25 +14290,25 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"vZ" = ( +"avZ" = ( /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/quartermaster/foyer) -"wa" = ( +"awa" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, /area/quartermaster/office) -"wb" = ( +"awb" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor, /area/maintenance/station/ai) -"wc" = ( +"awc" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled, /area/quartermaster/office) -"wd" = ( +"awd" = ( /obj/machinery/autolathe, /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -14321,25 +14321,25 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"we" = ( +"awe" = ( /turf/space/cracked_asteroid, /area/mine/explored/upper_level) -"wf" = ( +"awf" = ( /obj/effect/floor_decal/rust, /obj/structure/catwalk, /turf/simulated/floor/plating, /area/maintenance/station/cargo) -"wg" = ( +"awg" = ( /obj/effect/floor_decal/spline/plain{ icon_state = "spline_plain"; dir = 8 }, /turf/simulated/floor/tiled/dark, /area/lawoffice) -"wh" = ( +"awh" = ( /turf/simulated/floor/tiled/dark, /area/lawoffice) -"wi" = ( +"awi" = ( /obj/effect/floor_decal/spline/plain{ dir = 4 }, @@ -14350,7 +14350,7 @@ }, /turf/simulated/floor/tiled/dark, /area/lawoffice) -"wj" = ( +"awj" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -14368,7 +14368,7 @@ /obj/machinery/photocopier, /turf/simulated/floor/tiled, /area/security/lobby) -"wk" = ( +"awk" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ d1 = 1; @@ -14386,7 +14386,7 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"wl" = ( +"awl" = ( /obj/structure/bed/chair/office/dark{ dir = 4 }, @@ -14398,7 +14398,7 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"wm" = ( +"awm" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/blast/regular{ density = 0; @@ -14417,22 +14417,22 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"wn" = ( +"awn" = ( /turf/simulated/floor/tiled, /area/security/lobby) -"wo" = ( +"awo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, /turf/simulated/floor/tiled, /area/security/lobby) -"wp" = ( +"awp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/tiled, /area/security/lobby) -"wq" = ( +"awq" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, @@ -14444,7 +14444,7 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"wr" = ( +"awr" = ( /obj/structure/disposalpipe/segment, /obj/structure/closet/crate, /obj/random/maintenance/cargo, @@ -14458,7 +14458,7 @@ /obj/item/weapon/storage/box/lights/mixed, /turf/simulated/floor, /area/maintenance/station/elevator) -"ws" = ( +"aws" = ( /obj/structure/cable{ icon_state = "1-2" }, @@ -14471,7 +14471,7 @@ }, /turf/simulated/floor, /area/maintenance/station/elevator) -"wt" = ( +"awt" = ( /obj/machinery/door/airlock/maintenance/engi, /obj/machinery/door/firedoor/glass, /obj/structure/disposalpipe/segment{ @@ -14479,7 +14479,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/station/elevator) -"wu" = ( +"awu" = ( /obj/structure/disposalpipe/down{ dir = 8 }, @@ -14487,20 +14487,20 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/open, /area/maintenance/station/elevator) -"wv" = ( +"awv" = ( /obj/structure/sign/deck3, /turf/simulated/shuttle/wall/voidcraft/green{ hard_corner = 1 }, /area/tether/elevator) -"ww" = ( +"aww" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 1 }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"wx" = ( +"awx" = ( /obj/structure/sign/directions/cargo{ dir = 4 }, @@ -14513,13 +14513,13 @@ }, /turf/simulated/wall, /area/hallway/station/upper) -"wy" = ( +"awy" = ( /obj/structure/bed/chair/comfy/brown{ dir = 1 }, /turf/simulated/floor/wood, /area/hallway/station/upper) -"wz" = ( +"awz" = ( /obj/structure/cable{ icon_state = "1-2" }, @@ -14530,15 +14530,15 @@ }, /turf/simulated/floor, /area/storage/emergency_storage/emergency3) -"wA" = ( +"awA" = ( /obj/structure/disposalpipe/segment, /turf/simulated/wall, /area/quartermaster/delivery) -"wB" = ( +"awB" = ( /obj/structure/sign/department/mail, /turf/simulated/wall, /area/quartermaster/delivery) -"wC" = ( +"awC" = ( /obj/machinery/door/airlock/glass_mining{ name = "Delivery Office"; req_access = list(50); @@ -14548,13 +14548,13 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/steel_grid, /area/quartermaster/delivery) -"wD" = ( +"awD" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor/border_only, /turf/simulated/floor/plating, /area/quartermaster/delivery) -"wE" = ( +"awE" = ( /obj/structure/cable/green{ icon_state = "32-2" }, @@ -14564,7 +14564,7 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/open, /area/tether/exploration) -"wF" = ( +"awF" = ( /obj/effect/floor_decal/corner/lightgrey{ dir = 9 }, @@ -14577,13 +14577,13 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"wG" = ( +"awG" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/tiled, /area/quartermaster/foyer) -"wH" = ( +"awH" = ( /obj/machinery/hologram/holopad, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 @@ -14593,13 +14593,13 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/foyer) -"wI" = ( +"awI" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/tiled, /area/quartermaster/foyer) -"wJ" = ( +"awJ" = ( /obj/machinery/door/airlock/maintenance/cargo{ req_access = list(50); req_one_access = list(48) @@ -14607,7 +14607,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor, /area/quartermaster/office) -"wK" = ( +"awK" = ( /obj/structure/table/standard, /obj/fiftyspawner/steel, /obj/item/device/multitool, @@ -14624,17 +14624,17 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"wL" = ( +"awL" = ( /obj/structure/flora/pottedplant/flower, /turf/simulated/floor/wood, /area/hallway/station/upper) -"wM" = ( +"awM" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/structure/table/reinforced, /obj/item/device/flashlight/lamp, /turf/simulated/floor/tiled/dark, /area/lawoffice) -"wN" = ( +"awN" = ( /obj/effect/floor_decal/spline/plain{ dir = 4 }, @@ -14643,7 +14643,7 @@ }, /turf/simulated/floor/tiled/dark, /area/lawoffice) -"wO" = ( +"awO" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -14660,7 +14660,7 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"wP" = ( +"awP" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -14670,7 +14670,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/security/lobby) -"wQ" = ( +"awQ" = ( /obj/effect/floor_decal/borderfloor/corner2{ dir = 6 }, @@ -14701,7 +14701,7 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"wR" = ( +"awR" = ( /obj/effect/floor_decal/borderfloor/shifted, /obj/effect/floor_decal/corner/red/border/shifted, /obj/effect/floor_decal/corner/red{ @@ -14713,7 +14713,7 @@ }, /turf/simulated/floor/tiled, /area/security/observation) -"wS" = ( +"awS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -14740,7 +14740,7 @@ /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled/white, /area/security/forensics) -"wT" = ( +"awT" = ( /obj/structure/table/reinforced, /obj/item/weapon/storage/box/cups, /obj/item/weapon/storage/box/cups{ @@ -14749,13 +14749,13 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"wU" = ( +"awU" = ( /obj/structure/table/reinforced, /obj/item/weapon/book/manual/security_space_law, /obj/item/weapon/book/manual/security_space_law, /turf/simulated/floor/tiled, /area/security/lobby) -"wV" = ( +"awV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, @@ -14769,24 +14769,24 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"wW" = ( +"awW" = ( /obj/structure/reagent_dispensers/watertank, /obj/structure/railing, /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor, /area/maintenance/station/elevator) -"wX" = ( +"awX" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/floor_decal/rust, /turf/simulated/floor/plating, /area/maintenance/station/elevator) -"wY" = ( +"awY" = ( /obj/machinery/hologram/holopad, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"wZ" = ( +"awZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment{ dir = 4; @@ -14794,7 +14794,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"xa" = ( +"axa" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -14810,7 +14810,7 @@ /obj/effect/floor_decal/steeldecal/steel_decals7, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"xb" = ( +"axb" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -14826,7 +14826,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"xc" = ( +"axc" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -14846,7 +14846,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/quartermaster/office) -"xd" = ( +"axd" = ( /obj/structure/cable{ icon_state = "1-2" }, @@ -14871,7 +14871,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"xe" = ( +"axe" = ( /obj/machinery/status_display{ pixel_y = 30 }, @@ -14896,7 +14896,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"xf" = ( +"axf" = ( /obj/machinery/atm{ pixel_y = 30 }, @@ -14922,14 +14922,14 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"xg" = ( +"axg" = ( /obj/structure/table/bench/wooden, /obj/machinery/camera/network/tether{ dir = 1 }, /turf/simulated/floor/wood, /area/hallway/station/upper) -"xh" = ( +"axh" = ( /obj/structure/sign/directions/cargo{ dir = 4; pixel_y = -8 @@ -14946,7 +14946,7 @@ }, /turf/simulated/wall, /area/teleporter/departing) -"xi" = ( +"axi" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -14974,7 +14974,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"xj" = ( +"axj" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" @@ -14993,7 +14993,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"xk" = ( +"axk" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -15018,7 +15018,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/foyer) -"xl" = ( +"axl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/borderfloor{ @@ -15033,7 +15033,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/foyer) -"xm" = ( +"axm" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -15046,7 +15046,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/foyer) -"xn" = ( +"axn" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 1 }, @@ -15061,14 +15061,14 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/foyer) -"xo" = ( +"axo" = ( /obj/effect/floor_decal/steeldecal/steel_decals4, /obj/effect/floor_decal/steeldecal/steel_decals4{ dir = 10 }, /turf/simulated/floor/tiled, /area/quartermaster/foyer) -"xp" = ( +"axp" = ( /obj/machinery/door/airlock/glass_mining{ id_tag = "cargodoor"; name = "Cargo Office"; @@ -15078,7 +15078,7 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/steel_grid, /area/quartermaster/office) -"xq" = ( +"axq" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -15096,7 +15096,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"xr" = ( +"axr" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -15104,13 +15104,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/quartermaster/office) -"xs" = ( +"axs" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"xt" = ( +"axt" = ( /obj/structure/table/standard, /obj/item/weapon/folder/yellow, /obj/machinery/light{ @@ -15130,7 +15130,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"xu" = ( +"axu" = ( /obj/structure/sign/directions/security{ dir = 1; icon_state = "direction_sec"; @@ -15147,14 +15147,14 @@ }, /turf/simulated/wall/r_wall, /area/tether/station/stairs_three) -"xv" = ( +"axv" = ( /obj/structure/sign/warning/secure_area, /turf/simulated/wall/r_wall, /area/security/nuke_storage) -"xw" = ( +"axw" = ( /turf/simulated/wall/r_wall, /area/security/nuke_storage) -"xx" = ( +"axx" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -15173,7 +15173,7 @@ /obj/effect/floor_decal/steeldecal/steel_decals7, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"xy" = ( +"axy" = ( /obj/effect/floor_decal/spline/plain{ icon_state = "spline_plain"; dir = 8 @@ -15191,7 +15191,7 @@ /obj/item/weapon/folder/yellow, /turf/simulated/floor/tiled/dark, /area/lawoffice) -"xz" = ( +"axz" = ( /obj/structure/bed/chair/office/dark{ dir = 4 }, @@ -15200,7 +15200,7 @@ }, /turf/simulated/floor/tiled/dark, /area/lawoffice) -"xA" = ( +"axA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, @@ -15215,7 +15215,7 @@ }, /turf/simulated/floor/tiled/dark, /area/lawoffice) -"xB" = ( +"axB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -15227,7 +15227,7 @@ }, /turf/simulated/floor/tiled/dark, /area/lawoffice) -"xC" = ( +"axC" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, @@ -15236,7 +15236,7 @@ }, /turf/simulated/floor/tiled/dark, /area/lawoffice) -"xD" = ( +"axD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -15248,7 +15248,7 @@ }, /turf/simulated/floor/tiled/dark, /area/lawoffice) -"xE" = ( +"axE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, @@ -15263,7 +15263,7 @@ }, /turf/simulated/floor/tiled/dark, /area/lawoffice) -"xF" = ( +"axF" = ( /obj/structure/bed/chair/office/dark{ dir = 8 }, @@ -15272,7 +15272,7 @@ }, /turf/simulated/floor/tiled/dark, /area/lawoffice) -"xG" = ( +"axG" = ( /obj/effect/floor_decal/spline/plain{ dir = 4 }, @@ -15289,7 +15289,7 @@ /obj/item/weapon/folder/yellow, /turf/simulated/floor/tiled/dark, /area/lawoffice) -"xH" = ( +"axH" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -15315,7 +15315,7 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"xI" = ( +"axI" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -15330,7 +15330,7 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"xJ" = ( +"axJ" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/blast/regular{ density = 0; @@ -15349,19 +15349,19 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"xK" = ( +"axK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, /turf/simulated/floor/tiled, /area/security/lobby) -"xL" = ( +"axL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/tiled, /area/security/lobby) -"xM" = ( +"axM" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -15387,7 +15387,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"xN" = ( +"axN" = ( /obj/structure/lattice, /obj/machinery/door/firedoor/glass, /obj/machinery/light/small{ @@ -15398,7 +15398,7 @@ }, /turf/simulated/open, /area/maintenance/station/elevator) -"xO" = ( +"axO" = ( /obj/structure/cable{ icon_state = "1-2" }, @@ -15411,7 +15411,7 @@ }, /turf/simulated/floor, /area/maintenance/station/elevator) -"xP" = ( +"axP" = ( /obj/structure/table/standard, /obj/item/weapon/paper_bin{ pixel_x = -3; @@ -15420,7 +15420,7 @@ /obj/item/device/megaphone, /turf/simulated/floor/wood, /area/quartermaster/qm) -"xQ" = ( +"axQ" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -15428,7 +15428,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"xR" = ( +"axR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -15437,7 +15437,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"xS" = ( +"axS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -15449,7 +15449,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"xT" = ( +"axT" = ( /obj/structure/cable{ icon_state = "1-2" }, @@ -15462,13 +15462,13 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"xU" = ( +"axU" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"xV" = ( +"axV" = ( /obj/structure/table/steel, /obj/item/weapon/storage/box/lights/mixed, /obj/item/weapon/storage/box/lights/mixed, @@ -15481,20 +15481,20 @@ }, /turf/simulated/floor/tiled, /area/maintenance/station/cargo) -"xW" = ( +"axW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"xX" = ( +"axX" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"xY" = ( +"axY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, @@ -15503,12 +15503,12 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/foyer) -"xZ" = ( +"axZ" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/tiled, /area/quartermaster/foyer) -"ya" = ( +"aya" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -15517,7 +15517,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/foyer) -"yb" = ( +"ayb" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1 }, @@ -15526,7 +15526,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/foyer) -"yc" = ( +"ayc" = ( /obj/structure/cable/green{ d1 = 2; d2 = 4; @@ -15544,7 +15544,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/foyer) -"yd" = ( +"ayd" = ( /obj/machinery/door/airlock/glass_mining{ id_tag = "cargodoor"; name = "Cargo Office"; @@ -15568,7 +15568,7 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/quartermaster/office) -"ye" = ( +"aye" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -15590,7 +15590,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"yf" = ( +"ayf" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -15603,7 +15603,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"yg" = ( +"ayg" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -15611,7 +15611,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"yh" = ( +"ayh" = ( /obj/structure/table/standard, /obj/item/weapon/storage/belt/utility, /obj/item/weapon/storage/belt/utility, @@ -15632,7 +15632,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"yi" = ( +"ayi" = ( /obj/effect/floor_decal/spline/plain{ icon_state = "spline_plain"; dir = 10 @@ -15650,7 +15650,7 @@ }, /turf/simulated/floor/tiled/dark, /area/lawoffice) -"yj" = ( +"ayj" = ( /obj/structure/table/reinforced, /obj/machinery/computer/skills{ icon_state = "laptop"; @@ -15658,7 +15658,7 @@ }, /turf/simulated/floor/tiled/dark, /area/lawoffice) -"yk" = ( +"ayk" = ( /obj/effect/floor_decal/spline/plain, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 @@ -15678,21 +15678,21 @@ }, /turf/simulated/floor/tiled/dark, /area/lawoffice) -"yl" = ( +"ayl" = ( /obj/structure/sign/department/medbay, /turf/simulated/wall/r_wall, /area/medical/chemistry) -"ym" = ( +"aym" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/dark, /area/lawoffice) -"yn" = ( +"ayn" = ( /obj/effect/floor_decal/spline/plain, /obj/structure/flora/pottedplant/stoutbush, /turf/simulated/floor/tiled/dark, /area/lawoffice) -"yo" = ( +"ayo" = ( /obj/effect/floor_decal/spline/plain, /obj/structure/table/reinforced, /obj/machinery/computer/skills{ @@ -15701,7 +15701,7 @@ }, /turf/simulated/floor/tiled/dark, /area/lawoffice) -"yp" = ( +"ayp" = ( /obj/effect/floor_decal/spline/plain{ icon_state = "spline_plain"; dir = 6 @@ -15719,7 +15719,7 @@ }, /turf/simulated/floor/tiled/dark, /area/lawoffice) -"yq" = ( +"ayq" = ( /obj/effect/floor_decal/borderfloor{ dir = 10 }, @@ -15737,7 +15737,7 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"yr" = ( +"ayr" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/red/border, /obj/structure/cable/green{ @@ -15750,7 +15750,7 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"ys" = ( +"ays" = ( /obj/effect/floor_decal/borderfloor{ dir = 6 }, @@ -15773,7 +15773,7 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"yt" = ( +"ayt" = ( /obj/effect/floor_decal/borderfloor{ dir = 10 }, @@ -15795,7 +15795,7 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"yu" = ( +"ayu" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/red/border, /obj/machinery/atmospherics/unary/vent_scrubber/on{ @@ -15806,7 +15806,7 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"yv" = ( +"ayv" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/red/border, /obj/effect/floor_decal/borderfloor/corner2{ @@ -15820,30 +15820,30 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"yw" = ( +"ayw" = ( /obj/effect/floor_decal/steeldecal/steel_decals6{ dir = 8 }, /turf/simulated/floor/tiled, /area/security/lobby) -"yx" = ( +"ayx" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/steeldecal/steel_decals6, /turf/simulated/floor/tiled, /area/security/lobby) -"yy" = ( +"ayy" = ( /obj/structure/reagent_dispensers/fueltank, /obj/structure/railing{ dir = 1 }, /turf/simulated/floor, /area/maintenance/station/elevator) -"yz" = ( +"ayz" = ( /turf/simulated/wall, /area/maintenance/station/elevator) -"yA" = ( +"ayA" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -15865,14 +15865,14 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"yB" = ( +"ayB" = ( /obj/machinery/camera/network/security{ icon_state = "camera"; dir = 8 }, /turf/space, /area/security/nuke_storage) -"yC" = ( +"ayC" = ( /obj/effect/floor_decal/corner/lightgrey{ dir = 6 }, @@ -15888,7 +15888,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"yD" = ( +"ayD" = ( /obj/effect/floor_decal/corner/lightgrey{ dir = 9 }, @@ -15904,7 +15904,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"yE" = ( +"ayE" = ( /obj/effect/floor_decal/corner/lightgrey{ dir = 6 }, @@ -15926,7 +15926,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"yF" = ( +"ayF" = ( /obj/effect/floor_decal/corner/lightgrey{ dir = 9 }, @@ -15940,7 +15940,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"yG" = ( +"ayG" = ( /obj/machinery/light{ icon_state = "tube1"; dir = 8 @@ -15966,7 +15966,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"yH" = ( +"ayH" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -15975,7 +15975,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"yI" = ( +"ayI" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor/glass, @@ -15995,10 +15995,10 @@ }, /turf/simulated/floor/plating, /area/medical/chemistry) -"yJ" = ( +"ayJ" = ( /turf/simulated/wall/r_wall, /area/medical/chemistry) -"yK" = ( +"ayK" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/blast/shutters{ @@ -16017,7 +16017,7 @@ }, /turf/simulated/floor, /area/medical/reception) -"yL" = ( +"ayL" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -16029,7 +16029,7 @@ dir = 4 }, /area/security/lobby) -"yM" = ( +"ayM" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/multi_tile/glass{ name = "Medbay Lobby" @@ -16049,11 +16049,11 @@ dir = 8 }, /area/medical/reception) -"yN" = ( +"ayN" = ( /obj/structure/sign/department/medbay, /turf/simulated/wall, /area/medical/medbay_emt_bay) -"yO" = ( +"ayO" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -16069,7 +16069,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"yP" = ( +"ayP" = ( /obj/machinery/alarm{ dir = 1; icon_state = "alarm0"; @@ -16080,7 +16080,7 @@ }, /turf/simulated/floor/tiled, /area/maintenance/station/cargo) -"yQ" = ( +"ayQ" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -16091,7 +16091,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"yR" = ( +"ayR" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, @@ -16101,7 +16101,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/nuke_storage) -"yS" = ( +"ayS" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/brown/border, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -16112,10 +16112,10 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/foyer) -"yT" = ( +"ayT" = ( /turf/simulated/wall, /area/medical/medbay_emt_bay) -"yU" = ( +"ayU" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -16126,7 +16126,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/foyer) -"yV" = ( +"ayV" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/brown/border, /obj/effect/floor_decal/borderfloor/corner2, @@ -16139,14 +16139,14 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/foyer) -"yW" = ( +"ayW" = ( /obj/effect/floor_decal/techfloor{ dir = 5 }, /obj/machinery/porta_turret, /turf/simulated/floor/bluegrid, /area/ai_core_foyer) -"yX" = ( +"ayX" = ( /obj/structure/cable/green{ d2 = 4; icon_state = "0-4" @@ -16167,7 +16167,7 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/quartermaster/foyer) -"yY" = ( +"ayY" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" @@ -16181,7 +16181,7 @@ /obj/machinery/camera/network/cargo, /turf/simulated/floor/tiled, /area/quartermaster/delivery) -"yZ" = ( +"ayZ" = ( /obj/machinery/door/airlock/glass_mining{ id_tag = "cargodoor"; name = "Cargo Office"; @@ -16199,7 +16199,7 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/quartermaster/office) -"za" = ( +"aza" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/steeldecal/steel_decals4{ dir = 5 @@ -16209,7 +16209,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"zb" = ( +"azb" = ( /obj/machinery/conveyor{ dir = 1; id = "packageSort1" @@ -16219,7 +16219,7 @@ }, /turf/simulated/floor, /area/quartermaster/delivery) -"zc" = ( +"azc" = ( /obj/structure/table/standard, /obj/item/weapon/hand_labeler, /obj/machinery/recharger, @@ -16227,7 +16227,7 @@ /obj/effect/floor_decal/corner/brown/border, /turf/simulated/floor/tiled, /area/quartermaster/office) -"zd" = ( +"azd" = ( /obj/structure/table/standard, /obj/item/weapon/tape_roll, /obj/item/weapon/storage/firstaid/regular{ @@ -16242,7 +16242,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"ze" = ( +"aze" = ( /obj/item/weapon/coin/silver, /obj/item/weapon/coin/silver, /obj/item/weapon/coin/silver, @@ -16256,7 +16256,7 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark, /area/security/nuke_storage) -"zf" = ( +"azf" = ( /obj/item/stack/material/gold, /obj/item/weapon/storage/belt/champion, /obj/effect/floor_decal/industrial/outline/yellow, @@ -16272,7 +16272,7 @@ /obj/item/weapon/coin/gold, /turf/simulated/floor/tiled/dark, /area/security/nuke_storage) -"zg" = ( +"azg" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/item/clothing/suit/space/void/wizard, /obj/item/clothing/head/helmet/space/void/wizard, @@ -16282,14 +16282,14 @@ }, /turf/simulated/floor/tiled/dark, /area/security/nuke_storage) -"zh" = ( +"azh" = ( /obj/structure/filingcabinet/security{ name = "Security Records" }, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark, /area/security/nuke_storage) -"zi" = ( +"azi" = ( /obj/structure/filingcabinet/medical{ desc = "A large cabinet with hard copy medical records."; name = "Medical Records" @@ -16300,13 +16300,13 @@ }, /turf/simulated/floor/tiled/dark, /area/security/nuke_storage) -"zj" = ( +"azj" = ( /obj/structure/cable{ icon_state = "4-8" }, /turf/simulated/wall/r_wall, /area/security/nuke_storage) -"zk" = ( +"azk" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor/glass, @@ -16325,7 +16325,7 @@ }, /turf/simulated/floor/plating, /area/hallway/station/upper) -"zl" = ( +"azl" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor/glass, @@ -16339,7 +16339,7 @@ /obj/structure/sign/warning/high_voltage, /turf/simulated/floor/plating, /area/hallway/station/upper) -"zm" = ( +"azm" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -16349,7 +16349,7 @@ }, /turf/simulated/floor/tiled/dark, /area/lawoffice) -"zn" = ( +"azn" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/blast/regular{ density = 0; @@ -16366,7 +16366,7 @@ /obj/structure/window/reinforced/full, /turf/simulated/floor, /area/security/lobby) -"zo" = ( +"azo" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/blast/regular{ density = 0; @@ -16391,7 +16391,7 @@ /obj/structure/window/reinforced/full, /turf/simulated/floor, /area/security/lobby) -"zp" = ( +"azp" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/blast/regular{ density = 0; @@ -16409,13 +16409,13 @@ /obj/structure/window/reinforced/full, /turf/simulated/floor, /area/security/lobby) -"zq" = ( +"azq" = ( /obj/machinery/door/firedoor/glass, /obj/structure/grille, /obj/structure/window/reinforced/full, /turf/simulated/floor, /area/security/lobby) -"zr" = ( +"azr" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/blast/shutters{ density = 0; @@ -16435,7 +16435,7 @@ dir = 4 }, /area/medical/reception) -"zs" = ( +"azs" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/medical{ name = "EMT Bay" @@ -16450,10 +16450,10 @@ }, /turf/simulated/floor/tiled/dark, /area/medical/medbay_emt_bay) -"zt" = ( +"azt" = ( /turf/simulated/wall, /area/security/lobby) -"zu" = ( +"azu" = ( /obj/structure/cable{ icon_state = "1-2" }, @@ -16464,7 +16464,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor, /area/maintenance/station/elevator) -"zv" = ( +"azv" = ( /obj/effect/floor_decal/corner/lightgrey{ dir = 9 }, @@ -16479,7 +16479,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"zw" = ( +"azw" = ( /obj/effect/floor_decal/corner/lightgrey{ dir = 9 }, @@ -16490,7 +16490,7 @@ /obj/structure/table/reinforced, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"zx" = ( +"azx" = ( /obj/effect/floor_decal/corner/lightgrey{ dir = 6 }, @@ -16501,7 +16501,7 @@ /obj/structure/table/reinforced, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"zy" = ( +"azy" = ( /obj/effect/floor_decal/corner/lightgrey{ dir = 6 }, @@ -16516,7 +16516,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"zz" = ( +"azz" = ( /obj/effect/floor_decal/corner/lightgrey{ dir = 9 }, @@ -16531,7 +16531,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"zA" = ( +"azA" = ( /obj/structure/cable{ icon_state = "1-2" }, @@ -16546,14 +16546,14 @@ /obj/machinery/door/firedoor/glass/hidden/steel, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"zB" = ( +"azB" = ( /obj/structure/disposalpipe/segment, /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 1 }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"zC" = ( +"azC" = ( /obj/machinery/alarm{ dir = 4; icon_state = "alarm0"; @@ -16564,13 +16564,13 @@ /obj/structure/catwalk, /turf/simulated/floor/plating, /area/maintenance/station/cargo) -"zD" = ( +"azD" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/floor_decal/rust, /obj/structure/catwalk, /turf/simulated/floor/plating, /area/maintenance/station/cargo) -"zE" = ( +"azE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -16580,7 +16580,7 @@ }, /turf/simulated/floor/tiled, /area/maintenance/station/cargo) -"zF" = ( +"azF" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 8 @@ -16594,7 +16594,7 @@ /obj/machinery/light, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"zG" = ( +"azG" = ( /obj/effect/floor_decal/corner/lightgrey{ dir = 9 }, @@ -16616,7 +16616,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"zH" = ( +"azH" = ( /obj/effect/floor_decal/corner/lightgrey{ dir = 9 }, @@ -16638,7 +16638,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"zI" = ( +"azI" = ( /obj/effect/floor_decal/corner/lightgrey{ dir = 9 }, @@ -16660,14 +16660,14 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"zJ" = ( +"azJ" = ( /obj/structure/sign/poster{ pixel_x = 0; pixel_y = 0 }, /turf/simulated/wall, /area/quartermaster/qm) -"zK" = ( +"azK" = ( /obj/structure/grille, /obj/machinery/door/firedoor/glass, /obj/structure/window/reinforced/polarized/full{ @@ -16675,10 +16675,10 @@ }, /turf/simulated/floor/plating, /area/quartermaster/qm) -"zL" = ( +"azL" = ( /turf/simulated/wall, /area/quartermaster/qm) -"zM" = ( +"azM" = ( /obj/machinery/door/airlock/mining{ name = "Quartermaster"; req_access = list(41); @@ -16689,14 +16689,14 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/steel_grid, /area/quartermaster/qm) -"zN" = ( +"azN" = ( /obj/structure/symbol/pr, /turf/simulated/wall, /area/quartermaster/qm) -"zO" = ( +"azO" = ( /turf/simulated/wall, /area/quartermaster/storage) -"zP" = ( +"azP" = ( /obj/structure/cable/green{ d1 = 2; d2 = 8; @@ -16720,7 +16720,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"zQ" = ( +"azQ" = ( /obj/machinery/door/airlock/glass_mining{ name = "Cargo Bay"; req_access = list(31); @@ -16732,13 +16732,13 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/steel_grid, /area/quartermaster/office) -"zR" = ( +"azR" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor/border_only, /turf/simulated/floor/plating, /area/quartermaster/office) -"zS" = ( +"azS" = ( /obj/machinery/alarm{ dir = 4; icon_state = "alarm0"; @@ -16747,10 +16747,10 @@ }, /turf/simulated/floor/tiled/dark, /area/security/nuke_storage) -"zT" = ( +"azT" = ( /turf/simulated/floor/tiled/dark, /area/security/nuke_storage) -"zU" = ( +"azU" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -16758,7 +16758,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/nuke_storage) -"zV" = ( +"azV" = ( /obj/structure/closet/emcloset, /obj/effect/floor_decal/borderfloor{ dir = 9 @@ -16782,7 +16782,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"zW" = ( +"azW" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -16795,7 +16795,7 @@ /obj/effect/floor_decal/steeldecal/steel_decals7, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"zX" = ( +"azX" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -16816,7 +16816,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"zY" = ( +"azY" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -16829,7 +16829,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"zZ" = ( +"azZ" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -16847,7 +16847,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"Aa" = ( +"aAa" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -16866,7 +16866,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"Ab" = ( +"aAb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, @@ -16887,12 +16887,12 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"Ac" = ( +"aAc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"Ad" = ( +"aAd" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -16914,7 +16914,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"Ae" = ( +"aAe" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -16927,7 +16927,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"Af" = ( +"aAf" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -16946,7 +16946,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"Ag" = ( +"aAg" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -16968,7 +16968,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"Ah" = ( +"aAh" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -16983,26 +16983,26 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"Ai" = ( +"aAi" = ( /obj/effect/decal/cleanable/dirt, /obj/random/junk, /obj/structure/catwalk, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/station/cargo) -"Aj" = ( +"aAj" = ( /obj/structure/catwalk, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/station/cargo) -"Ak" = ( +"aAk" = ( /obj/structure/catwalk, /obj/effect/decal/cleanable/dirt, /obj/machinery/door/airlock/maintenance/common, /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, /area/maintenance/station/cargo) -"Al" = ( +"aAl" = ( /obj/structure/table/reinforced, /obj/machinery/chemical_dispenser/full, /obj/effect/floor_decal/borderfloorwhite{ @@ -17013,7 +17013,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/chemistry) -"Am" = ( +"aAm" = ( /obj/machinery/chem_master, /obj/effect/floor_decal/borderfloorwhite{ dir = 1 @@ -17023,13 +17023,13 @@ }, /turf/simulated/floor/tiled/white, /area/medical/chemistry) -"An" = ( +"aAn" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 }, /turf/simulated/floor/tiled/white, /area/shuttle/medivac/general) -"Ao" = ( +"aAo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/borderfloor{ @@ -17051,7 +17051,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"Ap" = ( +"aAp" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -17073,7 +17073,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"Aq" = ( +"aAq" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -17092,7 +17092,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"Ar" = ( +"aAr" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -17109,7 +17109,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"As" = ( +"aAs" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -17125,7 +17125,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"At" = ( +"aAt" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -17144,7 +17144,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"Au" = ( +"aAu" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -17159,7 +17159,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"Av" = ( +"aAv" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment{ @@ -17182,7 +17182,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"Aw" = ( +"aAw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -17197,7 +17197,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"Ax" = ( +"aAx" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -17209,14 +17209,14 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"Ay" = ( +"aAy" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"Az" = ( +"aAz" = ( /obj/structure/table/reinforced, /obj/machinery/chemical_dispenser/full, /obj/machinery/requests_console{ @@ -17239,7 +17239,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/chemistry) -"AA" = ( +"aAA" = ( /obj/machinery/disposal, /obj/machinery/alarm{ dir = 4; @@ -17261,7 +17261,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"AB" = ( +"aAB" = ( /obj/structure/flora/pottedplant/stoutbush, /obj/structure/disposalpipe/segment{ dir = 4 @@ -17280,7 +17280,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"AC" = ( +"aAC" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -17289,7 +17289,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"AD" = ( +"aAD" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, @@ -17300,7 +17300,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"AE" = ( +"aAE" = ( /obj/machinery/computer/transhuman/designer, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -17319,7 +17319,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"AF" = ( +"aAF" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -17338,7 +17338,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"AG" = ( +"aAG" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock{ name = "Secondary Janitorial Closet"; @@ -17353,14 +17353,14 @@ }, /turf/simulated/floor/tiled, /area/maintenance/station/cargo) -"AH" = ( +"aAH" = ( /turf/simulated/wall, /area/maintenance/station/cargo) -"AI" = ( +"aAI" = ( /obj/structure/filingcabinet, /turf/simulated/floor/wood, /area/quartermaster/qm) -"AJ" = ( +"aAJ" = ( /obj/machinery/requests_console{ department = "Cargo Bay"; departmentType = 2; @@ -17370,7 +17370,7 @@ /obj/machinery/computer/security/mining, /turf/simulated/floor/wood, /area/quartermaster/qm) -"AK" = ( +"aAK" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -17381,21 +17381,21 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/foyer) -"AL" = ( +"aAL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/wood, /area/quartermaster/qm) -"AM" = ( +"aAM" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk, /turf/simulated/floor/wood, /area/quartermaster/qm) -"AN" = ( +"aAN" = ( /obj/machinery/status_display/supply_display, /turf/simulated/wall, /area/quartermaster/qm) -"AO" = ( +"aAO" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/brown/border, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -17408,7 +17408,7 @@ /obj/machinery/light, /turf/simulated/floor/tiled, /area/quartermaster/foyer) -"AP" = ( +"aAP" = ( /obj/machinery/light{ dir = 1 }, @@ -17417,7 +17417,7 @@ /obj/item/weapon/storage/backpack/dufflebag, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"AQ" = ( +"aAQ" = ( /obj/machinery/light_switch{ dir = 2; name = "light switch "; @@ -17428,7 +17428,7 @@ /obj/item/weapon/stamp/cargo, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"AR" = ( +"aAR" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -17452,7 +17452,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/quartermaster/office) -"AS" = ( +"aAS" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/steeldecal/steel_decals4{ dir = 4 @@ -17462,7 +17462,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"AT" = ( +"aAT" = ( /obj/structure/cable/green{ icon_state = "0-4" }, @@ -17476,7 +17476,7 @@ /obj/item/weapon/stamp/cargo, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"AU" = ( +"aAU" = ( /obj/structure/table/standard, /obj/item/weapon/hand_labeler, /obj/item/weapon/folder/yellow, @@ -17486,18 +17486,18 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"AV" = ( +"aAV" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"AW" = ( +"aAW" = ( /obj/structure/closet/emcloset, /obj/machinery/status_display/supply_display{ pixel_y = 32 }, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"AX" = ( +"aAX" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor/glass, @@ -17506,7 +17506,7 @@ }, /turf/simulated/floor/plating, /area/quartermaster/storage) -"AY" = ( +"aAY" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -17517,7 +17517,7 @@ }, /turf/simulated/floor/tiled, /area/teleporter/departing) -"AZ" = ( +"aAZ" = ( /obj/structure/table/glass, /obj/item/weapon/storage/firstaid/regular, /obj/effect/floor_decal/borderfloorwhite{ @@ -17528,26 +17528,26 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"Ba" = ( +"aBa" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled, /area/tether/station/stairs_three) -"Bb" = ( +"aBb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, /turf/simulated/floor/tiled/dark, /area/security/nuke_storage) -"Bc" = ( +"aBc" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /turf/simulated/floor/tiled/dark, /area/security/nuke_storage) -"Bd" = ( +"aBd" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -17561,7 +17561,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/nuke_storage) -"Be" = ( +"aBe" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -17583,7 +17583,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/nuke_storage) -"Bf" = ( +"aBf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, @@ -17595,7 +17595,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"Bg" = ( +"aBg" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" @@ -17623,7 +17623,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"Bh" = ( +"aBh" = ( /obj/structure/filingcabinet/medical{ desc = "A large cabinet with hard copy medical records."; name = "Medical Records" @@ -17643,7 +17643,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"Bi" = ( +"aBi" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, @@ -17658,7 +17658,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"Bj" = ( +"aBj" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -17675,7 +17675,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"Bk" = ( +"aBk" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -17693,7 +17693,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"Bl" = ( +"aBl" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, @@ -17707,7 +17707,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"Bm" = ( +"aBm" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, @@ -17722,7 +17722,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"Bn" = ( +"aBn" = ( /obj/structure/cable{ icon_state = "2-4" }, @@ -17738,7 +17738,7 @@ /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"Bo" = ( +"aBo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -17755,7 +17755,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"Bp" = ( +"aBp" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -17772,7 +17772,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"Bq" = ( +"aBq" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -17786,7 +17786,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"Br" = ( +"aBr" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -17806,7 +17806,7 @@ /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"Bs" = ( +"aBs" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -17823,7 +17823,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"Bt" = ( +"aBt" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -17841,7 +17841,7 @@ /obj/machinery/door/firedoor/glass/hidden/steel, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"Bu" = ( +"aBu" = ( /obj/structure/table/rack, /obj/item/device/gps/medical{ pixel_y = 3 @@ -17874,7 +17874,7 @@ /obj/effect/floor_decal/steeldecal/steel_decals9, /turf/simulated/floor/tiled/dark, /area/medical/medbay_emt_bay) -"Bv" = ( +"aBv" = ( /obj/machinery/light{ dir = 1 }, @@ -17892,10 +17892,10 @@ }, /turf/simulated/floor/tiled/dark, /area/medical/medbay_emt_bay) -"Bw" = ( +"aBw" = ( /turf/simulated/floor/tiled/dark, /area/medical/medbay_emt_bay) -"Bx" = ( +"aBx" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 5 }, @@ -17910,7 +17910,7 @@ }, /turf/simulated/floor/tiled/dark, /area/medical/medbay_emt_bay) -"By" = ( +"aBy" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/structure/cable{ @@ -17923,7 +17923,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"Bz" = ( +"aBz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -17937,7 +17937,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"BA" = ( +"aBA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -17952,7 +17952,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"BB" = ( +"aBB" = ( /obj/machinery/suit_cycler/medical, /obj/effect/floor_decal/corner/paleblue{ dir = 6 @@ -17976,7 +17976,7 @@ }, /turf/simulated/floor/tiled/dark, /area/medical/medbay_emt_bay) -"BC" = ( +"aBC" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /obj/machinery/door/firedoor/glass/hidden/steel{ @@ -17984,10 +17984,10 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"BD" = ( +"aBD" = ( /turf/simulated/wall, /area/maintenance/substation/medical) -"BE" = ( +"aBE" = ( /obj/structure/table/reinforced, /obj/item/weapon/reagent_containers/glass/beaker/large, /obj/item/weapon/reagent_containers/dropper, @@ -18004,7 +18004,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/chemistry) -"BF" = ( +"aBF" = ( /obj/structure/table/reinforced, /obj/machinery/light{ dir = 1 @@ -18018,7 +18018,7 @@ /obj/machinery/chemical_dispenser/biochemistry/full, /turf/simulated/floor/tiled/white, /area/medical/chemistry) -"BG" = ( +"aBG" = ( /obj/structure/table/reinforced, /obj/item/weapon/reagent_containers/glass/beaker/large, /obj/item/weapon/reagent_containers/dropper, @@ -18030,7 +18030,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/chemistry) -"BH" = ( +"aBH" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ d1 = 1; @@ -18039,7 +18039,7 @@ }, /turf/simulated/floor, /area/maintenance/station/cargo) -"BI" = ( +"aBI" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ d1 = 1; @@ -18054,7 +18054,7 @@ }, /turf/simulated/floor, /area/maintenance/station/cargo) -"BJ" = ( +"aBJ" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor/glass, @@ -18066,12 +18066,12 @@ }, /turf/simulated/floor/plating, /area/medical/chemistry) -"BK" = ( +"aBK" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/manifold/hidden, /turf/simulated/floor/tiled, /area/security/eva) -"BL" = ( +"aBL" = ( /obj/machinery/camera/network/cargo{ icon_state = "camera"; dir = 8 @@ -18079,7 +18079,7 @@ /obj/effect/floor_decal/industrial/warning/corner, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"BM" = ( +"aBM" = ( /obj/machinery/button/windowtint{ id = "qm_office"; pixel_x = 26; @@ -18093,7 +18093,7 @@ }, /turf/simulated/floor/wood, /area/quartermaster/qm) -"BN" = ( +"aBN" = ( /obj/structure/table/standard, /obj/item/weapon/folder/yellow, /obj/item/weapon/pen{ @@ -18106,7 +18106,7 @@ }, /turf/simulated/floor/wood, /area/quartermaster/qm) -"BO" = ( +"aBO" = ( /obj/structure/bed/chair{ dir = 8 }, @@ -18114,7 +18114,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/wood, /area/quartermaster/qm) -"BP" = ( +"aBP" = ( /obj/structure/cable/green{ d2 = 2; icon_state = "0-2" @@ -18127,7 +18127,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/wood, /area/quartermaster/qm) -"BQ" = ( +"aBQ" = ( /obj/structure/table/reinforced, /obj/machinery/reagentgrinder, /obj/machinery/atmospherics/unary/vent_scrubber/on{ @@ -18146,7 +18146,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/chemistry) -"BR" = ( +"aBR" = ( /obj/structure/cable/green{ d1 = 1; d2 = 4; @@ -18158,7 +18158,7 @@ }, /turf/simulated/floor/wood, /area/quartermaster/qm) -"BS" = ( +"aBS" = ( /obj/structure/table/standard, /obj/structure/cable/green{ d1 = 1; @@ -18180,33 +18180,33 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/quartermaster/office) -"BT" = ( +"aBT" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"BU" = ( +"aBU" = ( /turf/simulated/floor/tiled, /area/quartermaster/storage) -"BV" = ( +"aBV" = ( /obj/machinery/firealarm{ dir = 8; pixel_x = -26 }, /turf/simulated/floor/tiled/dark, /area/security/nuke_storage) -"BW" = ( +"aBW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, /turf/simulated/floor/tiled/dark, /area/security/nuke_storage) -"BX" = ( +"aBX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/tiled/dark, /area/security/nuke_storage) -"BY" = ( +"aBY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 }, @@ -18215,7 +18215,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/nuke_storage) -"BZ" = ( +"aBZ" = ( /obj/effect/floor_decal/borderfloor{ dir = 10 }, @@ -18234,7 +18234,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"Ca" = ( +"aCa" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -18245,7 +18245,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"Cb" = ( +"aCb" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /obj/machinery/firealarm{ @@ -18264,7 +18264,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"Cc" = ( +"aCc" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/paleblue/border, /obj/machinery/door/firedoor/glass/hidden/steel{ @@ -18272,7 +18272,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"Cd" = ( +"aCd" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /obj/effect/floor_decal/borderfloor/corner2{ @@ -18289,7 +18289,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"Ce" = ( +"aCe" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -18306,7 +18306,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"Cf" = ( +"aCf" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /obj/effect/floor_decal/borderfloor/corner2, @@ -18319,7 +18319,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"Cg" = ( +"aCg" = ( /obj/structure/table/rack{ dir = 8; layer = 2.9 @@ -18329,13 +18329,13 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/warehouse) -"Ch" = ( +"aCh" = ( /obj/effect/floor_decal/steeldecal/steel_decals6{ dir = 8 }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"Ci" = ( +"aCi" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ d1 = 1; @@ -18347,7 +18347,7 @@ /obj/effect/floor_decal/steeldecal/steel_decals6, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"Cj" = ( +"aCj" = ( /obj/machinery/light, /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 8 @@ -18361,7 +18361,7 @@ /obj/effect/floor_decal/corner/paleblue/bordercorner2, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"Ck" = ( +"aCk" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/paleblue/border, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -18372,16 +18372,16 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"Cl" = ( +"aCl" = ( /turf/simulated/floor/tiled/white, /area/medical/reception) -"Cm" = ( +"aCm" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, /area/medical/reception) -"Cn" = ( +"aCn" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 4 }, @@ -18396,7 +18396,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"Co" = ( +"aCo" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -18417,7 +18417,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"Cp" = ( +"aCp" = ( /obj/structure/bed/chair/office/light{ dir = 8 }, @@ -18426,14 +18426,14 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"Cq" = ( +"aCq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"Cr" = ( +"aCr" = ( /obj/structure/filingcabinet/chestdrawer{ name = "Medical Forms" }, @@ -18452,7 +18452,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"Cs" = ( +"aCs" = ( /obj/structure/table/rack, /obj/item/weapon/storage/toolbox/mechanical, /obj/item/device/multitool, @@ -18474,7 +18474,7 @@ /obj/effect/floor_decal/steeldecal/steel_decals9, /turf/simulated/floor/tiled/dark, /area/medical/medbay_emt_bay) -"Ct" = ( +"aCt" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 8 }, @@ -18483,11 +18483,11 @@ }, /turf/simulated/floor/tiled/dark, /area/medical/medbay_emt_bay) -"Cu" = ( +"aCu" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled/dark, /area/lawoffice) -"Cv" = ( +"aCv" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 4 }, @@ -18496,7 +18496,7 @@ }, /turf/simulated/floor/tiled/dark, /area/medical/medbay_emt_bay) -"Cw" = ( +"aCw" = ( /obj/structure/table/rack, /obj/item/clothing/shoes/magboots, /obj/item/clothing/suit/space/void/medical/emt, @@ -18525,7 +18525,7 @@ }, /turf/simulated/floor/tiled/dark, /area/medical/medbay_emt_bay) -"Cx" = ( +"aCx" = ( /obj/effect/floor_decal/rust, /obj/structure/railing{ icon_state = "railing0"; @@ -18535,13 +18535,13 @@ /obj/random/maintenance/clean, /turf/simulated/floor/plating, /area/maintenance/station/cargo) -"Cy" = ( +"aCy" = ( /obj/machinery/power/breakerbox/activated{ RCon_tag = "Medical Substation Bypass" }, /turf/simulated/floor/plating, /area/maintenance/substation/medical) -"Cz" = ( +"aCz" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -18557,10 +18557,10 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/medical) -"CA" = ( +"aCA" = ( /turf/simulated/floor/outdoors/grass/forest, /area/quartermaster/qm) -"CB" = ( +"aCB" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -18573,7 +18573,7 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, /area/maintenance/substation/medical) -"CC" = ( +"aCC" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ icon_state = "1-8" @@ -18585,10 +18585,10 @@ }, /turf/simulated/floor, /area/maintenance/station/cargo) -"CD" = ( +"aCD" = ( /turf/simulated/floor/wood, /area/quartermaster/qm) -"CE" = ( +"aCE" = ( /obj/structure/table/standard, /obj/item/weapon/clipboard, /obj/item/weapon/stamp/qm, @@ -18597,14 +18597,14 @@ }, /turf/simulated/floor/wood, /area/quartermaster/qm) -"CF" = ( +"aCF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, /turf/simulated/floor/wood, /area/quartermaster/qm) -"CG" = ( +"aCG" = ( /obj/machinery/embedded_controller/radio/simple_docking_controller{ frequency = 1380; id_tag = "cargo_bay"; @@ -18617,7 +18617,7 @@ /obj/effect/floor_decal/industrial/warning/corner, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"CH" = ( +"aCH" = ( /obj/machinery/door/airlock/mining{ name = "Quartermaster"; req_access = list(41); @@ -18637,7 +18637,7 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/quartermaster/qm) -"CI" = ( +"aCI" = ( /obj/structure/cable/green{ d1 = 2; d2 = 8; @@ -18659,7 +18659,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"CJ" = ( +"aCJ" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -18670,7 +18670,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"CK" = ( +"aCK" = ( /obj/item/weapon/paper_bin{ pixel_x = -3; pixel_y = 7 @@ -18699,7 +18699,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/quartermaster/office) -"CL" = ( +"aCL" = ( /obj/structure/disposalpipe/sortjunction{ dir = 1; icon_state = "pipe-j1s"; @@ -18709,17 +18709,17 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/quartermaster/office) -"CM" = ( +"aCM" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"CN" = ( +"aCN" = ( /obj/effect/floor_decal/industrial/warning/corner, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"CO" = ( +"aCO" = ( /obj/machinery/conveyor_switch/oneway{ convdir = -1; id = "QMLoad2" @@ -18733,13 +18733,13 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"CP" = ( +"aCP" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, /area/quartermaster/storage) -"CQ" = ( +"aCQ" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor/glass, @@ -18748,7 +18748,7 @@ }, /turf/simulated/floor/plating, /area/quartermaster/storage) -"CR" = ( +"aCR" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor/glass, @@ -18767,7 +18767,7 @@ }, /turf/simulated/floor/plating, /area/quartermaster/storage) -"CS" = ( +"aCS" = ( /obj/effect/shuttle_landmark{ base_area = /area/space; base_turf = /turf/simulated/floor/airless; @@ -18777,7 +18777,7 @@ }, /turf/simulated/floor/airless, /area/space) -"CT" = ( +"aCT" = ( /obj/structure/safe, /obj/item/clothing/under/color/yellow, /obj/item/toy/katana, @@ -18788,7 +18788,7 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark, /area/security/nuke_storage) -"CU" = ( +"aCU" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/closet/crate/secure/large/reinforced{ anchored = 1; @@ -18801,7 +18801,7 @@ /obj/item/ammo_magazine/s44, /turf/simulated/floor/tiled/dark, /area/security/nuke_storage) -"CV" = ( +"aCV" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, @@ -18819,7 +18819,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"CW" = ( +"aCW" = ( /obj/machinery/power/apc{ dir = 2; name = "south bump"; @@ -18829,14 +18829,14 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark, /area/security/nuke_storage) -"CX" = ( +"aCX" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/cable{ icon_state = "1-4" }, /turf/simulated/floor/tiled/dark, /area/security/nuke_storage) -"CY" = ( +"aCY" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor/glass, @@ -18853,7 +18853,7 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/hallway/station/upper) -"CZ" = ( +"aCZ" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor/glass, @@ -18865,16 +18865,16 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/hallway/station/upper) -"Da" = ( +"aDa" = ( /turf/simulated/wall, /area/teleporter/departing) -"Db" = ( +"aDb" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, /area/teleporter/departing) -"Dc" = ( +"aDc" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -18889,7 +18889,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/steel_grid, /area/teleporter/departing) -"Dd" = ( +"aDd" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/power/apc{ dir = 1; @@ -18903,7 +18903,7 @@ }, /turf/simulated/floor, /area/maintenance/station/cargo) -"De" = ( +"aDe" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table/rack{ dir = 1 @@ -18912,10 +18912,10 @@ /obj/random/maintenance/clean, /turf/simulated/floor, /area/maintenance/station/cargo) -"Df" = ( +"aDf" = ( /turf/simulated/wall, /area/tether/station/stairs_three) -"Dg" = ( +"aDg" = ( /obj/machinery/door/airlock/multi_tile/glass{ name = "Stairwell" }, @@ -18927,7 +18927,7 @@ dir = 8 }, /area/tether/station/stairs_three) -"Dh" = ( +"aDh" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -18944,7 +18944,7 @@ dir = 4 }, /area/tether/station/stairs_three) -"Di" = ( +"aDi" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/closet, /obj/random/junk, @@ -18953,11 +18953,11 @@ /obj/random/tech_supply, /turf/simulated/floor, /area/maintenance/station/cargo) -"Dj" = ( +"aDj" = ( /obj/structure/sign/department/medbay, /turf/simulated/wall, /area/medical/reception) -"Dk" = ( +"aDk" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor/glass, @@ -18977,10 +18977,10 @@ }, /turf/simulated/floor/plating, /area/medical/reception) -"Dl" = ( +"aDl" = ( /turf/simulated/wall, /area/medical/reception) -"Dm" = ( +"aDm" = ( /obj/structure/table/rack, /obj/item/device/defib_kit/compact/loaded, /obj/effect/floor_decal/corner/paleblue{ @@ -19001,14 +19001,14 @@ /obj/effect/floor_decal/steeldecal/steel_decals9, /turf/simulated/floor/tiled/dark, /area/medical/medbay_emt_bay) -"Dn" = ( +"aDn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ icon_state = "intact-scrubbers"; dir = 4 }, /turf/simulated/floor/tiled/white, /area/medical/chemistry) -"Do" = ( +"aDo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 }, @@ -19016,7 +19016,7 @@ /obj/structure/disposalpipe/trunk, /turf/simulated/floor/tiled/white, /area/medical/chemistry) -"Dp" = ( +"aDp" = ( /obj/structure/table/reinforced, /obj/item/weapon/reagent_containers/spray/cleaner{ desc = "Someone has crossed out the 'Space' from Space Cleaner and written in Chemistry. Scrawled on the back is, 'Okay, whoever filled this with polytrinic acid, it was only funny the first time. It was hard enough replacing the CMO's first cat!'"; @@ -19036,7 +19036,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/chemistry) -"Dq" = ( +"aDq" = ( /obj/structure/bed/chair{ dir = 4 }, @@ -19054,14 +19054,14 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"Dr" = ( +"aDr" = ( /obj/effect/floor_decal/steeldecal/steel_decals10, /obj/effect/floor_decal/steeldecal/steel_decals10{ dir = 4 }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"Ds" = ( +"aDs" = ( /obj/structure/table/glass, /obj/item/weapon/paper_bin, /obj/item/weapon/pen, @@ -19071,7 +19071,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"Dt" = ( +"aDt" = ( /obj/structure/table/glass, /obj/item/weapon/folder/white{ pixel_y = 4 @@ -19084,7 +19084,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"Du" = ( +"aDu" = ( /obj/machinery/photocopier, /obj/machinery/light{ dir = 4 @@ -19097,7 +19097,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"Dv" = ( +"aDv" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -19106,7 +19106,7 @@ }, /turf/simulated/floor/wood, /area/quartermaster/qm) -"Dw" = ( +"aDw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, @@ -19116,7 +19116,7 @@ }, /turf/simulated/floor/wood, /area/quartermaster/qm) -"Dx" = ( +"aDx" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -19124,19 +19124,19 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"Dy" = ( +"aDy" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"Dz" = ( +"aDz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"DA" = ( +"aDA" = ( /obj/structure/bed/chair/office/dark{ dir = 4 }, @@ -19157,20 +19157,20 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/quartermaster/office) -"DB" = ( +"aDB" = ( /obj/effect/floor_decal/industrial/loading{ dir = 8 }, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"DC" = ( +"aDC" = ( /obj/machinery/conveyor{ dir = 4; id = "QMLoad2" }, /turf/simulated/floor, /area/quartermaster/storage) -"DD" = ( +"aDD" = ( /obj/machinery/door/firedoor/border_only, /obj/machinery/door/airlock/glass_external, /obj/machinery/conveyor{ @@ -19180,7 +19180,7 @@ /obj/effect/map_helper/airlock/door/simple, /turf/simulated/floor/plating, /area/quartermaster/storage) -"DE" = ( +"aDE" = ( /obj/structure/table/standard, /obj/item/weapon/storage/fancy/cigarettes{ pixel_y = 2 @@ -19202,7 +19202,7 @@ /obj/effect/floor_decal/corner_steel_grid, /turf/simulated/floor/tiled, /area/teleporter/departing) -"DF" = ( +"aDF" = ( /obj/structure/table/glass, /obj/item/weapon/storage/box/cups, /obj/item/weapon/storage/box/cups{ @@ -19223,7 +19223,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"DG" = ( +"aDG" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -19237,7 +19237,7 @@ }, /turf/simulated/floor/tiled, /area/teleporter/departing) -"DH" = ( +"aDH" = ( /obj/structure/cable{ d1 = 1; d2 = 8; @@ -19261,7 +19261,7 @@ }, /turf/simulated/floor/tiled, /area/teleporter/departing) -"DI" = ( +"aDI" = ( /obj/effect/floor_decal/corner_steel_grid{ dir = 10 }, @@ -19270,7 +19270,7 @@ }, /turf/simulated/floor/tiled, /area/teleporter/departing) -"DJ" = ( +"aDJ" = ( /obj/effect/floor_decal/corner_steel_grid{ dir = 10 }, @@ -19280,7 +19280,7 @@ }, /turf/simulated/floor/tiled, /area/teleporter/departing) -"DK" = ( +"aDK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, @@ -19292,7 +19292,7 @@ }, /turf/simulated/floor/tiled, /area/tether/station/stairs_three) -"DL" = ( +"aDL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 @@ -19308,7 +19308,7 @@ /obj/structure/cable, /turf/simulated/floor/tiled, /area/tether/station/stairs_three) -"DM" = ( +"aDM" = ( /obj/machinery/mech_recharger, /obj/effect/floor_decal/corner/paleblue{ dir = 9 @@ -19333,7 +19333,7 @@ }, /turf/simulated/floor/tiled/dark, /area/medical/medbay_emt_bay) -"DN" = ( +"aDN" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 1 }, @@ -19342,7 +19342,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"DO" = ( +"aDO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -19365,11 +19365,11 @@ }, /turf/simulated/floor/tiled, /area/security/hallway) -"DP" = ( +"aDP" = ( /obj/structure/table/steel, /turf/simulated/floor/tiled, /area/security/security_processing) -"DQ" = ( +"aDQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, @@ -19378,7 +19378,7 @@ }, /turf/simulated/floor/tiled/dark, /area/medical/medbay_emt_bay) -"DR" = ( +"aDR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -19390,7 +19390,7 @@ }, /turf/simulated/floor/tiled/dark, /area/medical/medbay_emt_bay) -"DS" = ( +"aDS" = ( /obj/structure/table/rack, /obj/item/clothing/shoes/magboots, /obj/item/clothing/suit/space/void/medical/emt, @@ -19421,7 +19421,7 @@ }, /turf/simulated/floor/tiled/dark, /area/medical/medbay_emt_bay) -"DT" = ( +"aDT" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/floor_decal/rust, /obj/random/maintenance/cargo, @@ -19437,7 +19437,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/station/cargo) -"DU" = ( +"aDU" = ( /obj/machinery/power/smes/buildable{ charge = 0; output_attempt = 0; @@ -19454,7 +19454,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/medical) -"DV" = ( +"aDV" = ( /obj/structure/table/woodentable, /obj/item/device/taperecorder{ pixel_x = -4; @@ -19466,7 +19466,7 @@ }, /turf/simulated/floor/carpet, /area/security/detectives_office) -"DW" = ( +"aDW" = ( /obj/machinery/power/terminal{ dir = 8 }, @@ -19477,7 +19477,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/medical) -"DX" = ( +"aDX" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/alarm{ dir = 4; @@ -19496,7 +19496,7 @@ }, /turf/simulated/floor, /area/maintenance/station/cargo) -"DY" = ( +"aDY" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -19508,7 +19508,7 @@ }, /turf/simulated/floor, /area/maintenance/station/cargo) -"DZ" = ( +"aDZ" = ( /obj/structure/cable{ d1 = 2; d2 = 8; @@ -19523,14 +19523,14 @@ }, /turf/simulated/floor, /area/maintenance/station/cargo) -"Ea" = ( +"aEa" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor, /area/maintenance/station/cargo) -"Eb" = ( +"aEb" = ( /obj/structure/cable/green{ d1 = 2; d2 = 4; @@ -19541,7 +19541,7 @@ }, /turf/simulated/floor, /area/maintenance/station/cargo) -"Ec" = ( +"aEc" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/maintenance/cargo{ req_access = list(50); @@ -19557,7 +19557,7 @@ }, /turf/simulated/floor, /area/quartermaster/warehouse) -"Ed" = ( +"aEd" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -19568,7 +19568,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/warehouse) -"Ee" = ( +"aEe" = ( /obj/machinery/light_switch{ dir = 2; name = "light switch "; @@ -19586,7 +19586,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/warehouse) -"Ef" = ( +"aEf" = ( /obj/structure/table/reinforced, /obj/item/stack/material/phoron, /obj/item/stack/material/phoron, @@ -19610,7 +19610,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/chemistry) -"Eg" = ( +"aEg" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -19618,7 +19618,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/chemistry) -"Eh" = ( +"aEh" = ( /obj/machinery/hologram/holopad, /obj/structure/cable/green{ d1 = 2; @@ -19632,13 +19632,13 @@ }, /turf/simulated/floor/tiled/white, /area/medical/chemistry) -"Ei" = ( +"aEi" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled/white, /area/medical/chemistry) -"Ej" = ( +"aEj" = ( /obj/structure/table/reinforced, /obj/machinery/door/firedoor/glass, /obj/machinery/door/blast/shutters{ @@ -19659,7 +19659,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/chemistry) -"Ek" = ( +"aEk" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -19671,20 +19671,20 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"El" = ( +"aEl" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"Em" = ( +"aEm" = ( /obj/machinery/hologram/holopad, /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"En" = ( +"aEn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/sortjunction{ @@ -19693,7 +19693,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"Eo" = ( +"aEo" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 4 }, @@ -19708,7 +19708,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"Ep" = ( +"aEp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 }, @@ -19719,7 +19719,7 @@ /obj/machinery/camera/network/cargo, /turf/simulated/floor/outdoors/grass/forest, /area/quartermaster/qm) -"Eq" = ( +"aEq" = ( /obj/structure/table/standard, /obj/item/weapon/coin/silver, /obj/item/weapon/coin/silver, @@ -19743,16 +19743,16 @@ /obj/item/weapon/cartridge/quartermaster, /turf/simulated/floor/wood, /area/quartermaster/qm) -"Er" = ( +"aEr" = ( /obj/structure/closet/secure_closet/quartermaster, /turf/simulated/floor/wood, /area/quartermaster/qm) -"Es" = ( +"aEs" = ( /obj/structure/closet, /obj/item/weapon/storage/backpack/dufflebag, /turf/simulated/floor/wood, /area/quartermaster/qm) -"Et" = ( +"aEt" = ( /obj/structure/disposalpipe/sortjunction/flipped{ dir = 1; name = "QM Office"; @@ -19763,11 +19763,11 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"Eu" = ( +"aEu" = ( /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"Ev" = ( +"aEv" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -19785,30 +19785,30 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/quartermaster/office) -"Ew" = ( +"aEw" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"Ex" = ( +"aEx" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 4 }, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"Ey" = ( +"aEy" = ( /obj/effect/floor_decal/industrial/warning{ dir = 5 }, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"Ez" = ( +"aEz" = ( /obj/machinery/door/firedoor/border_only, /obj/machinery/door/airlock/glass_external, /obj/effect/map_helper/airlock/door/simple, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"EA" = ( +"aEA" = ( /obj/structure/closet/wardrobe/xenos, /obj/machinery/firealarm{ dir = 8; @@ -19820,13 +19820,13 @@ }, /turf/simulated/floor/tiled, /area/teleporter/departing) -"EB" = ( +"aEB" = ( /obj/effect/floor_decal/techfloor/orange{ dir = 9 }, /turf/simulated/floor/tiled/techfloor, /area/teleporter/departing) -"EC" = ( +"aEC" = ( /obj/effect/landmark{ name = "JoinLateGateway" }, @@ -19835,7 +19835,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/teleporter/departing) -"ED" = ( +"aED" = ( /obj/effect/floor_decal/techfloor/orange{ dir = 5 }, @@ -19844,14 +19844,14 @@ }, /turf/simulated/floor/tiled/techfloor, /area/teleporter/departing) -"EE" = ( +"aEE" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled, /area/tether/station/stairs_three) -"EF" = ( +"aEF" = ( /obj/machinery/button/remote/blast_door{ id = "qm_warehouse"; name = "Warehouse Door Control"; @@ -19861,7 +19861,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"EG" = ( +"aEG" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 1 }, @@ -19876,7 +19876,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"EH" = ( +"aEH" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -19897,13 +19897,13 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"EI" = ( +"aEI" = ( /obj/effect/landmark/start{ name = "Cargo Technician" }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"EJ" = ( +"aEJ" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 4 }, @@ -19912,14 +19912,14 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"EK" = ( +"aEK" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/medical{ name = "EMT Bay" }, /turf/simulated/floor/tiled/dark, /area/medical/medbay_emt_bay) -"EL" = ( +"aEL" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 6 }, @@ -19928,7 +19928,7 @@ }, /turf/simulated/floor/tiled/dark, /area/medical/medbay_emt_bay) -"EM" = ( +"aEM" = ( /obj/machinery/hologram/holopad, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/landmark/start{ @@ -19936,12 +19936,12 @@ }, /turf/simulated/floor/tiled/dark, /area/medical/medbay_emt_bay) -"EN" = ( +"aEN" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/reception) -"EO" = ( +"aEO" = ( /obj/structure/table/rack, /obj/item/weapon/rig/medical/equipped, /obj/structure/fireaxecabinet{ @@ -19965,7 +19965,7 @@ }, /turf/simulated/floor/tiled/dark, /area/medical/medbay_emt_bay) -"EP" = ( +"aEP" = ( /obj/effect/decal/cleanable/dirt, /obj/random/trash_pile, /obj/structure/railing{ @@ -19974,7 +19974,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/station/cargo) -"EQ" = ( +"aEQ" = ( /obj/machinery/alarm{ dir = 8; icon_state = "alarm0"; @@ -19984,7 +19984,7 @@ /obj/structure/catwalk, /turf/simulated/floor/plating, /area/maintenance/station/cargo) -"ER" = ( +"aER" = ( /obj/structure/bed/chair/office/dark{ dir = 1 }, @@ -19993,7 +19993,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/chemistry) -"ES" = ( +"aES" = ( /obj/structure/cable/green, /obj/structure/cable/green{ d2 = 4; @@ -20005,7 +20005,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/medical) -"ET" = ( +"aET" = ( /obj/structure/cable/green{ d2 = 8; icon_state = "0-8" @@ -20021,7 +20021,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/medical) -"EU" = ( +"aEU" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -20040,7 +20040,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/medical) -"EV" = ( +"aEV" = ( /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, /obj/structure/cable/green{ @@ -20050,7 +20050,7 @@ }, /turf/simulated/floor, /area/maintenance/station/cargo) -"EW" = ( +"aEW" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/door/airlock/engineering{ name = "Cargo Substation"; @@ -20063,7 +20063,7 @@ }, /turf/simulated/floor, /area/maintenance/substation/cargo) -"EX" = ( +"aEX" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/door/airlock/engineering{ name = "Cargo Substation"; @@ -20076,7 +20076,7 @@ }, /turf/simulated/floor, /area/maintenance/substation/cargo) -"EY" = ( +"aEY" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -20085,7 +20085,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/quartermaster/warehouse) -"EZ" = ( +"aEZ" = ( /obj/structure/table/reinforced, /obj/item/device/mass_spectrometer/adv, /obj/item/device/mass_spectrometer/adv, @@ -20108,13 +20108,13 @@ }, /turf/simulated/floor/tiled/white, /area/medical/chemistry) -"Fa" = ( +"aFa" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/tiled/white, /area/medical/chemistry) -"Fb" = ( +"aFb" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -20126,7 +20126,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/chemistry) -"Fc" = ( +"aFc" = ( /obj/structure/table/reinforced, /obj/item/weapon/hand_labeler, /obj/item/weapon/packageWrap, @@ -20144,10 +20144,10 @@ }, /turf/simulated/floor/tiled/white, /area/medical/chemistry) -"Fd" = ( +"aFd" = ( /turf/simulated/wall/r_wall, /area/tether/station/stairs_three) -"Fe" = ( +"aFe" = ( /obj/structure/bed/chair{ dir = 4 }, @@ -20165,7 +20165,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"Ff" = ( +"aFf" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -20187,12 +20187,12 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"Fg" = ( +"aFg" = ( /obj/structure/table/glass, /obj/item/weapon/storage/firstaid/regular, /turf/simulated/floor/tiled/white, /area/medical/reception) -"Fh" = ( +"aFh" = ( /obj/structure/table/glass, /obj/item/roller, /obj/item/roller{ @@ -20213,7 +20213,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"Fi" = ( +"aFi" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 8 @@ -20224,10 +20224,10 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/heads/cmo) -"Fj" = ( +"aFj" = ( /turf/simulated/wall, /area/quartermaster/warehouse) -"Fk" = ( +"aFk" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/vehicle/train/engine{ dir = 1 @@ -20239,7 +20239,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"Fl" = ( +"aFl" = ( /obj/structure/filingcabinet/filingcabinet, /obj/machinery/light{ icon_state = "tube1"; @@ -20265,14 +20265,14 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/quartermaster/office) -"Fm" = ( +"aFm" = ( /obj/structure/closet/secure_closet/medical3, /obj/item/weapon/soap/nanotrasen, /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled/white, /area/medical/medbay_primary_storage) -"Fn" = ( +"aFn" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor/glass, @@ -20292,7 +20292,7 @@ }, /turf/simulated/floor/plating, /area/quartermaster/storage) -"Fo" = ( +"aFo" = ( /obj/structure/closet/wardrobe/black, /obj/machinery/alarm{ dir = 1; @@ -20312,20 +20312,20 @@ }, /turf/simulated/floor/tiled, /area/teleporter/departing) -"Fp" = ( +"aFp" = ( /obj/effect/floor_decal/techfloor/orange{ dir = 8 }, /turf/simulated/floor/tiled/techfloor, /area/teleporter/departing) -"Fq" = ( +"aFq" = ( /obj/machinery/cryopod/robot/door/gateway, /turf/simulated/floor/tiled/techfloor, /area/teleporter/departing) -"Fr" = ( +"aFr" = ( /turf/simulated/floor/tiled/techfloor, /area/teleporter/departing) -"Fs" = ( +"aFs" = ( /obj/effect/floor_decal/techfloor/orange{ dir = 4 }, @@ -20334,7 +20334,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/teleporter/departing) -"Ft" = ( +"aFt" = ( /obj/machinery/alarm{ dir = 4; icon_state = "alarm0"; @@ -20343,13 +20343,13 @@ }, /turf/simulated/open, /area/tether/station/stairs_three) -"Fu" = ( +"aFu" = ( /obj/structure/sign/deck3{ pixel_x = 32 }, /turf/simulated/open, /area/tether/station/stairs_three) -"Fv" = ( +"aFv" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 @@ -20359,7 +20359,7 @@ }, /turf/simulated/floor/tiled/dark, /area/medical/medbay_emt_bay) -"Fw" = ( +"aFw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ icon_state = "intact-scrubbers"; dir = 4 @@ -20372,7 +20372,7 @@ }, /turf/simulated/floor/tiled/dark, /area/medical/medbay_emt_bay) -"Fx" = ( +"aFx" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -20383,7 +20383,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"Fy" = ( +"aFy" = ( /obj/structure/table/rack, /obj/item/device/suit_cooling_unit{ pixel_y = -5 @@ -20416,10 +20416,10 @@ }, /turf/simulated/floor/tiled/dark, /area/medical/medbay_emt_bay) -"Fz" = ( +"aFz" = ( /turf/simulated/wall/r_wall, /area/crew_quarters/heads/cmo) -"FA" = ( +"aFA" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ d1 = 1; @@ -20428,7 +20428,7 @@ }, /turf/simulated/floor, /area/maintenance/station/cargo) -"FB" = ( +"aFB" = ( /obj/effect/floor_decal/industrial/warning, /obj/structure/cable{ d1 = 1; @@ -20442,7 +20442,7 @@ }, /turf/simulated/floor, /area/maintenance/substation/cargo) -"FC" = ( +"aFC" = ( /obj/machinery/power/terminal, /obj/structure/cable{ icon_state = "0-8" @@ -20456,7 +20456,7 @@ }, /turf/simulated/floor, /area/maintenance/substation/cargo) -"FD" = ( +"aFD" = ( /obj/effect/floor_decal/industrial/warning/corner{ icon_state = "warningcorner"; dir = 8 @@ -20473,7 +20473,7 @@ }, /turf/simulated/floor, /area/maintenance/substation/cargo) -"FE" = ( +"aFE" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -20491,7 +20491,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/quartermaster/office) -"FF" = ( +"aFF" = ( /obj/structure/cable/green{ d1 = 1; d2 = 4; @@ -20503,10 +20503,10 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/warehouse) -"FG" = ( +"aFG" = ( /turf/simulated/floor/tiled/white, /area/medical/chemistry) -"FH" = ( +"aFH" = ( /obj/structure/closet/secure_closet/medical1, /obj/machinery/light{ dir = 8; @@ -20520,7 +20520,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/chemistry) -"FI" = ( +"aFI" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -20530,14 +20530,14 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/chemistry) -"FJ" = ( +"aFJ" = ( /obj/structure/bed/chair/office/dark, /obj/effect/landmark/start{ name = "Chemist" }, /turf/simulated/floor/tiled/white, /area/medical/chemistry) -"FK" = ( +"aFK" = ( /obj/structure/bed/chair{ dir = 4 }, @@ -20549,7 +20549,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"FL" = ( +"aFL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/junction{ @@ -20558,7 +20558,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"FM" = ( +"aFM" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -20568,7 +20568,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"FN" = ( +"aFN" = ( /obj/machinery/door/window/westright{ name = "Medbay Reception"; req_one_access = list(5) @@ -20578,14 +20578,14 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"FO" = ( +"aFO" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"FP" = ( +"aFP" = ( /obj/structure/table/glass, /obj/item/device/radio{ pixel_x = 4; @@ -20608,7 +20608,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"FQ" = ( +"aFQ" = ( /obj/structure/closet/secure_closet/paramedic, /obj/effect/floor_decal/corner/paleblue{ dir = 9 @@ -20628,12 +20628,12 @@ /obj/effect/floor_decal/steeldecal/steel_decals9, /turf/simulated/floor/tiled/dark, /area/medical/medbay_emt_bay) -"FR" = ( +"aFR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/dark, /area/medical/medbay_emt_bay) -"FS" = ( +"aFS" = ( /obj/structure/dispenser{ phorontanks = 0 }, @@ -20659,7 +20659,7 @@ }, /turf/simulated/floor/tiled/dark, /area/medical/medbay_emt_bay) -"FT" = ( +"aFT" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/paleblue/border, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -20676,7 +20676,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"FU" = ( +"aFU" = ( /obj/machinery/requests_console{ announcementConsole = 1; department = "Chief Medical Officer's Desk"; @@ -20687,7 +20687,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/heads/cmo) -"FV" = ( +"aFV" = ( /obj/machinery/light{ dir = 1 }, @@ -20699,13 +20699,13 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/heads/cmo) -"FW" = ( +"aFW" = ( /obj/machinery/keycard_auth{ pixel_y = 28 }, /turf/simulated/floor/wood, /area/crew_quarters/heads/cmo) -"FX" = ( +"aFX" = ( /obj/item/modular_computer/console/preset/command{ dir = 8 }, @@ -20715,7 +20715,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/heads/cmo) -"FY" = ( +"aFY" = ( /obj/machinery/power/sensor{ name = "Powernet Sensor - Cargo Subgrid"; name_tag = "Cargo Subgrid" @@ -20736,7 +20736,7 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor, /area/maintenance/substation/cargo) -"FZ" = ( +"aFZ" = ( /obj/structure/closet/wardrobe/chemistry_white, /obj/item/weapon/storage/box/pillbottles, /obj/item/weapon/storage/box/pillbottles, @@ -20757,13 +20757,13 @@ }, /turf/simulated/floor/tiled/white, /area/medical/chemistry) -"Ga" = ( +"aGa" = ( /obj/machinery/light/small{ dir = 1 }, /turf/simulated/floor/tiled, /area/quartermaster/warehouse) -"Gb" = ( +"aGb" = ( /obj/structure/table/rack{ dir = 8; layer = 2.9 @@ -20774,7 +20774,7 @@ }, /turf/simulated/floor/tiled/steel, /area/quartermaster/warehouse) -"Gc" = ( +"aGc" = ( /obj/structure/table/glass, /obj/machinery/recharger, /obj/item/weapon/tool/screwdriver, @@ -20786,10 +20786,10 @@ }, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"Gd" = ( +"aGd" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/vehicle/train/trolley{ - dir = 1 + dir = 8 }, /obj/machinery/alarm{ dir = 4; @@ -20804,36 +20804,36 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"Ge" = ( +"aGe" = ( /obj/effect/floor_decal/industrial/warning{ dir = 6 }, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"Gf" = ( +"aGf" = ( /obj/effect/floor_decal/techfloor/orange{ dir = 10 }, /turf/simulated/floor/tiled/techfloor, /area/teleporter/departing) -"Gg" = ( +"aGg" = ( /obj/effect/floor_decal/techfloor/orange, /obj/effect/floor_decal/techfloor/hole, /turf/simulated/floor/tiled/techfloor, /area/teleporter/departing) -"Gh" = ( +"aGh" = ( /obj/effect/floor_decal/techfloor/orange, /obj/machinery/camera/network/tether{ dir = 1 }, /turf/simulated/floor/tiled/techfloor, /area/teleporter/departing) -"Gi" = ( +"aGi" = ( /obj/effect/floor_decal/techfloor/orange, /obj/effect/floor_decal/techfloor/hole/right, /turf/simulated/floor/tiled/techfloor, /area/teleporter/departing) -"Gj" = ( +"aGj" = ( /obj/effect/floor_decal/techfloor/orange{ dir = 6 }, @@ -20844,10 +20844,10 @@ }, /turf/simulated/floor/tiled/techfloor, /area/teleporter/departing) -"Gk" = ( +"aGk" = ( /turf/simulated/open, /area/tether/station/stairs_three) -"Gl" = ( +"aGl" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -20863,7 +20863,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/chemistry) -"Gm" = ( +"aGm" = ( /obj/machinery/chem_master{ dir = 1 }, @@ -20881,7 +20881,7 @@ /obj/effect/floor_decal/corner/paleblue/bordercorner2, /turf/simulated/floor/tiled/white, /area/medical/chemistry) -"Gn" = ( +"aGn" = ( /obj/structure/table/reinforced, /obj/machinery/chemical_dispenser/full{ dir = 1 @@ -20902,7 +20902,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/chemistry) -"Go" = ( +"aGo" = ( /obj/structure/reagent_dispensers/water_cooler/full{ dir = 1 }, @@ -20919,7 +20919,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"Gp" = ( +"aGp" = ( /obj/structure/table/glass, /obj/item/weapon/storage/box/body_record_disk, /obj/item/device/sleevemate, @@ -20942,13 +20942,13 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"Gq" = ( +"aGq" = ( /obj/effect/floor_decal/steeldecal/steel_decals6{ dir = 8 }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"Gr" = ( +"aGr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 @@ -20957,7 +20957,7 @@ /obj/effect/floor_decal/steeldecal/steel_decals6, /turf/simulated/floor/tiled/white, /area/medical/reception) -"Gs" = ( +"aGs" = ( /obj/structure/closet/emcloset, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 @@ -20979,7 +20979,7 @@ /obj/effect/floor_decal/corner/paleblue/bordercorner2, /turf/simulated/floor/tiled/white, /area/medical/reception) -"Gt" = ( +"aGt" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -21010,7 +21010,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"Gu" = ( +"aGu" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 1 @@ -21019,7 +21019,7 @@ /obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled/white, /area/medical/reception) -"Gv" = ( +"aGv" = ( /obj/machinery/power/apc{ dir = 2; name = "south bump"; @@ -21039,7 +21039,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"Gw" = ( +"aGw" = ( /obj/structure/cable/green{ d1 = 2; d2 = 8; @@ -21063,7 +21063,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"Gx" = ( +"aGx" = ( /obj/item/roller, /obj/item/roller{ pixel_y = 8 @@ -21080,7 +21080,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"Gy" = ( +"aGy" = ( /obj/machinery/power/apc{ dir = 2; name = "south bump"; @@ -21104,7 +21104,7 @@ }, /turf/simulated/floor/tiled/dark, /area/medical/medbay_emt_bay) -"Gz" = ( +"aGz" = ( /obj/structure/cable/green{ d1 = 2; d2 = 8; @@ -21114,7 +21114,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/dark, /area/medical/medbay_emt_bay) -"GA" = ( +"aGA" = ( /obj/machinery/light, /obj/effect/floor_decal/borderfloorblack{ dir = 6 @@ -21126,7 +21126,7 @@ /obj/effect/floor_decal/corner/paleblue/bordercorner2, /turf/simulated/floor/tiled/dark, /area/medical/medbay_emt_bay) -"GB" = ( +"aGB" = ( /obj/machinery/portable_atmospherics/canister/oxygen, /obj/effect/floor_decal/corner/paleblue{ dir = 6 @@ -21146,10 +21146,10 @@ }, /turf/simulated/floor/tiled/dark, /area/medical/medbay_emt_bay) -"GC" = ( +"aGC" = ( /turf/simulated/wall, /area/maintenance/substation/cargo) -"GD" = ( +"aGD" = ( /obj/machinery/photocopier, /obj/machinery/firealarm{ dir = 8; @@ -21158,7 +21158,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/heads/cmo) -"GE" = ( +"aGE" = ( /obj/structure/bed/chair/office/light, /obj/machinery/button/remote/blast_door{ desc = "A remote control-switch for shutters."; @@ -21193,19 +21193,19 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/heads/cmo) -"GF" = ( +"aGF" = ( /obj/structure/closet/crate, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/quartermaster/warehouse) -"GG" = ( +"aGG" = ( /turf/simulated/floor/tiled, /area/quartermaster/warehouse) -"GH" = ( +"aGH" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled, /area/quartermaster/warehouse) -"GI" = ( +"aGI" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -21236,7 +21236,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/quartermaster/office) -"GJ" = ( +"aGJ" = ( /obj/machinery/power/apc{ dir = 4; name = "east bump"; @@ -21247,10 +21247,10 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/warehouse) -"GK" = ( +"aGK" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/vehicle/train/trolley{ - dir = 1 + dir = 8 }, /obj/machinery/light{ dir = 8 @@ -21262,31 +21262,31 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"GL" = ( +"aGL" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"GM" = ( +"aGM" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"GN" = ( +"aGN" = ( /obj/structure/flora/pottedplant, /obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled/white, /area/crew_quarters/medbreak) -"GO" = ( +"aGO" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 }, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"GP" = ( +"aGP" = ( /obj/machinery/conveyor{ dir = 10; icon_state = "conveyor0"; @@ -21294,7 +21294,7 @@ }, /turf/simulated/floor, /area/quartermaster/storage) -"GQ" = ( +"aGQ" = ( /obj/machinery/door/firedoor/border_only, /obj/machinery/door/airlock/glass_external, /obj/machinery/conveyor{ @@ -21304,14 +21304,14 @@ /obj/effect/map_helper/airlock/door/simple, /turf/simulated/floor/plating, /area/quartermaster/storage) -"GR" = ( +"aGR" = ( /obj/machinery/conveyor{ dir = 4; id = "QMLoad" }, /turf/simulated/floor, /area/quartermaster/storage) -"GS" = ( +"aGS" = ( /obj/structure/filingcabinet, /obj/item/device/radio/intercom/department/medbay{ dir = 4; @@ -21319,7 +21319,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/heads/cmo) -"GT" = ( +"aGT" = ( /obj/structure/table/glass, /obj/machinery/photocopier/faxmachine{ department = "CMO's Office" @@ -21337,7 +21337,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/heads/cmo) -"GU" = ( +"aGU" = ( /obj/structure/medical_stand, /obj/machinery/power/apc{ dir = 1; @@ -21361,11 +21361,11 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay_primary_storage) -"GV" = ( +"aGV" = ( /obj/machinery/smartfridge/chemistry/chemvator, /turf/simulated/floor/plating, /area/medical/chemistry) -"GW" = ( +"aGW" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/glass_medical{ name = "Chemistry"; @@ -21381,7 +21381,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/chemistry) -"GX" = ( +"aGX" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/multi_tile/glass{ id_tag = "MedbayFoyer"; @@ -21396,7 +21396,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"GY" = ( +"aGY" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -21409,7 +21409,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"GZ" = ( +"aGZ" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/glass_medical{ name = "Medbay Reception"; @@ -21424,7 +21424,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"Ha" = ( +"aHa" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/medical{ name = "EMT Bay" @@ -21438,19 +21438,19 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/dark, /area/medical/medbay_emt_bay) -"Hb" = ( +"aHb" = ( /obj/structure/table/glass, /obj/item/weapon/folder/white_cmo, /obj/item/weapon/stamp/cmo, /turf/simulated/floor/wood, /area/crew_quarters/heads/cmo) -"Hc" = ( +"aHc" = ( /obj/structure/table/glass, /obj/item/weapon/paper_bin, /obj/item/weapon/pen, /turf/simulated/floor/wood, /area/crew_quarters/heads/cmo) -"Hd" = ( +"aHd" = ( /obj/structure/table/glass, /obj/machinery/computer/skills{ dir = 8; @@ -21465,7 +21465,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/heads/cmo) -"He" = ( +"aHe" = ( /obj/machinery/camera/network/cargo{ dir = 4 }, @@ -21474,11 +21474,11 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"Hf" = ( +"aHf" = ( /obj/machinery/recharge_station, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/medical_restroom) -"Hg" = ( +"aHg" = ( /obj/machinery/firealarm{ dir = 1; pixel_x = 0; @@ -21487,7 +21487,7 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/quartermaster/warehouse) -"Hh" = ( +"aHh" = ( /obj/machinery/portable_atmospherics/canister/oxygen/prechilled, /obj/item/weapon/tool/wrench, /obj/machinery/atmospherics/portables_connector{ @@ -21501,7 +21501,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay_primary_storage) -"Hi" = ( +"aHi" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -21519,7 +21519,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay_primary_storage) -"Hj" = ( +"aHj" = ( /obj/structure/table/glass, /obj/item/weapon/packageWrap, /obj/item/weapon/hand_labeler, @@ -21537,7 +21537,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay_primary_storage) -"Hk" = ( +"aHk" = ( /obj/structure/table/glass, /obj/item/weapon/storage/box/nifsofts_medical, /obj/item/device/flashlight/pen, @@ -21557,7 +21557,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay_primary_storage) -"Hl" = ( +"aHl" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -21567,7 +21567,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/medbay_primary_storage) -"Hm" = ( +"aHm" = ( /obj/item/weapon/storage/box/gloves{ pixel_x = 4; pixel_y = 4 @@ -21594,7 +21594,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay_primary_storage) -"Hn" = ( +"aHn" = ( /obj/item/roller, /obj/item/roller{ pixel_y = 8 @@ -21616,7 +21616,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay_primary_storage) -"Ho" = ( +"aHo" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor/glass, @@ -21625,7 +21625,7 @@ }, /turf/simulated/floor/plating, /area/medical/medbay_primary_storage) -"Hp" = ( +"aHp" = ( /obj/machinery/portable_atmospherics/canister/oxygen/prechilled, /obj/machinery/atmospherics/portables_connector{ dir = 4 @@ -21644,7 +21644,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay_primary_storage) -"Hq" = ( +"aHq" = ( /obj/machinery/button/remote/airlock{ desc = "A remote control switch for the medbay foyer."; id = "MedbayFoyer"; @@ -21666,13 +21666,13 @@ }, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"Hr" = ( +"aHr" = ( /obj/effect/floor_decal/steeldecal/steel_decals6{ dir = 1 }, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"Hs" = ( +"aHs" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, @@ -21681,7 +21681,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"Ht" = ( +"aHt" = ( /obj/structure/table/glass, /obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{ pixel_x = 7; @@ -21713,7 +21713,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"Hu" = ( +"aHu" = ( /obj/structure/table/glass, /obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{ pixel_x = -4; @@ -21739,7 +21739,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"Hv" = ( +"aHv" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -21755,7 +21755,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"Hw" = ( +"aHw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/disposalpipe/segment{ @@ -21768,7 +21768,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/warehouse) -"Hx" = ( +"aHx" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -21785,7 +21785,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/warehouse) -"Hy" = ( +"aHy" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -21800,7 +21800,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/warehouse) -"Hz" = ( +"aHz" = ( /obj/machinery/door/blast/shutters{ dir = 8; id = "qm_warehouse"; @@ -21817,7 +21817,7 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/quartermaster/warehouse) -"HA" = ( +"aHA" = ( /obj/structure/cable/green{ d1 = 1; d2 = 8; @@ -21839,13 +21839,13 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"HB" = ( +"aHB" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"HC" = ( +"aHC" = ( /obj/machinery/door/airlock/glass_mining{ name = "Cargo Bay"; req_access = list(31); @@ -21863,7 +21863,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/steel_grid, /area/quartermaster/office) -"HD" = ( +"aHD" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" @@ -21873,27 +21873,27 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"HE" = ( +"aHE" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"HF" = ( +"aHF" = ( /obj/machinery/conveyor{ dir = 1; id = "QMLoad" }, /turf/simulated/floor, /area/quartermaster/storage) -"HG" = ( +"aHG" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor/glass, /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/quartermaster/storage) -"HH" = ( +"aHH" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor/glass, @@ -21910,7 +21910,7 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/quartermaster/storage) -"HI" = ( +"aHI" = ( /obj/structure/extinguisher_cabinet{ dir = 1; icon_state = "extinguisher_closed"; @@ -21935,7 +21935,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"HJ" = ( +"aHJ" = ( /obj/machinery/power/apc{ dir = 1; name = "north bump"; @@ -21954,7 +21954,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"HK" = ( +"aHK" = ( /obj/structure/flora/pottedplant/stoutbush, /obj/machinery/light{ dir = 1 @@ -21977,7 +21977,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"HL" = ( +"aHL" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -21999,7 +21999,7 @@ /obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"HM" = ( +"aHM" = ( /obj/structure/closet/l3closet/medical, /obj/effect/floor_decal/borderfloorwhite{ dir = 5 @@ -22015,7 +22015,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"HN" = ( +"aHN" = ( /obj/structure/grille, /obj/machinery/door/firedoor/glass, /obj/structure/window/reinforced/polarized/full{ @@ -22023,7 +22023,7 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/heads/cmo) -"HO" = ( +"aHO" = ( /obj/machinery/light{ dir = 1 }, @@ -22041,7 +22041,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"HP" = ( +"aHP" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -22061,13 +22061,13 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"HQ" = ( +"aHQ" = ( /obj/structure/bed/chair{ dir = 1 }, /turf/simulated/floor/wood, /area/crew_quarters/heads/cmo) -"HR" = ( +"aHR" = ( /obj/machinery/alarm{ dir = 8; icon_state = "alarm0"; @@ -22075,7 +22075,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/heads/cmo) -"HS" = ( +"aHS" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -22084,7 +22084,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/maintenance/station/cargo) -"HT" = ( +"aHT" = ( /obj/machinery/atmospherics/unary/freezer{ dir = 4 }, @@ -22100,7 +22100,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay_primary_storage) -"HU" = ( +"aHU" = ( /obj/structure/cable/green{ d1 = 1; d2 = 4; @@ -22109,7 +22109,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/cyan, /turf/simulated/floor/tiled/white, /area/medical/medbay_primary_storage) -"HV" = ( +"aHV" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -22121,7 +22121,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay_primary_storage) -"HW" = ( +"aHW" = ( /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/paleblue/border, /obj/effect/floor_decal/borderfloorwhite/corner2{ @@ -22132,7 +22132,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/chemistry) -"HX" = ( +"aHX" = ( /obj/structure/cable/green{ d1 = 2; d2 = 8; @@ -22151,7 +22151,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay_primary_storage) -"HY" = ( +"aHY" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 4 }, @@ -22166,7 +22166,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay_primary_storage) -"HZ" = ( +"aHZ" = ( /obj/structure/table/glass, /obj/item/weapon/reagent_containers/spray/cleaner{ pixel_x = 2; @@ -22190,19 +22190,19 @@ }, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"Ia" = ( +"aIa" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"Ib" = ( +"aIb" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 4 }, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"Ic" = ( +"aIc" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ dir = 8; icon_state = "map" @@ -22212,7 +22212,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"Id" = ( +"aId" = ( /obj/machinery/atmospherics/pipe/simple/hidden/cyan{ dir = 9; icon_state = "intact" @@ -22222,7 +22222,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"Ie" = ( +"aIe" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, @@ -22235,7 +22235,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"If" = ( +"aIf" = ( /obj/structure/cable/green{ d1 = 1; d2 = 4; @@ -22245,7 +22245,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"Ig" = ( +"aIg" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -22270,7 +22270,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"Ih" = ( +"aIh" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -22287,7 +22287,7 @@ /obj/effect/floor_decal/corner/paleblue/bordercorner, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"Ii" = ( +"aIi" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -22304,7 +22304,7 @@ /obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"Ij" = ( +"aIj" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -22325,7 +22325,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"Ik" = ( +"aIk" = ( /obj/structure/cable/green{ d1 = 1; d2 = 8; @@ -22335,7 +22335,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"Il" = ( +"aIl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, @@ -22350,7 +22350,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"Im" = ( +"aIm" = ( /obj/structure/closet/crate, /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/camera/network/cargo{ @@ -22358,7 +22358,7 @@ }, /turf/simulated/floor/tiled/steel, /area/quartermaster/warehouse) -"In" = ( +"aIn" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -22380,7 +22380,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"Io" = ( +"aIo" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -22391,7 +22391,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"Ip" = ( +"aIp" = ( /obj/structure/cable/green{ d1 = 1; d2 = 8; @@ -22407,7 +22407,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"Iq" = ( +"aIq" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, @@ -22415,20 +22415,20 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"Ir" = ( +"aIr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"Is" = ( +"aIs" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/hologram/holopad, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"It" = ( +"aIt" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4 }, @@ -22436,11 +22436,11 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"Iu" = ( +"aIu" = ( /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"Iv" = ( +"aIv" = ( /obj/machinery/conveyor_switch/oneway{ convdir = 1; id = "QMLoad" @@ -22450,7 +22450,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"Iw" = ( +"aIw" = ( /obj/structure/window/reinforced, /obj/effect/floor_decal/borderfloorwhite{ dir = 8 @@ -22460,7 +22460,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"Ix" = ( +"aIx" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -22477,10 +22477,10 @@ /mob/living/simple_mob/animal/passive/cat/runtime, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"Iy" = ( +"aIy" = ( /turf/simulated/wall, /area/medical/sleeper) -"Iz" = ( +"aIz" = ( /obj/structure/cable/green{ d1 = 2; d2 = 4; @@ -22488,7 +22488,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/heads/cmo) -"IA" = ( +"aIA" = ( /obj/machinery/power/apc{ dir = 4; name = "east bump"; @@ -22500,7 +22500,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/heads/cmo) -"IB" = ( +"aIB" = ( /obj/machinery/vending/medical{ dir = 4 }, @@ -22512,13 +22512,13 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay_primary_storage) -"IC" = ( +"aIC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, /turf/simulated/floor/tiled/white, /area/medical/medbay_primary_storage) -"ID" = ( +"aID" = ( /obj/structure/table/glass, /obj/item/weapon/storage/toolbox/emergency, /obj/item/bodybag/cryobag, @@ -22530,7 +22530,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay_primary_storage) -"IE" = ( +"aIE" = ( /obj/structure/table/glass, /obj/item/clothing/accessory/stethoscope, /obj/item/clothing/accessory/stethoscope, @@ -22546,7 +22546,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay_primary_storage) -"IF" = ( +"aIF" = ( /obj/structure/table/glass, /obj/item/weapon/storage/firstaid/regular{ pixel_x = 5; @@ -22562,7 +22562,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay_primary_storage) -"IG" = ( +"aIG" = ( /obj/machinery/hologram/holopad, /obj/structure/cable/green{ d1 = 1; @@ -22577,7 +22577,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay_primary_storage) -"IH" = ( +"aIH" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -22600,7 +22600,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay_primary_storage) -"II" = ( +"aII" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -22626,7 +22626,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay_primary_storage) -"IJ" = ( +"aIJ" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/glass_medical{ name = "Medbay Equipment"; @@ -22653,7 +22653,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay_primary_storage) -"IK" = ( +"aIK" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -22681,7 +22681,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"IL" = ( +"aIL" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -22703,7 +22703,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"IM" = ( +"aIM" = ( /obj/structure/cable/green{ d1 = 2; d2 = 8; @@ -22725,7 +22725,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"IN" = ( +"aIN" = ( /obj/machinery/shower{ pixel_y = 10 }, @@ -22742,13 +22742,13 @@ /obj/structure/curtain/open/shower/medical, /turf/simulated/floor/tiled/white, /area/crew_quarters/medical_restroom) -"IO" = ( +"aIO" = ( /obj/machinery/power/breakerbox/activated{ RCon_tag = "Cargo Substation Bypass" }, /turf/simulated/floor, /area/maintenance/substation/cargo) -"IP" = ( +"aIP" = ( /obj/machinery/power/smes/buildable{ charge = 0; output_attempt = 0; @@ -22768,14 +22768,14 @@ }, /turf/simulated/floor, /area/maintenance/substation/cargo) -"IQ" = ( +"aIQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/cyan{ icon_state = "intact"; dir = 4 }, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"IR" = ( +"aIR" = ( /obj/structure/closet/crate, /obj/machinery/alarm{ dir = 4; @@ -22786,13 +22786,13 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/steel, /area/quartermaster/warehouse) -"IS" = ( +"aIS" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/tiled/steel, /area/quartermaster/warehouse) -"IT" = ( +"aIT" = ( /obj/machinery/button/remote/blast_door{ id = "qm_warehouse"; name = "Warehouse Door Control"; @@ -22802,14 +22802,14 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/warehouse) -"IU" = ( +"aIU" = ( /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/paleblue/border, /obj/effect/floor_decal/borderfloorwhite/corner2, /obj/effect/floor_decal/corner/paleblue/bordercorner2, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"IV" = ( +"aIV" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 5; pixel_y = -32 @@ -22817,7 +22817,7 @@ /obj/machinery/light, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"IW" = ( +"aIW" = ( /obj/effect/floor_decal/industrial/loading{ dir = 4 }, @@ -22828,7 +22828,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"IX" = ( +"aIX" = ( /obj/machinery/status_display/supply_display{ pixel_y = -32 }, @@ -22838,27 +22838,27 @@ }, /turf/simulated/floor, /area/quartermaster/storage) -"IY" = ( +"aIY" = ( /obj/machinery/conveyor{ - dir = 1; + dir = 5; id = "QMLoad" }, /obj/machinery/light, /turf/simulated/floor, /area/quartermaster/storage) -"IZ" = ( +"aIZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/cyan{ dir = 9; icon_state = "intact" }, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"Ja" = ( +"aJa" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"Jb" = ( +"aJb" = ( /obj/structure/closet/secure_closet/medical1, /obj/effect/floor_decal/borderfloorwhite{ dir = 4 @@ -22868,13 +22868,13 @@ }, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"Jc" = ( +"aJc" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, /area/medical/sleeper) -"Jd" = ( +"aJd" = ( /obj/machinery/vending/medical{ dir = 4 }, @@ -22886,7 +22886,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"Je" = ( +"aJe" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/borderfloorwhite{ @@ -22903,7 +22903,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"Jf" = ( +"aJf" = ( /obj/structure/flora/pottedplant/stoutbush, /obj/effect/floor_decal/borderfloorwhite{ dir = 8 @@ -22919,7 +22919,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"Jg" = ( +"aJg" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 4 }, @@ -22928,16 +22928,16 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"Jh" = ( +"aJh" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/wood, /area/crew_quarters/heads/cmo) -"Ji" = ( +"aJi" = ( /obj/machinery/atmospherics/unary/cryo_cell, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/medical/sleeper) -"Jj" = ( +"aJj" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -22949,7 +22949,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/heads/cmo) -"Jk" = ( +"aJk" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, @@ -22965,7 +22965,7 @@ }, /turf/simulated/floor/tiled/white, /area/hallway/secondary/escape/medical_escape_pod_hallway) -"Jl" = ( +"aJl" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -22975,7 +22975,7 @@ /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/station/cargo) -"Jm" = ( +"aJm" = ( /obj/machinery/vending/coffee{ dir = 4 }, @@ -22987,7 +22987,7 @@ /obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled/white, /area/crew_quarters/medbreak) -"Jn" = ( +"aJn" = ( /obj/structure/sign/goldenplaque{ desc = "Done No Harm."; name = "Best Doctor 2552"; @@ -23005,30 +23005,30 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay_primary_storage) -"Jo" = ( +"aJo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/landmark/start{ name = "Medical Doctor" }, /turf/simulated/floor/tiled/white, /area/medical/medbay_primary_storage) -"Jp" = ( +"aJp" = ( /obj/effect/landmark/start{ name = "Chemist" }, /turf/simulated/floor/tiled/white, /area/medical/medbay_primary_storage) -"Jq" = ( +"aJq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/landmark/start{ name = "Medical Doctor" }, /turf/simulated/floor/tiled/white, /area/medical/medbay_primary_storage) -"Jr" = ( +"aJr" = ( /turf/simulated/wall, /area/medical/medbay_primary_storage) -"Js" = ( +"aJs" = ( /obj/structure/railing, /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/paleblue/border, @@ -23040,7 +23040,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay_primary_storage) -"Jt" = ( +"aJt" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 1 }, @@ -23055,7 +23055,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay_primary_storage) -"Ju" = ( +"aJu" = ( /obj/structure/table/rack, /obj/item/weapon/storage/belt/medical, /obj/item/weapon/storage/belt/medical, @@ -23077,7 +23077,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay_primary_storage) -"Jv" = ( +"aJv" = ( /obj/structure/table/glass, /obj/item/device/defib_kit/loaded, /obj/effect/floor_decal/borderfloorwhite{ @@ -23094,7 +23094,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"Jw" = ( +"aJw" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -23105,7 +23105,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"Jx" = ( +"aJx" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ icon_state = "map-scrubbers"; @@ -23115,7 +23115,7 @@ /obj/effect/floor_decal/steeldecal/steel_decals10, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"Jy" = ( +"aJy" = ( /obj/machinery/sleep_console{ dir = 4 }, @@ -23124,7 +23124,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"Jz" = ( +"aJz" = ( /obj/machinery/sleeper{ dir = 4 }, @@ -23133,27 +23133,27 @@ }, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"JA" = ( +"aJA" = ( /obj/structure/table/glass, /obj/effect/floor_decal/steeldecal/steel_decals10{ dir = 8 }, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"JB" = ( +"aJB" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"JC" = ( +"aJC" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"JD" = ( +"aJD" = ( /obj/structure/table/glass, /obj/machinery/recharger, /obj/effect/floor_decal/borderfloorwhite{ @@ -23168,7 +23168,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"JE" = ( +"aJE" = ( /obj/machinery/vending/blood, /obj/effect/floor_decal/borderfloorwhite{ dir = 8 @@ -23178,7 +23178,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"JF" = ( +"aJF" = ( /obj/structure/cable/green{ d1 = 2; d2 = 4; @@ -23200,7 +23200,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"JG" = ( +"aJG" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/command{ id_tag = "cmodoor"; @@ -23225,7 +23225,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"JH" = ( +"aJH" = ( /obj/machinery/light/small{ dir = 8; pixel_y = 0 @@ -23234,13 +23234,13 @@ /obj/structure/closet/crate/freezer, /turf/simulated/floor/tiled, /area/quartermaster/warehouse) -"JI" = ( +"aJI" = ( /obj/structure/closet/crate/internals, /obj/machinery/light/small, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/steel, /area/quartermaster/warehouse) -"JJ" = ( +"aJJ" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -23264,16 +23264,16 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"JK" = ( +"aJK" = ( /obj/structure/closet/crate/medical, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/quartermaster/warehouse) -"JL" = ( +"aJL" = ( /obj/machinery/status_display/supply_display, /turf/simulated/wall, /area/quartermaster/warehouse) -"JM" = ( +"aJM" = ( /obj/machinery/alarm{ dir = 1; icon_state = "alarm0"; @@ -23281,7 +23281,7 @@ }, /turf/simulated/floor/tiled, /area/security/hallway) -"JN" = ( +"aJN" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -23292,10 +23292,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"JO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, +"aJO" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -23307,9 +23304,13 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1 }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"JP" = ( +"aJP" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -23333,7 +23334,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"JQ" = ( +"aJQ" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -23351,7 +23352,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/heads/cmo) -"JR" = ( +"aJR" = ( /obj/structure/cable/green{ d1 = 1; d2 = 8; @@ -23369,14 +23370,14 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/heads/cmo) -"JS" = ( +"aJS" = ( /obj/structure/filingcabinet/chestdrawer, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/wood, /area/crew_quarters/heads/cmo) -"JT" = ( +"aJT" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -23390,7 +23391,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/maintenance/station/cargo) -"JU" = ( +"aJU" = ( /obj/machinery/door/firedoor/glass, /obj/structure/lattice, /obj/structure/cable/green{ @@ -23403,7 +23404,7 @@ }, /turf/simulated/open, /area/maintenance/station/cargo) -"JV" = ( +"aJV" = ( /obj/structure/closet/secure_closet/medical3, /obj/item/weapon/soap/nanotrasen, /obj/machinery/atmospherics/unary/vent_scrubber/on{ @@ -23418,14 +23419,14 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay_primary_storage) -"JW" = ( +"aJW" = ( /obj/machinery/light{ dir = 4; icon_state = "tube1" }, /turf/space, /area/security/nuke_storage) -"JX" = ( +"aJX" = ( /obj/machinery/light{ dir = 8; icon_state = "tube1"; @@ -23433,13 +23434,13 @@ }, /turf/simulated/mineral/floor/vacuum, /area/security/nuke_storage) -"JY" = ( +"aJY" = ( /obj/machinery/light/small{ dir = 1 }, /turf/simulated/floor, /area/maintenance/station/cargo) -"JZ" = ( +"aJZ" = ( /obj/structure/table/standard, /obj/random/medical, /obj/machinery/power/apc{ @@ -23453,7 +23454,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virologyaccess) -"Ka" = ( +"aKa" = ( /obj/structure/closet/secure_closet/medical3, /obj/item/weapon/soap/nanotrasen, /obj/effect/floor_decal/borderfloorwhite{ @@ -23464,7 +23465,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay_primary_storage) -"Kb" = ( +"aKb" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -23482,7 +23483,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virologyaccess) -"Kc" = ( +"aKc" = ( /obj/structure/closet/wardrobe/virology_white, /obj/machinery/firealarm{ dir = 4; @@ -23496,7 +23497,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virologyaccess) -"Kd" = ( +"aKd" = ( /obj/structure/closet/secure_closet/medical3, /obj/item/weapon/soap/nanotrasen, /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -23511,7 +23512,7 @@ /obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled/white, /area/medical/medbay_primary_storage) -"Ke" = ( +"aKe" = ( /obj/structure/closet/secure_closet/medical3, /obj/item/weapon/soap/nanotrasen, /obj/effect/floor_decal/borderfloorwhite, @@ -23524,7 +23525,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay_primary_storage) -"Kf" = ( +"aKf" = ( /obj/effect/floor_decal/steeldecal/steel_decals4{ dir = 5 }, @@ -23533,24 +23534,24 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay_primary_storage) -"Kg" = ( +"aKg" = ( /turf/simulated/open, /area/medical/medbay_primary_storage) -"Kh" = ( +"aKh" = ( /turf/simulated/floor/tiled/white, /area/medical/medbay_primary_storage) -"Ki" = ( +"aKi" = ( /obj/machinery/light, /turf/simulated/open, /area/medical/medbay_primary_storage) -"Kj" = ( +"aKj" = ( /obj/machinery/vending/cola{ dir = 4 }, /obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled/white, /area/crew_quarters/medbreak) -"Kk" = ( +"aKk" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -23561,7 +23562,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"Kl" = ( +"aKl" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, @@ -23574,7 +23575,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"Km" = ( +"aKm" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -23587,7 +23588,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"Kn" = ( +"aKn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -23600,7 +23601,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"Ko" = ( +"aKo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9; pixel_y = 0 @@ -23611,17 +23612,17 @@ }, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"Kp" = ( +"aKp" = ( /obj/effect/landmark/start{ name = "Medical Doctor" }, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"Kq" = ( +"aKq" = ( /obj/machinery/camera/network/security, /turf/simulated/mineral/floor/vacuum, /area/security/nuke_storage) -"Kr" = ( +"aKr" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -23642,7 +23643,7 @@ }, /turf/simulated/floor/tiled, /area/security/hallway) -"Ks" = ( +"aKs" = ( /obj/structure/table/glass, /obj/item/bodybag/cryobag, /obj/item/device/healthanalyzer, @@ -23654,7 +23655,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"Kt" = ( +"aKt" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -23677,7 +23678,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"Ku" = ( +"aKu" = ( /obj/structure/flora/pottedplant/stoutbush, /obj/effect/floor_decal/borderfloorwhite{ dir = 10 @@ -23693,7 +23694,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"Kv" = ( +"aKv" = ( /obj/structure/closet/secure_closet/CMO, /obj/item/weapon/storage/belt/medical, /obj/item/device/flashlight/pen, @@ -23710,14 +23711,14 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"Kw" = ( +"aKw" = ( /obj/structure/bed/chair/comfy/brown{ dir = 1 }, /obj/machinery/light, /turf/simulated/floor/wood, /area/crew_quarters/heads/cmo) -"Kx" = ( +"aKx" = ( /obj/structure/bed/psych{ name = "couch" }, @@ -23727,14 +23728,14 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/heads/cmo) -"Ky" = ( +"aKy" = ( /obj/structure/table/glass, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/wood, /area/crew_quarters/heads/cmo) -"Kz" = ( +"aKz" = ( /obj/structure/railing{ dir = 8 }, @@ -23744,7 +23745,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/station/cargo) -"KA" = ( +"aKA" = ( /obj/structure/table/glass, /obj/item/weapon/storage/box/gloves{ pixel_x = 4; @@ -23758,7 +23759,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"KB" = ( +"aKB" = ( /obj/machinery/computer/arcade{ dir = 8 }, @@ -23772,7 +23773,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virologyisolation) -"KC" = ( +"aKC" = ( /obj/structure/dogbed{ desc = "Runtime's bed. Some of her disappointment seems to have rubbed off on it."; name = "cat bed" @@ -23789,7 +23790,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"KD" = ( +"aKD" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 2 }, @@ -23810,10 +23811,10 @@ }, /turf/simulated/floor/tiled/white, /area/hallway/secondary/escape/medical_escape_pod_hallway) -"KE" = ( +"aKE" = ( /turf/simulated/wall, /area/crew_quarters/medical_restroom) -"KF" = ( +"aKF" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/glass_medical{ name = "Medbay Equipment"; @@ -23821,11 +23822,11 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay_primary_storage) -"KG" = ( +"aKG" = ( /obj/structure/sign/nosmoking_1, /turf/simulated/wall, /area/medical/medbay_primary_storage) -"KH" = ( +"aKH" = ( /obj/structure/filingcabinet/chestdrawer{ name = "Scan Records" }, @@ -23841,7 +23842,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"KI" = ( +"aKI" = ( /obj/machinery/hologram/holopad, /obj/structure/cable/green{ d1 = 1; @@ -23850,14 +23851,14 @@ }, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"KJ" = ( +"aKJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/steeldecal/steel_decals10, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"KK" = ( +"aKK" = ( /obj/machinery/body_scanconsole{ dir = 4 }, @@ -23866,7 +23867,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"KL" = ( +"aKL" = ( /obj/machinery/bodyscanner{ dir = 4 }, @@ -23875,7 +23876,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"KM" = ( +"aKM" = ( /obj/structure/table/glass, /obj/random/medical, /obj/effect/floor_decal/steeldecal/steel_decals10{ @@ -23883,11 +23884,11 @@ }, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"KN" = ( +"aKN" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"KO" = ( +"aKO" = ( /obj/structure/sink{ dir = 4; icon_state = "sink"; @@ -23902,7 +23903,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"KP" = ( +"aKP" = ( /obj/structure/medical_stand, /obj/effect/floor_decal/borderfloorwhite{ dir = 8 @@ -23912,7 +23913,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"KQ" = ( +"aKQ" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -23929,7 +23930,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"KR" = ( +"aKR" = ( /obj/machinery/alarm{ dir = 8; icon_state = "alarm0"; @@ -23940,7 +23941,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/station/cargo) -"KS" = ( +"aKS" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -23951,7 +23952,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"KT" = ( +"aKT" = ( /obj/structure/table/steel_reinforced, /obj/item/weapon/folder/yellow, /obj/item/weapon/pen{ @@ -23968,21 +23969,24 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/quartermaster/delivery) -"KU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +"aKU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/quartermaster/warehouse) -"KV" = ( +"aKV" = ( /obj/structure/undies_wardrobe, /turf/simulated/floor/tiled/white, /area/crew_quarters/medical_restroom) -"KW" = ( +"aKW" = ( /turf/simulated/wall, /area/crew_quarters/medbreak) -"KX" = ( +"aKX" = ( /obj/structure/bookcase/manuals/medical, /obj/item/weapon/book/manual/medical_diagnostics_manual{ pixel_y = 7 @@ -23991,7 +23995,7 @@ /obj/item/weapon/book/manual/resleeving, /turf/simulated/floor/tiled/white, /area/crew_quarters/medbreak) -"KY" = ( +"aKY" = ( /obj/structure/flora/skeleton{ name = "\proper Wilhelm" }, @@ -24008,7 +24012,7 @@ /obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled/white, /area/crew_quarters/medbreak) -"KZ" = ( +"aKZ" = ( /obj/machinery/washing_machine, /obj/machinery/alarm{ pixel_y = 22 @@ -24017,26 +24021,23 @@ /obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled/white, /area/crew_quarters/medbreak) -"La" = ( +"aLa" = ( /obj/machinery/washing_machine, /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled/white, /area/crew_quarters/medbreak) -"Lb" = ( +"aLb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/quartermaster/warehouse) -"Lc" = ( +"aLc" = ( /obj/effect/floor_decal/corner/paleblue/diagonal, /obj/effect/floor_decal/steeldecal/steel_decals4{ dir = 4 @@ -24046,11 +24047,11 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/medbreak) -"Ld" = ( +"aLd" = ( /obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled/white, /area/crew_quarters/medbreak) -"Le" = ( +"aLe" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 8 }, @@ -24069,23 +24070,23 @@ /obj/machinery/disposal, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"Lf" = ( +"aLf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9; pixel_y = 0 }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"Lg" = ( +"aLg" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, /area/crew_quarters/medbreak) -"Lh" = ( +"aLh" = ( /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"Li" = ( +"aLi" = ( /obj/structure/table/glass, /obj/item/weapon/storage/pill_bottle/tramadol, /obj/item/weapon/storage/pill_bottle/antitox, @@ -24098,7 +24099,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"Lj" = ( +"aLj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, @@ -24107,7 +24108,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"Lk" = ( +"aLk" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -24119,7 +24120,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"Ll" = ( +"aLl" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -24131,7 +24132,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"Lm" = ( +"aLm" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -24143,7 +24144,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"Ln" = ( +"aLn" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -24155,19 +24156,19 @@ }, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"Lo" = ( +"aLo" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"Lp" = ( +"aLp" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, /area/medical/medbay_primary_storage) -"Lq" = ( +"aLq" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -24188,7 +24189,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"Lr" = ( +"aLr" = ( /obj/machinery/vending/fitness{ dir = 4 }, @@ -24202,7 +24203,7 @@ /obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled/white, /area/crew_quarters/medbreak) -"Ls" = ( +"aLs" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" @@ -24215,7 +24216,7 @@ }, /turf/simulated/floor/tiled/white, /area/hallway/secondary/escape/medical_escape_pod_hallway) -"Lt" = ( +"aLt" = ( /obj/structure/closet/emcloset, /obj/effect/floor_decal/borderfloorwhite{ dir = 5 @@ -24225,17 +24226,17 @@ }, /turf/simulated/floor/tiled/white, /area/hallway/secondary/escape/medical_escape_pod_hallway) -"Lu" = ( +"aLu" = ( /turf/simulated/wall, /area/hallway/secondary/escape/medical_escape_pod_hallway) -"Lv" = ( +"aLv" = ( /obj/structure/railing, /obj/structure/closet, /obj/random/maintenance/medical, /obj/random/maintenance/medical, /turf/simulated/floor/plating, /area/maintenance/station/cargo) -"Lw" = ( +"aLw" = ( /obj/structure/railing, /obj/structure/table/rack{ dir = 8; @@ -24246,11 +24247,11 @@ /obj/random/maintenance/cargo, /turf/simulated/floor/plating, /area/maintenance/station/cargo) -"Lx" = ( +"aLx" = ( /obj/structure/railing, /turf/simulated/floor/plating, /area/maintenance/station/cargo) -"Ly" = ( +"aLy" = ( /obj/structure/railing{ icon_state = "railing0"; dir = 4 @@ -24261,7 +24262,7 @@ /obj/random/maintenance/cargo, /turf/simulated/floor/plating, /area/maintenance/station/cargo) -"Lz" = ( +"aLz" = ( /obj/structure/railing{ dir = 8 }, @@ -24270,31 +24271,31 @@ /obj/random/maintenance/cargo, /turf/simulated/floor/plating, /area/maintenance/station/cargo) -"LA" = ( +"aLA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/disposalpipe/segment{ +/obj/effect/floor_decal/steeldecal/steel_decals6, +/obj/effect/floor_decal/steeldecal/steel_decals6{ dir = 4 }, /turf/simulated/floor/tiled, /area/quartermaster/warehouse) -"LB" = ( +"aLB" = ( /obj/structure/sign/nosmoking_1, /turf/simulated/wall/r_wall, /area/medical/chemistry) -"LC" = ( +"aLC" = ( /obj/machinery/vending/snack{ dir = 4 }, /obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled/white, /area/crew_quarters/medbreak) -"LD" = ( +"aLD" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -24303,17 +24304,17 @@ /obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled/white, /area/crew_quarters/medbreak) -"LE" = ( +"aLE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled/white, /area/crew_quarters/medbreak) -"LF" = ( +"aLF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled/white, /area/crew_quarters/medbreak) -"LG" = ( +"aLG" = ( /obj/structure/table/glass, /obj/random/medical, /obj/effect/floor_decal/borderfloorwhite{ @@ -24330,7 +24331,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"LH" = ( +"aLH" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -24341,7 +24342,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"LI" = ( +"aLI" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, @@ -24350,20 +24351,20 @@ /obj/effect/floor_decal/steeldecal/steel_decals10, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"LJ" = ( +"aLJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ icon_state = "intact-scrubbers"; dir = 5 }, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"LK" = ( +"aLK" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"LL" = ( +"aLL" = ( /obj/structure/cable/green{ d1 = 1; d2 = 4; @@ -24377,7 +24378,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"LM" = ( +"aLM" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -24387,19 +24388,19 @@ /obj/effect/floor_decal/corner/paleblue/bordercorner, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"LN" = ( +"aLN" = ( /obj/effect/floor_decal/corner_steel_grid{ dir = 5 }, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"LO" = ( +"aLO" = ( /obj/effect/floor_decal/steeldecal/steel_decals10{ dir = 1 }, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"LP" = ( +"aLP" = ( /obj/machinery/alarm{ dir = 1; icon_state = "alarm0"; @@ -24414,7 +24415,7 @@ /obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"LQ" = ( +"aLQ" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -24424,7 +24425,7 @@ /obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"LR" = ( +"aLR" = ( /obj/machinery/vending/wallmed1{ pixel_y = -30 }, @@ -24437,18 +24438,18 @@ /obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"LS" = ( +"aLS" = ( /obj/machinery/camera/network/security, /mob/living/simple_mob/animal/sif/shantak/scruffy, /turf/simulated/floor/carpet, /area/crew_quarters/heads/hos) -"LT" = ( +"aLT" = ( /obj/effect/landmark/start{ name = "Paramedic" }, /turf/simulated/floor/tiled/white, /area/medical/medbay_primary_storage) -"LU" = ( +"aLU" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 1 }, @@ -24468,7 +24469,7 @@ /obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled/white, /area/hallway/secondary/escape/medical_escape_pod_hallway) -"LV" = ( +"aLV" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -24493,7 +24494,7 @@ }, /turf/simulated/floor/tiled/white, /area/hallway/secondary/escape/medical_escape_pod_hallway) -"LW" = ( +"aLW" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -24518,7 +24519,7 @@ }, /turf/simulated/floor/tiled/white, /area/hallway/secondary/escape/medical_escape_pod_hallway) -"LX" = ( +"aLX" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/maintenance/medical, /obj/machinery/door/blast/shutters{ @@ -24539,7 +24540,7 @@ }, /turf/simulated/floor/plating, /area/hallway/secondary/escape/medical_escape_pod_hallway) -"LY" = ( +"aLY" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -24550,7 +24551,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/station/cargo) -"LZ" = ( +"aLZ" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -24562,7 +24563,7 @@ /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/station/cargo) -"Ma" = ( +"aMa" = ( /obj/structure/cable/green{ d1 = 1; d2 = 8; @@ -24574,7 +24575,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/station/cargo) -"Mb" = ( +"aMb" = ( /obj/structure/railing{ dir = 8 }, @@ -24583,29 +24584,7 @@ /obj/random/maintenance/cargo, /turf/simulated/floor/plating, /area/maintenance/station/cargo) -"Mc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/warehouse) -"Md" = ( -/obj/machinery/door/airlock/medical{ - name = "Rest Room" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/medical_restroom) -"Me" = ( +"aMc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -24618,18 +24597,30 @@ name = "Warehouse Shutters" }, /obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/steel_grid, +/area/quartermaster/warehouse) +"aMd" = ( +/obj/machinery/door/airlock/medical{ + name = "Rest Room" + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/medical_restroom) +"aMe" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 1 }, -/turf/simulated/floor/tiled/steel_grid, -/area/quartermaster/warehouse) -"Mf" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"aMf" = ( /obj/machinery/light/small{ dir = 8 }, @@ -24638,25 +24629,10 @@ }, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/medical_restroom) -"Mg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"Mh" = ( +"aMg" = ( +/turf/simulated/floor/tiled/steel, +/area/quartermaster/warehouse) +"aMh" = ( /obj/structure/cable/green{ d1 = 1; d2 = 4; @@ -24676,7 +24652,7 @@ /obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled/white, /area/crew_quarters/medbreak) -"Mi" = ( +"aMi" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -24690,7 +24666,7 @@ /obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled/white, /area/crew_quarters/medbreak) -"Mj" = ( +"aMj" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -24703,7 +24679,7 @@ /obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled/white, /area/crew_quarters/medbreak) -"Mk" = ( +"aMk" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -24719,7 +24695,7 @@ /obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled/white, /area/crew_quarters/medbreak) -"Ml" = ( +"aMl" = ( /obj/machinery/hologram/holopad, /obj/structure/cable/green{ d1 = 4; @@ -24736,7 +24712,7 @@ /obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled/white, /area/crew_quarters/medbreak) -"Mm" = ( +"aMm" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -24756,7 +24732,7 @@ /obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled/white, /area/crew_quarters/medbreak) -"Mn" = ( +"aMn" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -24779,7 +24755,7 @@ /obj/effect/floor_decal/steeldecal/steel_decals4, /turf/simulated/floor/tiled/white, /area/crew_quarters/medbreak) -"Mo" = ( +"aMo" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/glass_medical{ name = "Staff Room"; @@ -24802,7 +24778,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/medbreak) -"Mp" = ( +"aMp" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -24827,7 +24803,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"Mq" = ( +"aMq" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -24845,7 +24821,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"Mr" = ( +"aMr" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -24868,7 +24844,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"Ms" = ( +"aMs" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -24895,7 +24871,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"Mt" = ( +"aMt" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -24909,7 +24885,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"Mu" = ( +"aMu" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -24923,7 +24899,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"Mv" = ( +"aMv" = ( /obj/structure/cable/green{ d1 = 1; d2 = 8; @@ -24935,7 +24911,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"Mw" = ( +"aMw" = ( /obj/structure/flora/pottedplant/stoutbush, /obj/machinery/light{ dir = 4 @@ -24954,7 +24930,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"Mx" = ( +"aMx" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/light{ dir = 8; @@ -24971,7 +24947,7 @@ }, /turf/simulated/floor/tiled/white, /area/hallway/secondary/escape/medical_escape_pod_hallway) -"My" = ( +"aMy" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -24993,7 +24969,7 @@ }, /turf/simulated/floor/tiled/white, /area/hallway/secondary/escape/medical_escape_pod_hallway) -"Mz" = ( +"aMz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -25005,7 +24981,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"MA" = ( +"aMA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, @@ -25020,7 +24996,7 @@ /obj/effect/floor_decal/industrial/warning/corner, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"MB" = ( +"aMB" = ( /obj/machinery/light{ dir = 8; icon_state = "tube1" @@ -25036,7 +25012,7 @@ /obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled/white, /area/crew_quarters/medbreak) -"MC" = ( +"aMC" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -25047,22 +25023,21 @@ /obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled/white, /area/crew_quarters/medbreak) -"MD" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel, -/area/quartermaster/warehouse) -"ME" = ( +"aMD" = ( +/turf/simulated/wall, +/area/quartermaster/belterdock/refinery) +"aME" = ( /obj/structure/table/glass, /obj/item/weapon/deck/cards, /obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled/white, /area/crew_quarters/medbreak) -"MF" = ( +"aMF" = ( /obj/structure/table/glass, /obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled/white, /area/crew_quarters/medbreak) -"MG" = ( +"aMG" = ( /obj/structure/bed/chair{ dir = 8 }, @@ -25072,12 +25047,12 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/medbreak) -"MH" = ( +"aMH" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled/white, /area/crew_quarters/medbreak) -"MI" = ( +"aMI" = ( /obj/structure/sink{ dir = 4; icon_state = "sink"; @@ -25087,7 +25062,7 @@ /obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled/white, /area/crew_quarters/medbreak) -"MJ" = ( +"aMJ" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -25097,10 +25072,10 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"MK" = ( +"aMK" = ( /turf/simulated/open, /area/medical/sleeper) -"ML" = ( +"aML" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/borderfloorwhite{ dir = 8 @@ -25115,7 +25090,7 @@ }, /turf/simulated/floor/tiled/white, /area/hallway/secondary/escape/medical_escape_pod_hallway) -"MM" = ( +"aMM" = ( /obj/machinery/power/apc{ dir = 4; name = "east bump"; @@ -25131,19 +25106,10 @@ }, /turf/simulated/floor/tiled/white, /area/hallway/secondary/escape/medical_escape_pod_hallway) -"MN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/conveyor_switch{ - id = "gloriouscargopipeline"; - name = "Mining Supply conveyor switch"; - pixel_x = 0; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/steel, -/area/quartermaster/warehouse) -"MO" = ( +"aMN" = ( +/turf/simulated/wall, +/area/quartermaster/belterdock/gear) +"aMO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, @@ -25152,7 +25118,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/medical_restroom) -"MP" = ( +"aMP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -25171,7 +25137,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/medical_restroom) -"MQ" = ( +"aMQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -25186,7 +25152,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/medical_restroom) -"MR" = ( +"aMR" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/medical{ name = "Rest Room" @@ -25210,7 +25176,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/medbreak) -"MS" = ( +"aMS" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -25232,7 +25198,7 @@ /obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled/white, /area/crew_quarters/medbreak) -"MT" = ( +"aMT" = ( /obj/structure/cable/green{ d1 = 1; d2 = 8; @@ -25248,7 +25214,7 @@ /obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled/white, /area/crew_quarters/medbreak) -"MU" = ( +"aMU" = ( /obj/structure/bed/chair{ dir = 4 }, @@ -25258,19 +25224,19 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/medbreak) -"MV" = ( +"aMV" = ( /obj/structure/table/glass, /obj/machinery/recharger, /obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled/white, /area/crew_quarters/medbreak) -"MW" = ( +"aMW" = ( /obj/structure/table/glass, /obj/item/device/universal_translator, /obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled/white, /area/crew_quarters/medbreak) -"MX" = ( +"aMX" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -25281,7 +25247,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"MY" = ( +"aMY" = ( /obj/structure/table/standard, /obj/machinery/microwave, /obj/machinery/light{ @@ -25290,7 +25256,7 @@ /obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled/white, /area/crew_quarters/medbreak) -"MZ" = ( +"aMZ" = ( /obj/structure/flora/pottedplant/stoutbush, /obj/machinery/light, /obj/effect/floor_decal/borderfloorwhite{ @@ -25301,7 +25267,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"Na" = ( +"aNa" = ( /obj/machinery/vending/wallmed1{ pixel_y = -30 }, @@ -25309,12 +25275,12 @@ /obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"Nb" = ( +"aNb" = ( /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"Nc" = ( +"aNc" = ( /obj/effect/floor_decal/steeldecal/steel_decals4{ dir = 8 }, @@ -25343,7 +25309,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"Nd" = ( +"aNd" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, @@ -25355,7 +25321,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"Ne" = ( +"aNe" = ( /obj/structure/closet/crate/freezer, /obj/item/weapon/virusdish/random, /obj/item/weapon/virusdish/random, @@ -25366,7 +25332,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"Nf" = ( +"aNf" = ( /obj/structure/bed/chair{ dir = 1 }, @@ -25374,7 +25340,7 @@ /obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"Ng" = ( +"aNg" = ( /obj/structure/bed/chair{ dir = 1 }, @@ -25383,7 +25349,7 @@ /obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"Nh" = ( +"aNh" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 5; pixel_y = -32 @@ -25395,7 +25361,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"Ni" = ( +"aNi" = ( /obj/effect/floor_decal/borderfloorwhite/corner{ dir = 8 }, @@ -25404,7 +25370,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"Nj" = ( +"aNj" = ( /obj/machinery/alarm{ dir = 4; icon_state = "alarm0"; @@ -25427,7 +25393,7 @@ }, /turf/simulated/floor/tiled/white, /area/hallway/secondary/escape/medical_escape_pod_hallway) -"Nk" = ( +"aNk" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 @@ -25443,10 +25409,10 @@ }, /turf/simulated/floor/tiled/monotile, /area/tether/exploration) -"Nl" = ( +"aNl" = ( /turf/simulated/floor/tiled/white, /area/crew_quarters/medical_restroom) -"Nm" = ( +"aNm" = ( /obj/structure/table/standard, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 @@ -25454,17 +25420,15 @@ /obj/machinery/light/small, /turf/simulated/floor/tiled/white, /area/crew_quarters/medical_restroom) -"Nn" = ( -/obj/structure/plasticflaps, -/obj/structure/disposalpipe/trunk{ +"aNn" = ( +/obj/structure/disposalpipe/trunk, +/obj/structure/disposaloutlet{ dir = 4 }, -/obj/machinery/disposal/deliveryChute{ - dir = 4 - }, -/turf/simulated/floor, -/area/quartermaster/warehouse) -"No" = ( +/obj/structure/railing, +/turf/simulated/floor/tiled/dark, +/area/quartermaster/belterdock/refinery) +"aNo" = ( /obj/structure/table/standard, /obj/item/weapon/storage/box/cups, /obj/effect/floor_decal/corner/paleblue/diagonal, @@ -25474,7 +25438,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/medbreak) -"Np" = ( +"aNp" = ( /obj/structure/closet/secure_closet/detective, /obj/item/weapon/reagent_containers/spray/pepper, /obj/item/weapon/gun/energy/taser, @@ -25491,7 +25455,7 @@ }, /turf/simulated/floor/carpet, /area/security/detectives_office) -"Nq" = ( +"aNq" = ( /obj/structure/table/standard, /obj/item/weapon/storage/box/donkpockets, /obj/machinery/firealarm{ @@ -25501,10 +25465,10 @@ /obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled/white, /area/crew_quarters/medbreak) -"Nr" = ( +"aNr" = ( /turf/simulated/wall/r_wall, /area/medical/virologyaccess) -"Ns" = ( +"aNs" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/medical{ autoclose = 0; @@ -25541,11 +25505,11 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/white, /area/medical/virologyaccess) -"Nt" = ( +"aNt" = ( /obj/structure/sign/department/virology, /turf/simulated/wall/r_wall, /area/medical/virologyaccess) -"Nu" = ( +"aNu" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 8 }, @@ -25571,7 +25535,7 @@ }, /turf/simulated/floor/tiled/white, /area/hallway/secondary/escape/medical_escape_pod_hallway) -"Nv" = ( +"aNv" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 4 }, @@ -25586,7 +25550,7 @@ }, /turf/simulated/floor/tiled/white, /area/hallway/secondary/escape/medical_escape_pod_hallway) -"Nw" = ( +"aNw" = ( /obj/machinery/hologram/holopad, /obj/structure/cable/cyan{ d1 = 1; @@ -25603,14 +25567,22 @@ }, /turf/simulated/floor/tiled/techfloor, /area/ai_core_foyer) -"Nx" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +"aNx" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/vehicle/train/trolley{ + dir = 8 }, -/turf/simulated/floor/tiled/steel, -/area/quartermaster/warehouse) -"Ny" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"aNy" = ( /obj/structure/table/standard, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 @@ -25623,12 +25595,12 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"Nz" = ( +"aNz" = ( /obj/effect/floor_decal/corner/paleblue/diagonal, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, /area/crew_quarters/medbreak) -"NA" = ( +"aNA" = ( /obj/item/device/radio/intercom{ dir = 4; pixel_x = 24 @@ -25638,7 +25610,7 @@ /obj/item/weapon/storage/mre/random, /turf/simulated/floor/tiled/white, /area/crew_quarters/medbreak) -"NB" = ( +"aNB" = ( /obj/machinery/shower{ dir = 4; icon_state = "shower"; @@ -25652,7 +25624,7 @@ /obj/structure/curtain/open/shower/medical, /turf/simulated/floor/tiled/steel, /area/medical/virologyaccess) -"NC" = ( +"aNC" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -25670,7 +25642,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virologyaccess) -"ND" = ( +"aND" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -25678,7 +25650,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"NE" = ( +"aNE" = ( /obj/effect/floor_decal/borderfloor{ dir = 4; pixel_x = -16 @@ -25714,7 +25686,7 @@ }, /turf/simulated/floor/tiled, /area/security/hallway) -"NF" = ( +"aNF" = ( /obj/machinery/door/airlock/glass_external, /obj/structure/cable/green{ d1 = 1; @@ -25725,18 +25697,18 @@ /obj/effect/map_helper/airlock/door/simple, /turf/simulated/floor/tiled/white, /area/hallway/secondary/escape/medical_escape_pod_hallway) -"NG" = ( +"aNG" = ( /obj/machinery/door/airlock/glass_external, /obj/effect/floor_decal/industrial/hatch/yellow, /obj/effect/map_helper/airlock/door/simple, /turf/simulated/floor/tiled/white, /area/hallway/secondary/escape/medical_escape_pod_hallway) -"NH" = ( +"aNH" = ( /obj/effect/floor_decal/corner/paleblue/diagonal, /obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled/white, /area/crew_quarters/medbreak) -"NI" = ( +"aNI" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/red/border, /obj/machinery/camera/network/security{ @@ -25745,13 +25717,13 @@ }, /turf/simulated/floor/tiled, /area/security/hallwayaux) -"NJ" = ( +"aNJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/universal{ dir = 4 }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"NK" = ( +"aNK" = ( /obj/structure/closet/l3closet/virology, /obj/machinery/alarm{ dir = 8; @@ -25766,10 +25738,10 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virologyaccess) -"NL" = ( +"aNL" = ( /turf/simulated/wall/rshull, /area/shuttle/medivac/engines) -"NM" = ( +"aNM" = ( /obj/machinery/door/airlock/glass_external, /obj/machinery/airlock_sensor/airlock_exterior/shuttle{ dir = 5; @@ -25784,7 +25756,7 @@ /obj/effect/map_helper/airlock/door/ext_door, /turf/simulated/floor/tiled/techfloor/grid, /area/shuttle/medivac/general) -"NN" = ( +"aNN" = ( /obj/structure/sink{ dir = 8; icon_state = "sink"; @@ -25793,11 +25765,11 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virologyaccess) -"NO" = ( +"aNO" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/bluegrid, /area/ai_core_foyer) -"NP" = ( +"aNP" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -25814,7 +25786,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virologyaccess) -"NQ" = ( +"aNQ" = ( /obj/structure/cable/green{ d1 = 1; d2 = 8; @@ -25838,7 +25810,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/foyer) -"NR" = ( +"aNR" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 }, @@ -25847,7 +25819,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"NS" = ( +"aNS" = ( /obj/machinery/portable_atmospherics/canister/air, /obj/machinery/atmospherics/portables_connector{ dir = 4 @@ -25855,7 +25827,7 @@ /obj/effect/floor_decal/industrial/outline/grey, /turf/simulated/floor/tiled/techfloor/grid, /area/shuttle/medivac/engines) -"NT" = ( +"aNT" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume, /obj/machinery/embedded_controller/radio/airlock/docking_port{ dir = 4; @@ -25879,15 +25851,24 @@ /obj/effect/map_helper/airlock/atmos/chamber_pump, /turf/simulated/floor/tiled/techfloor/grid, /area/shuttle/medivac/general) -"NU" = ( -/obj/structure/shuttle/engine/propulsion{ - dir = 8; - icon_state = "propulsion_l" +"aNU" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/turf/simulated/shuttle/plating/airless/carry, -/area/shuttle/belter) -"NV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"aNV" = ( /obj/machinery/sleeper{ dir = 4 }, @@ -25899,10 +25880,10 @@ }, /turf/simulated/floor/tiled/white, /area/shuttle/medivac/general) -"NW" = ( +"aNW" = ( /turf/simulated/wall/r_wall, /area/medical/virology) -"NX" = ( +"aNX" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/medical{ autoclose = 0; @@ -25923,7 +25904,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/yellow, /turf/simulated/floor/tiled/white, /area/medical/virologyaccess) -"NY" = ( +"aNY" = ( /obj/effect/floor_decal/borderfloor{ dir = 1; pixel_y = 0 @@ -25948,13 +25929,13 @@ /obj/machinery/camera/network/security, /turf/simulated/floor/tiled, /area/security/hallwayaux) -"NZ" = ( +"aNZ" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/yellow{ dir = 1 }, /turf/simulated/wall/rshull, /area/shuttle/medivac/engines) -"Oa" = ( +"aOa" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /obj/structure/cable{ d1 = 1; @@ -25963,7 +25944,7 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/shuttle/medivac/engines) -"Ob" = ( +"aOb" = ( /obj/machinery/power/terminal{ icon_state = "term"; dir = 1 @@ -25973,14 +25954,23 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/shuttle/medivac/engines) -"Oc" = ( -/obj/structure/shuttle/engine/propulsion{ - dir = 8 +"aOc" = ( +/obj/machinery/door/airlock/glass_mining{ + name = "Belter Shuttle"; + req_access = list(31); + req_one_access = list() }, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/turf/simulated/shuttle/plating/airless/carry, -/area/shuttle/belter) -"Od" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/quartermaster/belterdock) +"aOd" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /obj/structure/cable/green{ d1 = 1; @@ -25991,21 +25981,32 @@ /obj/effect/map_helper/airlock/door/int_door, /turf/simulated/floor/tiled/techfloor/grid, /area/shuttle/medivac/general) -"Oe" = ( +"aOe" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /obj/machinery/door/airlock/glass_external, /obj/effect/map_helper/airlock/door/int_door, /turf/simulated/floor/tiled/techfloor/grid, /area/shuttle/medivac/general) -"Of" = ( -/obj/structure/shuttle/engine/propulsion{ - dir = 8; - icon_state = "propulsion_r" +"aOf" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/turf/simulated/shuttle/plating/airless/carry, -/area/shuttle/belter) -"Og" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/quartermaster/belterdock) +"aOg" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 8 }, @@ -26021,27 +26022,44 @@ }, /turf/simulated/floor/tiled/white, /area/shuttle/medivac/general) -"Oh" = ( +"aOh" = ( /turf/simulated/floor/tiled/white, /area/shuttle/medivac/general) -"Oj" = ( +"aOi" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10; + icon_state = "intact" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/quartermaster/belterdock) +"aOj" = ( /obj/structure/bed/padded, /obj/machinery/alarm{ pixel_y = 22 }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"Ok" = ( +"aOk" = ( /obj/structure/closet/secure_closet/personal/patient, /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled/white, /area/medical/virology) -"Ol" = ( +"aOl" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /turf/simulated/floor/plating, /area/medical/virology) -"Om" = ( +"aOm" = ( /obj/structure/table/glass, /obj/item/weapon/hand_labeler, /obj/item/device/radio{ @@ -26071,7 +26089,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"On" = ( +"aOn" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -26088,13 +26106,13 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"Oo" = ( +"aOo" = ( /obj/structure/sink{ pixel_y = 26 }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"Op" = ( +"aOp" = ( /obj/machinery/disease2/incubator, /obj/item/device/radio/intercom{ dir = 1; @@ -26103,7 +26121,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"Oq" = ( +"aOq" = ( /obj/machinery/computer/diseasesplicer, /obj/item/device/radio/intercom/department/medbay{ dir = 1; @@ -26111,7 +26129,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"Or" = ( +"aOr" = ( /obj/structure/closet/l3closet/virology, /obj/machinery/access_button{ command = "cycle_interior"; @@ -26133,7 +26151,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virologyaccess) -"Os" = ( +"aOs" = ( /obj/machinery/power/apc{ cell_type = /obj/item/weapon/cell/super; dir = 8; @@ -26156,7 +26174,7 @@ /obj/item/weapon/tank/phoron, /turf/simulated/floor/tiled/techfloor/grid, /area/shuttle/medivac/engines) -"Ot" = ( +"aOt" = ( /obj/structure/cable/green{ d1 = 1; d2 = 4; @@ -26172,23 +26190,46 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/shuttle/medivac/engines) -"Ov" = ( +"aOu" = ( +/obj/machinery/firealarm{ + dir = 4; + layer = 3.3; + pixel_x = 26 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/belterdock) +"aOv" = ( /obj/effect/floor_decal/techfloor{ dir = 4 }, /turf/simulated/floor/bluegrid, /area/ai_core_foyer) -"Ox" = ( +"aOw" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/disposalpipe/segment, +/obj/machinery/camera/network/mining{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/belterdock) +"aOx" = ( /turf/simulated/open, /area/tether/exploration) -"Oy" = ( +"aOy" = ( /obj/machinery/light{ dir = 8; icon_state = "tube1" }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"Oz" = ( +"aOz" = ( /obj/structure/table/rack/shelf, /obj/item/weapon/storage/backpack/parachute{ pixel_x = -4; @@ -26208,7 +26249,7 @@ }, /turf/simulated/floor/tiled/monotile, /area/tether/exploration) -"OA" = ( +"aOA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/yellow{ dir = 5 }, @@ -26217,7 +26258,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"OB" = ( +"aOB" = ( /obj/machinery/door/window/eastright{ name = "Virology Isolation Room One"; req_one_access = list(39) @@ -26230,7 +26271,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"OC" = ( +"aOC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/yellow{ dir = 4 }, @@ -26239,7 +26280,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"OD" = ( +"aOD" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -26254,10 +26295,10 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"OE" = ( +"aOE" = ( /turf/simulated/floor/tiled/white, /area/medical/virology) -"OF" = ( +"aOF" = ( /obj/structure/bed/chair/office/dark{ dir = 1 }, @@ -26266,7 +26307,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"OG" = ( +"aOG" = ( /obj/structure/table/glass, /obj/machinery/computer/med_data/laptop{ dir = 8; @@ -26283,19 +26324,19 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"OH" = ( +"aOH" = ( /obj/machinery/atmospherics/binary/pump{ dir = 1 }, /turf/simulated/floor/tiled/techfloor/grid, /area/shuttle/medivac/engines) -"OI" = ( +"aOI" = ( /obj/structure/cable{ icon_state = "1-4" }, /turf/simulated/floor/tiled/techfloor/grid, /area/shuttle/medivac/engines) -"OJ" = ( +"aOJ" = ( /obj/machinery/door/airlock/multi_tile/metal/mait{ dir = 2; icon_state = "door_closed"; @@ -26307,13 +26348,16 @@ }, /turf/simulated/floor/tiled/white, /area/shuttle/medivac/engines) -"OK" = ( +"aOK" = ( /obj/structure/cable{ icon_state = "4-8" }, /turf/simulated/floor/tiled/white, /area/shuttle/medivac/general) -"OM" = ( +"aOL" = ( +/turf/simulated/floor/tiled, +/area/quartermaster/belterdock) +"aOM" = ( /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/blue/border, /obj/effect/floor_decal/borderfloorwhite/corner2, @@ -26323,7 +26367,7 @@ }, /turf/simulated/floor/tiled/white, /area/shuttle/medivac/general) -"ON" = ( +"aON" = ( /obj/effect/floor_decal/borderfloorwhite/corner{ dir = 8 }, @@ -26338,7 +26382,17 @@ }, /turf/simulated/floor/tiled/white, /area/shuttle/medivac/general) -"OP" = ( +"aOO" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4; + icon_state = "map" + }, +/obj/machinery/camera/network/mining{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/quartermaster/belterdock) +"aOP" = ( /obj/effect/floor_decal/corner/paleblue/diagonal, /obj/item/device/radio/intercom/department/medbay{ dir = 4; @@ -26354,7 +26408,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/medbreak) -"OQ" = ( +"aOQ" = ( /obj/structure/disposalpipe/trunk{ dir = 1 }, @@ -26365,7 +26419,7 @@ }, /turf/simulated/floor/wood, /area/security/breakroom) -"OR" = ( +"aOR" = ( /obj/structure/table/glass, /obj/item/weapon/storage/fancy/vials, /obj/item/weapon/reagent_containers/syringe/antiviral, @@ -26377,7 +26431,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"OS" = ( +"aOS" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -26390,15 +26444,15 @@ /obj/machinery/atmospherics/pipe/simple/hidden/yellow, /turf/simulated/floor/tiled/white, /area/medical/virology) -"OT" = ( +"aOT" = ( /obj/machinery/disease2/isolator, /turf/simulated/floor/tiled/white, /area/medical/virology) -"OU" = ( +"aOU" = ( /obj/machinery/computer/centrifuge, /turf/simulated/floor/tiled/white, /area/medical/virology) -"OV" = ( +"aOV" = ( /obj/structure/table/glass, /obj/item/weapon/paper_bin{ pixel_x = 1; @@ -26423,7 +26477,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"OW" = ( +"aOW" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/red/border, /obj/machinery/camera/network/security{ @@ -26432,7 +26486,7 @@ }, /turf/simulated/floor/tiled, /area/security/briefing_room) -"OX" = ( +"aOX" = ( /obj/effect/floor_decal/techfloor{ dir = 8 }, @@ -26442,20 +26496,20 @@ /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/bluegrid, /area/ai_core_foyer) -"OY" = ( +"aOY" = ( /obj/effect/landmark{ name = "morphspawn" }, /turf/simulated/floor/tiled/dark, /area/security/nuke_storage) -"OZ" = ( +"aOZ" = ( /obj/effect/floor_decal/industrial/warning, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, /turf/simulated/floor/bluegrid, /area/ai_core_foyer) -"Pa" = ( +"aPa" = ( /obj/item/weapon/stool/padded, /obj/structure/cable/green{ d1 = 1; @@ -26467,11 +26521,11 @@ /obj/machinery/atmospherics/pipe/simple/hidden/yellow, /turf/simulated/floor/tiled/white, /area/medical/virology) -"Pb" = ( +"aPb" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled/white, /area/medical/virology) -"Pc" = ( +"aPc" = ( /obj/machinery/ai_slipper{ icon_state = "motion0" }, @@ -26480,7 +26534,7 @@ }, /turf/simulated/floor/bluegrid, /area/ai_core_foyer) -"Pd" = ( +"aPd" = ( /obj/structure/table/glass, /obj/item/device/antibody_scanner{ pixel_x = 2; @@ -26493,7 +26547,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"Pe" = ( +"aPe" = ( /obj/structure/cable/cyan{ d1 = 1; d2 = 2; @@ -26507,7 +26561,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/ai_core_foyer) -"Pf" = ( +"aPf" = ( /obj/structure/table/glass, /obj/item/weapon/storage/box/syringes{ pixel_x = 4; @@ -26519,7 +26573,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"Pg" = ( +"aPg" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -26530,7 +26584,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/yellow, /turf/simulated/floor/tiled/white, /area/medical/virology) -"Ph" = ( +"aPh" = ( /obj/machinery/ai_slipper{ icon_state = "motion0" }, @@ -26539,7 +26593,7 @@ }, /turf/simulated/floor/bluegrid, /area/ai_core_foyer) -"Pi" = ( +"aPi" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" @@ -26549,7 +26603,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"Pj" = ( +"aPj" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -26558,7 +26612,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"Pk" = ( +"aPk" = ( /obj/structure/catwalk, /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ @@ -26574,7 +26628,7 @@ }, /turf/simulated/floor, /area/maintenance/station/ai) -"Pl" = ( +"aPl" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -26584,7 +26638,7 @@ /obj/effect/floor_decal/industrial/warning/corner, /turf/simulated/floor/tiled/white, /area/medical/virology) -"Pm" = ( +"aPm" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 8 @@ -26598,7 +26652,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"Pn" = ( +"aPn" = ( /obj/machinery/door/window/eastright{ name = "Virology Isolation Room Two"; req_one_access = list(39) @@ -26611,7 +26665,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"Po" = ( +"aPo" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -26632,7 +26686,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/tiled/white, /area/medical/virology) -"Pp" = ( +"aPp" = ( /obj/structure/cable/green{ d1 = 2; d2 = 8; @@ -26651,14 +26705,14 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"Pq" = ( +"aPq" = ( /obj/machinery/camera/network/security{ icon_state = "camera"; dir = 10 }, /turf/simulated/open, /area/security/hallway) -"Pr" = ( +"aPr" = ( /obj/effect/floor_decal/techfloor, /obj/machinery/camera/network/command{ icon_state = "camera"; @@ -26666,7 +26720,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/ai_core_foyer) -"Ps" = ( +"aPs" = ( /obj/machinery/atmospherics/tvalve/bypass, /obj/machinery/light{ dir = 4 @@ -26676,7 +26730,7 @@ }, /turf/simulated/floor/plating, /area/medical/virology) -"Pt" = ( +"aPt" = ( /obj/structure/bed/chair{ dir = 1 }, @@ -26688,7 +26742,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/sleeper) -"Pu" = ( +"aPu" = ( /obj/structure/table/glass, /obj/item/weapon/storage/box/monkeycubes, /obj/machinery/power/apc{ @@ -26699,7 +26753,7 @@ /obj/structure/cable/green, /turf/simulated/floor/tiled/white, /area/medical/virology) -"Pv" = ( +"aPv" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -26716,7 +26770,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"Pw" = ( +"aPw" = ( /obj/machinery/disease2/diseaseanalyser, /obj/machinery/alarm{ dir = 8; @@ -26726,20 +26780,20 @@ /obj/machinery/camera/network/medbay, /turf/simulated/floor/tiled/white, /area/medical/virology) -"Px" = ( +"aPx" = ( /obj/machinery/camera/network/exploration{ icon_state = "camera"; dir = 5 }, /turf/simulated/floor/tiled/monotile, /area/tether/exploration) -"Py" = ( +"aPy" = ( /obj/machinery/atmospherics/pipe/simple/hidden/black{ dir = 4 }, /turf/simulated/wall/r_wall, /area/medical/virology) -"Pz" = ( +"aPz" = ( /obj/machinery/atmospherics/unary/vent_pump{ dir = 8; external_pressure_bound = 140; @@ -26751,7 +26805,7 @@ }, /turf/simulated/floor/airless, /area/medical/virology) -"PA" = ( +"aPA" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/closet/secure_closet/freezer/money, /obj/item/weapon/storage/secure/briefcase/money{ @@ -26762,17 +26816,17 @@ /obj/item/weapon/storage/mrebag/pill/sleevingcure, /turf/simulated/floor/tiled/dark, /area/security/nuke_storage) -"PB" = ( +"aPB" = ( /turf/simulated/wall/r_wall, /area/medical/virologyisolation) -"PC" = ( +"aPC" = ( /obj/effect/floor_decal/industrial/warning, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 }, /turf/simulated/floor/bluegrid, /area/ai_core_foyer) -"PD" = ( +"aPD" = ( /obj/machinery/smartfridge/secure/virology, /obj/machinery/atmospherics/pipe/simple/hidden/black{ dir = 5 @@ -26783,7 +26837,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"PE" = ( +"aPE" = ( /obj/structure/cable/green{ d1 = 1; d2 = 4; @@ -26805,7 +26859,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virologyisolation) -"PF" = ( +"aPF" = ( /obj/effect/floor_decal/techfloor{ dir = 4 }, @@ -26816,7 +26870,7 @@ /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/bluegrid, /area/ai_core_foyer) -"PG" = ( +"aPG" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -26827,7 +26881,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virologyisolation) -"PH" = ( +"aPH" = ( /obj/structure/sink{ pixel_y = 26 }, @@ -26841,7 +26895,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virologyisolation) -"PI" = ( +"aPI" = ( /obj/structure/reagent_dispensers/water_cooler/full{ dir = 4 }, @@ -26854,7 +26908,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virologyisolation) -"PJ" = ( +"aPJ" = ( /obj/structure/bed/padded, /obj/item/weapon/bedsheet/green, /obj/machinery/power/apc{ @@ -26875,13 +26929,13 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virologyisolation) -"PK" = ( +"aPK" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/wall/r_wall, /area/medical/virologyisolation) -"PL" = ( +"aPL" = ( /obj/structure/disposalpipe/trunk{ dir = 8 }, @@ -26890,7 +26944,7 @@ }, /turf/simulated/floor/airless, /area/medical/virologyisolation) -"PM" = ( +"aPM" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/structure/window/reinforced{ @@ -26898,7 +26952,7 @@ }, /turf/simulated/floor/plating, /area/medical/virologyisolation) -"PN" = ( +"aPN" = ( /obj/structure/table/standard, /obj/item/weapon/soap/nanotrasen, /obj/item/weapon/storage/box/cups, @@ -26907,7 +26961,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virologyisolation) -"PO" = ( +"aPO" = ( /obj/item/weapon/stool/padded, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/yellow{ @@ -26915,7 +26969,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virologyisolation) -"PP" = ( +"aPP" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -26925,10 +26979,10 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor, /area/tether/exploration) -"PQ" = ( +"aPQ" = ( /turf/simulated/floor/tiled/white, /area/medical/virologyisolation) -"PR" = ( +"aPR" = ( /obj/structure/bed/padded, /obj/item/weapon/bedsheet/green, /obj/machinery/firealarm{ @@ -26937,21 +26991,21 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virologyisolation) -"PS" = ( +"aPS" = ( /obj/machinery/vending/snack{ dir = 4 }, /turf/simulated/floor/tiled/white, /area/medical/virologyisolation) -"PT" = ( +"aPT" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, /area/medical/virologyisolation) -"PU" = ( +"aPU" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled/white, /area/medical/virologyisolation) -"PV" = ( +"aPV" = ( /obj/structure/bed/padded, /obj/item/weapon/bedsheet/green, /obj/item/device/radio/intercom{ @@ -26960,7 +27014,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virologyisolation) -"PW" = ( +"aPW" = ( /obj/machinery/disposal, /obj/machinery/alarm{ dir = 1; @@ -26980,18 +27034,18 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virologyisolation) -"PX" = ( +"aPX" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, /turf/simulated/floor/tiled/white, /area/medical/virologyisolation) -"PY" = ( +"aPY" = ( /obj/item/weapon/stool/padded, /turf/simulated/floor/tiled/white, /area/medical/virologyisolation) -"PZ" = ( +"aPZ" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -27005,20 +27059,20 @@ }, /turf/simulated/floor/tiled/monotile, /area/tether/exploration) -"Qa" = ( +"aQa" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/medical/virologyisolation) -"Qb" = ( +"aQb" = ( /obj/machinery/camera/network/exploration{ icon_state = "camera"; dir = 9 }, /turf/simulated/open, /area/tether/exploration) -"Qc" = ( +"aQc" = ( /obj/structure/table/standard, /obj/machinery/light_switch{ pixel_x = -12; @@ -27037,14 +27091,14 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"Qd" = ( +"aQd" = ( /obj/structure/table/standard, /obj/machinery/photocopier/faxmachine{ department = "Quartermaster-Office" }, /turf/simulated/floor/wood, /area/quartermaster/qm) -"Qe" = ( +"aQe" = ( /obj/machinery/conveyor{ dir = 1; id = "QMLoad" @@ -27055,13 +27109,13 @@ }, /turf/simulated/floor, /area/quartermaster/storage) -"Qf" = ( +"aQf" = ( /obj/structure/toilet{ pixel_y = 15 }, /turf/simulated/floor/tiled/white, /area/crew_quarters/medical_restroom) -"Qg" = ( +"aQg" = ( /obj/machinery/light/small{ dir = 1 }, @@ -27070,22 +27124,16 @@ }, /turf/simulated/floor/tiled, /area/maintenance/station/cargo) -"Qh" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/vehicle/train/trolley{ - dir = 1 +"aQh" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "miningops" }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"Qi" = ( +/obj/structure/plasticflaps, +/obj/structure/railing, +/turf/simulated/floor/plating, +/area/quartermaster/belterdock/refinery) +"aQi" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -27099,7 +27147,7 @@ /obj/machinery/camera/network/tether, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"Qj" = ( +"aQj" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/paleblue/border, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -27113,7 +27161,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"Qk" = ( +"aQk" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -27127,14 +27175,14 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"Ql" = ( +"aQl" = ( /obj/machinery/camera/network/security{ icon_state = "camera"; dir = 10 }, /turf/simulated/open, /area/security/brig) -"Qm" = ( +"aQm" = ( /obj/structure/catwalk, /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ @@ -27148,7 +27196,7 @@ }, /turf/simulated/floor, /area/maintenance/station/ai) -"Qn" = ( +"aQn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 @@ -27158,7 +27206,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/heads/hos) -"Qo" = ( +"aQo" = ( /obj/item/weapon/storage/secure/safe{ pixel_x = -28 }, @@ -27171,13 +27219,13 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"Qp" = ( +"aQp" = ( /obj/effect/landmark{ name = "morphspawn" }, /turf/simulated/floor/tiled/white, /area/crew_quarters/medical_restroom) -"Qq" = ( +"aQq" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ d1 = 1; @@ -27188,17 +27236,18 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor, /area/maintenance/station/cargo) -"Qr" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +"aQr" = ( +/obj/machinery/mineral/input, +/obj/structure/sign/warning/moving_parts{ + pixel_y = 32 + }, +/obj/machinery/conveyor{ + dir = 4; + id = "miningops" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, -/area/quartermaster/storage) -"Qs" = ( +/area/quartermaster/belterdock/refinery) +"aQs" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/glass_medical{ name = "Virology Laboratory"; @@ -27214,16 +27263,16 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, /area/medical/virology) -"Qt" = ( +"aQt" = ( /turf/simulated/wall, /area/tether/exploration) -"Qu" = ( +"aQu" = ( /obj/structure/railing, /obj/structure/closet, /obj/random/maintenance/medical, /turf/simulated/floor/plating, /area/maintenance/station/cargo) -"Qv" = ( +"aQv" = ( /obj/structure/railing, /obj/effect/decal/cleanable/dirt, /obj/structure/closet/crate, @@ -27231,7 +27280,7 @@ /obj/random/maintenance/clean, /turf/simulated/floor/plating, /area/maintenance/station/cargo) -"Qw" = ( +"aQw" = ( /obj/effect/floor_decal/techfloor{ dir = 8 }, @@ -27240,14 +27289,14 @@ }, /turf/simulated/floor/bluegrid, /area/ai_core_foyer) -"Qx" = ( +"aQx" = ( /obj/machinery/light/small{ icon_state = "bulb1"; dir = 1 }, /turf/simulated/floor/tiled/white, /area/crew_quarters/medical_restroom) -"Qy" = ( +"aQy" = ( /obj/structure/table/standard, /obj/machinery/camera/network/cargo{ dir = 1; @@ -27256,27 +27305,15 @@ /obj/machinery/cell_charger, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"Qz" = ( +"aQz" = ( /obj/structure/railing, /turf/simulated/floor, /area/maintenance/cargo) -"QA" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"QB" = ( +"aQA" = ( +/obj/machinery/mineral/unloading_machine, +/turf/simulated/floor/tiled/dark, +/area/quartermaster/belterdock/refinery) +"aQB" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -27288,15 +27325,15 @@ }, /turf/simulated/floor/plating, /area/maintenance/station/cargo) -"QC" = ( +"aQC" = ( /obj/machinery/door/airlock/maintenance/common, /turf/simulated/floor/plating, /area/maintenance/station/cargo) -"QD" = ( +"aQD" = ( /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/station/cargo) -"QE" = ( +"aQE" = ( /obj/effect/landmark/start{ name = "Medical Doctor" }, @@ -27306,7 +27343,7 @@ /obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled/white, /area/crew_quarters/medbreak) -"QF" = ( +"aQF" = ( /obj/machinery/alarm{ dir = 8; icon_state = "alarm0"; @@ -27315,14 +27352,15 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/station/cargo) -"QG" = ( +"aQG" = ( /turf/simulated/wall, /area/quartermaster/belterdock) -"QH" = ( -/obj/machinery/door/airlock/glass_mining{ - name = "Belter Shuttle"; - req_access = list(31); - req_one_access = list() +"aQH" = ( +/obj/machinery/alarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22; + pixel_y = 0 }, /obj/structure/cable/green{ d1 = 1; @@ -27331,9 +27369,11 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/quartermaster/belterdock) -"QI" = ( +"aQI" = ( /obj/structure/cable/cyan{ icon_state = "32-1" }, @@ -27345,7 +27385,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/ai_core_foyer) -"QJ" = ( +"aQJ" = ( /obj/effect/floor_decal/techfloor{ dir = 4 }, @@ -27354,7 +27394,7 @@ }, /turf/simulated/floor/bluegrid, /area/ai_core_foyer) -"QK" = ( +"aQK" = ( /obj/structure/cable/green{ d1 = 1; d2 = 4; @@ -27368,7 +27408,7 @@ }, /turf/simulated/floor, /area/tether/exploration) -"QL" = ( +"aQL" = ( /obj/machinery/alarm{ dir = 1; icon_state = "alarm0"; @@ -27376,12 +27416,12 @@ }, /turf/simulated/floor/tiled/monotile, /area/tether/exploration) -"QM" = ( +"aQM" = ( /obj/effect/decal/cleanable/dirt, /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/station/cargo) -"QN" = ( +"aQN" = ( /obj/machinery/light/small{ dir = 1 }, @@ -27391,7 +27431,7 @@ /obj/structure/railing, /turf/simulated/floor/plating, /area/maintenance/station/cargo) -"QO" = ( +"aQO" = ( /obj/structure/railing, /obj/effect/decal/cleanable/dirt, /obj/structure/closet/crate, @@ -27399,7 +27439,7 @@ /obj/random/maintenance/clean, /turf/simulated/floor/plating, /area/maintenance/station/cargo) -"QP" = ( +"aQP" = ( /obj/structure/railing, /obj/effect/decal/cleanable/dirt, /obj/structure/table/rack{ @@ -27411,19 +27451,19 @@ /obj/random/maintenance/clean, /turf/simulated/floor/plating, /area/maintenance/station/cargo) -"QQ" = ( +"aQQ" = ( /obj/structure/railing, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/station/cargo) -"QR" = ( +"aQR" = ( /obj/machinery/light/small{ dir = 1 }, /obj/structure/railing, /turf/simulated/floor/plating, /area/maintenance/station/cargo) -"QS" = ( +"aQS" = ( /obj/effect/floor_decal/techfloor{ dir = 10 }, @@ -27432,11 +27472,11 @@ }, /turf/simulated/floor/bluegrid, /area/ai_core_foyer) -"QT" = ( +"aQT" = ( /obj/effect/landmark/map_data/virgo3b, /turf/space, /area/space) -"QU" = ( +"aQU" = ( /obj/effect/floor_decal/borderfloorblack/full, /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/deployable/barrier, @@ -27445,7 +27485,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armory/blue) -"QV" = ( +"aQV" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/machinery/light/small{ icon_state = "bulb1"; @@ -27505,7 +27545,7 @@ }, /turf/simulated/floor/tiled, /area/security/observation) -"QW" = ( +"aQW" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -27520,17 +27560,17 @@ }, /turf/simulated/floor/tiled, /area/security/hallway) -"QX" = ( +"aQX" = ( /obj/structure/railing, /turf/simulated/floor, /area/maintenance/station/ai) -"QY" = ( +"aQY" = ( /obj/structure/railing{ dir = 8 }, /turf/simulated/floor, /area/maintenance/station/sec_upper) -"QZ" = ( +"aQZ" = ( /obj/machinery/alarm{ pixel_y = 22 }, @@ -27541,14 +27581,14 @@ /obj/random/maintenance/cargo, /turf/simulated/floor/plating, /area/maintenance/station/cargo) -"Ra" = ( +"aRa" = ( /obj/structure/railing, /obj/structure/railing{ dir = 8 }, /turf/simulated/floor, /area/maintenance/station/sec_upper) -"Rb" = ( +"aRb" = ( /obj/machinery/light/small{ dir = 4; pixel_y = 0 @@ -27556,7 +27596,7 @@ /obj/structure/catwalk, /turf/simulated/floor, /area/maintenance/station/sec_upper) -"Rc" = ( +"aRc" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/railing{ dir = 8 @@ -27567,14 +27607,14 @@ }, /turf/simulated/floor, /area/maintenance/station/sec_upper) -"Rd" = ( +"aRd" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/railing{ dir = 8 }, /turf/simulated/floor, /area/maintenance/station/sec_upper) -"Re" = ( +"aRe" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/railing{ dir = 4 @@ -27582,7 +27622,7 @@ /obj/structure/railing, /turf/simulated/floor, /area/maintenance/station/elevator) -"Rf" = ( +"aRf" = ( /obj/effect/floor_decal/borderfloor/corner2{ dir = 8 }, @@ -27600,35 +27640,35 @@ /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled, /area/security/lobby) -"Rg" = ( +"aRg" = ( /obj/structure/catwalk, /turf/space, /area/space) -"Rh" = ( +"aRh" = ( /obj/structure/lattice, /obj/structure/railing{ dir = 8 }, /turf/space, /area/space) -"Ri" = ( +"aRi" = ( /obj/structure/railing{ dir = 8 }, /turf/space, /area/space) -"Rj" = ( +"aRj" = ( /obj/structure/railing, /obj/structure/railing{ dir = 8 }, /turf/space, /area/space) -"Rk" = ( +"aRk" = ( /obj/structure/catwalk, /turf/simulated/floor, /area/maintenance/station/elevator) -"Rl" = ( +"aRl" = ( /obj/structure/railing, /obj/effect/decal/cleanable/dirt, /obj/structure/table/rack{ @@ -27639,7 +27679,7 @@ /obj/random/tech_supply, /turf/simulated/floor/plating, /area/maintenance/station/cargo) -"Rm" = ( +"aRm" = ( /obj/effect/floor_decal/techfloor{ dir = 6 }, @@ -27648,7 +27688,7 @@ }, /turf/simulated/floor/bluegrid, /area/ai_core_foyer) -"Rn" = ( +"aRn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -27667,7 +27707,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"Ro" = ( +"aRo" = ( /obj/machinery/door/airlock/maintenance/common, /obj/structure/cable/green{ d1 = 1; @@ -27679,7 +27719,7 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor, /area/tether/exploration) -"Rp" = ( +"aRp" = ( /obj/structure/cable/green{ d1 = 1; d2 = 8; @@ -27699,7 +27739,7 @@ }, /turf/simulated/floor, /area/tether/exploration) -"Rq" = ( +"aRq" = ( /obj/structure/table/woodentable, /obj/item/device/flashlight/lamp/green{ dir = 2; @@ -27708,7 +27748,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/heads/hos) -"Rr" = ( +"aRr" = ( /obj/random/tech_supply, /obj/random/tech_supply, /obj/random/tool, @@ -27719,7 +27759,7 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor, /area/maintenance/station/ai) -"Rs" = ( +"aRs" = ( /obj/machinery/button/windowtint{ id = "sec_processing"; pixel_x = 26; @@ -27728,20 +27768,20 @@ }, /turf/simulated/floor/tiled, /area/security/security_processing) -"Rt" = ( +"aRt" = ( /obj/random/obstruction, /turf/simulated/floor, /area/maintenance/station/ai) -"Ru" = ( +"aRu" = ( /turf/simulated/mineral/vacuum, /area/quartermaster/office) -"Rv" = ( +"aRv" = ( /obj/machinery/atmospherics/pipe/simple/hidden/yellow{ dir = 10 }, /turf/simulated/wall/rshull, /area/shuttle/excursion/cargo) -"Rw" = ( +"aRw" = ( /obj/structure/catwalk, /obj/machinery/light/small{ dir = 8 @@ -27751,7 +27791,7 @@ }, /turf/simulated/floor, /area/maintenance/station/ai) -"Rx" = ( +"aRx" = ( /obj/structure/catwalk, /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ @@ -27761,7 +27801,7 @@ }, /turf/simulated/floor, /area/maintenance/station/ai) -"Ry" = ( +"aRy" = ( /obj/structure/railing{ dir = 4 }, @@ -27776,7 +27816,7 @@ }, /turf/simulated/floor, /area/maintenance/station/ai) -"Rz" = ( +"aRz" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/catwalk, /obj/structure/cable{ @@ -27787,7 +27827,7 @@ }, /turf/simulated/floor, /area/maintenance/station/sec_upper) -"RA" = ( +"aRA" = ( /obj/structure/catwalk, /obj/structure/cable{ d1 = 1; @@ -27797,7 +27837,7 @@ }, /turf/simulated/floor, /area/maintenance/station/ai) -"RB" = ( +"aRB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, @@ -27806,7 +27846,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/warden) -"RC" = ( +"aRC" = ( /obj/structure/catwalk, /obj/effect/floor_decal/rust, /obj/effect/decal/cleanable/dirt, @@ -27818,7 +27858,7 @@ }, /turf/simulated/floor, /area/maintenance/station/ai) -"RD" = ( +"aRD" = ( /obj/structure/catwalk, /obj/effect/floor_decal/rust, /obj/structure/cable{ @@ -27829,7 +27869,7 @@ }, /turf/simulated/floor, /area/maintenance/station/ai) -"RE" = ( +"aRE" = ( /obj/machinery/door/firedoor/glass, /obj/structure/catwalk, /obj/machinery/door/airlock/maintenance/common, @@ -27841,7 +27881,7 @@ }, /turf/simulated/floor, /area/maintenance/station/sec_upper) -"RF" = ( +"aRF" = ( /obj/structure/catwalk, /obj/structure/cable{ d1 = 1; @@ -27854,7 +27894,7 @@ }, /turf/simulated/floor, /area/maintenance/station/ai) -"RG" = ( +"aRG" = ( /obj/structure/catwalk, /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ @@ -27865,7 +27905,7 @@ }, /turf/simulated/floor, /area/maintenance/station/ai) -"RH" = ( +"aRH" = ( /obj/structure/catwalk, /obj/structure/cable{ d1 = 1; @@ -27875,11 +27915,11 @@ }, /turf/simulated/floor, /area/maintenance/station/sec_upper) -"RI" = ( +"aRI" = ( /obj/random/trash_pile, /turf/simulated/floor, /area/maintenance/station/ai) -"RJ" = ( +"aRJ" = ( /obj/structure/railing{ dir = 8 }, @@ -27887,7 +27927,7 @@ /obj/effect/floor_decal/rust, /turf/simulated/floor, /area/maintenance/station/ai) -"RK" = ( +"aRK" = ( /obj/structure/railing, /obj/structure/railing{ dir = 8 @@ -27896,25 +27936,15 @@ /obj/effect/floor_decal/rust, /turf/simulated/floor, /area/maintenance/station/ai) -"RL" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +"aRL" = ( +/obj/machinery/mineral/output, +/obj/machinery/conveyor{ + dir = 4; + id = "miningops" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/belterdock) -"RM" = ( +/turf/simulated/floor/plating, +/area/quartermaster/belterdock/refinery) +"aRM" = ( /obj/structure/catwalk, /obj/structure/cable{ d1 = 2; @@ -27923,14 +27953,14 @@ }, /turf/simulated/floor, /area/maintenance/station/ai) -"RN" = ( +"aRN" = ( /obj/structure/railing{ dir = 8 }, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor, /area/maintenance/station/ai) -"RO" = ( +"aRO" = ( /obj/structure/catwalk, /obj/structure/cable{ d1 = 1; @@ -27939,7 +27969,7 @@ }, /turf/simulated/floor, /area/maintenance/station/sec_upper) -"RP" = ( +"aRP" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -27951,7 +27981,7 @@ /obj/structure/catwalk, /turf/simulated/floor, /area/maintenance/station/elevator) -"RQ" = ( +"aRQ" = ( /obj/structure/closet/crate, /obj/random/drinkbottle, /obj/random/contraband, @@ -27960,7 +27990,7 @@ /obj/effect/floor_decal/rust, /turf/simulated/floor, /area/maintenance/station/ai) -"RR" = ( +"aRR" = ( /obj/structure/railing{ dir = 4 }, @@ -27972,7 +28002,7 @@ /obj/random/maintenance/cargo, /turf/simulated/floor, /area/maintenance/station/ai) -"RS" = ( +"aRS" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/catwalk, /obj/structure/cable{ @@ -27982,60 +28012,60 @@ }, /turf/simulated/floor, /area/maintenance/cargo) -"RT" = ( +"aRT" = ( /obj/structure/catwalk, /obj/structure/cable{ icon_state = "2-8" }, /turf/simulated/floor, /area/maintenance/cargo) -"RU" = ( +"aRU" = ( /obj/structure/railing{ dir = 8 }, /obj/random/junk, /turf/simulated/floor, /area/maintenance/cargo) -"RV" = ( +"aRV" = ( /obj/structure/table, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor, /area/maintenance/station/ai) -"RW" = ( +"aRW" = ( /obj/item/stack/material/steel{ amount = 6 }, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor, /area/maintenance/station/ai) -"RX" = ( +"aRX" = ( /obj/effect/floor_decal/rust, /turf/simulated/floor, /area/maintenance/station/ai) -"RY" = ( +"aRY" = ( /obj/structure/railing, /obj/effect/floor_decal/rust, /turf/simulated/floor, /area/maintenance/cargo) -"RZ" = ( +"aRZ" = ( /obj/structure/railing, /obj/random/junk, /turf/simulated/floor, /area/maintenance/station/ai) -"Sa" = ( +"aSa" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, /turf/simulated/floor/tiled, /area/security/eva) -"Sb" = ( +"aSb" = ( /obj/structure/railing, /obj/random/trash, /obj/effect/floor_decal/rust, /turf/simulated/floor, /area/maintenance/station/ai) -"Sc" = ( +"aSc" = ( /obj/structure/table/woodentable, /obj/item/device/megaphone, /obj/structure/cable/green{ @@ -28045,7 +28075,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/heads/hos) -"Sd" = ( +"aSd" = ( /obj/structure/railing, /obj/structure/railing{ dir = 4 @@ -28057,7 +28087,7 @@ /obj/random/maintenance/engineering, /turf/simulated/floor, /area/maintenance/station/ai) -"Se" = ( +"aSe" = ( /obj/structure/cable{ icon_state = "1-2" }, @@ -28067,7 +28097,7 @@ }, /turf/simulated/floor, /area/maintenance/cargo) -"Sf" = ( +"aSf" = ( /obj/structure/catwalk, /obj/effect/floor_decal/rust, /obj/structure/cable{ @@ -28077,7 +28107,7 @@ }, /turf/simulated/floor, /area/maintenance/cargo) -"Sg" = ( +"aSg" = ( /obj/structure/catwalk, /obj/structure/cable{ d1 = 4; @@ -28086,7 +28116,7 @@ }, /turf/simulated/floor, /area/maintenance/cargo) -"Sh" = ( +"aSh" = ( /obj/structure/catwalk, /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ @@ -28096,7 +28126,7 @@ }, /turf/simulated/floor, /area/maintenance/cargo) -"Si" = ( +"aSi" = ( /obj/structure/catwalk, /obj/structure/cable{ d1 = 4; @@ -28105,31 +28135,31 @@ }, /turf/simulated/floor, /area/maintenance/station/ai) -"Sj" = ( +"aSj" = ( /obj/structure/closet/emcloset, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/tiled, /area/quartermaster/belterdock) -"Sk" = ( +"aSk" = ( /obj/structure/railing{ dir = 4 }, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor, /area/maintenance/station/ai) -"Sl" = ( +"aSl" = ( /obj/structure/catwalk, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor, /area/maintenance/station/ai) -"Sm" = ( +"aSm" = ( /obj/random/toy, /obj/structure/closet, /turf/simulated/floor, /area/maintenance/station/ai) -"Sn" = ( +"aSn" = ( /obj/structure/catwalk, /obj/machinery/light/small{ icon_state = "bulb1"; @@ -28138,14 +28168,14 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor, /area/maintenance/station/ai) -"So" = ( +"aSo" = ( /turf/simulated/floor/plating, /area/maintenance/station/cargo) -"Sp" = ( +"aSp" = ( /obj/machinery/light, /turf/simulated/open, /area/tether/exploration) -"Sq" = ( +"aSq" = ( /obj/machinery/firealarm{ dir = 1; pixel_x = 0; @@ -28153,7 +28183,7 @@ }, /turf/simulated/floor/tiled/monotile, /area/tether/exploration) -"Sr" = ( +"aSr" = ( /obj/structure/railing, /obj/structure/table/rack{ dir = 8; @@ -28166,7 +28196,7 @@ }, /turf/simulated/floor, /area/maintenance/cargo) -"Ss" = ( +"aSs" = ( /obj/effect/floor_decal/rust, /obj/machinery/light/small{ dir = 8; @@ -28174,7 +28204,7 @@ }, /turf/simulated/floor, /area/maintenance/station/ai) -"St" = ( +"aSt" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -28190,7 +28220,7 @@ }, /turf/simulated/floor, /area/maintenance/station/elevator) -"Su" = ( +"aSu" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -28199,7 +28229,7 @@ /obj/structure/catwalk, /turf/simulated/floor, /area/maintenance/station/elevator) -"Sv" = ( +"aSv" = ( /obj/structure/catwalk, /obj/effect/floor_decal/rust, /obj/structure/cable{ @@ -28214,7 +28244,7 @@ }, /turf/simulated/floor, /area/maintenance/cargo) -"Sw" = ( +"aSw" = ( /obj/structure/catwalk, /obj/structure/cable{ d1 = 4; @@ -28225,7 +28255,7 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor, /area/maintenance/cargo) -"Sx" = ( +"aSx" = ( /obj/structure/catwalk, /obj/structure/cable{ d1 = 4; @@ -28239,13 +28269,13 @@ }, /turf/simulated/floor, /area/maintenance/station/ai) -"Sy" = ( +"aSy" = ( /obj/effect/landmark/start{ name = "Cargo Technician" }, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"Sz" = ( +"aSz" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -28253,7 +28283,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/heads/hos) -"SA" = ( +"aSA" = ( /obj/machinery/door/airlock/maintenance/cargo{ name = "Belter Shuttle Access"; req_access = list(); @@ -28261,7 +28291,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/station/cargo) -"SB" = ( +"aSB" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 6; icon_state = "intact" @@ -28271,7 +28301,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/station/cargo) -"SC" = ( +"aSC" = ( /obj/structure/bed/chair/office/dark{ dir = 1 }, @@ -28280,7 +28310,7 @@ }, /turf/simulated/floor/carpet, /area/security/breakroom) -"SD" = ( +"aSD" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 }, @@ -28290,7 +28320,7 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/station/cargo) -"SE" = ( +"aSE" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 8 }, @@ -28306,7 +28336,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/security_lockerroom) -"SF" = ( +"aSF" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -28320,7 +28350,7 @@ }, /turf/simulated/floor/tiled, /area/security/briefing_room) -"SG" = ( +"aSG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, @@ -28332,10 +28362,10 @@ }, /turf/simulated/floor/tiled, /area/security/security_processing) -"SH" = ( +"aSH" = ( /turf/simulated/wall, /area/storage/emergency_storage/emergency3) -"SI" = ( +"aSI" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -28347,7 +28377,7 @@ /obj/machinery/light, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"SJ" = ( +"aSJ" = ( /obj/machinery/door/airlock/maintenance/cargo{ name = "Belter Shuttle Access"; req_access = list(); @@ -28361,7 +28391,7 @@ }, /turf/simulated/floor/plating, /area/quartermaster/belterdock) -"SK" = ( +"aSK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/embedded_controller/radio/simple_docking_controller{ @@ -28378,7 +28408,7 @@ }, /turf/simulated/floor/tiled/monotile, /area/tether/exploration) -"SL" = ( +"aSL" = ( /obj/structure/cable/green{ d1 = 1; d2 = 8; @@ -28387,17 +28417,17 @@ /obj/structure/catwalk, /turf/simulated/floor, /area/maintenance/station/elevator) -"SM" = ( +"aSM" = ( /obj/effect/floor_decal/rust, /obj/structure/catwalk, /turf/simulated/floor, /area/maintenance/station/elevator) -"SN" = ( +"aSN" = ( /obj/structure/disposalpipe/segment, /obj/structure/catwalk, /turf/simulated/floor, /area/maintenance/station/elevator) -"SO" = ( +"aSO" = ( /obj/structure/closet/walllocker/emerglocker{ pixel_x = 32 }, @@ -28411,13 +28441,13 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/shuttle/excursion/cargo) -"SP" = ( +"aSP" = ( /obj/item/modular_computer/console/preset/command{ dir = 1 }, /turf/simulated/floor/wood, /area/crew_quarters/heads/hos) -"SQ" = ( +"aSQ" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/structure/window/reinforced{ @@ -28434,41 +28464,29 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, /area/shuttle/excursion/general) -"SR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/belterdock) -"SS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10; - icon_state = "intact" - }, -/obj/machinery/firealarm{ +"aSR" = ( +/obj/structure/plasticflaps/mining, +/obj/machinery/conveyor{ dir = 4; - layer = 3.3; - pixel_x = 26 + id = "miningops" }, -/turf/simulated/floor/tiled, -/area/quartermaster/belterdock) -"ST" = ( +/turf/simulated/floor/plating, +/area/quartermaster/belterdock/refinery) +"aSS" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "miningops" + }, +/turf/simulated/floor/plating, +/area/quartermaster/belterdock/refinery) +"aST" = ( /obj/machinery/firealarm{ dir = 8; pixel_x = -26 }, /turf/simulated/floor/tiled/white, /area/security/security_bathroom) -"SU" = ( +"aSU" = ( /obj/machinery/door/airlock/maintenance/cargo{ name = "Belter Shuttle Access"; req_access = list(); @@ -28478,39 +28496,36 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plating, /area/maintenance/station/cargo) -"SV" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +"aSV" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/quartermaster/belterdock/gear) +"aSW" = ( +/obj/structure/closet/secure_closet/miner, +/obj/effect/floor_decal/borderfloor{ + dir = 9 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/quartermaster/belterdock) -"SW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" +/obj/effect/floor_decal/corner/brown/border{ + dir = 9 }, /turf/simulated/floor/tiled, -/area/quartermaster/belterdock) -"SX" = ( +/area/quartermaster/belterdock/gear) +"aSX" = ( /obj/machinery/door/airlock/security{ name = "Security Restroom"; req_one_access = list(1,38) }, /turf/simulated/floor/tiled/white, /area/security/security_bathroom) -"SY" = ( +"aSY" = ( /obj/machinery/portable_atmospherics/canister/air/airlock, /obj/machinery/atmospherics/portables_connector{ dir = 4 }, /turf/simulated/floor/plating, /area/maintenance/station/cargo) -"SZ" = ( +"aSZ" = ( /obj/machinery/atmospherics/pipe/manifold/hidden{ dir = 1; icon_state = "map" @@ -28518,7 +28533,7 @@ /obj/machinery/meter, /turf/simulated/floor/plating, /area/maintenance/station/cargo) -"Ta" = ( +"aTa" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 9; icon_state = "intact" @@ -28529,7 +28544,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/station/cargo) -"Tb" = ( +"aTb" = ( /obj/structure/window/reinforced{ dir = 8; health = 1e+006 @@ -28538,7 +28553,7 @@ /obj/structure/window/reinforced/full, /turf/simulated/floor/plating, /area/crew_quarters/medical_restroom) -"Tc" = ( +"aTc" = ( /obj/structure/handrail{ dir = 4 }, @@ -28547,7 +28562,7 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/shuttle/excursion/cargo) -"Td" = ( +"aTd" = ( /obj/structure/cable/green{ d1 = 1; d2 = 4; @@ -28561,13 +28576,13 @@ }, /turf/simulated/floor/carpet, /area/security/breakroom) -"Te" = ( +"aTe" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, /turf/simulated/floor/plating, /area/maintenance/station/cargo) -"Tf" = ( +"aTf" = ( /obj/structure/table/standard, /obj/random/soap, /obj/random/soap, @@ -28576,23 +28591,17 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/medical_restroom) -"Tg" = ( -/obj/machinery/alarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22; - pixel_y = 0 +"aTg" = ( +/obj/structure/closet/secure_closet/miner, +/obj/effect/floor_decal/borderfloor{ + dir = 1 }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, -/area/quartermaster/belterdock) -"Th" = ( +/area/quartermaster/belterdock/gear) +"aTh" = ( /obj/effect/landmark/start{ name = "Medical Doctor" }, @@ -28602,7 +28611,7 @@ /obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled/white, /area/crew_quarters/medbreak) -"Ti" = ( +"aTi" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/handrail{ @@ -28615,11 +28624,24 @@ }, /turf/simulated/floor/tiled, /area/shuttle/excursion/general) -"Tj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, +"aTj" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/obj/structure/table/rack, +/obj/item/clothing/suit/space/void/mining, +/obj/item/clothing/mask/breath, +/obj/item/clothing/head/helmet/space/void/mining, +/obj/item/weapon/mining_scanner, +/obj/machinery/alarm{ + pixel_y = 22 + }, /turf/simulated/floor/tiled, -/area/quartermaster/belterdock) -"Tk" = ( +/area/quartermaster/belterdock/gear) +"aTk" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; @@ -28629,7 +28651,7 @@ }, /turf/simulated/wall, /area/quartermaster/belterdock) -"Tl" = ( +"aTl" = ( /obj/structure/table/rack/shelf, /obj/item/weapon/tank/oxygen, /obj/item/device/suit_cooling_unit, @@ -28638,7 +28660,7 @@ /obj/item/clothing/head/helmet/space/void/pilot, /turf/simulated/floor/tiled, /area/shuttle/excursion/general) -"Tm" = ( +"aTm" = ( /obj/machinery/airlock_sensor{ pixel_y = 28 }, @@ -28651,7 +28673,7 @@ /obj/effect/map_helper/airlock/sensor/chamber_sensor, /turf/simulated/floor/plating, /area/quartermaster/belterdock) -"Tn" = ( +"aTn" = ( /obj/machinery/embedded_controller/radio/airlock/airlock_controller{ id_tag = "belter_access_airlock"; pixel_y = 28 @@ -28664,14 +28686,14 @@ /obj/effect/map_helper/airlock/atmos/chamber_pump, /turf/simulated/floor/plating, /area/quartermaster/belterdock) -"To" = ( +"aTo" = ( /obj/machinery/atmospherics/pipe/manifold/hidden{ dir = 4; icon_state = "map" }, /turf/simulated/floor/plating, /area/maintenance/station/cargo) -"Tp" = ( +"aTp" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -28681,7 +28703,7 @@ /obj/structure/catwalk, /turf/simulated/floor, /area/maintenance/station/sec_upper) -"Tq" = ( +"aTq" = ( /obj/machinery/power/port_gen/pacman/mrs, /obj/structure/cable/yellow{ d2 = 2; @@ -28690,24 +28712,24 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/techfloor/grid, /area/shuttle/excursion/general) -"Tr" = ( +"aTr" = ( /obj/structure/girder, /turf/simulated/floor/plating, /area/maintenance/station/cargo) -"Ts" = ( +"aTs" = ( /obj/machinery/atmospherics/pipe/simple/hidden/universal, /obj/machinery/light/small{ dir = 4 }, /turf/simulated/floor/plating, /area/maintenance/station/cargo) -"Tt" = ( +"aTt" = ( /obj/structure/toilet{ dir = 8 }, /turf/simulated/floor/tiled/white, /area/crew_quarters/medical_restroom) -"Tu" = ( +"aTu" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ icon_state = "intact-supply"; dir = 5 @@ -28721,23 +28743,21 @@ }, /turf/simulated/floor/tiled, /area/shuttle/excursion/general) -"Tv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5; - icon_state = "intact" +"aTv" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 }, -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1379; - master_tag = "belter_access_airlock"; - name = "interior access button"; - pixel_x = 25; - pixel_y = -25; - req_one_access = list(48,65,66) +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 }, +/obj/structure/table/rack, +/obj/item/clothing/suit/space/void/mining, +/obj/item/clothing/mask/breath, +/obj/item/clothing/head/helmet/space/void/mining, +/obj/item/weapon/mining_scanner, /turf/simulated/floor/tiled, -/area/quartermaster/belterdock) -"Tw" = ( +/area/quartermaster/belterdock/gear) +"aTw" = ( /obj/machinery/door/airlock/glass_external, /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 @@ -28745,88 +28765,11 @@ /obj/effect/map_helper/airlock/door/int_door, /turf/simulated/floor/plating, /area/quartermaster/belterdock) -"Tx" = ( +"aTx" = ( /obj/machinery/atmospherics/pipe/manifold4w/hidden, /turf/simulated/floor/plating, /area/quartermaster/belterdock) -"Ty" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 4; - icon_state = "map" - }, -/turf/simulated/floor/plating, -/area/quartermaster/belterdock) -"Tz" = ( -/obj/machinery/door/airlock/glass_external, -/obj/effect/map_helper/airlock/door/ext_door, -/turf/simulated/floor/plating, -/area/quartermaster/belterdock) -"TA" = ( -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1379; - master_tag = "belter_access_airlock"; - name = "exterior access button"; - pixel_x = -25; - pixel_y = 25; - req_one_access = list(48,65,66) - }, -/turf/simulated/floor/airless, -/area/quartermaster/belterdock) -"TB" = ( -/turf/simulated/floor/airless, -/area/quartermaster/belterdock) -"TC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5; - icon_state = "intact" - }, -/turf/simulated/floor/plating, -/area/maintenance/station/cargo) -"TD" = ( -/obj/structure/table/woodentable, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/computer/skills{ - icon_state = "laptop"; - dir = 8 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/heads/hos) -"TE" = ( -/obj/machinery/atmospherics/binary/passive_gate/on{ - dir = 8 - }, -/obj/machinery/alarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/turf/simulated/floor/plating, -/area/maintenance/station/cargo) -"TF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9; - icon_state = "intact" - }, -/turf/simulated/floor/plating, -/area/maintenance/station/cargo) -"TG" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1; - frequency = 1380; - id_tag = "expshuttle_vent" - }, -/obj/structure/cable/cyan, -/obj/structure/handrail{ - dir = 1 - }, -/obj/effect/map_helper/airlock/atmos/chamber_pump, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/cargo) -"TH" = ( +"aTy" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -28842,32 +28785,16 @@ /obj/effect/floor_decal/steeldecal/steel_decals4{ dir = 8 }, +/obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/floor/tiled, /area/quartermaster/belterdock) -"TI" = ( +"aTz" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, -/obj/machinery/portable_atmospherics/canister/oxygen, /turf/simulated/floor/tiled, /area/quartermaster/belterdock) -"TJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 9; - icon_state = "intact" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/general) -"TK" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1; - frequency = 1379; - id_tag = "belter_access_pump" - }, -/obj/effect/map_helper/airlock/atmos/chamber_pump, -/turf/simulated/floor/plating, -/area/quartermaster/belterdock) -"TL" = ( +"aTA" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume{ dir = 1; frequency = 1379; @@ -28879,13 +28806,72 @@ /obj/effect/map_helper/airlock/atmos/chamber_pump, /turf/simulated/floor/plating, /area/quartermaster/belterdock) -"TM" = ( -/obj/machinery/light/small{ +"aTB" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/mineral/equipment_vendor, +/turf/simulated/floor/tiled, +/area/quartermaster/belterdock/refinery) +"aTC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5; + icon_state = "intact" + }, +/turf/simulated/floor/plating, +/area/maintenance/station/cargo) +"aTD" = ( +/obj/structure/table/woodentable, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/computer/skills{ + icon_state = "laptop"; dir = 8 }, -/turf/simulated/floor/airless, -/area/quartermaster/belterdock) -"TN" = ( +/turf/simulated/floor/carpet, +/area/crew_quarters/heads/hos) +"aTE" = ( +/obj/machinery/atmospherics/binary/passive_gate/on{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/turf/simulated/floor/plating, +/area/maintenance/station/cargo) +"aTF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9; + icon_state = "intact" + }, +/turf/simulated/floor/plating, +/area/maintenance/station/cargo) +"aTG" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1; + frequency = 1380; + id_tag = "expshuttle_vent" + }, +/obj/structure/cable/cyan, +/obj/structure/handrail{ + dir = 1 + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/excursion/cargo) +"aTH" = ( +/obj/machinery/conveyor{ + dir = 9; + id = "miningops" + }, +/turf/simulated/floor/plating, +/area/quartermaster/belterdock/refinery) +"aTI" = ( /obj/machinery/door/airlock/glass_mining{ name = "Belter Control Room"; req_access = list(); @@ -28898,9 +28884,67 @@ }, /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/quartermaster/belterdock) -"TO" = ( +"aTJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 9; + icon_state = "intact" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/excursion/general) +"aTK" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1; + frequency = 1379; + id_tag = "belter_access_pump" + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/turf/simulated/floor/plating, +/area/quartermaster/belterdock) +"aTL" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled, +/area/quartermaster/belterdock) +"aTM" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/simulated/floor/tiled, +/area/quartermaster/belterdock) +"aTN" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5; + icon_state = "intact" + }, +/turf/simulated/floor/tiled, +/area/quartermaster/belterdock) +"aTO" = ( /obj/structure/table/woodentable, /obj/item/weapon/storage/secure/safe{ pixel_x = -30 @@ -28915,34 +28959,30 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/heads/hos) -"TP" = ( +"aTP" = ( /obj/structure/window/reinforced, /obj/structure/grille, /obj/structure/window/reinforced/full, /turf/simulated/floor/plating, /area/crew_quarters/medbreak) -"TQ" = ( +"aTQ" = ( /obj/structure/table/woodentable, /obj/item/weapon/storage/box/donkpockets, /turf/simulated/floor/wood, /area/security/breakroom) -"TR" = ( -/obj/structure/closet/secure_closet/miner, -/obj/machinery/alarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22; - pixel_y = 0 +"aTR" = ( +/obj/effect/floor_decal/industrial/loading{ + dir = 1 }, /turf/simulated/floor/tiled, -/area/quartermaster/belterdock) -"TS" = ( +/area/quartermaster/belterdock/refinery) +"aTS" = ( /obj/machinery/light{ dir = 1 }, /turf/simulated/floor/tiled, /area/quartermaster/belterdock) -"TT" = ( +"aTT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/door/firedoor/glass, @@ -28956,7 +28996,7 @@ }, /turf/simulated/floor/tiled/steel_ridged, /area/shuttle/excursion/general) -"TU" = ( +"aTU" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -28968,23 +29008,22 @@ }, /turf/simulated/floor/outdoors/grass/forest, /area/quartermaster/qm) -"TV" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +"aTV" = ( +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1379; + master_tag = "belter_access_airlock"; + name = "interior access button"; + pixel_x = 25; + pixel_y = -25; + req_one_access = list(48,65,66) }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/steeldecal/steel_decals4{ +/obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, /turf/simulated/floor/tiled, /area/quartermaster/belterdock) -"TW" = ( +"aTW" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -28999,7 +29038,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/heads/hos) -"TX" = ( +"aTX" = ( /obj/machinery/alarm{ dir = 8; icon_state = "alarm0"; @@ -29007,7 +29046,7 @@ }, /turf/simulated/floor/tiled/white, /area/security/security_bathroom) -"TY" = ( +"aTY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -29021,41 +29060,40 @@ }, /turf/simulated/floor/tiled, /area/shuttle/excursion/general) -"TZ" = ( +"aTZ" = ( /obj/structure/table/standard, /obj/item/weapon/paper/rogueminer, /turf/simulated/floor/tiled, /area/quartermaster/belterdock) -"Ua" = ( +"aUa" = ( /obj/machinery/light{ icon_state = "tube1"; dir = 8 }, /turf/simulated/floor/outdoors/grass/forest, /area/quartermaster/qm) -"Ub" = ( +"aUb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, /turf/simulated/floor/tiled/white, /area/security/security_bathroom) -"Uc" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 4 - }, +"aUc" = ( +/obj/structure/ore_box, +/turf/simulated/floor/tiled, +/area/quartermaster/belterdock) +"aUd" = ( +/obj/machinery/door/airlock/glass_external, +/obj/effect/map_helper/airlock/door/ext_door, /turf/simulated/floor/plating, /area/quartermaster/belterdock) -"Ud" = ( -/obj/effect/floor_decal/industrial/warning/corner, -/turf/simulated/floor/airless, -/area/quartermaster/belterdock) -"Ue" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/airless, -/area/quartermaster/belterdock) -"Uf" = ( +"aUe" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/quartermaster/belterdock/refinery) +"aUf" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume{ dir = 8; frequency = 1380; @@ -29068,14 +29106,17 @@ /obj/effect/map_helper/airlock/atmos/pump_out_external, /turf/simulated/floor/plating, /area/shuttle/excursion/cargo) -"Ug" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - icon_state = "warningcorner"; - dir = 8 +"aUg" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_x = 0; + pixel_y = -24 }, -/turf/simulated/floor/airless, +/obj/structure/table/rack, +/obj/item/weapon/tank/jetpack, +/turf/simulated/floor/tiled, /area/quartermaster/belterdock) -"Uh" = ( +"aUh" = ( /obj/structure/table/standard, /obj/machinery/cell_charger, /obj/machinery/power/apc{ @@ -29092,7 +29133,7 @@ /obj/item/device/binoculars, /turf/simulated/floor/tiled, /area/quartermaster/belterdock) -"Ui" = ( +"aUi" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/item/weapon/bone, /obj/machinery/alarm{ @@ -29102,27 +29143,27 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/heads/hos) -"Uj" = ( +"aUj" = ( /obj/machinery/papershredder, /turf/simulated/floor/wood, /area/crew_quarters/heads/cmo) -"Uk" = ( +"aUk" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /obj/structure/window/reinforced, /turf/simulated/floor/carpet, /area/crew_quarters/heads/hos) -"Ul" = ( +"aUl" = ( /obj/machinery/light, /obj/structure/stasis_cage, /turf/simulated/floor/tiled/monotile, /area/tether/exploration) -"Um" = ( +"aUm" = ( /obj/machinery/sleep_console, /turf/simulated/floor/tiled, /area/shuttle/excursion/general) -"Un" = ( +"aUn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -29136,7 +29177,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/heads/hos) -"Uo" = ( +"aUo" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -29147,7 +29188,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/belterdock) -"Up" = ( +"aUp" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/blast/regular{ density = 0; @@ -29169,7 +29210,7 @@ }, /turf/simulated/floor, /area/security/eva) -"Uq" = ( +"aUq" = ( /obj/structure/cable/green{ d2 = 2; icon_state = "0-2" @@ -29182,23 +29223,21 @@ }, /turf/simulated/floor/wood, /area/security/breakroom) -"Ur" = ( -/obj/structure/bed/chair/office/light{ +"aUr" = ( +/obj/machinery/recharger, +/obj/structure/table/standard, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; +/obj/machinery/alarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22; pixel_y = 0 }, /turf/simulated/floor/tiled, /area/quartermaster/belterdock) -"Us" = ( +"aUs" = ( /obj/structure/bed/chair/shuttle, /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/machinery/alarm{ @@ -29206,7 +29245,7 @@ }, /turf/simulated/floor/tiled, /area/shuttle/excursion/general) -"Ut" = ( +"aUt" = ( /obj/effect/landmark/start{ name = "Medical Doctor" }, @@ -29216,17 +29255,17 @@ /obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled/white, /area/crew_quarters/medbreak) -"Uu" = ( +"aUu" = ( /obj/machinery/computer/security, /turf/simulated/floor/wood, /area/crew_quarters/heads/hos) -"Uv" = ( -/obj/machinery/computer/roguezones{ - dir = 8 +"aUv" = ( +/obj/machinery/computer/shuttle_control/belter{ + dir = 1 }, /turf/simulated/floor/tiled, /area/quartermaster/belterdock) -"Uw" = ( +"aUw" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, @@ -29234,7 +29273,7 @@ /obj/random/soap, /turf/simulated/floor/tiled/white, /area/security/security_bathroom) -"Ux" = ( +"aUx" = ( /obj/effect/floor_decal/corner/paleblue/diagonal, /obj/structure/disposalpipe/segment{ dir = 1; @@ -29242,7 +29281,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/medbreak) -"Uy" = ( +"aUy" = ( /obj/machinery/requests_console{ announcementConsole = 1; department = "Head of Security's Desk"; @@ -29253,7 +29292,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/heads/hos) -"Uz" = ( +"aUz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/firealarm{ @@ -29272,14 +29311,13 @@ }, /turf/simulated/floor/tiled, /area/shuttle/excursion/general) -"UA" = ( -/obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 4 +"aUA" = ( +/obj/machinery/computer/roguezones{ + dir = 1 }, -/turf/simulated/floor/airless, +/turf/simulated/floor/tiled, /area/quartermaster/belterdock) -"UB" = ( +"aUB" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, @@ -29290,7 +29328,7 @@ }, /turf/simulated/floor/tiled, /area/shuttle/excursion/general) -"UC" = ( +"aUC" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -29303,7 +29341,7 @@ }, /turf/simulated/floor/tiled, /area/security/hallwayaux) -"UD" = ( +"aUD" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, @@ -29312,41 +29350,53 @@ }, /turf/simulated/floor/tiled, /area/shuttle/excursion/general) -"UE" = ( +"aUE" = ( /obj/structure/bed/chair/shuttle, /turf/simulated/floor/tiled, /area/shuttle/excursion/general) -"UF" = ( -/turf/simulated/shuttle/wall, -/area/shuttle/belter) -"UG" = ( -/obj/machinery/door/unpowered/shuttle, -/turf/simulated/shuttle/floor/yellow/airless, -/area/shuttle/belter) -"UH" = ( -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/quartermaster/belterdock) -"UI" = ( -/obj/effect/floor_decal/industrial/warning{ +"aUF" = ( +/obj/machinery/camera/network/mining{ dir = 8 }, -/turf/simulated/floor/airless, +/turf/simulated/floor/tiled, /area/quartermaster/belterdock) -"UJ" = ( +"aUG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/belterdock) +"aUH" = ( +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1379; + master_tag = "belter_access_airlock"; + name = "exterior access button"; + pixel_x = 25; + pixel_y = 25; + req_one_access = list(48,65,66) + }, +/turf/simulated/floor/tiled/asteroid_steel/airless, +/area/quartermaster/belterdock) +"aUI" = ( +/turf/simulated/floor/tiled/asteroid_steel/airless, +/area/quartermaster/belterdock) +"aUJ" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, /turf/simulated/wall/rshull, /area/shuttle/excursion/cargo) -"UK" = ( +"aUK" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/handrail{ dir = 1 }, /turf/simulated/floor/tiled/techfloor/grid, /area/shuttle/excursion/cargo) -"UL" = ( +"aUL" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 9; icon_state = "intact" @@ -29364,26 +29414,23 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/shuttle/excursion/general) -"UM" = ( +"aUM" = ( /obj/machinery/atmospherics/portables_connector, /obj/effect/floor_decal/industrial/outline/blue, /obj/machinery/portable_atmospherics/canister/air, /turf/simulated/floor/tiled/techfloor/grid, /area/shuttle/excursion/general) -"UN" = ( -/obj/structure/table/standard, -/obj/machinery/recharger, -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -24 +"aUN" = ( +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; + dir = 5 }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 +/obj/structure/window/reinforced{ + dir = 1 }, /turf/simulated/floor/tiled, -/area/quartermaster/belterdock) -"UO" = ( +/area/quartermaster/belterdock/refinery) +"aUO" = ( /obj/structure/cable/green{ icon_state = "0-4" }, @@ -29406,29 +29453,24 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/shuttle/excursion/general) -"UP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, -/obj/structure/table/rack, -/obj/item/weapon/tank/jetpack, +"aUP" = ( +/obj/structure/bed/chair/office/light, /turf/simulated/floor/tiled, /area/quartermaster/belterdock) -"UQ" = ( +"aUQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, /turf/simulated/floor/tiled, /area/quartermaster/belterdock) -"UR" = ( +"aUR" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 6; icon_state = "intact" }, /turf/simulated/wall/rshull, /area/shuttle/excursion/cargo) -"US" = ( +"aUS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, @@ -29437,7 +29479,7 @@ }, /turf/simulated/floor/tiled/white, /area/security/security_bathroom) -"UT" = ( +"aUT" = ( /obj/structure/cable/green{ d1 = 1; d2 = 8; @@ -29451,7 +29493,7 @@ }, /turf/simulated/floor/tiled/white, /area/security/security_bathroom) -"UU" = ( +"aUU" = ( /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; dir = 9 @@ -29470,7 +29512,7 @@ /obj/effect/map_helper/airlock/atmos/chamber_pump, /turf/simulated/floor/tiled/techfloor/grid, /area/shuttle/excursion/cargo) -"UV" = ( +"aUV" = ( /obj/effect/floor_decal/steeldecal/steel_decals10{ dir = 6 }, @@ -29479,52 +29521,43 @@ }, /turf/simulated/floor/tiled, /area/security/security_bathroom) -"UW" = ( +"aUW" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/yellow{ dir = 1 }, /obj/machinery/meter, /turf/simulated/floor/tiled/techfloor/grid, /area/shuttle/excursion/general) -"UX" = ( -/obj/machinery/computer/shuttle_control/belter{ - dir = 8 +"aUX" = ( +/obj/effect/landmark/start{ + name = "Shaft Miner" }, /turf/simulated/floor/tiled, -/area/quartermaster/belterdock) -"UY" = ( +/area/quartermaster/belterdock/gear) +"aUY" = ( /obj/structure/bed/chair/shuttle{ dir = 1 }, /turf/simulated/floor/tiled, /area/shuttle/excursion/general) -"UZ" = ( -/obj/structure/shuttle/engine/heater{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, +"aUZ" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/quartermaster/belterdock) +"aVa" = ( +/obj/effect/floor_decal/industrial/warning/corner, /turf/simulated/floor/airless, -/area/shuttle/belter) -"Va" = ( -/obj/structure/closet/crate, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/shuttle/floor/yellow/airless, -/area/shuttle/belter) -"Vb" = ( -/obj/machinery/embedded_controller/radio/airlock/docking_port{ - id_tag = "belter_docking"; - pixel_y = 26 - }, -/turf/simulated/shuttle/floor/yellow/airless, -/area/shuttle/belter) -"Vc" = ( -/turf/simulated/shuttle/floor/yellow/airless, -/area/shuttle/belter) -"Vd" = ( +/area/quartermaster/belterdock) +"aVb" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/airless, +/area/quartermaster/belterdock) +"aVc" = ( +/turf/simulated/wall, +/area/quartermaster/belterdock/surface_mining_outpost_shuttle_hangar) +"aVd" = ( /obj/effect/floor_decal/industrial/warning{ dir = 6 }, @@ -29546,7 +29579,7 @@ /obj/effect/map_helper/airlock/atmos/pump_out_internal, /turf/simulated/floor/tiled/techfloor/grid, /area/shuttle/excursion/cargo) -"Ve" = ( +"aVe" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -29562,7 +29595,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/heads/hos) -"Vf" = ( +"aVf" = ( /obj/item/clothing/mask/breath, /obj/item/clothing/mask/breath, /obj/item/clothing/mask/breath, @@ -29582,7 +29615,7 @@ /obj/structure/closet/emcloset/legacy, /turf/simulated/floor/tiled, /area/shuttle/excursion/general) -"Vg" = ( +"aVg" = ( /obj/machinery/atmospherics/pipe/simple/hidden/universal, /obj/item/device/radio/intercom{ dir = 8; @@ -29591,41 +29624,57 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/shuttle/excursion/general) -"Vh" = ( -/obj/structure/bed/chair/shuttle, -/turf/simulated/shuttle/floor/yellow/airless, -/area/shuttle/belter) -"Vi" = ( +"aVh" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/ore_box, +/turf/simulated/floor/tiled/asteroid_steel/airless, +/area/quartermaster/belterdock) +"aVi" = ( /obj/machinery/shuttle_sensor{ dir = 2; id_tag = "shuttlesens_exp_psg" }, /turf/simulated/wall/rshull, /area/shuttle/excursion/general) -"Vj" = ( -/obj/structure/closet/emcloset, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 +"aVj" = ( +/obj/structure/cable/green{ + icon_state = "4-8" }, -/turf/simulated/shuttle/floor/yellow/airless, -/area/shuttle/belter) -"Vk" = ( -/turf/simulated/shuttle/wall/hard_corner, -/area/shuttle/belter) -"Vl" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/quartermaster/belterdock/refinery) +"aVk" = ( +/obj/effect/landmark/start{ + name = "Shaft Miner" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/quartermaster/belterdock/gear) +"aVl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/door/window/westleft{ dir = 4 }, /turf/simulated/floor/outdoors/grass/forest, /area/quartermaster/qm) -"Vm" = ( +"aVm" = ( /obj/structure/table/reinforced, /obj/item/weapon/storage/box/beakers, /turf/simulated/floor/tiled/white, /area/medical/chemistry) -"Vn" = ( +"aVn" = ( /obj/structure/bed/chair/office/dark{ dir = 4 }, @@ -29637,13 +29686,10 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"Vo" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/quartermaster/belterdock) -"Vp" = ( +"aVo" = ( +/turf/simulated/shuttle/wall, +/area/shuttle/belter) +"aVp" = ( /obj/structure/cable/green{ d1 = 2; d2 = 8; @@ -29662,37 +29708,29 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/heads/hos) -"Vq" = ( -/obj/structure/ore_box, +"aVq" = ( +/obj/machinery/door/unpowered/shuttle, /turf/simulated/shuttle/floor/yellow/airless, /area/shuttle/belter) -"Vr" = ( -/obj/structure/bed/chair/shuttle{ - dir = 4 +"aVr" = ( +/turf/simulated/floor/tiled, +/area/quartermaster/belterdock/gear) +"aVs" = ( +/turf/simulated/floor/tiled, +/area/quartermaster/belterdock/surface_mining_outpost_shuttle_hangar) +"aVt" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_mining{ + name = "Production Area"; + req_access = list(48) }, -/turf/simulated/shuttle/floor/yellow/airless, -/area/shuttle/belter) -"Vs" = ( -/obj/machinery/computer/shuttle_control/belter{ - dir = 8 - }, -/turf/simulated/shuttle/floor/yellow/airless, -/area/shuttle/belter) -"Vt" = ( -/obj/structure/shuttle/window, -/obj/effect/shuttle_landmark{ - base_area = /area/quartermaster/belterdock; - base_turf = /turf/simulated/floor/tiled/asteroid_steel/airless; - landmark_tag = "belter_station"; - name = "Tether Parking Spot" - }, -/turf/simulated/floor/airless, -/area/shuttle/belter) -"Vu" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/quartermaster/belterdock/refinery) +"aVu" = ( /obj/machinery/computer/ship/helm, /turf/simulated/floor/tiled, /area/shuttle/excursion/cockpit) -"Vv" = ( +"aVv" = ( /obj/structure/sink{ pixel_y = 26 }, @@ -29706,18 +29744,36 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/medical_restroom) -"Vw" = ( +"aVw" = ( /obj/machinery/sleeper{ dir = 8 }, /turf/simulated/floor/tiled, /area/shuttle/excursion/general) -"Vx" = ( -/obj/structure/closet/crate, -/obj/machinery/light, -/turf/simulated/shuttle/floor/yellow/airless, -/area/shuttle/belter) -"VA" = ( +"aVx" = ( +/obj/machinery/camera/network/cargo, +/turf/simulated/floor/tiled, +/area/quartermaster/belterdock/surface_mining_outpost_shuttle_hangar) +"aVy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/quartermaster/belterdock/refinery) +"aVz" = ( +/obj/machinery/computer/shuttle_control/surface_mining_outpost{ + dir = 8 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/belterdock/surface_mining_outpost_shuttle_hangar) +"aVA" = ( /obj/effect/landmark/start{ name = "Medical Doctor" }, @@ -29725,7 +29781,7 @@ /obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled/white, /area/crew_quarters/medbreak) -"VB" = ( +"aVB" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/structure/window/reinforced{ @@ -29742,25 +29798,23 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, /area/shuttle/excursion/general) -"VC" = ( -/obj/structure/bed/chair/shuttle{ - dir = 1 - }, -/turf/simulated/shuttle/floor/yellow/airless, -/area/shuttle/belter) -"VD" = ( +"aVC" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/quartermaster/belterdock/refinery) +"aVD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/yellow{ dir = 6 }, /turf/simulated/floor/tiled/techfloor/grid, /area/shuttle/excursion/general) -"VE" = ( +"aVE" = ( /obj/structure/closet/walllocker/emerglocker{ pixel_x = -32 }, /turf/simulated/floor/tiled, /area/shuttle/excursion/general) -"VF" = ( +"aVF" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, @@ -29768,20 +29822,14 @@ /obj/item/toy/plushie/squid/pink, /turf/simulated/floor/outdoors/grass/forest, /area/quartermaster/qm) -"VG" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - icon_state = "warningcorner"; - dir = 4 - }, -/turf/simulated/floor/airless, -/area/quartermaster/belterdock) -"VH" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/airless, -/area/quartermaster/belterdock) -"VI" = ( +"aVG" = ( +/turf/simulated/shuttle/floor/yellow/airless, +/area/shuttle/belter) +"aVH" = ( +/obj/structure/bed/chair/shuttle, +/turf/simulated/shuttle/floor/yellow/airless, +/area/shuttle/belter) +"aVI" = ( /obj/machinery/light{ dir = 4 }, @@ -29794,14 +29842,11 @@ }, /turf/simulated/floor/tiled/monotile, /area/tether/exploration) -"VJ" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - icon_state = "warningcorner"; - dir = 1 - }, -/turf/simulated/floor/airless, -/area/quartermaster/belterdock) -"VK" = ( +"aVJ" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled, +/area/quartermaster/belterdock/surface_mining_outpost_shuttle_hangar) +"aVK" = ( /obj/structure/table/woodentable, /obj/machinery/light{ dir = 1 @@ -29814,34 +29859,68 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/heads/hos) -"VL" = ( +"aVL" = ( /obj/structure/grille, /obj/structure/lattice, /turf/space, /area/space) -"VM" = ( +"aVM" = ( /turf/simulated/open, /area/ai_core_foyer) -"VP" = ( +"aVN" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/quartermaster/belterdock/refinery) +"aVO" = ( +/obj/structure/ore_box, +/turf/simulated/shuttle/floor/yellow/airless, +/area/shuttle/belter) +"aVP" = ( /obj/machinery/atmospherics/unary/engine{ icon_state = "nozzle"; dir = 4 }, /turf/simulated/floor/airless, /area/shuttle/medivac/engines) -"VQ" = ( +"aVQ" = ( /obj/machinery/atmospherics/pipe/manifold/hidden{ dir = 8; icon_state = "map" }, /turf/simulated/wall/rshull, /area/shuttle/excursion/cargo) -"VR" = ( +"aVR" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/cyan, /obj/machinery/meter, /turf/simulated/floor/tiled/techfloor/grid, /area/shuttle/excursion/general) -"VU" = ( +"aVS" = ( +/obj/structure/bed/chair/shuttle{ + dir = 4 + }, +/turf/simulated/shuttle/floor/yellow/airless, +/area/shuttle/belter) +"aVT" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/quartermaster/belterdock/refinery) +"aVU" = ( /obj/machinery/firealarm{ dir = 2; layer = 3.3; @@ -29860,7 +29939,7 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/shuttle/excursion/cargo) -"VV" = ( +"aVV" = ( /obj/machinery/sleep_console{ dir = 4 }, @@ -29872,11 +29951,21 @@ }, /turf/simulated/floor/tiled/white, /area/shuttle/medivac/general) -"VX" = ( +"aVW" = ( +/obj/structure/shuttle/window, +/obj/effect/shuttle_landmark{ + base_area = /area/quartermaster/belterdock; + base_turf = /turf/simulated/floor/tiled/asteroid_steel/airless; + landmark_tag = "belter_station"; + name = "Tether Parking Spot" + }, +/turf/simulated/floor/airless, +/area/shuttle/belter) +"aVX" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled/monotile, /area/tether/exploration) -"VY" = ( +"aVY" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume{ dir = 1; frequency = 1380; @@ -29886,7 +29975,21 @@ /obj/effect/map_helper/airlock/atmos/pump_out_external, /turf/simulated/floor/airless, /area/shuttle/medivac/general) -"Wa" = ( +"aVZ" = ( +/obj/machinery/door/airlock/glass_mining{ + name = "Mining Outpost Shuttle"; + req_access = list(48) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/quartermaster/belterdock/surface_mining_outpost_shuttle_hangar) +"aWa" = ( /obj/machinery/airlock_sensor{ pixel_x = 28 }, @@ -29899,7 +30002,7 @@ /obj/effect/map_helper/airlock/atmos/pump_out_internal, /turf/simulated/floor/tiled/techfloor/grid, /area/shuttle/medivac/general) -"Wb" = ( +"aWb" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; @@ -29908,16 +30011,34 @@ }, /turf/simulated/wall, /area/maintenance/substation/cargo) -"Wd" = ( +"aWc" = ( +/obj/machinery/door/blast/regular, +/turf/simulated/wall, +/area/quartermaster/belterdock/surface_mining_outpost_shuttle_hangar) +"aWd" = ( /obj/effect/floor_decal/industrial/outline, /obj/machinery/atmospherics/portables_connector, /obj/machinery/portable_atmospherics/canister/air, /turf/simulated/floor/tiled/techfloor/grid, /area/shuttle/excursion/general) -"Wg" = ( +"aWe" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/belterdock/refinery) +"aWf" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/extinguisher_cabinet{ + pixel_x = -28; + pixel_y = 0 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/belterdock/surface_mining_outpost_shuttle_hangar) +"aWg" = ( /turf/simulated/floor/tiled, /area/shuttle/excursion/general) -"Wh" = ( +"aWh" = ( /obj/effect/floor_decal/carpet, /obj/effect/floor_decal/carpet{ dir = 4 @@ -29927,12 +30048,18 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/heads/hos) -"Wj" = ( +"aWi" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/airless, +/area/quartermaster/belterdock) +"aWj" = ( /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/blue/border, /turf/simulated/floor/tiled/white, /area/shuttle/medivac/general) -"Wk" = ( +"aWk" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -29942,11 +30069,11 @@ }, /turf/simulated/floor/tiled/monotile, /area/tether/exploration) -"Wl" = ( +"aWl" = ( /obj/structure/sign/redcross, /turf/simulated/wall/rshull, /area/shuttle/medivac/general) -"Wm" = ( +"aWm" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -29954,7 +30081,7 @@ }, /turf/simulated/floor, /area/maintenance/station/cargo) -"Wn" = ( +"aWn" = ( /obj/structure/disposalpipe/segment, /obj/machinery/shuttle_sensor{ dir = 5; @@ -29962,17 +30089,24 @@ }, /turf/simulated/wall/rshull, /area/shuttle/excursion/cargo) -"Wo" = ( +"aWo" = ( /obj/structure/bed/chair/shuttle, /obj/machinery/light{ dir = 1 }, /turf/simulated/floor/tiled, /area/shuttle/excursion/general) -"Wp" = ( +"aWp" = ( /turf/simulated/wall/rshull, /area/shuttle/excursion/cargo) -"Wr" = ( +"aWq" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + icon_state = "warningcorner"; + dir = 1 + }, +/turf/simulated/floor/airless, +/area/quartermaster/belterdock) +"aWr" = ( /obj/structure/table/standard, /obj/item/weapon/towel/random, /obj/item/weapon/towel/random, @@ -29984,19 +30118,19 @@ /obj/item/weapon/towel/random, /turf/simulated/floor/tiled/white, /area/crew_quarters/medical_restroom) -"Ws" = ( +"aWs" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/wall/rshull, /area/shuttle/excursion/cargo) -"Wt" = ( +"aWt" = ( /turf/simulated/floor/tiled/techfloor/grid, /area/shuttle/excursion/cargo) -"Wu" = ( +"aWu" = ( /obj/machinery/door/airlock/glass_external, /obj/effect/map_helper/airlock/door/ext_door, /turf/simulated/floor/tiled/techfloor/grid, /area/shuttle/medivac/general) -"Wv" = ( +"aWv" = ( /obj/machinery/alarm{ dir = 4; icon_state = "alarm0"; @@ -30005,10 +30139,10 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/medical_restroom) -"Ww" = ( +"aWw" = ( /turf/simulated/wall, /area/crew_quarters/heads/cmo) -"Wx" = ( +"aWx" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/structure/window/reinforced{ @@ -30025,7 +30159,7 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, /area/shuttle/excursion/general) -"Wy" = ( +"aWy" = ( /obj/machinery/door/window/brigdoor/westright{ req_access = newlist(); req_one_access = list(5,67) @@ -30041,7 +30175,14 @@ }, /turf/simulated/floor/tiled, /area/shuttle/medivac/cockpit) -"WA" = ( +"aWz" = ( +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/belterdock/refinery) +"aWA" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 1 }, @@ -30060,7 +30201,7 @@ }, /turf/simulated/floor/tiled/white, /area/shuttle/medivac/general) -"WB" = ( +"aWB" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, @@ -30075,7 +30216,7 @@ }, /turf/simulated/floor/tiled/white, /area/security/security_bathroom) -"WC" = ( +"aWC" = ( /obj/structure/bed/chair/bay/chair/padded/blue{ icon_state = "bay_chair_preview"; dir = 4 @@ -30086,18 +30227,18 @@ }, /turf/simulated/floor/tiled, /area/shuttle/medivac/cockpit) -"WD" = ( +"aWD" = ( /obj/machinery/computer/ship/sensors, /turf/simulated/floor/tiled, /area/shuttle/excursion/cockpit) -"WE" = ( +"aWE" = ( /obj/effect/decal/remains, /obj/item/clothing/under/rank/centcom_officer, /obj/item/clothing/head/beret/centcom/officer, /obj/item/clothing/shoes/laceup, /turf/simulated/mineral/floor/vacuum, /area/mine/explored/upper_level) -"WF" = ( +"aWF" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 8; @@ -30107,7 +30248,7 @@ /obj/structure/window/reinforced/full, /turf/simulated/floor/plating, /area/crew_quarters/medical_restroom) -"WG" = ( +"aWG" = ( /obj/machinery/disposal/deliveryChute{ dir = 8 }, @@ -30116,7 +30257,7 @@ }, /turf/simulated/floor/plating, /area/shuttle/excursion/cargo) -"WH" = ( +"aWH" = ( /obj/machinery/light{ icon_state = "tube1"; dir = 8 @@ -30124,14 +30265,41 @@ /obj/structure/dogbed, /turf/simulated/floor/carpet, /area/crew_quarters/heads/hos) -"WL" = ( +"aWI" = ( +/turf/simulated/floor/tiled, +/area/quartermaster/belterdock/refinery) +"aWJ" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/quartermaster/belterdock/refinery) +"aWK" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_x = 0; + pixel_y = 24 + }, +/obj/machinery/light_switch{ + pixel_x = 11; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/belterdock/refinery) +"aWL" = ( /obj/machinery/shipsensors{ dir = 1 }, /obj/effect/floor_decal/industrial/warning/full, /turf/simulated/floor/reinforced, /area/shuttle/excursion/general) -"WM" = ( +"aWM" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 4 }, @@ -30144,7 +30312,7 @@ }, /turf/simulated/floor/tiled/dark, /area/shuttle/medivac/general) -"WN" = ( +"aWN" = ( /obj/effect/floor_decal/carpet{ dir = 4 }, @@ -30156,11 +30324,54 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/heads/hos) -"WR" = ( +"aWO" = ( +/obj/machinery/conveyor{ + dir = 2; + id = "miningops" + }, +/turf/simulated/floor/plating, +/area/quartermaster/belterdock/refinery) +"aWP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_mining{ + name = "Mining Gear Storage"; + req_access = list(); + req_one_access = list(48,66) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/belterdock/gear) +"aWQ" = ( +/obj/structure/disposalpipe/segment{ + 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 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/belterdock/gear) +"aWR" = ( /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/techfloor/grid, /area/shuttle/excursion/cargo) -"WS" = ( +"aWS" = ( /obj/structure/disposaloutlet{ dir = 4 }, @@ -30172,14 +30383,29 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/shuttle/excursion/cargo) -"WT" = ( +"aWT" = ( /obj/effect/floor_decal/industrial/warning/dust/corner{ icon_state = "warningcorner_dust"; dir = 1 }, /turf/simulated/floor/airless, /area/mine/explored/upper_level) -"WV" = ( +"aWU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 2 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/belterdock/gear) +"aWV" = ( /obj/structure/shuttle/engine/heater, /obj/structure/window/reinforced{ dir = 1 @@ -30189,17 +30415,48 @@ }, /turf/simulated/floor/reinforced, /area/shuttle/excursion/cargo) -"WW" = ( +"aWW" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 8 }, /turf/simulated/floor/tiled/dark, /area/shuttle/medivac/general) -"WY" = ( +"aWX" = ( +/obj/structure/disposalpipe/segment{ + 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/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/quartermaster/belterdock/gear) +"aWY" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled/dark, /area/security/evidence_storage) -"Xa" = ( +"aWZ" = ( +/obj/structure/closet/secure_closet/miner, +/obj/machinery/firealarm{ + pixel_y = 25 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/belterdock/gear) +"aXa" = ( /obj/item/device/radio/intercom{ dir = 1; pixel_y = 24; @@ -30208,13 +30465,13 @@ /obj/structure/handrail, /turf/simulated/floor/tiled/techfloor/grid, /area/shuttle/excursion/cargo) -"Xb" = ( +"aXb" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/wall/rshull, /area/shuttle/excursion/cargo) -"Xc" = ( +"aXc" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/structure/window/reinforced{ @@ -30236,7 +30493,7 @@ }, /turf/simulated/floor/plating, /area/shuttle/excursion/general) -"Xd" = ( +"aXd" = ( /obj/effect/floor_decal/borderfloor, /obj/machinery/computer/shuttle_control/explore/medivac{ icon_state = "computer"; @@ -30245,13 +30502,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/floor/tiled, /area/shuttle/medivac/cockpit) -"Xe" = ( +"aXe" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/wood, /area/security/breakroom) -"Xf" = ( +"aXf" = ( /obj/machinery/atmospherics/portables_connector{ dir = 1 }, @@ -30259,7 +30516,7 @@ /obj/effect/floor_decal/industrial/outline/red, /turf/simulated/floor/tiled/techfloor/grid, /area/shuttle/medivac/engines) -"Xg" = ( +"aXg" = ( /obj/structure/grille, /obj/machinery/door/firedoor/glass, /obj/structure/window/reinforced/full, @@ -30274,7 +30531,7 @@ }, /turf/simulated/floor/airless, /area/shuttle/medivac/general) -"Xh" = ( +"aXh" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, @@ -30282,7 +30539,7 @@ /mob/living/simple_mob/animal/sif/fluffy, /turf/simulated/floor/outdoors/grass/forest, /area/quartermaster/qm) -"Xi" = ( +"aXi" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 5; icon_state = "intact" @@ -30294,7 +30551,7 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/shuttle/excursion/cargo) -"Xj" = ( +"aXj" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 4 }, @@ -30309,7 +30566,7 @@ }, /turf/simulated/floor/tiled/white, /area/shuttle/medivac/general) -"Xk" = ( +"aXk" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 }, @@ -30324,7 +30581,7 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/shuttle/excursion/general) -"Xl" = ( +"aXl" = ( /obj/structure/cable/cyan{ d1 = 4; d2 = 8; @@ -30343,11 +30600,55 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/shuttle/excursion/general) -"Xo" = ( +"aXm" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/grille, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/window/reinforced/full, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/quartermaster/belterdock/refinery) +"aXn" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/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/quartermaster/belterdock/refinery) +"aXo" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techfloor/grid, /area/shuttle/excursion/cargo) -"Xp" = ( +"aXp" = ( /obj/structure/cable/cyan{ d2 = 8; icon_state = "0-8" @@ -30355,15 +30656,25 @@ /obj/machinery/power/smes/buildable/point_of_interest, /turf/simulated/floor/tiled/techfloor/grid, /area/shuttle/excursion/general) -"Xq" = ( +"aXq" = ( /obj/structure/stasis_cage, /turf/simulated/floor/tiled/monotile, /area/tether/exploration) -"Xr" = ( +"aXr" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/yellow, /turf/simulated/wall/rshull, /area/shuttle/excursion/cargo) -"Xt" = ( +"aXs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/quartermaster/belterdock/surface_mining_outpost_shuttle_hangar) +"aXt" = ( /obj/machinery/door/airlock/hatch{ req_one_access = list(67) }, @@ -30375,7 +30686,19 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/steel_ridged, /area/shuttle/excursion/general) -"Xv" = ( +"aXu" = ( +/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/quartermaster/belterdock/refinery) +"aXv" = ( /obj/structure/cable/green{ icon_state = "1-8" }, @@ -30385,7 +30708,7 @@ }, /turf/simulated/floor/tiled/white, /area/shuttle/medivac/general) -"Xw" = ( +"aXw" = ( /obj/effect/floor_decal/borderfloorwhite/corner{ dir = 1 }, @@ -30397,17 +30720,44 @@ }, /turf/simulated/floor/tiled/white, /area/shuttle/medivac/general) -"Xx" = ( +"aXx" = ( /obj/machinery/computer/ship/engines, /obj/effect/floor_decal/borderfloor{ dir = 1 }, /turf/simulated/floor/tiled, /area/shuttle/medivac/cockpit) -"Xy" = ( +"aXy" = ( /turf/simulated/wall/rshull, /area/shuttle/medivac/cockpit) -"XB" = ( +"aXz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/quartermaster/belterdock/refinery) +"aXA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/quartermaster/belterdock/refinery) +"aXB" = ( /obj/structure/cable{ icon_state = "4-8" }, @@ -30418,13 +30768,13 @@ /obj/effect/floor_decal/corner/blue, /turf/simulated/floor/tiled/white, /area/shuttle/medivac/general) -"XC" = ( +"aXC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/yellow{ dir = 5 }, /turf/simulated/wall/rshull, /area/shuttle/excursion/cargo) -"XD" = ( +"aXD" = ( /obj/structure/shuttle/engine/heater, /obj/structure/window/reinforced{ dir = 1 @@ -30434,40 +30784,80 @@ }, /turf/simulated/floor/reinforced, /area/shuttle/excursion/cargo) -"XE" = ( +"aXE" = ( /obj/machinery/conveyor_switch/oneway{ id = "shuttle_inbound" }, /obj/effect/floor_decal/industrial/warning/full, /turf/simulated/floor/plating, /area/shuttle/excursion/cargo) -"XF" = ( +"aXF" = ( /obj/machinery/power/smes/buildable/point_of_interest, /obj/structure/cable{ icon_state = "0-8" }, /turf/simulated/floor/tiled/techfloor/grid, /area/shuttle/medivac/engines) -"XG" = ( +"aXG" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled, /area/security/eva) -"XH" = ( +"aXH" = ( /obj/machinery/shipsensors{ dir = 4 }, /obj/effect/floor_decal/industrial/warning/full, /turf/simulated/floor/airless, /area/shuttle/medivac/cockpit) -"XL" = ( +"aXI" = ( +/obj/machinery/camera/network/mining{ + c_tag = "OPM - Mining Production Room"; + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/quartermaster/belterdock/refinery) +"aXJ" = ( +/obj/machinery/mineral/processing_unit_console, +/turf/simulated/wall, +/area/quartermaster/belterdock/refinery) +"aXK" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/belterdock) +"aXL" = ( /obj/structure/sign/nosmoking_1, /turf/simulated/wall/rshull, /area/shuttle/medivac/general) -"XM" = ( +"aXM" = ( /obj/structure/table/glass, /turf/simulated/floor/wood, /area/crew_quarters/heads/cmo) -"XN" = ( +"aXN" = ( /obj/structure/shuttle/engine/heater, /obj/structure/window/reinforced{ dir = 1 @@ -30477,7 +30867,7 @@ }, /turf/simulated/floor/reinforced, /area/shuttle/excursion/cargo) -"XO" = ( +"aXO" = ( /obj/structure/cable/green{ d1 = 2; d2 = 4; @@ -30485,23 +30875,38 @@ }, /turf/simulated/floor/tiled/steel, /area/quartermaster/warehouse) -"XQ" = ( +"aXP" = ( +/obj/structure/disposalpipe/segment{ + 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 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/belterdock) +"aXQ" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, /area/shuttle/excursion/general) -"XR" = ( +"aXR" = ( /obj/effect/overmap/visitable/sector/virgo3b, /turf/space, /area/space) -"XS" = ( +"aXS" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, /area/shuttle/excursion/cargo) -"XT" = ( +"aXT" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -30523,7 +30928,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"XU" = ( +"aXU" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 10 @@ -30537,7 +30942,11 @@ }, /turf/simulated/floor/tiled/white, /area/shuttle/medivac/general) -"XW" = ( +"aXV" = ( +/obj/machinery/mineral/processing_unit, +/turf/simulated/floor/plating, +/area/quartermaster/belterdock/refinery) +"aXW" = ( /obj/machinery/door/window/brigdoor/westleft{ req_access = newlist(); req_one_access = list(5,67) @@ -30549,27 +30958,43 @@ }, /turf/simulated/floor/tiled, /area/shuttle/medivac/cockpit) -"XX" = ( +"aXX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/yellow{ dir = 9 }, /turf/simulated/wall/rshull, /area/shuttle/medivac/engines) -"XZ" = ( +"aXY" = ( +/obj/effect/landmark/start{ + name = "Shaft Miner" + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/belterdock/gear) +"aXZ" = ( /obj/structure/table/steel, /turf/simulated/floor/tiled, /area/shuttle/excursion/cockpit) -"Ya" = ( +"aYa" = ( /turf/simulated/wall/rshull, /area/shuttle/medivac/general) -"Yb" = ( +"aYb" = ( /turf/simulated/floor/wood, /area/crew_quarters/heads/cmo) -"Yc" = ( +"aYc" = ( /obj/structure/sign/redcross, /turf/simulated/wall/rshull, /area/shuttle/medivac/engines) -"Ye" = ( +"aYd" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/quartermaster/belterdock/gear) +"aYe" = ( /obj/machinery/light/small, /obj/machinery/atmospherics/portables_connector{ dir = 1 @@ -30578,11 +31003,11 @@ /obj/effect/floor_decal/industrial/outline/red, /turf/simulated/floor/tiled/techfloor/grid, /area/shuttle/medivac/engines) -"Yf" = ( +"aYf" = ( /obj/machinery/computer/supplycomp/control, /turf/simulated/floor/wood, /area/quartermaster/qm) -"Yg" = ( +"aYg" = ( /obj/machinery/atmospherics/pipe/simple/hidden/universal{ dir = 4 }, @@ -30593,7 +31018,7 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/shuttle/excursion/general) -"Yh" = ( +"aYh" = ( /obj/structure/sink{ dir = 4; icon_state = "sink"; @@ -30606,7 +31031,22 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/medical_restroom) -"Yj" = ( +"aYi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 2 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/belterdock/gear) +"aYj" = ( /obj/effect/floor_decal/industrial/warning{ dir = 10 }, @@ -30624,13 +31064,13 @@ /obj/effect/map_helper/airlock/atmos/chamber_pump, /turf/simulated/floor/tiled/techfloor/grid, /area/shuttle/excursion/cargo) -"Yk" = ( +"aYk" = ( /obj/effect/floor_decal/industrial/warning/dust{ dir = 1 }, /turf/simulated/floor/airless, /area/mine/explored/upper_level) -"Yl" = ( +"aYl" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 4 }, @@ -30645,7 +31085,7 @@ }, /turf/simulated/floor/tiled/white, /area/shuttle/medivac/general) -"Ym" = ( +"aYm" = ( /obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden{ @@ -30664,12 +31104,24 @@ }, /turf/simulated/floor/tiled, /area/shuttle/excursion/general) -"Yp" = ( +"aYn" = ( +/obj/machinery/suit_cycler/mining, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/turf/simulated/floor/tiled, +/area/quartermaster/belterdock/gear) +"aYo" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/turf/simulated/floor/tiled, +/area/quartermaster/belterdock/gear) +"aYp" = ( /turf/simulated/wall{ can_open = 0 }, /area/crew_quarters/medical_restroom) -"Yq" = ( +"aYq" = ( /obj/machinery/body_scanconsole{ dir = 4 }, @@ -30677,7 +31129,7 @@ /obj/effect/floor_decal/corner/blue/border, /turf/simulated/floor/tiled/white, /area/shuttle/medivac/general) -"Yr" = ( +"aYr" = ( /obj/machinery/airlock_sensor{ pixel_x = 28; pixel_y = 28 @@ -30689,14 +31141,20 @@ /obj/effect/map_helper/airlock/sensor/int_sensor, /turf/simulated/floor/tiled/white, /area/shuttle/medivac/general) -"Ys" = ( +"aYs" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 4 }, /obj/structure/bed/padded, /turf/simulated/floor/tiled/dark, /area/shuttle/medivac/general) -"Yu" = ( +"aYt" = ( +/obj/structure/dispenser/oxygen, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/turf/simulated/floor/tiled, +/area/quartermaster/belterdock/gear) +"aYu" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/door_timer/tactical_pet_storage{ @@ -30705,7 +31163,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/heads/hos) -"Yv" = ( +"aYv" = ( /obj/structure/fuel_port{ pixel_x = -32 }, @@ -30715,7 +31173,7 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/shuttle/medivac/engines) -"Yw" = ( +"aYw" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -30723,19 +31181,38 @@ }, /turf/simulated/floor/reinforced, /area/tether/exploration) -"Yx" = ( +"aYx" = ( /obj/effect/floor_decal/carpet{ dir = 4 }, /turf/simulated/floor/carpet, /area/crew_quarters/heads/hos) -"Yz" = ( +"aYy" = ( +/obj/structure/cable/green, +/obj/machinery/power/apc{ + dir = 2; + name = "south bump"; + pixel_y = -32 + }, +/obj/structure/table/rack, +/obj/item/weapon/pickaxe, +/obj/item/weapon/tool/wrench, +/obj/item/weapon/tool/crowbar, +/obj/item/weapon/shovel, +/obj/machinery/camera/network/mining{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/turf/simulated/floor/tiled, +/area/quartermaster/belterdock/gear) +"aYz" = ( /obj/structure/window/reinforced, /obj/structure/grille, /obj/structure/window/reinforced/full, /turf/simulated/floor/plating, /area/crew_quarters/medical_restroom) -"YA" = ( +"aYA" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 9 }, @@ -30748,7 +31225,7 @@ }, /turf/simulated/floor/tiled/white, /area/shuttle/medivac/general) -"YB" = ( +"aYB" = ( /obj/effect/shuttle_landmark{ base_area = /area/space; base_turf = /turf/space; @@ -30757,11 +31234,11 @@ }, /turf/space, /area/space) -"YC" = ( +"aYC" = ( /obj/effect/floor_decal/carpet, /turf/simulated/floor/carpet, /area/crew_quarters/heads/hos) -"YD" = ( +"aYD" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -30775,12 +31252,51 @@ }, /turf/simulated/floor/tiled/monotile, /area/tether/exploration) -"YH" = ( +"aYE" = ( +/obj/structure/closet/crate, +/turf/simulated/floor/tiled, +/area/quartermaster/belterdock/refinery) +"aYF" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/closet/crate, +/turf/simulated/floor/tiled, +/area/quartermaster/belterdock/refinery) +"aYG" = ( +/obj/machinery/mineral/input, +/obj/machinery/conveyor{ + dir = 2; + id = "miningops" + }, +/turf/simulated/floor/plating, +/area/quartermaster/belterdock/refinery) +"aYH" = ( /obj/structure/table/woodentable, /obj/machinery/microwave, /turf/simulated/floor/wood, /area/security/breakroom) -"YK" = ( +"aYI" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/conveyor_switch/oneway{ + id = "miningops"; + name = "Mining Ops conveyor switch"; + pixel_x = 10; + pixel_y = 5; + req_access = list(48); + req_one_access = list(48) + }, +/turf/simulated/floor/tiled, +/area/quartermaster/belterdock/refinery) +"aYJ" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22; + pixel_y = 0 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/belterdock/refinery) +"aYK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -30793,7 +31309,24 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, /area/shuttle/excursion/general) -"YM" = ( +"aYL" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_x = 0; + pixel_y = 24 + }, +/obj/machinery/light_switch{ + pixel_x = 11; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled, +/area/quartermaster/belterdock/surface_mining_outpost_shuttle_hangar) +"aYM" = ( /obj/machinery/bodyscanner{ dir = 4 }, @@ -30805,7 +31338,7 @@ }, /turf/simulated/floor/tiled/white, /area/shuttle/medivac/general) -"YN" = ( +"aYN" = ( /obj/machinery/light/small{ dir = 1 }, @@ -30818,7 +31351,7 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/shuttle/medivac/engines) -"YO" = ( +"aYO" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 1 }, @@ -30827,7 +31360,11 @@ }, /turf/simulated/floor/tiled/white, /area/shuttle/medivac/general) -"YQ" = ( +"aYP" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled, +/area/quartermaster/belterdock/refinery) +"aYQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ icon_state = "map-scrubbers"; @@ -30840,16 +31377,20 @@ }, /turf/simulated/floor/tiled/monotile, /area/tether/exploration) -"YS" = ( +"aYR" = ( +/obj/machinery/mineral/stacking_unit_console, +/turf/simulated/wall, +/area/quartermaster/belterdock/refinery) +"aYS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/yellow{ dir = 10 }, /turf/simulated/floor/tiled/techfloor/grid, /area/shuttle/medivac/engines) -"YT" = ( +"aYT" = ( /turf/simulated/wall, /area/security/breakroom) -"YU" = ( +"aYU" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -30871,26 +31412,26 @@ }, /turf/simulated/floor/tiled, /area/shuttle/medivac/cockpit) -"YV" = ( +"aYV" = ( /obj/machinery/computer/secure_data, /obj/machinery/alarm{ pixel_y = 22 }, /turf/simulated/floor/wood, /area/crew_quarters/heads/hos) -"YW" = ( +"aYW" = ( /obj/structure/lattice, /obj/structure/sign/warning/secure_area{ pixel_x = 32 }, /turf/space, /area/space) -"YX" = ( +"aYX" = ( /obj/structure/table/standard, /obj/random/medical, /turf/simulated/floor/tiled/techfloor/grid, /area/shuttle/medivac/engines) -"YY" = ( +"aYY" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 @@ -30902,7 +31443,20 @@ }, /turf/simulated/floor/tiled/white, /area/shuttle/medivac/engines) -"Za" = ( +"aYZ" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -28; + pixel_y = 0 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_x = 0; + pixel_y = -25 + }, +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled, +/area/quartermaster/belterdock/refinery) +"aZa" = ( /obj/machinery/door/airlock/hatch{ req_one_access = newlist() }, @@ -30917,7 +31471,16 @@ }, /turf/simulated/floor/tiled/steel_ridged, /area/shuttle/excursion/cargo) -"Zc" = ( +"aZb" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/belterdock/surface_mining_outpost_shuttle_hangar) +"aZc" = ( /obj/machinery/computer/ship/helm{ icon_state = "computer"; dir = 8 @@ -30930,7 +31493,7 @@ }, /turf/simulated/floor/tiled, /area/shuttle/medivac/cockpit) -"Zd" = ( +"aZd" = ( /obj/machinery/conveyor{ dir = 4; id = "shuttle_inbound" @@ -30938,7 +31501,7 @@ /obj/structure/plasticflaps, /turf/simulated/floor/plating, /area/shuttle/excursion/cargo) -"Ze" = ( +"aZe" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 10 @@ -30952,13 +31515,31 @@ }, /turf/simulated/floor/tiled/white, /area/shuttle/medivac/general) -"Zg" = ( +"aZf" = ( +/obj/effect/floor_decal/industrial/loading{ + icon_state = "loadingarea"; + dir = 8 + }, +/obj/structure/sign/warning/moving_parts{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/belterdock/refinery) +"aZg" = ( /obj/effect/floor_decal/industrial/warning/dust{ dir = 8 }, /turf/simulated/floor/airless, /area/mine/explored/upper_level) -"Zi" = ( +"aZh" = ( +/obj/machinery/mineral/output, +/obj/machinery/conveyor{ + dir = 2; + id = "miningops" + }, +/turf/simulated/floor/plating, +/area/quartermaster/belterdock/refinery) +"aZi" = ( /obj/machinery/alarm{ dir = 1; icon_state = "alarm0"; @@ -30969,7 +31550,11 @@ }, /turf/simulated/floor/outdoors/grass/forest, /area/quartermaster/qm) -"Zk" = ( +"aZj" = ( +/obj/machinery/mineral/stacking_machine, +/turf/simulated/floor/plating, +/area/quartermaster/belterdock/refinery) +"aZk" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/effect/floor_decal/industrial/warning/corner{ icon_state = "warningcorner"; @@ -30977,11 +31562,11 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/shuttle/excursion/cargo) -"Zl" = ( +"aZl" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/wall/rshull, /area/shuttle/medivac/cockpit) -"Zm" = ( +"aZm" = ( /obj/machinery/computer/ship/sensors{ icon_state = "computer"; dir = 8 @@ -30992,14 +31577,14 @@ /obj/machinery/light, /turf/simulated/floor/tiled, /area/shuttle/medivac/cockpit) -"Zn" = ( +"aZn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /mob/living/simple_mob/animal/sif/fluffy/silky, /turf/simulated/floor/outdoors/grass/forest, /area/quartermaster/qm) -"Zo" = ( +"aZo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 }, @@ -31014,14 +31599,23 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/shuttle/excursion/cargo) -"Zp" = ( +"aZp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ icon_state = "intact-scrubbers"; dir = 4 }, /turf/simulated/floor/outdoors/grass/forest, /area/quartermaster/qm) -"Zr" = ( +"aZq" = ( +/obj/structure/plasticflaps, +/obj/machinery/conveyor{ + dir = 8; + id = "miningops"; + movedir = null + }, +/turf/simulated/floor/plating, +/area/quartermaster/belterdock/refinery) +"aZr" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -31029,11 +31623,11 @@ /obj/effect/floor_decal/borderfloor, /turf/simulated/floor/tiled, /area/shuttle/medivac/cockpit) -"Zs" = ( +"aZs" = ( /obj/structure/bookcase, /turf/simulated/floor/wood, /area/crew_quarters/heads/cmo) -"Zt" = ( +"aZt" = ( /obj/machinery/power/apc{ alarms_hidden = 1; dir = 2; @@ -31053,7 +31647,7 @@ /obj/structure/cable, /turf/simulated/floor/tiled/white, /area/shuttle/medivac/general) -"Zu" = ( +"aZu" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -31062,7 +31656,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/medical_restroom) -"Zv" = ( +"aZv" = ( /obj/machinery/door/firedoor/glass, /obj/structure/grille, /obj/structure/window/reinforced/full, @@ -31079,13 +31673,27 @@ }, /turf/simulated/floor/airless, /area/shuttle/medivac/cockpit) -"Zx" = ( +"aZw" = ( +/obj/structure/table/rack, +/obj/item/weapon/pickaxe, +/obj/item/weapon/tool/wrench, +/obj/item/weapon/tool/crowbar, +/obj/item/weapon/shovel, +/obj/machinery/light_switch{ + pixel_x = -11; + pixel_y = -24 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/turf/simulated/floor/tiled, +/area/quartermaster/belterdock/gear) +"aZx" = ( /obj/machinery/light/small{ dir = 8 }, /turf/simulated/floor/tiled/white, /area/crew_quarters/medical_restroom) -"Zy" = ( +"aZy" = ( /obj/structure/disposaloutlet{ dir = 8 }, @@ -31094,7 +31702,7 @@ }, /turf/simulated/floor/plating, /area/shuttle/excursion/cargo) -"Zz" = ( +"aZz" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 8 }, @@ -31107,13 +31715,48 @@ }, /turf/simulated/floor/tiled/dark, /area/shuttle/medivac/general) -"ZD" = ( +"aZA" = ( +/obj/structure/table/steel, +/obj/item/stack/flag/yellow{ + pixel_x = 4 + }, +/obj/item/stack/flag/red, +/obj/item/stack/flag/green{ + pixel_x = -4; + pixel_y = 0 + }, +/obj/item/weapon/storage/box/nifsofts_mining, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/turf/simulated/floor/tiled, +/area/quartermaster/belterdock/gear) +"aZB" = ( +/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/quartermaster/belterdock/gear) +"aZC" = ( +/obj/machinery/conveyor{ + dir = 5; + icon_state = "conveyor0"; + id = "miningops" + }, +/obj/machinery/mineral/input, +/turf/simulated/floor/plating, +/area/quartermaster/belterdock/refinery) +"aZD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/yellow{ dir = 9 }, /turf/simulated/wall/rshull, /area/shuttle/excursion/cargo) -"ZE" = ( +"aZE" = ( /obj/machinery/door/airlock/glass_external, /obj/machinery/airlock_sensor/airlock_exterior/shuttle{ dir = 6; @@ -31135,17 +31778,41 @@ /obj/effect/map_helper/airlock/sensor/ext_sensor, /turf/simulated/floor/tiled/techfloor/grid, /area/shuttle/excursion/cargo) -"ZF" = ( +"aZF" = ( /turf/simulated/mineral/vacuum, /area/crew_quarters/heads/hos) -"ZG" = ( +"aZG" = ( /obj/machinery/computer/shuttle_control/explore/excursion{ dir = 1; icon_state = "computer" }, /turf/simulated/floor/tiled, /area/shuttle/excursion/cockpit) -"ZK" = ( +"aZH" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "miningops"; + movedir = null + }, +/turf/simulated/floor/plating, +/area/quartermaster/belterdock/refinery) +"aZI" = ( +/obj/machinery/mineral/output, +/obj/machinery/conveyor{ + dir = 8; + id = "miningops"; + movedir = null + }, +/turf/simulated/floor/plating, +/area/quartermaster/belterdock/refinery) +"aZJ" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/belterdock/surface_mining_outpost_shuttle_hangar) +"aZK" = ( /obj/structure/bed/chair/bay/chair/padded/blue{ icon_state = "bay_chair_preview"; dir = 4 @@ -31161,7 +31828,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/floor/tiled, /area/shuttle/medivac/cockpit) -"ZL" = ( +"aZL" = ( /obj/machinery/door/airlock/hatch{ req_one_access = list(67) }, @@ -31175,12 +31842,12 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/steel_ridged, /area/shuttle/excursion/general) -"ZM" = ( +"aZM" = ( /obj/structure/table/woodentable, /obj/item/device/radio/off, /turf/simulated/floor/wood, /area/crew_quarters/heads/hos) -"ZN" = ( +"aZN" = ( /obj/structure/cable{ icon_state = "4-8" }, @@ -31194,24 +31861,24 @@ }, /turf/simulated/floor/tiled/white, /area/shuttle/medivac/general) -"ZO" = ( +"aZO" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled, /area/security/eva) -"ZP" = ( +"aZP" = ( /obj/structure/catwalk, /obj/effect/landmark{ name = "maint_pred" }, /turf/simulated/floor, /area/maintenance/cargo) -"ZQ" = ( +"aZQ" = ( /obj/effect/landmark{ name = "maint_pred" }, /turf/simulated/floor, /area/maintenance/station/ai) -"ZR" = ( +"aZR" = ( /obj/structure/grille, /obj/machinery/door/firedoor/glass, /obj/structure/window/reinforced/full, @@ -31228,7 +31895,14 @@ }, /turf/simulated/floor/airless, /area/shuttle/medivac/general) -"ZT" = ( +"aZS" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/belterdock/surface_mining_outpost_shuttle_hangar) +"aZT" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/alarm{ dir = 1; @@ -31240,7 +31914,7 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/shuttle/excursion/cargo) -"ZU" = ( +"aZU" = ( /obj/machinery/suit_cycler/pilot, /obj/machinery/firealarm{ dir = 1; @@ -31249,7 +31923,7 @@ }, /turf/simulated/floor/tiled, /area/shuttle/excursion/general) -"ZV" = ( +"aZV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -31259,14 +31933,14 @@ }, /turf/simulated/floor/wood, /area/quartermaster/qm) -"ZW" = ( +"aZW" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/yellow, /turf/simulated/floor/tiled/techfloor/grid, /area/shuttle/excursion/cargo) -"ZX" = ( +"aZX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/yellow{ dir = 10 }, @@ -31279,19887 +31953,20258 @@ /obj/item/weapon/storage/mre/menu10, /turf/simulated/floor/tiled/techfloor/grid, /area/shuttle/excursion/general) -"ZY" = ( +"aZY" = ( /turf/simulated/wall/r_wall, /area/security/security_lockerroom) +"aZZ" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/belterdock/surface_mining_outpost_shuttle_hangar) +"baa" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/firealarm{ + pixel_y = 25 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/belterdock/surface_mining_outpost_shuttle_hangar) +"bab" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/belterdock/surface_mining_outpost_shuttle_hangar) +"bac" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/simulated/floor/tiled, +/area/quartermaster/belterdock) +"bad" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/belterdock/surface_mining_outpost_shuttle_hangar) +"bae" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + icon_state = "warningcorner"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/belterdock/surface_mining_outpost_shuttle_hangar) +"baf" = ( +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/quartermaster/belterdock/surface_mining_outpost_shuttle_hangar) +"bag" = ( +/obj/structure/ore_box, +/turf/simulated/floor/tiled/asteroid_steel/airless, +/area/quartermaster/belterdock) +"bah" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 2 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/quartermaster/belterdock/surface_mining_outpost_shuttle_hangar) +"bai" = ( +/turf/simulated/shuttle/wall, +/area/shuttle/mining_outpost/shuttle) +"baj" = ( +/obj/machinery/door/unpowered/shuttle, +/turf/simulated/shuttle/floor/yellow/airless, +/area/shuttle/mining_outpost/shuttle) +"bak" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/camera/network/mining, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/airless, +/area/quartermaster/belterdock) +"bal" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + icon_state = "warningcorner"; + dir = 8 + }, +/turf/simulated/floor/airless, +/area/quartermaster/belterdock) +"bam" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/quartermaster/belterdock/surface_mining_outpost_shuttle_hangar) +"ban" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/quartermaster/belterdock/surface_mining_outpost_shuttle_hangar) +"bao" = ( +/obj/structure/shuttle/engine/heater{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/airless, +/area/shuttle/mining_outpost/shuttle) +"bap" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/airless, +/area/quartermaster/belterdock) +"baq" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 1; + icon_state = "propulsion_l" + }, +/turf/simulated/shuttle/plating/airless/carry, +/area/shuttle/belter) +"bar" = ( +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; + dir = 8 + }, +/turf/simulated/floor/airless, +/area/quartermaster/belterdock) +"bas" = ( +/turf/simulated/floor/airless, +/area/quartermaster/belterdock) +"bat" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/shuttle/floor/yellow, +/area/shuttle/mining_outpost/shuttle) +"bau" = ( +/turf/simulated/shuttle/floor/yellow, +/area/shuttle/mining_outpost/shuttle) +"bav" = ( +/obj/structure/shuttle/engine/heater{ + dir = 1 + }, +/obj/structure/window/reinforced, +/turf/simulated/shuttle/floor/yellow/airless, +/area/shuttle/belter) +"baw" = ( +/obj/structure/bed/chair/shuttle, +/obj/structure/shuttle/engine/heater{ + dir = 1 + }, +/obj/structure/window/reinforced, +/turf/simulated/shuttle/floor/yellow/airless, +/area/shuttle/belter) +"bax" = ( +/obj/structure/bed/chair/shuttle, +/turf/simulated/shuttle/floor/yellow, +/area/shuttle/mining_outpost/shuttle) +"bay" = ( +/obj/structure/closet/crate, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/shuttle/floor/yellow/airless, +/area/shuttle/belter) +"baz" = ( +/obj/structure/closet/crate, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/shuttle/floor/yellow/airless, +/area/shuttle/belter) +"baA" = ( +/obj/structure/closet/emcloset, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/turf/simulated/shuttle/floor/yellow, +/area/shuttle/mining_outpost/shuttle) +"baB" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/belterdock/surface_mining_outpost_shuttle_hangar) +"baC" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/camera/network/cargo{ + dir = 1; + name = "security camera" + }, +/turf/simulated/floor/tiled, +/area/quartermaster/belterdock/surface_mining_outpost_shuttle_hangar) +"baD" = ( +/turf/simulated/shuttle/wall/hard_corner, +/area/shuttle/mining_outpost/shuttle) +"baE" = ( +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + dir = 8; + id_tag = "belter_docking"; + pixel_x = 26; + pixel_y = 0 + }, +/turf/simulated/shuttle/floor/yellow/airless, +/area/shuttle/belter) +"baF" = ( +/obj/structure/bed/chair/shuttle{ + dir = 8 + }, +/turf/simulated/shuttle/floor/yellow/airless, +/area/shuttle/belter) +"baG" = ( +/obj/structure/closet/emcloset, +/turf/simulated/shuttle/floor/yellow/airless, +/area/shuttle/belter) +"baH" = ( +/obj/machinery/computer/shuttle_control/belter{ + dir = 1 + }, +/turf/simulated/shuttle/floor/yellow/airless, +/area/shuttle/belter) +"baI" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/airless, +/area/quartermaster/belterdock) +"baJ" = ( +/obj/structure/bed/chair/shuttle{ + dir = 4 + }, +/turf/simulated/shuttle/floor/yellow, +/area/shuttle/mining_outpost/shuttle) +"baK" = ( +/obj/machinery/computer/shuttle_control/surface_mining_outpost{ + dir = 8 + }, +/turf/simulated/shuttle/floor/yellow, +/area/shuttle/mining_outpost/shuttle) +"baL" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/belterdock/surface_mining_outpost_shuttle_hangar) +"baM" = ( +/obj/machinery/light, +/turf/simulated/shuttle/floor/yellow, +/area/shuttle/mining_outpost/shuttle) +"baN" = ( +/obj/structure/bed/chair/shuttle{ + dir = 1 + }, +/turf/simulated/shuttle/floor/yellow, +/area/shuttle/mining_outpost/shuttle) +"baO" = ( +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + dir = 8; + id_tag = "mining_docking"; + pixel_x = 0; + pixel_y = 26 + }, +/turf/simulated/shuttle/floor/yellow, +/area/shuttle/mining_outpost/shuttle) +"baP" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + icon_state = "warningcorner"; + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/belterdock/surface_mining_outpost_shuttle_hangar) +"baQ" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + icon_state = "warningcorner"; + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/belterdock/surface_mining_outpost_shuttle_hangar) +"baR" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/quartermaster/belterdock/surface_mining_outpost_shuttle_hangar) +"baS" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 8; + icon_state = "propulsion_l" + }, +/turf/simulated/floor/tiled/asteroid_steel/airless, +/turf/simulated/shuttle/plating/airless/carry, +/area/shuttle/mining_outpost/shuttle) +"baT" = ( +/obj/structure/shuttle/window, +/obj/effect/shuttle_landmark{ + base_area = /area/quartermaster/belterdock/surface_mining_outpost_shuttle_hangar; + base_turf = /turf/simulated/floor/tiled; + landmark_tag = "mining_station"; + name = "Mining Outpost Shuttle - Station" + }, +/turf/simulated/floor/airless, +/area/shuttle/mining_outpost/shuttle) +"baU" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 8 + }, +/turf/simulated/floor/tiled/asteroid_steel/airless, +/turf/simulated/shuttle/plating/airless/carry, +/area/shuttle/mining_outpost/shuttle) +"baV" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 8; + icon_state = "propulsion_r" + }, +/turf/simulated/floor/tiled/asteroid_steel/airless, +/turf/simulated/shuttle/plating/airless/carry, +/area/shuttle/mining_outpost/shuttle) +"baW" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/quartermaster/belterdock/surface_mining_outpost_shuttle_hangar) (1,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -QT +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aQT "} (2,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -XR -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aXR +aaa "} (3,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (4,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (5,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (6,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (7,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (8,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (9,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (10,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (11,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (12,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (13,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (14,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (15,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (16,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (17,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (18,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -YB -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aYB +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (19,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (20,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (21,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (22,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (23,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (24,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (25,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -VL -ae -ad -aa -gm -aa -ad -ad -ae -ot -ad -ad -ae -ad -ad -ad -ae -ad -ad -ad -ae -ad -ad -ad -ae -ad -ad -ad -ae -ad -ad -ad -ae -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aVL +aae +aad +aaa +agm +aaa +aad +aad +aae +aot +aad +aad +aae +aad +aad +aad +aae +aad +aad +aad +aae +aad +aad +aad +aae +aad +aad +aad +aae +aad +aad +aad +aae +aad +aad +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (26,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -gm -ad -ad -ae -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -VL -aa -ae -aa -ae -aa -aa -aa -ae -aa -aa -aa -ae -aa -aa -aa -ae -aa -aa -aa -ae -aa -aa -aa -ae -aa -aa -aa -ae -aa -aa -aa -ae -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aad +aad +aad +agm +aad +aad +aae +aad +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aVL +aaa +aae +aaa +aae +aaa +aaa +aaa +aae +aaa +aaa +aaa +aae +aaa +aaa +aaa +aae +aaa +aaa +aaa +aae +aaa +aaa +aaa +aae +aaa +aaa +aaa +aae +aaa +aaa +aaa +aae +aaa +aaa +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (27,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -VL -YW -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -YW -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aVL +aYW +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aYW +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (28,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -ZF -je -je -je -je -lj -lu -je -je -je -lj -lZ -qc -qv -rd -qc -sL -tG -uF -aa -ae -aa -aa -aa -ae -aa -yB -aa -ae -aa -aa -aa -ae -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aab +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aZF +aje +aje +aje +aje +alj +alu +aje +aje +aje +alj +alZ +aqc +aqv +ard +aqc +asL +atG +auF +aaa +aae +aaa +aaa +aaa +aae +aaa +ayB +aaa +aae +aaa +aaa +aaa +aae +aaa +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (29,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -ab -ZF -je -LS -WH -Uk -my -kv -nD -nW -TO -oW -ZM -mb -qw -re -sa -fO -tH -uG -vs -ae -aa -JW -xv -xw -xw -xw -xw -xw -xv -JW -aa -ae -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aab +aab +aab +aab +aaa +aaa +aaa +aaa +aaa +aaa +aab +aZF +aje +aLS +aWH +aUk +amy +akv +anD +anW +aTO +aoW +aZM +amb +aqw +are +asa +afO +atH +auG +avs +aae +aaa +aJW +axv +axw +axw +axw +axw +axw +axv +aJW +aaa +aae +aaa +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (30,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ZF -je -Ui -iS -Qn -Yu -Vp -Ve -nX -TW -oX -Sc -mE -qx -rf -sb -sM -tI -uI -vs -ae -aa -xv -xw -xw -xw -xw -xw -xw -xw -xv -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aZF +aje +aUi +aiS +aQn +aYu +aVp +aVe +anX +aTW +aoX +aSc +amE +aqx +arf +asb +asM +atI +auI +avs +aae +aaa +axv +axw +axw +axw +axw +axw +axw +axw +axv +aaa +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (31,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ZF -je -je -je -je -Uu -jM -nE -Rq -YC -kv -SP -mF -qy -rg -sc -sN -gc -qc -vs -vs -vs -xw -xw -ze -zS -yR -BV -CT -xw -xw -vt -vt -vt -vt -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aaa +aaa +aaa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aZF +aje +aje +aje +aje +aUu +ajM +anE +aRq +aYC +akv +aSP +amF +aqy +arg +asc +asN +agc +aqc +avs +avs +avs +axw +axw +aze +azS +ayR +aBV +aCT +axw +axw +avt +avt +avt +avt +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (32,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -je -VK -jM -nF -eG -ov -oZ -fr -qc -mG -rh -wS -sO -tJ -qc -vs -vt -tb -xw -xw -zf -zT -Bb -BW -CU -xw -xw -Kq -vt -vt -vt -vt -vt -vt -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aaa +aaa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aje +aVK +ajM +anF +aeG +aov +aoZ +afr +aqc +amG +arh +awS +asO +atJ +aqc +avs +avt +atb +axw +axw +azf +azT +aBb +aBW +aCU +axw +axw +aKq +avt +avt +avt +avt +avt +avt +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (33,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -ab -ab -ab -ab -ab -ao -ao -ao -ao -ao -ao -ao -ao -ao -ao -ao -ab -ab -ab -ab -je -YV -jM -TD -eH -ow -Un -cZ -mb -qz -ri -sd -sP -tK -qc -vt -vt -vt -xw -xw -zg -OY -Bc -BX -PA -xw -xw -vt -we -vt -vt -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aaa +aaa +aaa +aab +aab +aab +aab +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aab +aab +aab +aab +aje +aYV +ajM +aTD +aeH +aow +aUn +acZ +amb +aqz +ari +asd +asP +atK +aqc +avt +avt +avt +axw +axw +azg +aOY +aBc +aBX +aPA +axw +axw +avt +awe +avt +avt +aab +aab +aab +aab +aab +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (34,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -ab -ab -ab -ab -ao -ao -ao -ao -ao -ao -ao -ao -ao -ao -ao -ao -ab -ab -ab -ab -je -hd -WN -et -Yx -Wh -pa -Sz -mE -qA -rj -se -sM -tL -uH -vt -vt -vt -xw -xw -zh -zT -Bd -BY -CW -xw -xw -vt -vt -vt -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aaa +aaa +aaa +aab +aab +aab +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aab +aab +aab +aab +aje +ahd +aWN +aet +aYx +aWh +apa +aSz +amE +aqA +arj +ase +asM +atL +auH +avt +avt +avt +axw +axw +azh +azT +aBd +aBY +aCW +axw +axw +avt +avt +avt +aab +aab +aab +aab +aab +aab +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (35,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ab -ab -ab -ab -ao -ao -ao -ao -bR -iu -ck -cm -jE -QU -jR -ju -ju -ao -ab -ab -ab -ab -je -kI -Uy -kO -oa -ox -ff -pC -mF -qB -rk -sf -sQ -tM -uI -vt -we -vt -xv -xw -zi -zU -Be -zU -CX -xw -xv -we -vt -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aad +aab +aab +aab +aab +aao +aao +aao +aao +abR +aiu +ack +acm +ajE +aQU +ajR +aju +aju +aao +aab +aab +aab +aab +aje +akI +aUy +akO +aoa +aox +aff +apC +amF +aqB +ark +asf +asQ +atM +auI +avt +awe +avt +axv +axw +azi +azU +aBe +azU +aCX +axw +axv +awe +avt +aab +aab +aab +aab +aab +aab +aab +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (36,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aO -aa -aa -aa -aa -ab -ab -ab -ao -ao -ao -ao -ao -if -iv -iL -jg -jg -QU -iZ -ju -ju -ko -ko -ko -ko -ko -ZY -ZY -ZY -ZY -ZY -ZY -av -ma -qd -qC -pB -qd -qC -qC -qc -vt -vt -vt -JX -xw -zj -xw -dG -xw -zj -xw -JX -vt -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaO +aaa +aaa +aaa +aaa +aab +aab +aab +aao +aao +aao +aao +aao +aif +aiv +aiL +ajg +ajg +aQU +aiZ +aju +aju +ako +ako +ako +ako +ako +aZY +aZY +aZY +aZY +aZY +aZY +aav +ama +aqd +aqC +apB +aqd +aqC +aqC +aqc +avt +avt +avt +aJX +axw +azj +axw +adG +axw +azj +axw +aJX +avt +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (37,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -ae -aa -aa -aa -ab -ab -ab -ab -ao -ao -aH -hA -hS -ig -iw -iM -ja -ja -ja -ja -ja -kc -ko -tQ -hC -kY -eT -mc -mx -eu -nH -ob -mh -pb -fs -qe -qD -rm -sg -sR -tN -uJ -vt -vt -vt -we -vt -zk -zV -Bg -BZ -CY -vt -vt -vt -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aaa +aaa +aae +aaa +aaa +aaa +aab +aab +aab +aab +aao +aao +aaH +ahA +ahS +aig +aiw +aiM +aja +aja +aja +aja +aja +akc +ako +atQ +ahC +akY +aeT +amc +amx +aeu +anH +aob +amh +apb +afs +aqe +aqD +arm +asg +asR +atN +auJ +avt +avt +avt +awe +avt +azk +azV +aBg +aBZ +aCY +avt +avt +avt +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (38,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -ae -aa -aa -ab -ab -ab -ab -ab -ao -ao -dN -hB -hT -ih -ix -ih -jb -fM -ih -jF -bd -ke -ko -kz -kL -kZ -lx -eq -mA -nj -nI -oc -fd -pc -nN -qe -qE -rm -sh -sS -tO -uJ -vt -vt -vt -vt -vt -zl -zW -ki -Ca -CZ -vt -vt -vt -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aaa +aaa +aae +aaa +aaa +aab +aab +aab +aab +aab +aao +aao +adN +ahB +ahT +aih +aix +aih +ajb +afM +aih +ajF +abd +ake +ako +akz +akL +akZ +alx +aeq +amA +anj +anI +aoc +afd +apc +anN +aqe +aqE +arm +ash +asS +atO +auJ +avt +avt +avt +avt +avt +azl +azW +aki +aCa +aCZ +avt +avt +avt +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (39,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -ae -ae -Rg -ae -ae -ab -ab -ab -ai -ai -ai -ao -hf -fJ -bx -ii -bd -iN -jc -ji -en -kd -jS -rA -ko -kA -dz -la -eT -md -mB -nk -nJ -eK -mh -mj -mK -fH -qF -rn -si -sT -DV -uJ -vu -nn -nn -nn -vu -uO -xx -Bi -Cb -sp -we -vt -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -KE -KE -KE -KE -KE -Tb -WF -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aae +aae +aRg +aae +aae +aab +aab +aab +aai +aai +aai +aao +ahf +afJ +abx +aii +abd +aiN +ajc +aji +aen +akd +ajS +arA +ako +akA +adz +ala +aeT +amd +amB +ank +anJ +aeK +amh +amj +amK +afH +aqF +arn +asi +asT +aDV +auJ +avu +ann +ann +ann +avu +auO +axx +aBi +aCb +asp +awe +avt +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aKE +aKE +aKE +aKE +aKE +aTb +aWF +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (40,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -Rg -aa -aa -ab -ab -ai -ai -ai -ai -ai -ai -ai -dI -dI -iy -iO -jd -dI -dI -jG -jT -ao -ko -fk -fz -fW -eT -me -mB -ev -SE -od -mh -pd -mL -fH -qG -ro -sj -sT -qg -uJ -qS -wg -wg -xy -yi -og -zY -Bj -Qk -Da -Da -Da -Da -Da -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -KE -IN -Wv -KE -Vv -Nl -Yz -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aaa +aaa +aRg +aaa +aaa +aab +aab +aai +aai +aai +aai +aai +aai +aai +adI +adI +aiy +aiO +ajd +adI +adI +ajG +ajT +aao +ako +afk +afz +afW +aeT +ame +amB +aev +aSE +aod +amh +apd +amL +afH +aqG +aro +asj +asT +aqg +auJ +aqS +awg +awg +axy +ayi +aog +azY +aBj +aQk +aDa +aDa +aDa +aDa +aDa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aKE +aIN +aWv +aKE +aVv +aNl +aYz +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (41,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -ed -Rg -bh -aa -aa -ab -ai -ai -aZ -gz -bg -hg -hD -dI -ij -ez -cu -iP -jj -dI -jH -ee -kf -ko -kB -fA -fX -ly -mf -mC -mf -nL -mf -oy -pe -ft -qf -qH -rp -sk -sU -tR -uJ -vw -wh -wh -xz -yj -og -zZ -Bk -BC -Da -DE -EA -Fo -Da -Da -ab -ab -ab -ab -WE -ab -ab -ab -ab -KE -Qx -Nl -Md -Nl -Nl -Yz -vt -vt -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aaa +aed +aRg +abh +aaa +aaa +aab +aai +aai +aaZ +agz +abg +ahg +ahD +adI +aij +aez +acu +aiP +ajj +adI +ajH +aee +akf +ako +akB +afA +afX +aly +amf +amC +amf +anL +amf +aoy +ape +aft +aqf +aqH +arp +ask +asU +atR +auJ +avw +awh +awh +axz +ayj +aog +azZ +aBk +aBC +aDa +aDE +aEA +aFo +aDa +aDa +aab +aab +aab +aab +aWE +aab +aab +aab +aab +aKE +aQx +aNl +aMd +aNl +aNl +aYz +avt +avt +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (42,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -ae -aJ -Rg -bh -aa -aa -ab -ai -ai -gn -gA -gN -hh -hE -hU -ez -ez -bC -dn -cL -dI -dJ -ef -eA -eT -kC -fB -fY -eT -jv -mD -nl -nM -oe -mh -pf -pG -qe -qI -rm -sl -sR -Np -uJ -vx -wh -wM -xA -yk -og -Aa -Bl -SI -Da -AY -EB -Fp -Gf -Da -ab -ab -ab -ab -ab -ab -ab -ab -ab -KE -Tt -Yh -KE -Nl -Wr -KE -vt -vt -vt -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aae +aaJ +aRg +abh +aaa +aaa +aab +aai +aai +agn +agA +agN +ahh +ahE +ahU +aez +aez +abC +adn +acL +adI +adJ +aef +aeA +aeT +akC +afB +afY +aeT +ajv +amD +anl +anM +aoe +amh +apf +apG +aqe +aqI +arm +asl +asR +aNp +auJ +avx +awh +awM +axA +ayk +aog +aAa +aBl +aSI +aDa +aAY +aEB +aFp +aGf +aDa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aKE +aTt +aYh +aKE +aNl +aWr +aKE +avt +avt +avt +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (43,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -ed -Rg -bh -aa -aa -aa -ai -ai -go -gB -gO -hi -hF -dI -bD -fl -cN -do -dI -dI -dK -iR -eB -eT -eT -fC -eT -eT -mh -mh -ep -mh -mh -ep -pg -pG -fH -qe -eO -fH -qe -qe -uJ -vy -wh -wh -xB -nZ -uO -Ab -Bm -Cd -Db -DG -EC -Fq -Gg -Da -ab -ab -ab -ab -ab -ab -ab -ab -ab -KE -Yp -KE -KE -MO -Nm -KE -vt -vt -vt -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aaa +aed +aRg +abh +aaa +aaa +aaa +aai +aai +ago +agB +agO +ahi +ahF +adI +abD +afl +acN +ado +adI +adI +adK +aiR +aeB +aeT +aeT +afC +aeT +aeT +amh +amh +aep +amh +amh +aep +apg +apG +afH +aqe +aeO +afH +aqe +aqe +auJ +avy +awh +awh +axB +anZ +auO +aAb +aBm +aCd +aDb +aDG +aEC +aFq +aGg +aDa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aKE +aYp +aKE +aKE +aMO +aNm +aKE +avt +avt +avt +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (44,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -Rg -aa -aa -aa -aa -ai -ai -gp -gC -gP -bZ -bv -dI -dU -ez -bE -RB -fn -dp -dL -eh -eC -eV -ip -fD -ga -lz -ej -fm -eE -lz -lz -Kr -ph -pI -aA -qJ -rr -sm -sV -tS -mI -vz -wh -Cu -xC -ym -zm -Ac -Bn -Ce -Dc -DH -EC -Fr -Gh -Da -ab -ab -ab -ab -ab -ab -ab -ab -ab -KE -Qf -Zx -Md -Zu -Tf -KE -ab -vt -vt -vt -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aaa +aaa +aRg +aaa +aaa +aaa +aaa +aai +aai +agp +agC +agP +abZ +abv +adI +adU +aez +abE +aRB +afn +adp +adL +aeh +aeC +aeV +aip +afD +aga +alz +aej +afm +aeE +alz +alz +aKr +aph +apI +aaA +aqJ +arr +asm +asV +atS +amI +avz +awh +aCu +axC +aym +azm +aAc +aBn +aCe +aDc +aDH +aEC +aFr +aGh +aDa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aKE +aQf +aZx +aMd +aZu +aTf +aKE +aab +avt +avt +avt +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (45,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -ae -ae -Rg -ae -ae -ae -ae -ai -ai -gq -gD -gQ -bl -hG -dI -il -bo -bF -cc -bq -dp -jI -bI -cR -ei -jK -QW -lb -lA -eo -jl -fF -nN -nN -fe -pi -fu -aG -lA -rs -lA -DO -pF -mJ -vA -wh -wh -xD -yn -uO -Ad -Bo -Cf -Db -DI -EC -Fq -Gi -Da -ab -ab -ab -ab -ab -ab -ab -ab -ab -KE -KE -KE -KE -MP -Qp -KE -ab -ab -vt -vt -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aae +aae +aRg +aae +aae +aae +aae +aai +aai +agq +agD +agQ +abl +ahG +adI +ail +abo +abF +acc +abq +adp +ajI +abI +acR +aei +ajK +aQW +alb +alA +aeo +ajl +afF +anN +anN +afe +api +afu +aaG +alA +ars +alA +aDO +apF +amJ +avA +awh +awh +axD +ayn +auO +aAd +aBo +aCf +aDb +aDI +aEC +aFq +aGi +aDa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aKE +aKE +aKE +aKE +aMP +aQp +aKE +aab +aab +avt +avt +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (46,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -Rg -aa -aa -aa -aa -ai -ai -gr -gE -gO -hi -bS -dI -dI -bq -bq -cd -dI -mv -dM -er -cP -cP -jL -eD -cP -lB -lB -lB -no -as -as -oz -oz -fv -oz -oz -oz -oz -pD -ql -uM -vB -wh -wM -xE -yk -og -Ae -Bo -Ca -xh -DJ -ED -Fs -Gj -Da -ab -ab -ab -ab -ab -ab -ab -ab -ab -KE -Hf -Mf -Md -MQ -KV -KE -ab -ab -vt -vt -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aaa +aaa +aRg +aaa +aaa +aaa +aaa +aai +aai +agr +agE +agO +ahi +abS +adI +adI +abq +abq +acd +adI +amv +adM +aer +acP +acP +ajL +aeD +acP +alB +alB +alB +ano +aas +aas +aoz +aoz +afv +aoz +aoz +aoz +aoz +apD +aql +auM +avB +awh +awM +axE +ayk +aog +aAe +aBo +aCa +axh +aDJ +aED +aFs +aGj +aDa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aKE +aHf +aMf +aMd +aMQ +aKV +aKE +aab +aab +avt +avt +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (47,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -ed -Rg -bh -aa -ab -ab -ai -ai -gs -gF -gP -hj -hI -hV -ah -ch -bH -ce -cQ -jw -cx -ek -cP -QV -kD -hH -cP -lC -lC -lC -lC -nO -nN -oz -pj -pJ -mg -qK -rt -oz -sY -tV -nm -vC -wh -wh -xF -yo -og -Af -Bp -zX -Df -Df -Df -Df -Df -Df -Df -Jr -Jr -Jr -Jr -Jr -Jr -Jr -Jr -KW -KW -KW -KW -MR -KW -KW -KW -KW -vt -vt -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aaa +aed +aRg +abh +aaa +aab +aab +aai +aai +ags +agF +agP +ahj +ahI +ahV +aah +ach +abH +ace +acQ +ajw +acx +aek +acP +aQV +akD +ahH +acP +alC +alC +alC +alC +anO +anN +aoz +apj +apJ +amg +aqK +art +aoz +asY +atV +anm +avC +awh +awh +axF +ayo +aog +aAf +aBp +azX +aDf +aDf +aDf +aDf +aDf +aDf +aDf +aJr +aJr +aJr +aJr +aJr +aJr +aJr +aJr +aKW +aKW +aKW +aKW +aMR +aKW +aKW +aKW +aKW +avt +avt +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (48,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -ae -aJ -Rg -bh -aa -ab -ab -ai -ai -gn -gA -gN -hk -hE -hW -al -ci -bI -cr -cR -jx -cR -mS -eD -kN -kE -wR -eD -lC -lC -lC -lC -nO -JM -oz -fo -pK -WY -qL -fL -fN -sZ -tW -uO -rM -wi -wN -xG -yp -og -Aa -Bq -Ch -Dg -DK -EE -Ft -Gk -Gk -Gk -Jr -Hp -Hh -HT -IB -Jn -Ka -Jr -KX -LC -Lr -MB -MS -No -Jm -Kj -KW -vt -vt -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aae +aaJ +aRg +abh +aaa +aab +aab +aai +aai +agn +agA +agN +ahk +ahE +ahW +aal +aci +abI +acr +acR +ajx +acR +amS +aeD +akN +akE +awR +aeD +alC +alC +alC +alC +anO +aJM +aoz +afo +apK +aWY +aqL +afL +afN +asZ +atW +auO +arM +awi +awN +axG +ayp +aog +aAa +aBq +aCh +aDg +aDK +aEE +aFt +aGk +aGk +aGk +aJr +aHp +aHh +aHT +aIB +aJn +aKa +aJr +aKX +aLC +aLr +aMB +aMS +aNo +aJm +aKj +aKW +avt +avt +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (49,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -ed -Rg -bh -aa -ab -ab -ai -ai -gt -gG -bi -ap -az -ai -bU -iz -iQ -cf -ct -ct -ct -ct -cU -eD -eD -eD -cU -lD -lD -mH -lD -lD -mH -oz -pk -pL -fI -qM -ru -oz -ta -pG -uP -uP -uP -uP -uP -uP -uP -Ag -Br -Ci -Dh -DL -Ba -Fu -Gk -Gk -Gk -Jr -GU -Hi -HU -IC -Jo -JV -Jr -KY -LD -Mh -MC -MT -Ld -Ld -Ld -TP -vt -vt -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aaa +aed +aRg +abh +aaa +aab +aab +aai +aai +agt +agG +abi +aap +aaz +aai +abU +aiz +aiQ +acf +act +act +act +act +acU +aeD +aeD +aeD +acU +alD +alD +amH +alD +alD +amH +aoz +apk +apL +afI +aqM +aru +aoz +ata +apG +auP +auP +auP +auP +auP +auP +auP +aAg +aBr +aCi +aDh +aDL +aBa +aFu +aGk +aGk +aGk +aJr +aGU +aHi +aHU +aIC +aJo +aJV +aJr +aKY +aLD +aMh +aMC +aMT +aLd +aLd +aLd +aTP +avt +avt +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (50,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -Rg -cv -cv -cv -cv -ai -ai -ai -ai -ai -ai -ai -ai -ai -NY -iR -cg -jk -jk -jk -jk -jk -jk -jk -jk -gb -cT -cT -jy -jk -jk -of -oA -oA -fw -oA -oA -oA -oA -pH -tT -uQ -vE -wj -wO -xH -yq -zn -Ae -Bo -Cj -xu -Fd -Fd -Fd -Fd -Fd -Fd -yJ -yJ -Hj -HV -ID -Jp -Fm -Jr -KZ -LE -Mi -Ld -MU -Ut -Ld -Ld -TP -vt -vt -vt -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aaa +aaa +aRg +acv +acv +acv +acv +aai +aai +aai +aai +aai +aai +aai +aai +aai +aNY +aiR +acg +ajk +ajk +ajk +ajk +ajk +ajk +ajk +ajk +agb +acT +acT +ajy +ajk +ajk +aof +aoA +aoA +afw +aoA +aoA +aoA +aoA +apH +atT +auQ +avE +awj +awO +axH +ayq +azn +aAe +aBo +aCj +axu +aFd +aFd +aFd +aFd +aFd +aFd +ayJ +ayJ +aHj +aHV +aID +aJp +aFm +aJr +aKZ +aLE +aMi +aLd +aMU +aUt +aLd +aLd +aTP +avt +avt +avt +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (51,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -ae -ae -Rg -cv -cv -cv -gd -gh -gf -gf -gH -gR -hl -aB -aP -hp -cj -iR -cg -cS -jk -jk -jk -jk -jk -jk -jk -jk -cV -cV -jk -jk -jk -lv -oB -lU -pM -qh -fK -rv -lw -qP -tX -uR -vF -wk -wP -xI -yr -zo -Ae -Bs -Ck -yl -Al -BE -BQ -Ef -EZ -FH -FZ -yJ -Hk -HV -IE -Jq -Kd -Jr -La -LF -Mj -VA -MV -ME -QE -Ld -TP -vt -vt -vt -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aae +aae +aRg +acv +acv +acv +agd +agh +agf +agf +agH +agR +ahl +aaB +aaP +ahp +acj +aiR +acg +acS +ajk +ajk +ajk +ajk +ajk +ajk +ajk +ajk +acV +acV +ajk +ajk +ajk +alv +aoB +alU +apM +aqh +afK +arv +alw +aqP +atX +auR +avF +awk +awP +axI +ayr +azo +aAe +aBs +aCk +ayl +aAl +aBE +aBQ +aEf +aEZ +aFH +aFZ +ayJ +aHk +aHV +aIE +aJq +aKd +aJr +aLa +aLF +aMj +aVA +aMV +aME +aQE +aLd +aTP +avt +avt +avt +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (52,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -Rg -cv -cv -cv -ge -gf -gk -gu -gk -gR -hm -aC -aQ -hp -br -bK -cf -cT -jy -jk -jk -jk -jk -jk -jk -jk -jk -jk -jk -jk -jk -lv -oC -SG -Rs -qi -qN -rw -lw -pg -tY -uS -vG -wl -wQ -Vn -ys -zp -Ae -Bo -Ck -yI -Am -ER -Dn -Eg -Fa -FG -HW -GV -Jt -HV -IF -LT -Ke -Lp -Ld -Ld -Mk -VA -MW -MF -QE -NH -TP -vt -vt -vt -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aaa +aaa +aRg +acv +acv +acv +age +agf +agk +agu +agk +agR +ahm +aaC +aaQ +ahp +abr +abK +acf +acT +ajy +ajk +ajk +ajk +ajk +ajk +ajk +ajk +ajk +ajk +ajk +ajk +ajk +alv +aoC +aSG +aRs +aqi +aqN +arw +alw +apg +atY +auS +avG +awl +awQ +aVn +ays +azp +aAe +aBo +aCk +ayI +aAm +aER +aDn +aEg +aFa +aFG +aHW +aGV +aJt +aHV +aIF +aLT +aKe +aLp +aLd +aLd +aMk +aVA +aMW +aMF +aQE +aNH +aTP +avt +avt +avt +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (53,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -Rg -cv -cv -cv -gf -gf -gf -gv -gf -gR -hn -aC -aR -bf -bs -iR -cf -cT -jy -jk -jk -jk -jk -jk -jk -jk -jk -jk -jk -jk -Ql -of -oD -pn -DP -nu -qN -rx -lw -td -pG -mH -uP -wm -sW -xJ -uP -uP -Ah -Bt -Cc -yI -BF -Vm -Do -Eh -Fb -FI -Gl -GW -Hl -HX -IG -Kh -Kf -KF -Lc -Ld -Ml -Ld -MG -Th -Ld -Ld -TP -vt -vt -vt -vt -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aaa +aaa +aRg +acv +acv +acv +agf +agf +agf +agv +agf +agR +ahn +aaC +aaR +abf +abs +aiR +acf +acT +ajy +ajk +ajk +ajk +ajk +ajk +ajk +ajk +ajk +ajk +ajk +ajk +aQl +aof +aoD +apn +aDP +anu +aqN +arx +alw +atd +apG +amH +auP +awm +asW +axJ +auP +auP +aAh +aBt +aCc +ayI +aBF +aVm +aDo +aEh +aFb +aFI +aGl +aGW +aHl +aHX +aIG +aKh +aKf +aKF +aLc +aLd +aMl +aLd +aMG +aTh +aLd +aLd +aTP +avt +avt +avt +avt +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (54,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -ae -ae -Rg -cv -cv -cv -ge -gf -gk -ba -gI -gS -au -aD -bG -ca -iA -bM -cg -cV -jk -jk -jk -jk -jk -jk -jk -jk -cS -cS -jk -jk -jk -lw -oE -po -pO -qj -qO -pO -sn -tf -tW -uT -vH -wn -Rf -wn -yt -zq -Ae -Bs -Ck -yI -Am -ER -FG -Ei -FG -FJ -Gm -yJ -Hm -Kh -IH -Js -Kg -Lp -Ld -Ld -Mm -MH -MH -MH -Nz -Ux -TP -vt -vt -vt -vt -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aae +aae +aRg +acv +acv +acv +age +agf +agk +aba +agI +agS +aau +aaD +abG +aca +aiA +abM +acg +acV +ajk +ajk +ajk +ajk +ajk +ajk +ajk +ajk +acS +acS +ajk +ajk +ajk +alw +aoE +apo +apO +aqj +aqO +apO +asn +atf +atW +auT +avH +awn +aRf +awn +ayt +azq +aAe +aBs +aCk +ayI +aAm +aER +aFG +aEi +aFG +aFJ +aGm +ayJ +aHm +aKh +aIH +aJs +aKg +aLp +aLd +aLd +aMm +aMH +aMH +aMH +aNz +aUx +aTP +avt +avt +avt +avt +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (55,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -Rg -cv -cv -cv -gf -gf -gf -gw -gf -gR -ho -hJ -aS -bf -iB -bN -cg -jk -jk -jk -jk -jk -jk -jk -jk -gb -cT -cT -jy -jk -jk -lw -oF -pp -pP -qi -mz -ry -lw -tZ -ua -uU -vI -wo -wT -xK -yu -zq -fT -kn -Qj -yJ -Az -BG -Dp -Ei -Fc -BG -Gn -yJ -Hn -HY -II -Ju -Ki -KG -GN -Ld -Mn -MI -MY -Nq -NA -OP -KW -vt -vt -vt -vt -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aaa +aaa +aRg +acv +acv +acv +agf +agf +agf +agw +agf +agR +aho +ahJ +aaS +abf +aiB +abN +acg +ajk +ajk +ajk +ajk +ajk +ajk +ajk +ajk +agb +acT +acT +ajy +ajk +ajk +alw +aoF +app +apP +aqi +amz +ary +alw +atZ +aua +auU +avI +awo +awT +axK +ayu +azq +afT +akn +aQj +ayJ +aAz +aBG +aDp +aEi +aFc +aBG +aGn +ayJ +aHn +aHY +aII +aJu +aKi +aKG +aGN +aLd +aMn +aMI +aMY +aNq +aNA +aOP +aKW +avt +avt +avt +avt +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (56,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -Rg -cv -cv -cv -ge -gi -gk -gf -gk -gR -bb -aE -dQ -bf -ci -bO -cf -cW -cW -cf -cW -cW -cf -ct -ct -cf -lD -lD -mH -lD -lD -of -lw -lw -lw -qk -lw -lw -oA -pE -qR -uV -vJ -wp -wU -xL -yv -zq -xM -kw -pN -yl -yJ -BJ -BJ -Ej -LB -BJ -yJ -yJ -Ho -Lp -IJ -Lp -Lp -Jr -Lg -Lg -Mo -Lg -Lg -KW -KW -KW -KW -NW -NW -NW -NW -NW -NW -NW -NW -NW -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aaa +aaa +aRg +acv +acv +acv +age +agi +agk +agf +agk +agR +abb +aaE +adQ +abf +aci +abO +acf +acW +acW +acf +acW +acW +acf +act +act +acf +alD +alD +amH +alD +alD +aof +alw +alw +alw +aqk +alw +alw +aoA +apE +aqR +auV +avJ +awp +awU +axL +ayv +azq +axM +akw +apN +ayl +ayJ +aBJ +aBJ +aEj +aLB +aBJ +ayJ +ayJ +aHo +aLp +aIJ +aLp +aLp +aJr +aLg +aLg +aMo +aLg +aLg +aKW +aKW +aKW +aKW +aNW +aNW +aNW +aNW +aNW +aNW +aNW +aNW +aNW +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (57,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -ae -ae -Rg -cv -cv -cv -cv -cv -cv -cv -cv -cv -cv -cv -cv -cv -iC -bP -lc -cM -cX -ik -cM -cM -kq -cM -cM -UC -lE -lE -jz -mi -nP -oi -lE -lE -pQ -np -nA -lE -aK -th -uc -aM -vK -wp -wn -xL -yw -fR -hZ -mX -pS -Dl -AA -FK -Dq -Ek -Fe -FK -Go -Iy -HK -HZ -IK -Jv -Gc -KH -Li -LG -Mp -Le -MZ -Iy -ab -ab -ab -NW -Oj -Oy -Ny -NW -Oj -Oy -Ny -NW -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aae +aae +aRg +acv +acv +acv +acv +acv +acv +acv +acv +acv +acv +acv +acv +acv +aiC +abP +alc +acM +acX +aik +acM +acM +akq +acM +acM +aUC +alE +alE +ajz +ami +anP +aoi +alE +alE +apQ +anp +anA +alE +aaK +ath +auc +aaM +avK +awp +awn +axL +ayw +afR +ahZ +amX +apS +aDl +aAA +aFK +aDq +aEk +aFe +aFK +aGo +aIy +aHK +aHZ +aIK +aJv +aGc +aKH +aLi +aLG +aMp +aLe +aMZ +aIy +aab +aab +aab +aNW +aOj +aOy +aNy +aNW +aOj +aOy +aNy +aNW +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (58,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -Rg -Rg -Rg -Rg -gg -ab -ab -ab -aU -aj -bn -hK -hY -in -iD -bQ -co -kr -jA -im -jU -cY -kr -kr -hR -ld -lF -mk -oG -nq -nQ -oj -oG -pq -pR -qm -oY -rz -aL -ti -ud -aN -vL -wq -wV -vD -yx -yL -jf -nc -qQ -yK -AB -Cl -Cl -El -Cl -Cl -DF -Iy -Hq -Lh -IL -Lh -Lh -Lh -Lh -Lh -Mq -Lh -Na -Iy -ab -ab -ab -NW -Ok -OA -Lf -NW -Ok -OA -Lf -NW -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aaa +aaa +aRg +aRg +aRg +aRg +agg +aab +aab +aab +aaU +aaj +abn +ahK +ahY +ain +aiD +abQ +aco +akr +ajA +aim +ajU +acY +akr +akr +ahR +ald +alF +amk +aoG +anq +anQ +aoj +aoG +apq +apR +aqm +aoY +arz +aaL +ati +aud +aaN +avL +awq +awV +avD +ayx +ayL +ajf +anc +aqQ +ayK +aAB +aCl +aCl +aEl +aCl +aCl +aDF +aIy +aHq +aLh +aIL +aLh +aLh +aLh +aLh +aLh +aMq +aLh +aNa +aIy +aab +aab +aab +aNW +aOk +aOA +aLf +aNW +aOk +aOA +aLf +aNW +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (59,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -Rh -Ri -Rj -gg -ab -ab -ab -aU -gT -hq -hL -aT -in -bt -iR -YT -cw -cw -cw -de -cw -cw -cw -dR -le -eX -aq -eX -eX -eX -at -eX -pr -lC -Pq -mH -rB -mH -tj -NE -mH -uP -uP -uP -uP -uP -zt -yA -nf -Ch -yM -AC -Cl -Cl -Em -Cl -Cl -Gq -GX -Hr -Lh -IM -Jw -Kk -KI -Kk -LH -Mr -Lh -Nb -Nr -Nr -Nr -Nr -NW -Ol -OB -Ol -NW -Ol -Pn -Ol -NW -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aaa +aaa +aaa +aRh +aRi +aRj +agg +aab +aab +aab +aaU +agT +ahq +ahL +aaT +ain +abt +aiR +aYT +acw +acw +acw +ade +acw +acw +acw +adR +ale +aeX +aaq +aeX +aeX +aeX +aat +aeX +apr +alC +aPq +amH +arB +amH +atj +aNE +amH +auP +auP +auP +auP +auP +azt +ayA +anf +aCh +ayM +aAC +aCl +aCl +aEm +aCl +aCl +aGq +aGX +aHr +aLh +aIM +aJw +aKk +aKI +aKk +aLH +aMr +aLh +aNb +aNr +aNr +aNr +aNr +aNW +aOl +aOB +aOl +aNW +aOl +aPn +aOl +aNW +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (60,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -ed -gg -ab -ab -ab -aU -gU -hr -hM -hr -io -iE -iR -YT -ne -eJ -eJ -el -kh -kh -OQ -YT -dO -lG -ml -mM -nr -nR -ok -oH -eX -lC -lC -mH -RP -mH -mH -mH -mH -vM -wr -wW -xN -yy -yz -jr -ng -rq -zr -AD -Cm -Cm -En -Cm -FL -Gr -GY -Hs -Ia -CV -Jx -Kl -KJ -Lj -LI -Ms -MJ -Nc -Nr -NB -JZ -NN -Nr -Om -OC -OR -Qo -Pf -OC -KA -NW -PB -PM -PM -PB -PB -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aaa +aed +agg +aab +aab +aab +aaU +agU +ahr +ahM +ahr +aio +aiE +aiR +aYT +ane +aeJ +aeJ +ael +akh +akh +aOQ +aYT +adO +alG +aml +amM +anr +anR +aok +aoH +aeX +alC +alC +amH +aRP +amH +amH +amH +amH +avM +awr +awW +axN +ayy +ayz +ajr +ang +arq +azr +aAD +aCm +aCm +aEn +aCm +aFL +aGr +aGY +aHs +aIa +aCV +aJx +aKl +aKJ +aLj +aLI +aMs +aMJ +aNc +aNr +aNB +aJZ +aNN +aNr +aOm +aOC +aOR +aQo +aPf +aOC +aKA +aNW +aPB +aPM +aPM +aPB +aPB +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (61,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aO -aa -ed -gg -ab -ab -ab -aU -bj -XG -hN -aV -cb -iF -iR -YT -jn -jB -jW -nK -ey -eJ -kF -YT -lf -lH -mm -mm -ns -mO -ol -oI -eX -lC -lC -mH -St -SN -tk -uf -uW -vN -ws -uW -xO -uW -zu -Ao -By -rC -yK -AE -Cn -Dr -Eo -Cn -FM -Gs -Iy -Ht -Ib -IQ -Jy -Km -KK -LN -Jy -Mt -Lh -Nd -Ns -NC -Kb -NP -NX -On -OD -OS -Pa -Pg -Po -Pu -NW -PI -PN -PS -PW -PB -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaO +aaa +aed +agg +aab +aab +aab +aaU +abj +aXG +ahN +aaV +acb +aiF +aiR +aYT +ajn +ajB +ajW +anK +aey +aeJ +akF +aYT +alf +alH +amm +amm +ans +amO +aol +aoI +aeX +alC +alC +amH +aSt +aSN +atk +auf +auW +avN +aws +auW +axO +auW +azu +aAo +aBy +arC +ayK +aAE +aCn +aDr +aEo +aCn +aFM +aGs +aIy +aHt +aIb +aIQ +aJy +aKm +aKK +aLN +aJy +aMt +aLh +aNd +aNs +aNC +aKb +aNP +aNX +aOn +aOD +aOS +aPa +aPg +aPo +aPu +aNW +aPI +aPN +aPS +aPW +aPB +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (62,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -gg -ab -ab -ab -aU -gV -hr -hM -aW -aU -iG -NI -YT -jo -ds -jN -jX -SC -eJ -kG -YT -lg -lH -mn -mN -nt -nS -om -oJ -pr -lC -lC -mH -Su -tl -tl -ug -tl -tl -wt -tl -tl -yz -yz -Ap -Bz -pN -Dj -AF -Co -Ds -EH -Ff -FN -Gt -Iy -Ji -Ic -IZ -Jz -Km -KL -LN -Jz -Mt -Lh -IU -Nt -Kc -NK -Or -Nr -Oo -OE -OE -Pb -Pi -Pp -Pv -Qs -PE -PO -PT -PX -Qa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agg +aab +aab +aab +aaU +agV +ahr +ahM +aaW +aaU +aiG +aNI +aYT +ajo +ads +ajN +ajX +aSC +aeJ +akG +aYT +alg +alH +amn +amN +ant +anS +aom +aoJ +apr +alC +alC +amH +aSu +atl +atl +aug +atl +atl +awt +atl +atl +ayz +ayz +aAp +aBz +apN +aDj +aAF +aCo +aDs +aEH +aFf +aFN +aGt +aIy +aJi +aIc +aIZ +aJz +aKm +aKL +aLN +aJz +aMt +aLh +aIU +aNt +aKc +aNK +aOr +aNr +aOo +aOE +aOE +aPb +aPi +aPp +aPv +aQs +aPE +aPO +aPT +aPX +aQa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (63,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -gg -ab -ab -ab -aU -gW -ZO -Sa -aX -in -bu -iR -YT -jp -jC -nY -cO -da -eJ -kH -YT -lh -lH -lH -lH -jh -lH -ok -kP -le -mH -mH -mH -Su -tl -tm -uh -uX -vO -wu -wX -sp -jm -zv -Aq -Aw -Ck -Dk -AZ -Cp -Dt -Cp -Fg -FO -Gu -Iy -Ji -Id -Lh -JA -Kn -KM -LO -JA -Mu -Lh -Pt -Nr -Nr -Nr -Nr -Nr -Op -OE -OT -OE -Pj -NJ -OE -Ol -PG -PQ -PU -PQ -Qa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agg +aab +aab +aab +aaU +agW +aZO +aSa +aaX +ain +abu +aiR +aYT +ajp +ajC +anY +acO +ada +aeJ +akH +aYT +alh +alH +alH +alH +ajh +alH +aok +akP +ale +amH +amH +amH +aSu +atl +atm +auh +auX +avO +awu +awX +asp +ajm +azv +aAq +aAw +aCk +aDk +aAZ +aCp +aDt +aCp +aFg +aFO +aGu +aIy +aJi +aId +aLh +aJA +aKn +aKM +aLO +aJA +aMu +aLh +aPt +aNr +aNr +aNr +aNr +aNr +aOp +aOE +aOT +aOE +aPj +aNJ +aOE +aOl +aPG +aPQ +aPU +aPQ +aQa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (64,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -gg -ab -ab -ab -aU -aw -hr -hM -aY -in -bu -iR -YT -Uq -dt -mU -pm -Td -eY -TQ -YT -li -lH -mm -mO -ns -mm -SF -oL -le -qT -tl -te -SL -tl -tn -tn -tn -tn -tn -tn -sp -wF -zw -Ar -Ax -Ck -Dk -DN -Cl -Cl -Cl -Cl -Cl -Gv -Iy -Hu -Ie -Ja -JB -Ko -KN -KN -LJ -MX -Lh -Ng -Iy -ab -ab -ab -NW -Oq -OF -OU -OE -Pl -NR -Ne -NW -PH -PQ -PQ -PY -Qa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agg +aab +aab +aab +aaU +aaw +ahr +ahM +aaY +ain +abu +aiR +aYT +aUq +adt +amU +apm +aTd +aeY +aTQ +aYT +ali +alH +amm +amO +ans +amm +aSF +aoL +ale +aqT +atl +ate +aSL +atl +atn +atn +atn +atn +atn +atn +asp +awF +azw +aAr +aAx +aCk +aDk +aDN +aCl +aCl +aCl +aCl +aCl +aGv +aIy +aHu +aIe +aJa +aJB +aKo +aKN +aKN +aLJ +aMX +aLh +aNg +aIy +aab +aab +aab +aNW +aOq +aOF +aOU +aOE +aPl +aNR +aNe +aNW +aPH +aPQ +aPQ +aPY +aQa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (65,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -gg -ab -ab -ab -aU -bk -hr -hP -hQ -aU -iH -iT -YT -ni -dg -tP -eJ -eF -Xe -YH -YT -eZ -lI -mn -mN -nt -nS -om -OW -le -tl -tl -ue -Rk -tl -tn -ui -ui -ui -ui -tn -sp -yC -zw -xb -Bz -Ck -Dk -Bf -Cq -EN -EN -EN -EN -Gw -GZ -Hv -If -Lh -JC -Kp -Lh -Kp -LK -MX -Lh -Nf -Iy -ab -ab -ab -NW -Pw -OG -OV -Pd -Pm -Ps -PD -NW -PJ -PR -PV -KB -PB -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agg +aab +aab +aab +aaU +abk +ahr +ahP +ahQ +aaU +aiH +aiT +aYT +ani +adg +atP +aeJ +aeF +aXe +aYH +aYT +aeZ +alI +amn +amN +ant +anS +aom +aOW +ale +atl +atl +aue +aRk +atl +atn +aui +aui +aui +aui +atn +asp +ayC +azw +axb +aBz +aCk +aDk +aBf +aCq +aEN +aEN +aEN +aEN +aGw +aGZ +aHv +aIf +aLh +aJC +aKp +aLh +aKp +aLK +aMX +aLh +aNf +aIy +aab +aab +aab +aNW +aPw +aOG +aOV +aPd +aPm +aPs +aPD +aNW +aPJ +aPR +aPV +aKB +aPB +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (66,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ed -gg -gg -aU -aU -aU -aU -hu -Up -aU -aU -iI -iU -dS -dP -dP -dP -dP -dq -dP -dP -dP -le -lJ -mo -mP -nv -nT -on -oM -le -qV -rE -Re -Rk -tl -tn -ui -ui -ui -ui -tn -sp -yD -zx -As -Bz -FT -Dl -Bh -Cr -Du -EJ -Fh -FP -Gp -Iy -HI -Ig -ND -ND -ND -ND -Lk -LL -Mv -Lh -Nh -Iy -ab -ab -ab -NW -NW -NW -NW -NW -NW -NW -Py -NW -PK -PB -PB -PB -PB -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aed +agg +agg +aaU +aaU +aaU +aaU +ahu +aUp +aaU +aaU +aiI +aiU +adS +adP +adP +adP +adP +adq +adP +adP +adP +ale +alJ +amo +amP +anv +anT +aon +aoM +ale +aqV +arE +aRe +aRk +atl +atn +aui +aui +aui +aui +atn +asp +ayD +azx +aAs +aBz +aFT +aDl +aBh +aCr +aDu +aEJ +aFh +aFP +aGp +aIy +aHI +aIg +aND +aND +aND +aND +aLk +aLL +aMv +aLh +aNh +aIy +aab +aab +aab +aNW +aNW +aNW +aNW +aNW +aNW +aNW +aPy +aNW +aPK +aPB +aPB +aPB +aPB +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (67,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ed -gg -gj -gl -gx -ar -am -bJ -gY -bm -bz -bw -cl -dS -dd -SX -ST -ew -UT -fb -UV -fG -le -lK -mp -mQ -nw -nU -oo -oN -le -rD -so -Rk -SM -tl -tn -ui -ui -ui -ui -tn -sp -yE -zy -XT -Rn -Ck -yN -yT -yT -yT -EK -yT -yT -yT -yT -HJ -Ih -Jb -JD -Gx -KO -Ll -LM -Mw -Lh -Ni -Iy -vs -vs -vs -vs -vs -vs -vs -vs -vs -Yk -Pz -aa -PL -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aed +agg +agj +agl +agx +aar +aam +abJ +agY +abm +abz +abw +acl +adS +add +aSX +aST +aew +aUT +afb +aUV +afG +ale +alK +amp +amQ +anw +anU +aoo +aoN +ale +arD +aso +aRk +aSM +atl +atn +aui +aui +aui +aui +atn +asp +ayE +azy +aXT +aRn +aCk +ayN +ayT +ayT +ayT +aEK +ayT +ayT +ayT +ayT +aHJ +aIh +aJb +aJD +aGx +aKO +aLl +aLM +aMw +aLh +aNi +aIy +avs +avs +avs +avs +avs +avs +avs +avs +avs +aYk +aPz +aaa +aPL +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (68,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ed -gg -gg -ac -ag -ak -ax -cp -hv -bm -bA -bW -bT -dS -dP -dP -hx -kW -US -Ub -UV -fG -af -af -af -af -af -af -af -af -af -aI -qn -aI -yz -tl -tn -ui -ui -ui -ui -tn -sp -yF -zz -At -Bz -tc -yT -Bu -Cs -DM -EL -Dm -FQ -FQ -yT -HO -Ii -Jc -Jc -Jc -Jc -Lm -LP -Iy -MK -MK -Iy -vs -NL -NL -NL -VP -VP -NL -NL -NL -Yk -vs -vs -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aed +agg +agg +aac +aag +aak +aax +acp +ahv +abm +abA +abW +abT +adS +adP +adP +ahx +akW +aUS +aUb +aUV +afG +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaI +aqn +aaI +ayz +atl +atn +aui +aui +aui +aui +atn +asp +ayF +azz +aAt +aBz +atc +ayT +aBu +aCs +aDM +aEL +aDm +aFQ +aFQ +ayT +aHO +aIi +aJc +aJc +aJc +aJc +aLm +aLP +aIy +aMK +aMK +aIy +avs +aNL +aNL +aNL +aVP +aVP +aNL +aNL +aNL +aYk +avs +avs +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (69,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ed -gg -gg -aU -aU -aU -aU -dX -hw -bm -bB -by -cz -dS -mW -SX -TX -WB -uL -Uw -UV -fG -af -fc -fc -fc -fc -dw -dw -dr -mR -fc -dw -aI -ab -sp -tn -tn -ui -ui -wv -tn -sp -sq -sq -Au -BA -tt -yT -Bv -Ct -Ct -Ct -Ct -Ct -Gy -yT -EG -Ij -Jd -JE -Ks -KP -Ln -LQ -Iy -MK -MK -Iy -vs -NL -NS -NL -NZ -XX -NL -YX -NL -Yk -vs -vs -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aed +agg +agg +aaU +aaU +aaU +aaU +adX +ahw +abm +abB +aby +acz +adS +amW +aSX +aTX +aWB +auL +aUw +aUV +afG +aaf +afc +afc +afc +afc +adw +adw +adr +amR +afc +adw +aaI +aab +asp +atn +atn +aui +aui +awv +atn +asp +asq +asq +aAu +aBA +att +ayT +aBv +aCt +aCt +aCt +aCt +aCt +aGy +ayT +aEG +aIj +aJd +aJE +aKs +aKP +aLn +aLQ +aIy +aMK +aMK +aIy +avs +aNL +aNS +aNL +aNZ +aXX +aNL +aYX +aNL +aYk +avs +avs +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (70,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -bc -ay -gX -kp -bm -bm -bm -cn -af -af -af -af -af -af -af -af -af -af -lL -aI -aI -QY -Ra -fc -Rb -fc -Rc -Rd -aI -ab -sq -to -uj -uY -uY -ww -wY -vY -yG -zA -Av -hX -tC -zs -Bw -Bw -DQ -EM -Fv -FR -Gz -Ha -Hv -Ik -Lh -Lh -Lh -Lh -Lo -LR -Iy -MK -MK -Iy -vs -Yc -YN -Oa -Os -OH -Yv -Ye -Yc -Yk -vs -vs -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abc +aay +agX +akp +abm +abm +abm +acn +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +alL +aaI +aaI +aQY +aRa +afc +aRb +afc +aRc +aRd +aaI +aab +asq +ato +auj +auY +auY +aww +awY +avY +ayG +azA +aAv +ahX +atC +azs +aBw +aBw +aDQ +aEM +aFv +aFR +aGz +aHa +aHv +aIk +aLh +aLh +aLh +aLh +aLo +aLR +aIy +aMK +aMK +aIy +avs +aYc +aYN +aOa +aOs +aOH +aYv +aYe +aYc +aYk +avs +avs +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (71,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -bc -gZ -ha -BK -an -dw -fc -dA -kM -jq -jq -qU -qU -aI -kt -ku -kJ -aI -mR -fq -aI -aI -aI -aI -aI -aI -aI -aI -aI -ab -sq -tp -uk -uk -uk -uk -wZ -xQ -yH -zB -Ay -xX -uK -yT -Bx -Cv -DR -Cv -Fw -Cv -GA -yT -HM -Il -Je -JF -Kt -KQ -Lq -HL -Iy -MK -MK -Iy -vs -NL -XF -Ob -Ot -OI -YS -Xf -NL -Yk -vs -vs -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abc +agZ +aha +aBK +aan +adw +afc +adA +akM +ajq +ajq +aqU +aqU +aaI +akt +aku +akJ +aaI +amR +afq +aaI +aaI +aaI +aaI +aaI +aaI +aaI +aaI +aaI +aab +asq +atp +auk +auk +auk +auk +awZ +axQ +ayH +azB +aAy +axX +auK +ayT +aBx +aCv +aDR +aCv +aFw +aCv +aGA +ayT +aHM +aIl +aJe +aJF +aKt +aKQ +aLq +aHL +aIy +aMK +aMK +aIy +avs +aNL +aXF +aOb +aOt +aOI +aYS +aXf +aNL +aYk +avs +avs +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (72,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -bc -bc -hb -hb -bc -cq -eW -kg -ks -Tp -Rz -Rz -Rz -RE -RH -RH -RH -eU -RH -iq -RO -aI -ab -ab -ab -ab -ab -ab -ab -ab -sq -tq -ul -ul -ul -ul -xa -xR -eN -fS -jJ -oh -uN -yT -BB -Cw -DS -EO -Fy -FS -GB -Ww -HN -HN -HN -JG -HN -Fz -KD -LU -Lu -Lu -Lu -Lu -Lu -NL -NL -NL -YY -OJ -NL -NL -NL -Yk -vs -vs -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abc +abc +ahb +ahb +abc +acq +aeW +akg +aks +aTp +aRz +aRz +aRz +aRE +aRH +aRH +aRH +aeU +aRH +aiq +aRO +aaI +aab +aab +aab +aab +aab +aab +aab +aab +asq +atq +aul +aul +aul +aul +axa +axR +aeN +afS +ajJ +aoh +auN +ayT +aBB +aCw +aDS +aEO +aFy +aFS +aGB +aWw +aHN +aHN +aHN +aJG +aHN +aFz +aKD +aLU +aLu +aLu +aLu +aLu +aLu +aNL +aNL +aNL +aYY +aOJ +aNL +aNL +aNL +aYk +avs +avs +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (73,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -be -be -be -be -be -be -be -be -be -be -be -be -be -be -be -be -be -be -be -be -be -be -be -aI -pT -aI -ab -ab -ab -ab -ab -ab -ab -ab -sq -tr -um -uZ -xg -wx -xb -xR -eP -AH -AH -oq -AH -yT -yT -yT -yT -yT -Fz -Fz -Fz -Fz -KC -Iw -Jf -JJ -Ku -HN -Ls -LV -Mx -ML -Nj -Nu -NF -NM -NT -Od -Xv -OK -Zz -WW -Ya -Yk -vs -vs -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abe +abe +abe +abe +abe +abe +abe +abe +abe +abe +abe +abe +abe +abe +abe +abe +abe +abe +abe +abe +abe +abe +abe +aaI +apT +aaI +aab +aab +aab +aab +aab +aab +aab +aab +asq +atr +aum +auZ +axg +awx +axb +axR +aeP +aAH +aAH +aoq +aAH +ayT +ayT +ayT +ayT +ayT +aFz +aFz +aFz +aFz +aKC +aIw +aJf +aJJ +aKu +aHN +aLs +aLV +aMx +aML +aNj +aNu +aNF +aNM +aNT +aOd +aXv +aOK +aZz +aWW +aYa +aYk +avs +avs +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (74,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -be -bp -cC -cI -df -dm -cC -cC -cC -cC -mu -dm -cI -cC -cC -cC -cC -dm -lQ -lV -Px -mq -be -es -RS -iV -ab -ab -ab -ab -ab -ab -ab -ab -sq -fZ -um -um -um -um -xb -xR -eP -AH -jO -ou -wf -zC -AH -Cx -DT -EP -Fz -GT -GD -Uj -HP -Ix -Jg -JP -Kv -HN -Lt -LW -My -MM -Jk -Nv -NG -Wu -Wa -Oe -Yr -OK -WM -Ys -Ya -Yk -vs -vs -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abe +abp +acC +acI +adf +adm +acC +acC +acC +acC +amu +adm +acI +acC +acC +acC +acC +adm +alQ +alV +aPx +amq +abe +aes +aRS +aiV +aab +aab +aab +aab +aab +aab +aab +aab +asq +afZ +aum +aum +aum +aum +axb +axR +aeP +aAH +ajO +aou +awf +azC +aAH +aCx +aDT +aEP +aFz +aGT +aGD +aUj +aHP +aIx +aJg +aJP +aKv +aHN +aLt +aLW +aMy +aMM +aJk +aNv +aNG +aWu +aWa +aOe +aYr +aOK +aWM +aYs +aYa +aYk +avs +avs +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (75,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -be -bX -cD -cJ -dh -dv -dv -dv -dv -dv -dh -dv -cJ -dv -dv -dv -dv -dv -dh -cJ -mr -nz -be -Sr -RS -iV -ab -ab -ab -ab -ab -ab -ab -ab -sq -ts -um -va -vP -wy -xb -xR -eQ -AH -AH -AH -AH -zD -oq -zD -ou -EQ -Fz -FU -Yb -Yb -Yb -Yb -Yb -JQ -Zs -Fz -Lu -LX -Lu -Lu -Lu -Lu -Lu -Ya -Ya -Ya -WA -OM -XL -Ya -Ya -Yk -vs -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abe +abX +acD +acJ +adh +adv +adv +adv +adv +adv +adh +adv +acJ +adv +adv +adv +adv +adv +adh +acJ +amr +anz +abe +aSr +aRS +aiV +aab +aab +aab +aab +aab +aab +aab +aab +asq +ats +aum +ava +avP +awy +axb +axR +aeQ +aAH +aAH +aAH +aAH +azD +aoq +azD +aou +aEQ +aFz +aFU +aYb +aYb +aYb +aYb +aYb +aJQ +aZs +aFz +aLu +aLX +aLu +aLu +aLu +aLu +aLu +aYa +aYa +aYa +aWA +aOM +aXL +aYa +aYa +aYk +avs +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (76,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -be -bY -cE -cK -cK -cK -cK -cK -cK -cK -cK -cK -cK -cK -cK -XE -Zd -Wp -Wp -cK -ms -Oz -be -mV -RS -iV -iV -iV -iV -iV -iV -iV -iV -iV -iV -sq -wL -va -vQ -wy -xb -xR -eR -AH -tU -xV -AH -wf -BD -BD -BD -BD -Fz -FV -XM -Hb -Yb -Yb -Jh -JQ -Kw -Fz -Lv -LY -AH -ab -ab -ab -vs -Ya -YA -Og -Xw -ON -lY -Zt -Ya -Yk -vs -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abe +abY +acE +acK +acK +acK +acK +acK +acK +acK +acK +acK +acK +acK +acK +aXE +aZd +aWp +aWp +acK +ams +aOz +abe +amV +aRS +aiV +aiV +aiV +aiV +aiV +aiV +aiV +aiV +aiV +aiV +asq +awL +ava +avQ +awy +axb +axR +aeR +aAH +atU +axV +aAH +awf +aBD +aBD +aBD +aBD +aFz +aFV +aXM +aHb +aYb +aYb +aJh +aJQ +aKw +aFz +aLv +aLY +aAH +aab +aab +aab +avs +aYa +aYA +aOg +aXw +aON +alY +aZt +aYa +aYk +avs +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (77,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -be -kS -cE -cK -cK -dj -dj -Wx -dj -Wx -dj -Wx -Wp -Wp -Wp -Zy -WG -Wp -Wp -cK -ms -Oz -be -ZP -RT -dT -Se -op -dT -dT -pU -qo -qW -rF -sr -sq -sq -sq -sq -sq -he -xS -un -AH -Qg -yP -AH -Ai -BD -Cy -DU -ES -Fz -FW -GE -Hc -HQ -Iz -Jj -JR -Kx -Fz -Lw -LY -AH -ab -ab -ab -vs -ZR -YO -Oh -Ze -XB -Oh -Wj -Xg -Yk -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abe +akS +acE +acK +acK +adj +adj +aWx +adj +aWx +adj +aWx +aWp +aWp +aWp +aZy +aWG +aWp +aWp +acK +ams +aOz +abe +aZP +aRT +adT +aSe +aop +adT +adT +apU +aqo +aqW +arF +asr +asq +asq +asq +asq +asq +ahe +axS +aun +aAH +aQg +ayP +aAH +aAi +aBD +aCy +aDU +aES +aFz +aFW +aGE +aHc +aHQ +aIz +aJj +aJR +aKx +aFz +aLw +aLY +aAH +aab +aab +aab +avs +aZR +aYO +aOh +aZe +aXB +aOh +aWj +aXg +aYk +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (78,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -be -bX -cE -cK -WL -dj -Tl -ZU -dj -Vf -VE -Vw -Wp -it -Wn -UJ -Xb -Wp -WV -hc -ms -Xq -be -or -RU -qb -Sf -iV -iV -iV -iV -iV -iV -rG -ss -iV -uo -vb -vR -wz -xd -xT -fQ -AH -ub -zE -AH -Aj -BD -Cz -DW -ET -Fz -FX -GS -Hd -HR -IA -Fi -JS -Ky -Fz -Lx -LY -AH -ab -ab -ab -vs -ZR -VV -Oh -XU -ZN -Oh -Yq -Xg -Yk -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abe +abX +acE +acK +aWL +adj +aTl +aZU +adj +aVf +aVE +aVw +aWp +ait +aWn +aUJ +aXb +aWp +aWV +ahc +ams +aXq +abe +aor +aRU +aqb +aSf +aiV +aiV +aiV +aiV +aiV +aiV +arG +ass +aiV +auo +avb +avR +awz +axd +axT +afQ +aAH +aub +azE +aAH +aAj +aBD +aCz +aDW +aET +aFz +aFX +aGS +aHd +aHR +aIA +aFi +aJS +aKy +aFz +aLx +aLY +aAH +aab +aab +aab +avs +aZR +aVV +aOh +aXU +aZN +aOh +aYq +aXg +aYk +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (79,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -be -bX -cE -cK -fh -dj -dW -UB -dj -UE -Wg -Um -Wp -iK -jY -Wt -WS -Wp -XN -hc -ms -Xq -be -os -oV -RY -Sv -iV -oO -ps -pV -qp -qX -rH -st -eL -up -vc -vS -SH -xe -xU -yO -AH -AH -AG -AH -Ak -BD -CB -BD -EU -Fz -Fz -Fz -Fz -Fz -Fz -Fz -Fz -Fz -Fz -Ly -LZ -AH -ab -ab -ab -vs -Wl -NV -Xj -An -OK -Yl -YM -Wl -Yk -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abe +abX +acE +acK +afh +adj +adW +aUB +adj +aUE +aWg +aUm +aWp +aiK +ajY +aWt +aWS +aWp +aXN +ahc +ams +aXq +abe +aos +aoV +aRY +aSv +aiV +aoO +aps +apV +aqp +aqX +arH +ast +aeL +aup +avc +avS +aSH +axe +axU +ayO +aAH +aAH +aAG +aAH +aAk +aBD +aCB +aBD +aEU +aFz +aFz +aFz +aFz +aFz +aFz +aFz +aFz +aFz +aFz +aLy +aLZ +aAH +aab +aab +aab +avs +aWl +aNV +aXj +aAn +aOK +aYl +aYM +aWl +aYk +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (80,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -be -bX -cE -cK -VB -dy -dY -Tu -Vi -Wo -Wg -jV -Wp -VU -Zk -WR -ZT -iX -ZD -cK -ms -Ul -be -oS -oS -Qz -Sg -iV -oP -pt -nx -qq -iV -rI -su -iV -uq -vd -vT -SH -xf -rl -sX -tg -vp -BI -BH -BH -Wm -CC -DX -EV -FA -FA -Qq -FA -QB -HS -Jl -JT -HS -HS -HS -Ma -AH -ab -ab -ab -ab -Xy -Xy -YU -Wy -XW -Zr -Xy -Ya -Yk -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abe +abX +acE +acK +aVB +ady +adY +aTu +aVi +aWo +aWg +ajV +aWp +aVU +aZk +aWR +aZT +aiX +aZD +acK +ams +aUl +abe +aoS +aoS +aQz +aSg +aiV +aoP +apt +anx +aqq +aiV +arI +asu +aiV +auq +avd +avT +aSH +axf +arl +asX +atg +avp +aBI +aBH +aBH +aWm +aCC +aDX +aEV +aFA +aFA +aQq +aFA +aQB +aHS +aJl +aJT +aHS +aHS +aHS +aMa +aAH +aab +aab +aab +aab +aXy +aXy +aYU +aWy +aXW +aZr +aXy +aYa +aYk +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (81,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -be -bX -cE -dj -dj -dj -dj -ZL -dj -Us -fi -UD -Wp -Xa -jZ -WR -Xo -iY -Wp -cK -ms -Xq -be -be -be -be -Sg -iV -oQ -pu -pW -qr -qr -qr -qr -qr -qr -qr -qr -qr -Qi -xR -yQ -zF -zL -zL -zL -zL -zL -JY -DY -GC -GC -Wb -GC -AH -QC -AH -AH -JU -Kz -KR -Lz -Mb -AH -ab -ab -ab -ab -XH -Xy -Xx -WC -ZK -Xd -Zl -VY -Yk -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abe +abX +acE +adj +adj +adj +adj +aZL +adj +aUs +afi +aUD +aWp +aXa +ajZ +aWR +aXo +aiY +aWp +acK +ams +aXq +abe +abe +abe +abe +aSg +aiV +aoQ +apu +apW +aqr +aqr +aqr +aqr +aqr +aqr +aqr +aqr +aqr +aQi +axR +ayQ +azF +azL +azL +azL +azL +azL +aJY +aDY +aGC +aGC +aWb +aGC +aAH +aQC +aAH +aAH +aJU +aKz +aKR +aLz +aMb +aAH +aab +aab +aab +aab +aXH +aXy +aXx +aWC +aZK +aXd +aZl +aVY +aYk +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (82,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -be -cs -cF -VB -Vu -dC -ea -fj -XQ -UE -fj -UY -XS -iW -ka -WR -UK -iY -Wp -cK -ms -mq -Ox -Ox -Ox -be -Sh -iV -oR -pv -pX -qs -qY -rJ -zb -tu -ur -ve -vU -wA -fa -xR -yQ -zG -zL -Xh -Ua -VF -zL -Dd -DZ -EW -FB -IO -GC -Qu -QD -QD -AH -AH -AH -AH -AH -AH -AH -ab -ab -ab -ab -vs -Xy -Xy -Zc -Zm -Xy -Xy -vs -Yk -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abe +acs +acF +aVB +aVu +adC +aea +afj +aXQ +aUE +afj +aUY +aXS +aiW +aka +aWR +aUK +aiY +aWp +acK +ams +amq +aOx +aOx +aOx +abe +aSh +aiV +aoR +apv +apX +aqs +aqY +arJ +azb +atu +aur +ave +avU +awA +afa +axR +ayQ +azG +azL +aXh +aUa +aVF +azL +aDd +aDZ +aEW +aFB +aIO +aGC +aQu +aQD +aQD +aAH +aAH +aAH +aAH +aAH +aAH +aAH +aab +aab +aab +aab +avs +aXy +aXy +aZc +aZm +aXy +aXy +avs +aYk +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (83,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -be -bY -cE -VB -XZ -dD -eb -ex -TT -Ti -Ym -Uz -Za -SO -Zo -Xi -dB -dZ -Tc -cK -ms -VX -Ox -Ox -Sp -be -Sw -iV -iV -pw -pt -qr -qr -qr -sv -tv -us -qr -qr -wB -xi -xW -yQ -zH -zL -Zp -CA -Zi -zL -De -Ea -GC -FC -IP -GC -Qv -QF -QM -So -AH -ab -ab -ab -ab -ab -ab -ab -ab -vs -vs -vs -Xy -Zv -Zv -Xy -vs -vs -Yk -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abe +abY +acE +aVB +aXZ +adD +aeb +aex +aTT +aTi +aYm +aUz +aZa +aSO +aZo +aXi +adB +adZ +aTc +acK +ams +aVX +aOx +aOx +aSp +abe +aSw +aiV +aiV +apw +apt +aqr +aqr +aqr +asv +atv +aus +aqr +aqr +awB +axi +axW +ayQ +azH +azL +aZp +aCA +aZi +azL +aDe +aEa +aGC +aFC +aIP +aGC +aQv +aQF +aQM +aSo +aAH +aab +aab +aab +aab +aab +aab +aab +aab +avs +avs +avs +aXy +aZv +aZv +aXy +avs +avs +aYk +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (84,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -be -cA -cG -VB -WD -dE -ZG -TY -dj -dj -fx -dj -Wp -iX -kb -ZW -lq -Xr -Wp -cK -ms -mq -Qb -Ox -Ox -be -Si -gJ -iV -px -pt -qr -yY -rK -sw -sw -sw -vf -vV -wC -xj -xX -yQ -zI -zL -Zp -CA -Zn -zL -Di -Eb -EX -FD -FY -GC -Fj -Fj -QN -QD -AH -ab -ab -ab -ab -ab -ab -ab -ab -Zg -Zg -Zg -Zg -Zg -Zg -Zg -Zg -Zg -WT -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abe +acA +acG +aVB +aWD +adE +aZG +aTY +adj +adj +afx +adj +aWp +aiX +akb +aZW +alq +aXr +aWp +acK +ams +amq +aQb +aOx +aOx +abe +aSi +agJ +aiV +apx +apt +aqr +ayY +arK +asw +asw +asw +avf +avV +awC +axj +axX +ayQ +azI +azL +aZp +aCA +aZn +azL +aDi +aEb +aEX +aFD +aFY +aGC +aFj +aFj +aQN +aQD +aAH +aab +aab +aab +aab +aab +aab +aab +aab +aZg +aZg +aZg +aZg +aZg +aZg +aZg +aZg +aZg +aWT +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (85,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -be -bX -cE -dj -dj -dj -dj -YK -dj -Wd -UL -Vg -fV -iY -XS -kx -Wp -iY -Wp -cK -ms -mq -be -be -be -be -Rx -gJ -iV -py -pY -qt -ra -rL -sx -tw -ut -vg -vW -wD -xk -xY -AK -zJ -zL -Ep -Vl -TU -zL -zL -Ec -Fj -Fj -Fj -Fj -Nn -Fj -QO -QD -AH -ab -ab -ab -ab -ab -ab -ab -ab -vs -vs -vs -vs -vs -vt -vt -vt -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abe +abX +acE +adj +adj +adj +adj +aYK +adj +aWd +aUL +aVg +afV +aiY +aXS +akx +aWp +aiY +aWp +acK +ams +amq +abe +abe +abe +abe +aRx +agJ +aiV +apy +apY +aqt +ara +arL +asx +atw +aut +avg +avW +awD +axk +axY +aAK +azJ +azL +aEp +aVl +aTU +azL +azL +aEc +aFj +aFj +aFj +aFj +aFj +aFj +aQO +aQD +aAH +aab +aab +aab +aab +aab +aab +aab +aab +avs +avs +avs +avs +avs +avt +avt +avt +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (86,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -be -bX -cE -cK -VB -Tq -ec -Xk -Xt -fg -Yg -VD -gL -ZD -UU -ky -Yj -Rv -XC -cK -ms -nz -be -RQ -gK -QX -Rx -gJ -iV -iV -iV -qr -qr -nG -sy -tx -uu -vh -vX -KT -xl -xZ -yS -zK -Yf -CD -CD -ZV -AI -zL -Ed -GF -JH -Im -IR -MN -Fj -QP -So -AH -ab -ab -ab -ab -ab -ab -ab -ab -vt -vt -vt -vt -vt -vt -vt -vt -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abe +abX +acE +acK +aVB +aTq +aec +aXk +aXt +afg +aYg +aVD +agL +aZD +aUU +aky +aYj +aRv +aXC +acK +ams +anz +abe +aRQ +agK +aQX +aRx +agJ +aiV +aiV +aiV +aqr +aqr +anG +asy +atx +auu +avh +avX +aKT +axl +axZ +ayS +azK +aYf +aCD +aCD +aZV +aAI +azL +aEd +aGF +aJH +aIm +aIR +aMg +aFj +aQP +aSo +aAH +aab +aab +aab +aab +aab +aab +aab +aab +avt +avt +avt +avt +avt +avt +avt +avt +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (87,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -be -bX -cE -cK -fh -dj -eg -Xl -dj -di -VR -UW -gM -Wp -kj -kQ -TG -Wp -XN -hc -ms -mq -be -oU -RV -RZ -Rx -gJ -gJ -gJ -gJ -gJ -qr -rN -sz -ty -uv -vi -rY -wD -xm -ya -yS -zK -AJ -BM -CD -ZV -Qd -zL -Ee -EY -FF -KU -MD -Nx -Fj -AH -SA -AH -AH -AH -AH -ab -ab -ab -ab -vt -vt -vt -vt -vt -vt -vt -vt -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abe +abX +acE +acK +afh +adj +aeg +aXl +adj +adi +aVR +aUW +agM +aWp +akj +akQ +aTG +aWp +aXN +ahc +ams +amq +abe +aoU +aRV +aRZ +aRx +agJ +agJ +agJ +agJ +agJ +aqr +arN +asz +aty +auv +avi +arY +awD +axm +aya +ayS +azK +aAJ +aBM +aCD +aZV +aQd +azL +aEe +aEY +aFF +aGG +aMg +aMg +aFj +aAH +aSA +aAH +aAH +aAH +aAH +aab +aab +aab +aab +avt +avt +avt +avt +avt +avt +avt +avt +avt +avt +avt +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (88,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -be -bX -cE -cK -cK -dj -UO -Xp -dj -UM -TJ -ZX -gM -Wp -kk -kR -Vd -Wp -XD -hc -ms -QL -be -oU -RW -gK -Si -Rt -aF -eM -hs -gJ -qr -rO -sA -qr -uw -uw -uw -qr -hO -ht -vv -zL -xP -BN -CE -Dv -Eq -zL -Ga -GH -Hw -Lb -IS -JI -Fj -QQ -QD -AH -SY -SY -AH -AH -ab -ab -ab -vt -vt -vt -vt -vt -vt -vt -vt -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abe +abX +acE +acK +acK +adj +aUO +aXp +adj +aUM +aTJ +aZX +agM +aWp +akk +akR +aVd +aWp +aXD +ahc +ams +aQL +abe +aoU +aRW +agK +aSi +aRt +aaF +aeM +ahs +agJ +aqr +arO +asA +aqr +auw +auw +auw +aqr +ahO +aht +avv +azL +axP +aBN +aCE +aDv +aEq +azL +aGa +aGH +aHw +aKU +aIS +aJI +aFj +aQQ +aQD +aAH +aSY +aSY +aAH +aAH +aab +aab +aab +avt +avt +avt +avt +avt +avt +avt +avt +avt +avt +avt +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (89,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -be -kS -cE -cK -cK -dj -Xc -dj -dj -dj -SQ -dj -UR -VQ -Ws -ZE -Wp -Wp -Wp -cK -ms -Sq -be -gK -RX -Sb -Si -Rt -ib -Sl -ib -gJ -qu -rP -sB -qu -ux -vj -vj -sE -xn -yb -yU -zM -AL -BO -CF -Dw -Er -zK -Gb -XO -Hx -LA -GG -Hg -Fj -QR -QD -AH -SZ -To -TC -AH -ab -ab -ab -vt -vt -vt -vt -vt -vt -vt -vt -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abe +akS +acE +acK +acK +adj +aXc +adj +adj +adj +aSQ +adj +aUR +aVQ +aWs +aZE +aWp +aWp +aWp +acK +ams +aSq +abe +agK +aRX +aSb +aSi +aRt +aib +aSl +aib +agJ +aqu +arP +asB +aqu +aux +avj +avj +asE +axn +ayb +ayU +azM +aAL +aBO +aCF +aDw +aEr +azK +aGb +aXO +aHx +aLb +aGG +aHg +aFj +aQR +aQD +aAH +aSZ +aTo +aTC +aAH +aab +aab +aab +avt +avt +avt +avt +avt +avt +avt +avt +avt +avt +avt +avt +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (90,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -be -bY -cE -cK -cK -cK -Yw -cK -cK -cK -cK -cK -Uf -Uf -cK -cK -cK -Wp -Wp -cK -ms -mq -be -be -be -be -Sx -gy -Sn -Sl -ib -gJ -qu -rQ -sC -qu -uy -vk -vk -wG -vk -ya -yV -zK -AM -BP -BR -CD -Es -zK -Cg -GJ -Hy -Mc -IT -JK -Fj -QZ -SB -SU -Ta -Tr -TE -QG -QG -QG -QG -QG -vt -vt -vt -vt -vt -vt -vt -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abe +abY +acE +acK +acK +acK +aYw +acK +acK +acK +acK +acK +aUf +aUf +acK +acK +acK +aWp +aWp +acK +ams +amq +abe +abe +abe +abe +aSx +agy +aSn +aSl +aib +agJ +aqu +arQ +asC +aqu +auy +avk +avk +awG +avk +aya +ayV +azK +aAM +aBP +aBR +aCD +aEs +azK +aCg +aGJ +aHy +aLA +aIT +aJK +aFj +aQZ +aSB +aSU +aTa +aTr +aTE +aQG +aQG +aQG +aQG +aQG +aQG +aQG +aVa +bap +bap +bap +bap +bap +bap +bap +bap +bap +bap +baI +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (91,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -be -bX -cH -db -dk -dF -YD -dF -dF -dF -db -dF -dk -dF -dF -dF -dF -dF -dk -db -mt -nz -be -wE -QK -be -Si -gJ -gJ -gJ -ib -gJ -qu -rR -sD -tz -uz -vl -vl -wH -vl -xZ -AO -zN -AN -zL -CH -zK -zK -zL -Fj -Fj -Hz -Me -Fj -JL -Fj -Rl -SD -AH -Te -Ts -TF -QG -TR -Uh -UN -QG -vt -vt -vt -vt -vt -vt -vt -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abe +abX +acH +adb +adk +adF +aYD +adF +adF +adF +adb +adF +adk +adF +adF +adF +adF +adF +adk +adb +amt +anz +abe +awE +aQK +abe +aSi +agJ +agJ +agJ +aib +agJ +aqu +arR +asD +atz +auz +avl +avl +awH +avl +axZ +aAO +azN +aAN +azL +aCH +azK +azK +azL +aFj +aFj +aHz +aMc +aFj +aJL +aFj +aRl +aSD +aAH +aTe +aTs +aTF +aQG +aUc +aUh +aUr +aTZ +aUg +aQG +aVb +baq +aVo +aVo +aVo +aVo +aVo +aVo +aVo +aVo +aUI +aWi +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (92,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -be -cB -cC -dc -dl -dH -bL -Wk -Wk -Wk -Nk -VI -YQ -SK -Wk -Wk -Wk -VI -YQ -lW -PZ -nB -Ro -PP -Rp -be -Si -gJ -gJ -gJ -sH -wb -wJ -xq -pl -tA -uA -vk -vk -wI -vk -ya -yX -zO -AP -He -CI -Dx -Fk -Gd -GK -Qh -HA -Mg -EF -Qy -QG -QG -SJ -QG -QG -QG -QG -QG -TS -Uo -UP -Vo -vt -vt -vt -vt -vt -vt -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abe +acB +acC +adc +adl +adH +abL +aWk +aWk +aWk +aNk +aVI +aYQ +aSK +aWk +aWk +aWk +aVI +aYQ +alW +aPZ +anB +aRo +aPP +aRp +abe +aSi +agJ +agJ +agJ +asH +awb +awJ +axq +apl +atA +auA +avk +avk +awI +avk +aya +ayX +azO +aAP +aHe +aCI +aDx +aFk +aGd +aGK +aNx +aHA +aMe +aEF +aQy +aQG +aQG +aSJ +aQG +aQG +aQG +aQG +aQG +aTS +aUo +aUG +aOL +aUv +aUZ +aVb +baq +bav +bay +aVG +aVS +aVS +aVS +baG +aVo +aVo +aWi +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (93,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -be -be -be -be -be -be -be -be -be -be -be -be -be -be -be -be -be -be -be -be -be -be -be -Qt -Qt -be -Si -gJ -pZ -sH -vo -gJ -qu -ye -sF -qu -uB -vm -vZ -vZ -xo -yc -NQ -zO -AQ -Sy -CJ -Dy -BU -BU -BU -GL -JN -JO -Qr -QA -QH -RL -SR -SV -Tg -SV -TH -TN -TV -Ur -UQ -Vo -vt -vt -vt -vt -vt -vt -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abe +abe +abe +abe +abe +abe +abe +abe +abe +abe +abe +abe +abe +abe +abe +abe +abe +abe +abe +abe +abe +abe +abe +aQt +aQt +abe +aSi +agJ +apZ +asH +avo +agJ +aqu +aye +asF +aqu +auB +avm +avZ +avZ +axo +ayc +aNQ +azO +aAQ +aSy +aCJ +aDy +aBU +aBU +aBU +aGL +aJN +aJO +aIo +aNU +aOc +aOf +aOi +aOw +aQH +aXK +aTy +aTI +aTL +aTN +aUQ +aUP +aUA +aUZ +aVb +baq +bav +aVO +aVG +aVG +aVG +aVG +aVH +baH +aVW +aWi +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (94,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dV -bV -cy -lt -dV -Rw -kV -RA -RC -RD -Pk -RA -RA -RG -Qm -Ry -RR -Ss -Sd -Si -Sk -rU -uC -gJ -gJ -qu -yZ -sG -tB -rZ -vn -wa -wa -xp -yd -qu -qu -AT -Sy -CJ -Dz -Eu -Eu -Eu -GM -HB -Mz -BU -BU -QG -Sj -SS -SW -Tj -Tv -TI -QG -TZ -Uv -UX -QG -vt -vt -vt -vt -vt -vt -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +adV +abV +acy +alt +adV +aRw +akV +aRA +aRC +aRD +aPk +aRA +aRA +aRG +aQm +aRy +aRR +aSs +aSd +aSi +aSk +arU +auC +agJ +agJ +aqu +ayZ +asG +atB +arZ +avn +awa +awa +axp +ayd +aqu +aqu +aAT +aSy +aCJ +aDz +aEu +aEu +aEu +aGM +aHB +aMz +aBU +aBU +aQG +aSj +aOu +aOL +aOL +aXP +aTz +aQG +aTM +aTV +aUF +aOL +bac +aQG +aVb +baq +baw +baz +baE +aVG +baF +baF +baG +aVo +aVo +aWi +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (95,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dV -eI -fp -mT -dx -nh -dV -fy -fy -fy -dV -eI -RJ -RK -RM -RF -RA -RA -RA -nb -rT -rV -gJ -gJ -qu -qu -zP -AR -BS -CK -DA -Ev -Fl -FE -GI -xc -HC -In -Io -Ip -Iq -Ir -Is -Ir -It -KS -MA -IV -zO -QG -QG -QG -QG -Tk -Tw -QG -QG -Uc -Uc -Uc -QG -vt -vt -vt -vt -vt -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +adV +aeI +afp +amT +adx +anh +adV +afy +afy +afy +adV +aeI +aRJ +aRK +aRM +aRF +aRA +aRA +aRA +anb +arT +arV +agJ +agJ +aqu +aqu +azP +aAR +aBS +aCK +aDA +aEv +aFl +aFE +aGI +axc +aHC +aIn +aIo +aIp +aIq +aIr +aIs +aIr +aIt +aKS +aMA +aIV +azO +aQG +aQG +aMN +aSV +aSV +aWP +aMN +aQG +aTk +aTw +aQG +aQG +aQG +aQG +bak +baq +aVo +aVo +aVo +aVq +aVo +aVo +aVo +aVo +aUI +aWi +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (96,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dV -eI -gK -oT -dV -Rx -fy -fy -du -fy -fy -RI -ZQ -fp -RN -eI -nV -pZ -iJ -rS -Sm -gJ -gJ -gJ -qu -rb -rW -sI -tD -uD -CL -uD -uD -xr -yf -za -zQ -AS -BT -Et -BT -Ew -Ew -Ew -Ew -HD -Iu -IW -zO -ab -ab -ab -QG -Tm -Tx -TK -QG -Ud -UA -UA -UA -UA -UA -VG -vt -vt -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +adV +aeI +agK +aoT +adV +aRx +afy +afy +adu +afy +afy +aRI +aZQ +afp +aRN +aeI +anV +apZ +aiJ +arS +aSm +agJ +agJ +agJ +aqu +arb +arW +asI +atD +auD +aCL +auD +auD +axr +ayf +aza +azQ +aAS +aBT +aEt +aBT +aEw +aEw +aEw +aEw +aHD +aIu +aIW +azO +aab +aab +aMN +aSW +aXY +aWQ +aYn +aQG +aTm +aTx +aTK +aQG +aVh +bag +bal +bar +bar +bar +bar +bar +bar +bar +bar +bar +bar +aWq +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (97,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dV -lo -eI -pA -fy -hy -fy -is -kT -is -fy -fy -fy -fP -fP -fP -fP -fP -fP -gJ -gJ -gJ -gJ -gJ -qu -rc -rX -sJ -tE -sJ -vq -wc -sJ -xs -yg -Qc -qu -oK -BU -CM -BU -BU -BU -BU -BU -HE -Iu -GR -zO -ab -ab -ab -QG -Tn -Ty -TL -QG -Ue -NU -Oc -Oc -Oc -Of -VH -vt -vt -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +adV +alo +aeI +apA +afy +ahy +afy +ais +akT +ais +afy +afy +afy +afP +afP +afP +afP +afP +afP +agJ +agJ +agJ +agJ +agJ +aqu +arc +arX +asJ +atE +asJ +avq +awc +asJ +axs +ayg +aQc +aqu +aoK +aBU +aCM +aBU +aBU +aBU +aBU +aBU +aHE +aIu +aGR +azO +aab +aab +aMN +aTg +aUX +aWQ +aYo +aQG +aTn +aOO +aTA +aUd +aUH +aUI +aWi +bas +avt +avt +avt +avt +avt +avt +avt +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (98,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dV -eI -eI -pZ -fy -hz -js -jt -kU -jt -js -is -fy -ny -nC -OX -VM -VM -fP -gJ -gJ -gJ -gJ -gJ -qu -qu -qZ -rX -sJ -sJ -vq -sJ -sJ -EI -Fx -zc -zR -AU -Sy -BU -BU -Eu -Eu -Eu -Eu -BU -Iu -IX -zO -ab -ab -ab -QG -QG -Tz -QG -QG -Ue -UF -UZ -UZ -UZ -UF -VH -vt -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +adV +aeI +aeI +apZ +afy +ahz +ajs +ajt +akU +ajt +ajs +ais +afy +any +anC +aOX +aVM +aVM +afP +agJ +agJ +agJ +agJ +agJ +aqu +aqu +aqZ +arX +asJ +asJ +avq +asJ +asJ +aEI +aFx +azc +azR +aAU +aSy +aBU +aBU +aEu +aEu +aEu +aEu +aBU +aIu +aIX +azO +aab +aab +aMN +aTg +aVk +aWU +aYt +aQG +aQG +aQG +aQG +aQG +aUI +aUI +aWi +bas +avt +avt +avt +avt +avt +avt +avt +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (99,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dV -gK -gK -eI -fy -em -jt -kl -kX -lr -lM -lR -fy -mw -pz -OZ -VM -VM -fP -gJ -gJ -gJ -gJ -gJ -Ru -qu -rZ -sK -tF -uE -vr -wd -wK -xt -yh -zd -zR -AV -BU -CN -DB -Ex -BU -CN -GO -GO -Iv -GR -zO -ab -ab -ab -vt -vt -TA -TM -TB -Ue -UF -Va -Vq -Vx -UF -VH -vt -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +adV +agK +agK +aeI +afy +aem +ajt +akl +akX +alr +alM +alR +afy +amw +apz +aOZ +aVM +aVM +afP +agJ +agJ +agJ +agJ +agJ +aRu +aqu +arZ +asK +atF +auE +avr +awd +awK +axt +ayh +azd +azR +aAV +aBU +aCN +aDB +aEx +aBU +aCN +aGO +aGO +aIv +aGR +azO +aab +aab +aMN +aWZ +aUX +aWX +aYy +aMN +avt +avt +avt +avt +avt +avt +aWq +bas +avt +avt +avt +avt +avt +avt +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (100,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dV -Rt -Rt -Rt -fy -ia -jD -jD -lk -jD -lN -lS -fy -mY -qa -Pc -Qw -QS -fP -gJ -gJ -gJ -gJ -gJ -gJ -ab -qu -qu -qu -qu -qu -qu -qu -qu -qu -qu -qu -AW -BL -CO -DC -Ey -CG -Ge -GP -HF -Qe -IY -zO -ab -ab -vt -vt -vt -TB -TB -TB -Ue -UF -Vb -Vc -Vc -UF -VH -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +adV +aRt +aRt +aRt +afy +aia +ajD +ajD +alk +ajD +alN +alS +afy +amY +aqa +aPc +aQw +aQS +afP +agJ +agJ +agJ +agJ +agJ +agJ +aab +aqu +aqu +aqu +aqu +aqu +aqu +aqu +aqu +aqu +aqu +aqu +aAW +aBL +aCO +aDC +aEy +aCG +aGe +aGP +aHF +aQe +aIY +azO +aab +aab +aMN +aTj +aVr +aWQ +aZw +aMN +avt +avt +aVc +aVc +aWc +aWc +aWc +aWc +aWc +aVc +aVc +avt +avt +avt +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (101,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dV -eI -fE -eI -fy -ic -jD -km -ll -jD -lO -lT -lX -mZ -Nw -Pe -QI -Pr -fP -gJ -gJ -gJ -gJ -gJ -gJ -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -zO -AX -AX -CP -DD -Ez -CP -Ez -GQ -CP -AX -AX -zO -ab -ab -vt -vt -vt -TB -TB -TB -Ue -UG -Vc -Vc -VC -UF -VH -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +adV +aeI +afE +aeI +afy +aic +ajD +akm +all +ajD +alO +alT +alX +amZ +aNw +aPe +aQI +aPr +afP +agJ +agJ +agJ +agJ +agJ +agJ +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +azO +aAX +aAX +aCP +aDD +aEz +aCP +aEz +aGQ +aCP +aAX +aAX +azO +aab +aab +aMN +aTv +aVr +aWQ +aZA +aMN +avt +avt +aVc +aZJ +baf +baf +baf +baf +baf +baP +aVc +avt +avt +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (102,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dV -eS -id -Rr -fy -ie -jD -jD -lk -jD -lN -fU -fy -na -qa -Ph -QJ -Rm -fP -gJ -gJ -gJ -gJ -gJ -gJ -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -vt -vt -vt -vt -CQ -DC -BU -CP -BU -GR -HG -aa -aa -ae -ae -aa -aa -ae -vt -vt -vt -vt -Ue -UF -Vh -Vc -VC -UF -VH -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +adV +aeS +aid +aRr +afy +aie +ajD +ajD +alk +ajD +alN +afU +afy +ana +aqa +aPh +aQJ +aRm +afP +agJ +agJ +agJ +agJ +agJ +agJ +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +avt +avt +avt +avt +aCQ +aDC +aBU +aCP +aBU +aGR +aHG +aaa +aaa +aae +aae +aaa +aMN +aTv +aYd +aYi +aZB +aMN +avt +avt +aVc +aZS +baS +baU +baU +baU +baV +baB +aVc +avt +avt +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (103,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dV -dV -dV -dV -fy -ir -jP -jP -lm -ls -lP -jt -fy -nd -NO -PC -VM -VM -fP -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -vt -vt -vt -vt -vt -CR -DD -Ez -Fn -Ez -GQ -HH -ae -ae -ae -ae -ae -ae -ae -aa -vt -vt -vt -Ue -UF -Vh -Vc -VC -UF -VH -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +adV +adV +adV +adV +afy +air +ajP +ajP +alm +als +alP +ajt +afy +and +aNO +aPC +aVM +aVM +afP +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +avt +avt +avt +avt +avt +aCR +aDD +aEz +aFn +aEz +aGQ +aHH +aae +aae +aae +aae +aaa +aMN +aTv +aVr +aWQ +aVr +aMN +avt +avt +aVc +aZS +bai +bao +bao +bao +bai +baB +aVc +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (104,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -fy -is -jQ -jt -ln -jt -jQ -is -fy -yW -Ov -PF -VM -VM -fP -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -vt -vt -vt -vt -vt -gg -gg -gg -gg -gg -gg -gg -gg -gg -gg -gg -ae -ae -aa -aa -aa -aa -aa -vt -vt -Ue -UF -Vj -Vr -Vj -UF -VH -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +afy +ais +ajQ +ajt +aln +ajt +ajQ +ais +afy +ayW +aOv +aPF +aVM +aVM +afP +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +avt +avt +avt +avt +avt +agg +agg +agg +agg +agg +agg +agg +agg +agg +agg +agg +aae +aae +aMD +aMD +aMD +aVt +aXm +aVt +aMD +aMD +aVc +aVc +baL +bai +bat +bau +baM +bai +baW +aVc +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (105,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -fy -fy -fy -is -lp -is -fy -fy -fy -fP -fP -fP -fP -fP -fP -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -ae -gg -gg -gg -gg -gg -gg -gg -gg -gg -gg -gg -gg -ae -aa -aa -aa -aa -aa -aa -vt -Ue -UF -Vk -Vs -Vk -UF -VH -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +afy +afy +afy +ais +alp +ais +afy +afy +afy +afP +afP +afP +afP +afP +afP +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +aaa +aaa +aaa +aaa +aae +agg +agg +agg +agg +agg +agg +agg +agg +agg +agg +agg +agg +aae +aMD +aNn +aTB +aVC +aXn +aWI +aYJ +aYZ +aVc +aWf +aZZ +bai +baO +bau +bau +bai +baB +aVc +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (106,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -fy -fy -kK -fy -fy -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -ae -gg -gg -gg -gg -gg -gg -gg -gg -gg -gg -gg -gg -ae -aa -aa -aa -aa -aa -aa -aa -Ue -UH -UF -Vt -UF -UH -VH -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +afy +afy +akK +afy +afy +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +aaa +aaa +aaa +aaa +aaa +aae +agg +agg +agg +agg +agg +agg +agg +agg +agg +agg +agg +agg +aae +aMD +aQh +aUN +aWe +aVj +aVy +aVN +aVT +aVZ +aXs +bah +baj +bau +bau +baN +bai +baB +aVc +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (107,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -fy -fy -fy -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -ae -gg -gg -gg -gg -gg -gg -gg -gg -gg -gg -gg -CS -ae -aa -aa -aa -aa -aa -aa -aa -Ug -UI -UI -UI -UI -UI -VJ -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +afy +afy +afy +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +agg +agg +agg +agg +agg +agg +agg +agg +agg +agg +agg +aCS +aae +aMD +aQr +aTR +aWz +aXu +aWI +aYP +aZf +aVc +aVx +ban +bai +bax +bau +baN +bai +baC +aVc +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (108,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -gg -gg -gg -gg -gg -gg -gg -gg -gg -gg -gg -gg -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agg +agg +agg +agg +agg +agg +agg +agg +agg +agg +agg +agg +aae +aMD +aQA +aUe +aWI +aXz +aYE +aUe +aZq +aVc +aYL +baR +bai +bax +bau +baN +bai +baB +aVc +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (109,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -gg -gg -gg -gg -gg -gg -gg -gg -gg -gg -gg -gg -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aab +aab +aab +aab +aab +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agg +agg +agg +agg +agg +agg +agg +agg +agg +agg +agg +agg +aae +aMD +aRL +aUe +aWJ +aXA +aYF +aUe +aZH +aVc +aZb +bab +bai +baA +baJ +baA +bai +baB +aVc +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (110,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -gg -gg -gg -gg -gg -gg -gg -gg -gg -gg -gg -ae -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agg +agg +agg +agg +agg +agg +agg +agg +agg +agg +agg +aae +aae +aMD +aSR +aMD +aWK +aXI +aYI +aYR +aZI +aVc +aVz +bab +bai +baD +baK +baD +bai +baW +aVc +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (111,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aMD +aSS +aUe +aUe +aXJ +aUe +aUe +aZj +aVc +baa +bad +aVs +bai +baT +bai +aVs +baB +aVc +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (112,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aMD +aTH +aWO +aYG +aXV +aZh +aWO +aZC +aVc +aVJ +bae +bam +bam +bam +bam +bam +baQ +aVc +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (113,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aMD +aMD +aMD +aMD +aMD +aMD +aMD +aMD +aVc +aVc +aVc +aWc +aWc +aWc +aWc +aWc +aVc +aVc +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (114,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (115,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (116,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (117,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (118,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (119,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (120,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (121,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (122,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (123,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (124,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (125,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (126,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (127,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (128,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (129,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (130,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (131,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (132,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (133,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (134,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (135,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (136,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (137,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (138,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (139,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (140,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} diff --git a/maps/tether/tether-08-mining.dmm b/maps/tether/tether-08-mining.dmm index 7bf87c5ee58..7289bdc33d6 100644 --- a/maps/tether/tether-08-mining.dmm +++ b/maps/tether/tether-08-mining.dmm @@ -23,64 +23,49 @@ /turf/simulated/floor/tiled/steel_dirty/virgo3b, /area/mine/explored) "ag" = ( -/obj/effect/floor_decal/rust, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/outpost/mining_main/storage) +/turf/simulated/wall/r_wall, +/area/outpost/mining_main/hangar) "ah" = ( -/obj/structure/ore_box, -/obj/effect/floor_decal/rust, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 9 - }, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/outpost/mining_main/storage) +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/tiled, +/area/outpost/mining_main/hangar) "ai" = ( -/obj/effect/floor_decal/rust, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/obj/machinery/mining/drill, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/outpost/mining_main/storage) +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled, +/area/outpost/mining_main/hangar) "aj" = ( -/obj/effect/floor_decal/rust, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/obj/machinery/mining/brace, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/outpost/mining_main/storage) +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/camera/network/mining, +/turf/simulated/floor/tiled, +/area/outpost/mining_main/hangar) "ak" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 5 +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 }, -/obj/machinery/mining/brace, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/outpost/mining_main/storage) +/turf/simulated/floor/tiled, +/area/outpost/mining_main/hangar) "al" = ( /turf/simulated/floor/tiled/steel_dirty/virgo3b, /area/mine/explored) "am" = ( -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/outpost/mining_main/storage) +/obj/machinery/door/blast/regular, +/turf/simulated/wall/r_wall, +/area/outpost/mining_main/hangar) "an" = ( -/obj/structure/ore_box, -/obj/effect/floor_decal/rust, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/outpost/mining_main/storage) -"ao" = ( -/obj/effect/floor_decal/industrial/warning/dust{ +/obj/effect/floor_decal/industrial/warning{ dir = 4 }, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/outpost/mining_main/storage) +/turf/simulated/floor/tiled, +/area/outpost/mining_main/hangar) +"ao" = ( +/obj/effect/shuttle_landmark{ + base_area = /area/outpost/mining_main/hangar; + base_turf = /turf/simulated/floor/tiled; + landmark_tag = "mining_outpost"; + name = "Mining Outpost Shuttle - Outpost" + }, +/turf/simulated/floor/tiled, +/area/outpost/mining_main/hangar) "ap" = ( /obj/effect/floor_decal/rust/steel_decals_rusted1, /obj/effect/floor_decal/rust/steel_decals_rusted2{ @@ -89,33 +74,34 @@ /turf/simulated/floor/tiled/steel_dirty/virgo3b, /area/mine/explored) "aq" = ( -/obj/machinery/mining/drill, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/outpost/mining_main/storage) +/turf/simulated/floor/tiled, +/area/outpost/mining_main/hangar) "ar" = ( -/obj/machinery/mining/brace, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/outpost/mining_main/storage) -"as" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4 - }, -/obj/machinery/mining/brace, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/outpost/mining_main/storage) -"at" = ( -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/outpost/mining_main/storage) -"au" = ( -/obj/structure/table/steel, -/obj/item/weapon/tool/screwdriver, -/obj/item/weapon/tool/crowbar, -/obj/item/weapon/tool/wrench, -/obj/effect/floor_decal/industrial/warning/dust{ +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; dir = 8 }, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/outpost/mining_main/storage) +/turf/simulated/floor/tiled, +/area/outpost/mining_main/hangar) +"as" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/outpost/mining_main/hangar) +"at" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/outpost/mining_main/hangar) +"au" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/outpost/mining_main/hangar) "av" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume{ dir = 4; @@ -128,18 +114,27 @@ /turf/simulated/floor/virgo3b, /area/outpost/mining_main/maintenance) "aw" = ( -/obj/machinery/light/small, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/outpost/mining_main/storage) -"ax" = ( -/obj/structure/table/steel, -/obj/machinery/cell_charger, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8 +/obj/effect/floor_decal/industrial/warning{ + dir = 1 }, -/obj/item/weapon/cell/high, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/outpost/mining_main/storage) +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/outpost/mining_main/hangar) +"ax" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/outpost/mining_main/hangar) "ay" = ( /turf/simulated/wall/r_wall, /area/outpost/mining_main/maintenance) @@ -163,33 +158,45 @@ /turf/simulated/floor/virgo3b, /area/mine/explored) "aC" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + icon_state = "warningcorner"; + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 26 + }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/outpost/mining_main/storage) +/turf/simulated/floor/tiled, +/area/outpost/mining_main/hangar) "aD" = ( -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -32 +/obj/structure/bed/chair{ + dir = 4 }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" +/obj/effect/floor_decal/borderfloor{ + dir = 10 }, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/outpost/mining_main/storage) +/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/outpost/mining_main/hangar) "aE" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/machinery/computer/shuttle_control/surface_mining_outpost{ + dir = 8 }, -/turf/simulated/wall/r_wall, -/area/outpost/mining_main/break_room) +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/turf/simulated/floor/tiled, +/area/outpost/mining_main/hangar) "aF" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" @@ -244,34 +251,10 @@ /turf/simulated/floor/virgo3b, /area/mine/explored) "aK" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 24 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/light_switch{ - dir = 1; - pixel_x = 12; - pixel_y = 24 - }, -/obj/structure/closet/secure_closet/miner, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, /turf/simulated/floor/tiled, -/area/outpost/mining_main/break_room) +/area/outpost/mining_main/hangar) "aL" = ( /obj/structure/cable/heavyduty{ icon_state = "2-8" @@ -395,66 +378,43 @@ /turf/simulated/floor/tiled/steel_grid, /area/outpost/mining_main/break_room) "aX" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/vehicle/train/engine{ + dir = 8 }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/camera/network/mining{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/outpost/mining_main/break_room) +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/turf/simulated/floor/tiled, +/area/outpost/mining_main/hangar) "aY" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 +/obj/vehicle/train/trolley{ + dir = 8 }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/obj/machinery/washing_machine, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, /turf/simulated/floor/tiled, -/area/outpost/mining_main/break_room) +/area/outpost/mining_main/hangar) "aZ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/machinery/firealarm{ +/obj/machinery/power/apc{ dir = 2; - layer = 3.3; - pixel_x = 0; - pixel_y = 26 + name = "south bump"; + pixel_y = -32 }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/machinery/light_switch{ + dir = 1; + pixel_x = 10; + pixel_y = -24 }, -/obj/structure/closet/secure_closet/miner, +/obj/structure/cable/green, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, /turf/simulated/floor/tiled, -/area/outpost/mining_main/break_room) +/area/outpost/mining_main/hangar) "ba" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 4 @@ -513,35 +473,32 @@ /turf/simulated/floor/plating, /area/outpost/mining_main/maintenance) "bg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 - }, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/outpost/mining_main/break_room) -"bh" = ( -/obj/structure/table/glass, -/obj/machinery/microwave, -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 10 +/obj/machinery/alarm{ + alarm_id = null; + breach_detection = 0; + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, /obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 + dir = 9 }, /obj/effect/floor_decal/corner/brown/bordercorner2{ - dir = 8 + dir = 9 }, /turf/simulated/floor/tiled, -/area/outpost/mining_main/break_room) +/area/outpost/mining_main/hangar) +"bh" = ( +/obj/machinery/status_display{ + pixel_x = 32 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/outpost/mining_main/hangar) "bi" = ( /obj/structure/table/glass, /obj/effect/floor_decal/borderfloor, @@ -669,24 +626,12 @@ /turf/simulated/floor/plating, /area/outpost/mining_main/maintenance) "bv" = ( +/obj/machinery/door/airlock/glass_mining, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" + icon_state = "1-2" }, /turf/simulated/floor/tiled/steel_grid, -/area/outpost/mining_main/break_room) +/area/outpost/mining_main/hangar) "bw" = ( /obj/structure/cable{ d2 = 8; @@ -773,6 +718,9 @@ /obj/structure/cable/green, /turf/simulated/floor/plating, /area/outpost/mining_main/maintenance) +"bG" = ( +/turf/simulated/wall/r_wall, +/area/outpost/mining_main/secondary_gear_storage) "bH" = ( /obj/machinery/telecomms/relay/preset/mining, /turf/simulated/floor/plating, @@ -858,6 +806,98 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/break_room) +"bO" = ( +/obj/structure/closet/secure_closet/miner, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/outpost/mining_main/secondary_gear_storage) +"bP" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/outpost/mining_main/hangar) +"bQ" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_x = 0; + pixel_y = 24 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = 12; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1; + pixel_y = 0 + }, +/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/outpost/mining_main/secondary_gear_storage) +"bR" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/outpost/mining_main/secondary_gear_storage) +"bS" = ( +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/outpost/mining_main/secondary_gear_storage) +"bT" = ( +/obj/structure/closet/secure_closet/miner, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -26 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8; + icon_state = "borderfloor"; + pixel_x = 0 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/outpost/mining_main/secondary_gear_storage) +"bU" = ( +/turf/simulated/floor/tiled, +/area/outpost/mining_main/secondary_gear_storage) +"bV" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/outpost/mining_main/secondary_gear_storage) "bW" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/brown/border, @@ -875,6 +915,118 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/break_room) +"bX" = ( +/obj/structure/bed/chair, +/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/outpost/mining_main/secondary_gear_storage) +"bY" = ( +/obj/structure/ore_box, +/obj/effect/floor_decal/rust, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/outpost/mining_main/drill_equipment) +"bZ" = ( +/obj/effect/floor_decal/rust, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/outpost/mining_main/drill_equipment) +"ca" = ( +/obj/effect/floor_decal/rust, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/obj/machinery/mining/brace, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/outpost/mining_main/drill_equipment) +"cb" = ( +/obj/effect/floor_decal/rust, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/obj/machinery/mining/drill, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/outpost/mining_main/drill_equipment) +"cc" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 5 + }, +/obj/machinery/mining/brace, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/outpost/mining_main/drill_equipment) +"cd" = ( +/obj/structure/closet/secure_closet/miner, +/obj/machinery/camera/network/mining{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8; + icon_state = "borderfloor"; + pixel_x = 0 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/outpost/mining_main/secondary_gear_storage) +"ce" = ( +/obj/structure/table/woodentable, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/outpost/mining_main/secondary_gear_storage) +"cf" = ( +/obj/structure/ore_box, +/obj/effect/floor_decal/rust, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/outpost/mining_main/drill_equipment) +"cg" = ( +/obj/effect/floor_decal/rust, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/outpost/mining_main/drill_equipment) +"ch" = ( +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/outpost/mining_main/drill_equipment) +"ci" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/outpost/mining_main/drill_equipment) +"cj" = ( +/obj/structure/closet/secure_closet/miner, +/obj/effect/floor_decal/borderfloor{ + dir = 8; + icon_state = "borderfloor"; + pixel_x = 0 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/outpost/mining_main/secondary_gear_storage) "ck" = ( /obj/effect/floor_decal/rust/steel_decals_rusted1, /turf/simulated/floor/tiled/steel_dirty/virgo3b, @@ -891,6 +1043,24 @@ "cn" = ( /turf/simulated/floor/outdoors/grass/sif/virgo3b, /area/outpost/mining_main/passage) +"co" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/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/outpost/mining_main/secondary_gear_storage) "cp" = ( /turf/simulated/floor/tiled/steel_dirty/virgo3b, /area/outpost/mining_main/passage) @@ -898,14 +1068,353 @@ /obj/effect/step_trigger/teleporter/from_mining, /turf/simulated/floor/tiled/steel_dirty/virgo3b, /area/outpost/mining_main/passage) +"cr" = ( +/obj/machinery/mining/brace, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/outpost/mining_main/drill_equipment) +"cs" = ( +/obj/machinery/mining/drill, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/outpost/mining_main/drill_equipment) +"ct" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 4 + }, +/obj/machinery/mining/brace, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/outpost/mining_main/drill_equipment) "cu" = ( /mob/living/simple_mob/animal/passive/gaslamp, /turf/simulated/floor/outdoors/grass/sif/virgo3b, /area/mine/explored) "cv" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/outpost/mining_main/secondary_gear_storage) +"cw" = ( +/obj/vehicle/train/trolley{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/outpost/mining_main/hangar) +"cx" = ( +/obj/machinery/alarm{ + alarm_id = null; + breach_detection = 0; + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/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/outpost/mining_main/secondary_gear_storage) +"cy" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/outpost/mining_main/secondary_gear_storage) +"cz" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 8 + }, +/obj/structure/ore_box, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/outpost/mining_main/drill_equipment) +"cA" = ( /obj/machinery/status_display, /turf/simulated/wall/r_wall, +/area/outpost/mining_main/secondary_gear_storage) +"cB" = ( +/obj/machinery/door/airlock/glass_mining, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/outpost/mining_main/secondary_gear_storage) +"cC" = ( +/obj/structure/table/steel, +/obj/item/weapon/tool/screwdriver, +/obj/item/weapon/tool/crowbar, +/obj/item/weapon/tool/wrench, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/outpost/mining_main/drill_equipment) +"cD" = ( +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/machinery/washing_machine, +/obj/effect/floor_decal/borderfloor{ + dir = 1; + pixel_y = 0 + }, +/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/outpost/mining_main/break_room) +"cE" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/outpost/mining_main/break_room) +"cF" = ( +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_x = 0; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = 12; + pixel_y = 24 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1; + pixel_y = 0 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/outpost/mining_main/break_room) +"cG" = ( +/obj/structure/table/steel, +/obj/machinery/cell_charger, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 8 + }, +/obj/item/weapon/cell/high, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/outpost/mining_main/drill_equipment) +"cH" = ( +/obj/machinery/mech_recharger, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/outpost/mining_main/drill_equipment) +"cI" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/outpost/mining_main/break_room) +"cJ" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/outpost/mining_main/break_room) +"cK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9; + pixel_y = 0 + }, +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/outpost/mining_main/break_room) +"cL" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/outpost/mining_main/break_room) +"cM" = ( +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/outpost/mining_main/break_room) +"cN" = ( +/obj/machinery/light/small, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/outpost/mining_main/drill_equipment) +"cO" = ( +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + dir = 2; + name = "south bump"; + pixel_y = -32 + }, +/obj/effect/floor_decal/industrial/warning/dust, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/outpost/mining_main/drill_equipment) +"cP" = ( +/obj/effect/floor_decal/industrial/warning/dust, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/outpost/mining_main/drill_equipment) +"cQ" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/outpost/mining_main/drill_equipment) +"cR" = ( +/obj/structure/table/glass, +/obj/machinery/microwave, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -26 + }, +/turf/simulated/floor/tiled, +/area/outpost/mining_main/break_room) +"cS" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1; + pixel_y = 0 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/outpost/mining_main/secondary_gear_storage) +"cT" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/outpost/mining_main/secondary_gear_storage) "di" = ( /obj/machinery/access_button{ command = "cycle_exterior"; @@ -954,31 +1463,6 @@ "hK" = ( /turf/simulated/wall/r_wall, /area/outpost/mining_main/dorms) -"hW" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/break_room) -"qx" = ( -/obj/machinery/mech_recharger, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/outpost/mining_main/storage) "rH" = ( /obj/effect/floor_decal/rust/steel_decals_rusted1{ dir = 8 @@ -1194,13 +1678,6 @@ /obj/machinery/status_display, /turf/simulated/wall/r_wall, /area/outpost/mining_main/airlock) -"Hi" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8 - }, -/obj/structure/ore_box, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/outpost/mining_main/storage) "HP" = ( /obj/effect/floor_decal/rust/steel_decals_rusted1{ dir = 8 @@ -2239,16 +2716,16 @@ ab ab ab ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab +ag +ag +am +am +am +am +am +ag +ag +ag ab ab ab @@ -2381,6 +2858,16 @@ ab ab ab ab +ag +ah +an +an +an +an +an +at +aD +ag ab ab ab @@ -2390,17 +2877,7 @@ ab ab ab ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab +av ab ab ab @@ -2523,29 +3000,29 @@ ab ab ab ab +ag +ai +aq +aq +aq +aq +aq +au +aE +ag ab ab ab ab ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab +ay +vo +vo +vo +ZC +vo +vo +ay ab ab ab @@ -2665,31 +3142,31 @@ ab ab ab ab +ag +ai +aq +aq +aq +aq +aq +au +aK +ag ab ab ab ab ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab +ay +aP +aV +aP +bn +bs +bB +bI +aA +aB ab ab ab @@ -2807,31 +3284,31 @@ ab ab ab ab +ag +as +aq +aq +aq +aq +aq +au +bP +ag ab ab ab ab ab +ay +aQ +ba +bf +bn +bu +bC +SF ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab +aF ab ab ab @@ -2949,31 +3426,31 @@ ab ab ab ab +ag +ai +aq +aq +aq +aq +aq +au +aK +ag +ab +cu ab ab ab +ay +aR +bb +bj +bo +bw +bD +SF ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab +aF ab ab ab @@ -3091,31 +3568,31 @@ ab ab ab ab +ag +aj +aq +aq +aq +aq +aq +au +aX +ag ab ab ab ab ab +ay +aS +bc +bk +bp +bx +bF +SF ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab +aF ab ab ab @@ -3233,31 +3710,31 @@ ab ab ab ab +ag +ai +aq +aq +aq +aq +aq +au +aY +ag ab ab ab ab ab +ay +aT +bd +bl +bq +bz +bp +SF ab -ab -ab -ab -ab -ab -ab -ab -av -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab +aF ab ab ab @@ -3375,31 +3852,31 @@ ab ab ab ab +ag +ai +aq +aq +aq +aq +aq +au +aY +ag +bG +bG +bG +bG +bG +bG +aU +be +bm +br +bA +bH +SF ab -ab -ab -ab -ab -ab -ab -ab -ab -ay -vo -vo -vo -ZC -vo -vo -ay -ab -ab -ab -ab -ab -ab -ab -ab +aF ab ab ab @@ -3517,31 +3994,31 @@ ab ab ab ab -ab -ab -ab -ab -ab -ab -ab -ab -ab +ag +as +aq +aq +aq +aq +aq +au +cw +ag +bO +bT +cd +cj +cv +bG +ay +Cy +ay +ay +ay +ay ay -aP -aV -aP -bn -bs -bB -bI -aA -aB -ab -ab -ab -ab -ab ab +aF ab ab ab @@ -3659,35 +4136,35 @@ ab ab ab ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ay -aQ -ba -bf -bn -bu -bC -SF +ag +ai +aq +aq +aq +aq +aq +aw +aZ +ag +cS +bU +bU +bU +cT +cA +aI +aW +cR +hK +WK +JA +hK ab aF ab ab ab ab -ab -ab -ab -ab -ab -ab aa "} (17,1,1) = {" @@ -3801,35 +4278,35 @@ ab ab ab ab -ab -ab -ab -ab -ab -cu -ab -ab -ab -ay -aR -bb -bj -bo -bw -bD -SF +ag +ai +aq +aq +ao +aq +aq +ax +bg +ag +bQ +bV +bV +bV +cx +bG +cD +aW +bi +hK +Fa +uE +hK ab aF ab ab ab ab -ab -ab -ab -ab -ab -ab aa "} (18,1,1) = {" @@ -3943,35 +4420,35 @@ ab ab ab ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ay -aS -bc -bk -bp -bx -bF -SF +ag +ak +ar +ar +ar +ar +ar +aC +bh +bv +bR +bX +ce +co +cy +cB +cE +cI +bW +hK +Ma +hK +hK ab aF ab ab ab ab -ab -ab -ab -ab -ab -ab aa "} (19,1,1) = {" @@ -4085,35 +4562,35 @@ ab ab ab ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ay -aT -bd -bl -bq -bz -bp -SF +ag +ag +am +am +am +am +am +ag +ag +ag +bS +bS +bS +bS +bS +bG +cF +cJ +ZV +ty +Fn +bt +az ab aF ab ab ab ab -ab -ab -ab -ab -ab -ab aa "} (20,1,1) = {" @@ -4236,26 +4713,26 @@ ab ab ab ab -ay -aU -be -bm -br -bA -bH -SF +ab +ab +ab +ab +ab +ab +VK +aM +cK +Uk +Uk +by +bM +az ab aF ab ab ab ab -ab -ab -ab -ab -ab -ab aa "} (21,1,1) = {" @@ -4378,26 +4855,26 @@ ab ab ab ab -ay -ay -Cy -ay -ay -ay -ay -ay +ab +ab +ab +ab +ab +ab +VK +Uy +cL +bK +bL +by +bN +az ab aF ab ab ab ab -ab -ab -ab -ab -ab -ab aa "} (22,1,1) = {" @@ -4514,32 +4991,32 @@ ab ab ab ab -ah -an -an -Hi -au -ax -cv -aI -aW -bh -hK -WK -JA -hK +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +Sq +tk +cM +Px +Px +ef +Px +Px ab aF ab ab ab ab -ab -ab -ab -ab -ab -ab aa "} (23,1,1) = {" @@ -4656,32 +5133,32 @@ ab ab ab ab -ag -am -am -at -at -aw -az -aY -aW -bi -hK -Fa -uE -hK +ab +ab +ab +ab +ab +ab +ab +ab +bY +cf +cf +cz +cC +cG +cN +Px +ae +VG +ae +Px ab aF ab ab ab ab -ab -ab -ab -ab -ab -ab aa "} (24,1,1) = {" @@ -4798,32 +5275,32 @@ ab ab ab ab -aj -at -ar -at -at -aD -az -aK -aX -bW -hK -Ma -hK -hK +ab +ab +ab +ab +ab +ab +ab +ab +bZ +cg +cg +ch +ch +ch +cO +Px +ae +DX +ae +Px ab aF ab ab ab ab -ab -ab -ab -ab -ab -ab aa "} (25,1,1) = {" @@ -4940,32 +5417,32 @@ ab ab ab ab -ai -at -aq -at -qx -aC -aE -aZ -bv -ZV -ty -Fn -bt -az +ab +ab +ab +ab +ab +ab +ab +ab +ca +ch +cr +ch +ch +cH +cP +Px +Gs +QZ +BD +Px ab aF ab ab ab ab -ab -ab -ab -ab -ab -ab aa "} (26,1,1) = {" @@ -5082,32 +5559,32 @@ ab ab ab ab -ak -ao -as -ao -ao -ao -VK -aM -bg -Uk -Uk -by -bM -az +ab +ab +ab +ab +ab +ab +ab +ab +cb +ch +cs +ch +ch +ch +cP +Px +Fb +Zn +vx +Px ab aF ab ab ab ab -ab -ab -ab -ab -ab -ab aa "} (27,1,1) = {" @@ -5230,26 +5707,26 @@ ab ab ab ab -VK -Uy -hW -bK -bL -by -bN -az +ab +ab +cc +ci +ct +ci +ci +ci +cQ +Px +IA +vG +bJ +Px ab aF ab ab ab ab -ab -ab -ab -ab -ab -ab aa "} (28,1,1) = {" @@ -5362,6 +5839,15 @@ ab ab ab ab +cu +ab +ab +ab +ab +ab +ab +ab +ab ab ab ab @@ -5372,13 +5858,10 @@ ab ab ab ab -Sq -tk -tk Px Px -ef -Px +di +GU Px ab aF @@ -5386,12 +5869,6 @@ ab ab ab ab -ab -ab -ab -ab -ab -ab aa "} (29,1,1) = {" @@ -5517,23 +5994,23 @@ ab ab ab ab -Px -ae -VG -ae -Px +ab +ab +ab +ab +ab +ab +ab +rH +rH +HP +ab ab aF ab ab ab ab -ab -ab -ab -ab -ab -ab aa "} (30,1,1) = {" @@ -5659,23 +6136,23 @@ ab ab ab ab -Px -ae -DX -ae -Px +ab +ab +ab +ab +ab +ab +ab +al +al +ab +ab ab aF ab ab ab ab -ab -ab -ab -ab -ab -ab aa "} (31,1,1) = {" @@ -5801,23 +6278,23 @@ ab ab ab ab -Px -Gs -QZ -BD -Px +ab +ab +ab +ab +ab +ab +ab +al +al +ab +ab ab aF ab ab ab ab -ab -ab -ab -ab -ab -ab aa "} (32,1,1) = {" @@ -5943,23 +6420,23 @@ ab ab ab ab -Px -Fb -Zn -vx -Px +ab +ab +ab +ab +ab +ab +al +al +al +ab +ab ab aF ab ab ab ab -ab -ab -ab -ab -ab -ab aa "} (33,1,1) = {" @@ -6085,23 +6562,23 @@ ab ab ab ab -Px -IA -vG -bJ -Px +ab +ab +ab +ab +ab +ab +al +al +al +ab +ab ab aF ab ab ab ab -ab -ab -ab -ab -ab -ab aa "} (34,1,1) = {" @@ -6227,23 +6704,23 @@ ab ab ab ab -Px -Px -di -GU -Px +ab +ab +ab +ab +ab +ab +al +al +ab +ab +ab ab aF ab ab ab ab -ab -ab -ab -ab -ab -ab aa "} (35,1,1) = {" @@ -6370,9 +6847,15 @@ ab ab ab ab -rH -rH -HP +ab +ab +ab +ab +ab +al +al +ab +ab ab ab aF @@ -6380,12 +6863,6 @@ ab ab ab ab -ab -ab -ab -ab -ab -ab aa "} (36,1,1) = {" @@ -6516,18 +6993,18 @@ al al al ab +al +al +al +ab +ab +ab ab aF ab ab ab ab -ab -ab -ab -ab -ab -ab aa "} (37,1,1) = {" @@ -6659,17 +7136,17 @@ af al ab af +al +al +ab +ab +ab +ab aG ab ab ab ab -ab -ab -ab -ab -ab -ab aa "} (38,1,1) = {" @@ -6801,17 +7278,17 @@ al al ab af +al +ab +ab +ab +ab +ab aH ab ab ab ab -ab -ab -ab -ab -ab -ab aa "} (39,1,1) = {" @@ -6943,17 +7420,17 @@ al ck al af +al +ab +ab +ab +ab +ab aH ab ab ab ab -ab -ab -ab -ab -ab -ab aa "} (40,1,1) = {" @@ -7085,17 +7562,17 @@ al cl al af +ab +ab +ab +ab +ab +ab aH ab ab ab ab -ab -ab -ab -ab -ab -ab aa "} (41,1,1) = {" @@ -7227,17 +7704,17 @@ al al ab af +ab +ab +ab +ab +ab +ab aH ab ab ab ab -ab -ab -ab -ab -ab -ab aa "} (42,1,1) = {" @@ -7369,17 +7846,17 @@ al al ab al +ab +ab +ab +ab +ab +ab aH ab ab ab ab -ab -ab -ab -ab -ab -ab aa "} (43,1,1) = {" @@ -7511,17 +7988,17 @@ al af ab al +ab +ab +ab +ab +ab +ab aH ab ab ab ab -ab -ab -ab -ab -ab -ab aa "} (44,1,1) = {" @@ -7653,17 +8130,17 @@ af al al al +ab +ab +ab +ab +ab +ab aH ab ab ab ab -ab -ab -ab -ab -ab -ab aa "} (45,1,1) = {" @@ -7795,17 +8272,17 @@ af al al al +ab +ab +ab +ab +ab +ab aJ ab ab ab ab -ab -ab -ab -ab -ab -ab aa "} (46,1,1) = {" @@ -7937,17 +8414,17 @@ al ab ab ab +ab +ab +ab +ab +ab +ab aF ab ab ab ab -ab -ab -ab -ab -ab -ab aa "} (47,1,1) = {" @@ -8079,17 +8556,17 @@ al ab ab ab +ab +ab +ab +ab +ab +ab aF ab ab ab ab -ab -ab -ab -ab -ab -ab aa "} (48,1,1) = {" @@ -8221,17 +8698,17 @@ ab ab ab ab +ab +ab +ab +ab +ab +ab aF ab ab ab ab -ab -ab -ab -ab -ab -ab aa "} (49,1,1) = {" @@ -8363,17 +8840,17 @@ ab ab ab ab +ab +ab +ab +ab +ab +ab aF ab ab ab ab -ab -ab -ab -ab -ab -ab aa "} (50,1,1) = {" @@ -8505,17 +8982,17 @@ af ab ab ab +ab +ab +ab +ab +ab +ab aF ab ab ab ab -ab -ab -ab -ab -ab -ab aa "} (51,1,1) = {" @@ -8647,17 +9124,17 @@ ab ab ab ab +ab +ab +ab +ab +ab +ab aF ab ab ab ab -ab -ab -ab -ab -ab -ab aa "} (52,1,1) = {" @@ -8789,17 +9266,17 @@ af ab ab ab +ab +ab +ab +ab +ab +ab aF ab ab ab ab -ab -ab -ab -ab -ab -ab aa "} (53,1,1) = {" @@ -8931,17 +9408,17 @@ ab ab ab ab +ab +ab +ab +ab +ab +ab aF ab ab ab ab -ab -ab -ab -ab -ab -ab aa "} (54,1,1) = {" @@ -9073,17 +9550,17 @@ ab ab ab ab +ab +ab +ab +ab +ab +ab aF ab ab ab ab -ab -ab -ab -ab -ab -ab aa "} (55,1,1) = {" @@ -9215,17 +9692,17 @@ ab ab ab ab +ab +ab +ab +ab +ab +ab aF ab ab ab ab -ab -ab -ab -ab -ab -ab aa "} (56,1,1) = {" @@ -9357,17 +9834,17 @@ ab af ab ab +ab +ab +ab +ab +ab +ab aF ab ab ab ab -ab -ab -ab -ab -ab -ab aa "} (57,1,1) = {" @@ -9499,17 +9976,17 @@ af ab ab ab +ab +ab +ab +ab +ab +ab aF ab ab ab ab -ab -ab -ab -ab -ab -ab aa "} (58,1,1) = {" @@ -9641,17 +10118,17 @@ ab ab ab ab +ab +ab +ab +ab +ab +ab aF ab ab ab ab -ab -ab -ab -ab -ab -ab aa "} (59,1,1) = {" @@ -9783,17 +10260,17 @@ ab ab ab ab +ab +ab +ab +ab +ab +ab aF ab ab ab ab -ab -ab -ab -ab -ab -ab aa "} (60,1,1) = {" @@ -9925,17 +10402,17 @@ ab af ab ab +ab +ab +ab +ab +ab +ab aF ab ab ab ab -ab -ab -ab -ab -ab -ab aa "} (61,1,1) = {" @@ -10067,17 +10544,17 @@ ab ab ab ab +ab +ab +ab +ab +ab +ab aF ab ab ab ab -ab -ab -ab -ab -ab -ab aa "} (62,1,1) = {" @@ -10209,17 +10686,17 @@ af ab ab ab +ab +ab +ab +ab +ab +ab aF ab ab ab ab -ab -ab -ab -ab -ab -ab aa "} (63,1,1) = {" @@ -10351,17 +10828,17 @@ ab ab ab ab +ab +ab +ab +ab +ab +ab aF ab ab ab ab -ab -ab -ab -ab -ab -ab aa "} (64,1,1) = {" @@ -10493,17 +10970,17 @@ af ab ab ab +ab +ab +ab +ab +ab +ab aF ab ab ab ab -ab -ab -ab -ab -ab -ab aa "} (65,1,1) = {" @@ -10635,17 +11112,17 @@ af ab ab ab +ab +ab +ab +ab +ab +ab aF ab ab ab ab -ab -ab -ab -ab -ab -ab aa "} (66,1,1) = {" @@ -10777,17 +11254,17 @@ ab ab ab ab +ab +ab +ab +ab +ab +ab aF ab ab ab ab -ab -ab -ab -ab -ab -ab aa "} (67,1,1) = {" @@ -10919,17 +11396,17 @@ af ab ab ab +ab +ab +ab +ab +ab +ab aF ab ab ab ab -ab -ab -ab -ab -ab -ab aa "} (68,1,1) = {" @@ -11061,17 +11538,17 @@ af af ab ab +ab +ab +ab +ab +ab +ab aF ab ab ab ab -ab -ab -ab -ab -ab -ab aa "} (69,1,1) = {" @@ -11203,17 +11680,17 @@ ab af ab ab +ab +ab +ab +ab +ab +ab aF ab ab ab ab -ab -ab -ab -ab -ab -ab aa "} (70,1,1) = {" @@ -11345,17 +11822,17 @@ ab af ab ab +ab +ab +ab +ab +ab +ab aF ab ab ab ab -ab -ab -ab -ab -ab -ab aa "} (71,1,1) = {" @@ -11487,15 +11964,15 @@ ab af ab ab +ab +ab +ab +ab +ab +ab aL aN aN -aN -aN -aN -aN -aN -aN aA aO aa diff --git a/maps/tether/tether_areas.dm b/maps/tether/tether_areas.dm index 331cc3b7a6a..73eb496abd7 100644 --- a/maps/tether/tether_areas.dm +++ b/maps/tether/tether_areas.dm @@ -238,6 +238,9 @@ name = "\improper Vacant Prep Area" /area/vacant/vacant_site/gateway/lower name = "\improper Lower Vacant Prep Area" +//TFF 5/4/20 - Mining Ops move TODO Change all Vacant areas to construction_site per vermin event location announcement. +/area/construction/vacant_mining_ops + name = "\improper Vacant Mining Operations" // /area/tether/surfacebase/east_stairs_three //This is just part of an upper hallway @@ -252,32 +255,38 @@ /area/tether/surfacebase/emergency_storage/atrium name = "\improper Atrium Emergency Storage" -// Main mining area -/area/tether/surfacebase/mining_main +//TFF 7/4/20 - New areas for Surface Cargo bits as well as the Mining Outpost. Some former ones deleted. Others renamed. +// Surface Cargo/Mining EVA/Warehouse/Mining Outpost adadditions +/area/tether/surfacebase/cargo + name = "Surface Cargo Foyer" + icon = 'icons/turf/areas.dmi' + icon_state = "quartstorage" +/area/tether/surfacebase/cargo/mining //TODO: Change to medical airlock access + name = "\improper Mining Equipment Storage" icon_state = "outpost_mine_main" -/area/tether/surfacebase/mining_main/airlock +/area/tether/surfacebase/cargo/mining/airlock //TODO: Change to medical airlock name = "\improper Mining Airlock" -/area/tether/surfacebase/mining_main/storage - name = "\improper Mining Gear Storage" -/area/tether/surfacebase/mining_main/uxstorage - name = "\improper Mining Secondary Storage" -/area/tether/surfacebase/mining_main/ore - name = "\improper Mining Ore Storage" -/area/tether/surfacebase/mining_main/eva - name = "\improper Mining EVA" -/area/tether/surfacebase/mining_main/break_room - name = "\improper Mining Crew Area" -/area/tether/surfacebase/mining_main/refinery - name = "\improper Mining Refinery" -/area/tether/surfacebase/mining_main/external - name = "\improper Mining Refinery" -/area/tether/surfacebase/mining_main/bathroom - name = "\improper Mining Bathroom" -/area/tether/surfacebase/mining_main/lobby - name = "\improper Mining Lobby" -/area/tether/surfacebase/mining_main/surfacecargo +/area/tether/surfacebase/cargo/warehouse + name = "\improper Surface Cargo Warehouse" +/area/tether/surfacebase/cargo/office name = "\improper Surface Cargo Office" lightswitch = 0 +/area/tether/surfacebase/mining_main + icon_state = "outpost_mine_main" +/area/tether/surfacebase/mining_main/eva + name = "\improper Mining EVA" +/area/tether/surfacebase/mining_main/external //TODO: repath for medical move + name = "\improper Mining External" +/area/tether/surfacebase/mining_main/break_room + name = "\improper Mining Crew Area" +/area/tether/surfacebase/mining_main/bathroom + name = "\improper Mining Bathroom" +/area/outpost/mining_main/hangar + name = "\improper Mining Outpost Shuttle Hangar" +/area/outpost/mining_main/secondary_gear_storage + name = "\improper Mining Outpost Gear Storage" +/area/outpost/mining_main/drill_equipment + name = "\improper Mining Equipment Storage" // Mining Underdark /area/mine/unexplored/underdark @@ -1070,12 +1079,20 @@ /area/shuttle/medivac/engines name = "\improper Medivac Engines" -// Belter Dock - +//TFF 5/4/20 - Mining Ops move +// Asteroid Mining belter and Mining Outpost shuttles and refinery/gear areas /area/quartermaster/belterdock name = "\improper Cargo Belter Access" icon_state = "mining" - +/area/quartermaster/belterdock/gear + name = "\improper Mining Gear Storage" +/area/quartermaster/belterdock/refinery + name = "\improper Mining Refinery" +/area/quartermaster/belterdock/surface_mining_outpost_shuttle_hangar + name = "\improper Mining Outpost Shuttle - Station" +area/shuttle/mining_outpost/shuttle + name = "\improper Mining Outpost Shuttle" + icon_state = "shuttle2" // Elevator area // /area/tether/elevator diff --git a/maps/tether/tether_defines.dm b/maps/tether/tether_defines.dm index 33473fda162..c3ab0507853 100644 --- a/maps/tether/tether_defines.dm +++ b/maps/tether/tether_defines.dm @@ -130,11 +130,12 @@ /area/rnd/miscellaneous_lab ) +//TFF 5/4/20 - Mining Ops move, airlock path change unit_test_exempt_from_atmos = list( /area/engineering/atmos_intake, // Outside, /area/rnd/external, // Outside, /area/tether/surfacebase/mining_main/external, // Outside, - /area/tether/surfacebase/mining_main/airlock, // Its an airlock, + /area/tether/surfacebase/cargo/mining/airlock, // It's an airlock, TODO: repath for later Med EVA on Surface /area/tether/surfacebase/emergency_storage/rnd, /area/tether/surfacebase/emergency_storage/atrium) @@ -177,6 +178,10 @@ Z_LEVEL_ROGUEMINE_3, Z_LEVEL_ROGUEMINE_4) +//TFF 16/4/20 - mining outpost shuttle defines + mining_station_z = list(Z_LEVEL_SPACE_HIGH) + mining_outpost_z = list(Z_LEVEL_SURFACE_MINE) + lateload_single_pick = null //Nothing right now. planet_datums_to_make = list(/datum/planet/virgo3b) diff --git a/maps/tether/tether_shuttle_defs.dm b/maps/tether/tether_shuttle_defs.dm index b98d2e4adb3..77e198fb53f 100644 --- a/maps/tether/tether_shuttle_defs.dm +++ b/maps/tether/tether_shuttle_defs.dm @@ -200,3 +200,15 @@ /datum/shuttle/autodock/ferry/belter/New() move_time = move_time + rand(-5 SECONDS, 5 SECONDS) ..() + +////////////////////////////////////////////////////////////// +//TFF 12/4/20 Surface Mining Outpost Shuttle + +/datum/shuttle/autodock/ferry/surface_mining_outpost + name = "Mining Outpost" + location = FERRY_LOCATION_STATION + warmup_time = 5 + shuttle_area = /area/shuttle/mining_outpost + landmark_station = "mining_station" + landmark_offsite = "mining_outpost" + docking_controller_tag = "mining_docking" diff --git a/maps/tether/tether_shuttles.dm b/maps/tether/tether_shuttles.dm index 3687ba61bb6..02373761caf 100644 --- a/maps/tether/tether_shuttles.dm +++ b/maps/tether/tether_shuttles.dm @@ -32,6 +32,11 @@ shuttle_tag = "Trade" req_one_access = list(access_trader) +//TFF 12/4/20 - Add console for Mining Outpost Shuttle +/obj/machinery/computer/shuttle_control/surface_mining_outpost + name = "surface mining outpost shuttle control console" + shuttle_tag = "Mining Outpost" + req_one_access = list(access_mining) // // "Tram" Emergency Shuttler // Becuase the tram only has its own doors and no corresponding station doors, a docking controller is overkill. diff --git a/maps/~map_system/maps.dm b/maps/~map_system/maps.dm index 8a1f360c719..32f9a742cb7 100644 --- a/maps/~map_system/maps.dm +++ b/maps/~map_system/maps.dm @@ -62,11 +62,13 @@ var/list/all_maps = list() var/ai_shell_restricted = FALSE //VOREStation Addition - are there z-levels restricted? var/ai_shell_allowed_levels = list() //VOREStation Addition - which z-levels ARE we allowed to visit? - //VOREStation Addition Start - belter stuff + //VOREStation Addition Start - belter stuff TFF 16/4/20 - Mining Outpost Shuttle var/list/belter_docked_z = list() var/list/belter_transit_z = list() var/list/belter_belt_z = list() - //VOREStation Addition End - belter stuff + var/list/mining_station_z = list() + var/list/mining_outpost_z = list() + //VOREStation Addition End var/station_name = "BAD Station" var/station_short = "Baddy"