diff --git a/code/game/machinery/suit_storage_unit.dm b/code/game/machinery/suit_storage_unit.dm index a8c9492e23..f2d87edb0d 100644 --- a/code/game/machinery/suit_storage_unit.dm +++ b/code/game/machinery/suit_storage_unit.dm @@ -586,7 +586,7 @@ var/electrified = 0 //Departments that the cycler can paint suits to look like. - var/list/departments = list("Engineering","Mining","Medical","Security","Atmos","HAZMAT","Construction","Biohazard","Emergency Medical Response","Crowd Control") + var/list/departments = list("Engineering","Mining","Medical","Security","Atmos","HAZMAT","Construction","Biohazard","Emergency Medical Response","Crowd Control","Exploration","Pilot Blue","Pilot") //VORESTATION EDIT //Species that the suits can be configured to fit. var/list/species = list(SPECIES_HUMAN,SPECIES_SKRELL,SPECIES_UNATHI,SPECIES_TAJ, SPECIES_TESHARI, "Nevrean", "Akula", "Sergal", "Flatland Zorren", "Highlander Zorren", "Vulpkanin", "Promethean", "Xenomorph Hybrid", "Xenochimera","Vasilissan", "Rapala") //VORESTATION EDIT diff --git a/code/game/objects/items/devices/translocator_vr.dm b/code/game/objects/items/devices/translocator_vr.dm new file mode 100644 index 0000000000..71f788f888 --- /dev/null +++ b/code/game/objects/items/devices/translocator_vr.dm @@ -0,0 +1,448 @@ +//The perfect adminboos device? +/obj/item/device/perfect_tele + name = "personal translocator" + desc = "Seems absurd, doesn't it? Yet, here we are. Generally considered dangerous contraband unless the user has permission from Central Command." + icon = 'icons/obj/device_alt.dmi' + icon_state = "hand_tele" + w_class = ITEMSIZE_SMALL + origin_tech = list(TECH_MAGNET = 5, TECH_BLUESPACE = 5, TECH_ILLEGAL = 7) + + var/cell_type = /obj/item/weapon/cell/device/weapon + var/obj/item/weapon/cell/power_source + var/charge_cost = 800 // cell/device/weapon has 2400 + var/battery_lock = 0 //If set, weapon cannot switch batteries + + var/longrange = 0 //Can teleport very long distances + var/abductor = 0 //Can be used on teleportation blocking turfs + + var/list/beacons = list() + var/ready = 1 + var/beacons_left = 3 + var/failure_chance = 5 //Percent + var/obj/item/device/perfect_tele_beacon/destination + var/datum/effect/effect/system/spark_spread/spk + var/list/warned_users = list() + var/list/logged_events = list() + +/obj/item/device/perfect_tele/New() + ..() + flags |= NOBLUDGEON + if(cell_type) + power_source = new cell_type(src) + else + power_source = new /obj/item/weapon/cell/device(src) + spk = new(src) + spk.set_up(5, 0, src) + spk.attach(src) + +/obj/item/device/perfect_tele/Destroy() + // Must clear the beacon's backpointer or we won't GC. Someday maybe do something nicer even. + for(var/obj/item/device/perfect_tele_beacon/B in beacons) + B.tele_hand = null + beacons.Cut() + QDEL_NULL(power_source) + QDEL_NULL(spk) + return ..() + +/obj/item/device/perfect_tele/update_icon() + if(!power_source) + icon_state = "[initial(icon_state)]_o" + else if(ready && (power_source.check_charge(charge_cost) || power_source.fully_charged())) + icon_state = "[initial(icon_state)]" + else + icon_state = "[initial(icon_state)]_w" + + ..() + +/obj/item/device/perfect_tele/attack_hand(mob/user) + if(user.get_inactive_hand() == src) + unload_ammo(user) + else + return ..() + +/obj/item/device/perfect_tele/proc/unload_ammo(mob/user) + if(battery_lock) + to_chat(user,"[src] does not have a battery port.") + return + if(user.get_inactive_hand() == src && power_source) + to_chat(user,"You eject \the [power_source] from \the [src].") + user.put_in_hands(power_source) + power_source = null + update_icon() + else + to_chat(user,"[src] does not have a power cell.") + +/obj/item/device/perfect_tele/attack_self(mob/user) + if(!(user.ckey in warned_users)) + warned_users |= user.ckey + alert(user,"This device can be easily used to break ERP preferences due to the nature of teleporting \ + and tele-vore. Make sure you carefully examine someone's OOC prefs before teleporting them if you are \ + going to use this device for ERP purposes. This device records all warnings given and teleport events for \ + admin review in case of pref-breaking, so just don't do it.","OOC WARNING") + + var/choice = alert(user,"What do you want to do?","[src]","Create Beacon","Cancel","Target Beacon") + switch(choice) + if("Create Beacon") + if(beacons_left <= 0) + alert("The translocator can't support any more beacons!","Error") + return + + var/new_name = html_encode(input(user,"New beacon's name (2-20 char):","[src]") as text|null) + + if(length(new_name) > 20 || length(new_name) < 2) + alert("Entered name length invalid (must be longer than 2, no more than than 20).","Error") + return + if(new_name in beacons) + alert("No duplicate names, please. '[new_name]' exists already.","Error") + return + + var/obj/item/device/perfect_tele_beacon/nb = new(get_turf(src)) + nb.tele_name = new_name + nb.tele_hand = src + nb.creator = user.ckey + beacons[new_name] = nb + beacons_left-- + if(isliving(user)) + var/mob/living/L = user + L.put_in_any_hand_if_possible(nb) + + if("Target Beacon") + if(!beacons.len) + to_chat(user,"\The [src] doesn't have any beacons!") + else + var/target = input("Which beacon do you target?","[src]") in beacons|null + if(target && (target in beacons)) + destination = beacons[target] + to_chat(user,"Destination set to '[target]'.") + else + return + +/obj/item/device/perfect_tele/attackby(obj/W, mob/user) + if(istype(W,cell_type) && !power_source) + power_source = W + power_source.update_icon() //Why doesn't a cell do this already? :| + user.unEquip(power_source) + power_source.forceMove(src) + to_chat(user,"You insert \the [power_source] into \the [src].") + update_icon() + + else if(istype(W,/obj/item/device/perfect_tele_beacon)) + var/obj/item/device/perfect_tele_beacon/tb = W + if(tb.tele_name in beacons) + to_chat(user,"You re-insert \the [tb] into \the [src].") + beacons -= tb.tele_name + user.unEquip(tb) + qdel(tb) + beacons_left++ + else + to_chat(user,"\The [tb] doesn't belong to \the [src].") + return + else + ..() + +/obj/item/device/perfect_tele/proc/teleport_checks(mob/living/target,mob/living/user) + //Uhhuh, need that power source + if(!power_source) + to_chat(user,"\The [src] has no power source!") + return FALSE + + //Check for charge + if((!power_source.check_charge(charge_cost)) && (!power_source.fully_charged())) + to_chat(user,"\The [src] does not have enough power left!") + return FALSE + + //Only mob/living need apply. + if(!istype(user) || !istype(target)) + return FALSE + + //No, you can't teleport buckled people. + if(target.buckled) + to_chat(user,"The target appears to be attached to something...") + return FALSE + + //No, you can't teleport if it's not ready yet. + if(!ready) + to_chat(user,"\The [src] is still recharging!") + return FALSE + + //No, you can't teleport if there's no destination. + if(!destination) + to_chat(user,"\The [src] doesn't have a current valid destination set!") + return FALSE + + //No, you can't teleport if there's a jammer. + if(is_jammed(src) || is_jammed(destination)) + to_chat(user,"\The [src] refuses to teleport you, due to strong interference!") + return FALSE + + //No, you can't port to or from away missions. Stupidly complicated check. + var/turf/uT = get_turf(user) + var/turf/dT = get_turf(destination) + var/list/dat = list() + dat["z_level_detection"] = using_map.get_map_levels(uT.z) + + if(!uT || !dT) + return FALSE + + if(!longrange) + if( (uT.z != dT.z) && (!(dT.z in dat["z_level_detection"])) ) + to_chat(user,"\The [src] can't teleport you that far!") + return FALSE + + if(!abductor) + if(uT.block_tele || dT.block_tele) + to_chat(user,"Something is interfering with \the [src]!") + return FALSE + + //Seems okay to me! + return TRUE + +/obj/item/device/perfect_tele/afterattack(mob/living/target, mob/living/user, proximity) + //No, you can't teleport people from over there. + if(!proximity) + return + + if(!teleport_checks(target,user)) + return //The checks proc can send them a message if it wants. + + //Bzzt. + ready = 0 + power_source.use(charge_cost) + + //Failure chance + if(prob(failure_chance) && beacons.len >= 2) + var/list/wrong_choices = beacons - destination.tele_name + var/wrong_name = pick(wrong_choices) + destination = beacons[wrong_name] + to_chat(user,"\The [src] malfunctions and sends you to the wrong beacon!") + + //Destination beacon vore checking + var/turf/dT = get_turf(destination) + var/atom/real_dest = dT + + var/atom/real_loc = destination.loc + if(isbelly(real_loc)) + real_dest = real_loc + if(isliving(real_loc)) + var/mob/living/L = real_loc + if(L.vore_selected) + real_dest = L.vore_selected + else if(L.vore_organs.len) + real_dest = pick(L.vore_organs) + + //Confirm televore + var/televored = FALSE + if(isbelly(real_dest)) + var/obj/belly/B = real_dest + if(!target.can_be_drop_prey && B.owner != user) + to_chat(target,"\The [src] narrowly avoids teleporting you right into \a [lowertext(real_dest.name)]!") + real_dest = dT //Nevermind! + else + televored = TRUE + to_chat(target,"\The [src] teleports you right into \a [lowertext(real_dest.name)]!") + + //Phase-out effect + phase_out(target,get_turf(target)) + + //Move them + target.forceMove(real_dest) + + //Phase-in effect + phase_in(target,get_turf(target)) + + //And any friends! + for(var/obj/item/weapon/grab/G in target.contents) + if(G.affecting && (G.state >= GRAB_AGGRESSIVE)) + + //Phase-out effect for grabbed person + phase_out(G.affecting,get_turf(G.affecting)) + + //Move them, and televore if necessary + G.affecting.forceMove(real_dest) + if(televored) + to_chat(target,"\The [src] teleports you right into \a [lowertext(real_dest.name)]!") + + //Phase-in effect for grabbed person + phase_in(G.affecting,get_turf(G.affecting)) + + update_icon() + spawn(30 SECONDS) + ready = 1 + update_icon() + + logged_events["[world.time]"] = "[user] teleported [target] to [real_dest] [televored ? "(Belly: [lowertext(real_dest.name)])" : null]" + +/obj/item/device/perfect_tele/proc/phase_out(var/mob/M,var/turf/T) + + if(!M || !T) + return + + spk.set_up(5, 0, M) + spk.attach(M) + playsound(T, "sparks", 50, 1) + anim(T,M,'icons/mob/mob.dmi',,"phaseout",,M.dir) + +/obj/item/device/perfect_tele/proc/phase_in(var/mob/M,var/turf/T) + + if(!M || !T) + return + + spk.start() + playsound(T, 'sound/effects/phasein.ogg', 25, 1) + playsound(T, 'sound/effects/sparks2.ogg', 50, 1) + anim(T,M,'icons/mob/mob.dmi',,"phasein",,M.dir) + spk.set_up(5, 0, src) + spk.attach(src) + +/obj/item/device/perfect_tele_beacon + name = "translocator beacon" + desc = "That's unusual." + icon = 'icons/obj/device_alt.dmi' + icon_state = "motion2" + w_class = ITEMSIZE_TINY + + var/tele_name + var/obj/item/device/perfect_tele/tele_hand + var/creator + var/warned_users = list() + var/tele_network = null + +/obj/item/device/perfect_tele_beacon/New() + ..() + flags |= NOBLUDGEON + +/obj/item/device/perfect_tele_beacon/Destroy() + tele_name = null + tele_hand = null + return ..() + +/obj/item/device/perfect_tele_beacon/attack_hand(mob/user) + if((user.ckey != creator) && !(user.ckey in warned_users)) + warned_users |= user.ckey + var/choice = alert(user,"This device is a translocator beacon. Having it on your person may mean that anyone \ + who teleports to this beacon gets teleported into your selected vore-belly. If you are prey-only \ + or don't wish to potentially have a random person teleported into you, it's suggested that you \ + not carry this around.","OOC WARNING","Take It","Leave It") + if(choice == "Leave It") + return + + ..() + +/obj/item/device/perfect_tele_beacon/stationary + name = "stationary translocator beacon" + icon = 'icons/obj/radio_vr.dmi' + icon_state = "floor_beacon" + w_class = ITEMSIZE_HUGE + anchored = 1 + +GLOBAL_LIST_BOILERPLATE(premade_tele_beacons, /obj/item/device/perfect_tele_beacon/stationary) + +/obj/item/device/perfect_tele_beacon/attack_self(mob/user) + if(!isliving(user)) + return + var/mob/living/L = user + var/confirm = alert(user, "You COULD eat the beacon...", "Eat beacon?", "Eat it!", "No, thanks.") + if(confirm == "Eat it!") + var/obj/belly/bellychoice = input("Which belly?","Select A Belly") as null|anything in L.vore_organs + if(bellychoice) + user.visible_message("[user] is trying to stuff \the [src] into [user.gender == MALE ? "his" : user.gender == FEMALE ? "her" : "their"] [bellychoice]!","You begin putting \the [src] into your [bellychoice]!") + if(do_after(user,5 SECONDS,src)) + user.unEquip(src) + forceMove(bellychoice) + user.visible_message("[user] eats a telebeacon!","You eat the the beacon!") + +// A single-beacon variant for use by miners (or whatever) +/obj/item/device/perfect_tele/one_beacon + name = "mini-translocator" + desc = "A more limited translocator with a single beacon, useful for some things, like setting the mining department on fire accidentally. Legal for use in the pursuit of NanoTrasen interests, namely mining and exploration." + icon_state = "minitrans" + beacons_left = 1 //Just one + cell_type = /obj/item/weapon/cell/device + origin_tech = list(TECH_MAGNET = 5, TECH_BLUESPACE = 5) + +/* +/obj/item/device/perfect_tele/one_beacon/teleport_checks(mob/living/target,mob/living/user) + var/turf/T = get_turf(destination) + if(T && user.z != T.z) + to_chat(user,"\The [src] is too far away from the beacon. Try getting closer first!") + return FALSE + return ..() +*/ + +/obj/item/device/perfect_tele/alien + name = "alien translocator" + desc = "This strange device allows one to teleport people and objects across large distances." + + cell_type = /obj/item/weapon/cell/device/weapon/recharge/alien + charge_cost = 400 + beacons_left = 6 + failure_chance = 0 //Percent + longrange = 1 + abductor = 1 + +/obj/item/device/perfect_tele/frontier + icon_state = "minitrans" + beacons_left = 1 //Just one + battery_lock = 1 + unacidable = 1 + failure_chance = 0 //Percent + var/loc_network = null + var/phase_power = 75 + var/recharging = 0 + +/obj/item/device/perfect_tele/frontier/unload_ammo(var/mob/user) + if(recharging) + return + recharging = 1 + update_icon() + user.visible_message("[user] opens \the [src] and starts pumping the handle.", \ + "You open \the [src] and start pumping the handle.") + while(recharging) + if(!do_after(user, 10, src)) + break + playsound(get_turf(src),'sound/items/change_drill.ogg',25,1) + if(power_source.give(phase_power) < phase_power) + break + + recharging = 0 + update_icon() + +/obj/item/device/perfect_tele/frontier/update_icon() + if(recharging) + icon_state = "[initial(icon_state)]_o" + update_held_icon() + return + ..() + +/obj/item/device/perfect_tele/frontier/staff + name = "centcom translocator" + desc = "Similar to translocator technology, however, most of its destinations are hardcoded." + loc_network = "centcom" + longrange = 1 + +/obj/item/device/perfect_tele/frontier/staff/New() + ..() + for(var/obj/item/device/perfect_tele_beacon/stationary/nb in premade_tele_beacons) + if(nb.tele_network == loc_network) + beacons[nb.tele_name] = nb + +/obj/item/device/perfect_tele/frontier/unknown + name = "modified translocator" + desc = "This crank-charged translocator has only one beacon, but it already has a destination preprogrammed into it." + longrange = 1 + abductor = 1 + +/obj/item/device/perfect_tele/frontier/unknown/New() + ..() + for(var/obj/item/device/perfect_tele_beacon/stationary/nb in premade_tele_beacons) + if(nb.tele_network == loc_network) + beacons[nb.tele_name] = nb + +/obj/item/device/perfect_tele/frontier/unknown/one + loc_network = "unkone" +/obj/item/device/perfect_tele/frontier/unknown/two + loc_network = "unktwo" +/obj/item/device/perfect_tele/frontier/unknown/three + loc_network = "unkthree" +/obj/item/device/perfect_tele/frontier/unknown/four + loc_network = "unkfour" diff --git a/code/game/objects/structures/crates_lockers/closets/secure/personal.dm b/code/game/objects/structures/crates_lockers/closets/secure/personal.dm index 454fab779d..d5f5da1c40 100644 --- a/code/game/objects/structures/crates_lockers/closets/secure/personal.dm +++ b/code/game/objects/structures/crates_lockers/closets/secure/personal.dm @@ -4,14 +4,18 @@ req_access = list(access_all_personal_lockers) var/registered_name = null + /* //VOREStation Removal starts_with = list( /obj/item/device/radio/headset) + */ /obj/structure/closet/secure_closet/personal/Initialize() + /* //VOREStation Removal if(prob(50)) starts_with += /obj/item/weapon/storage/backpack else starts_with += /obj/item/weapon/storage/backpack/satchel/norm + */ return ..() /obj/structure/closet/secure_closet/personal/patient diff --git a/code/modules/vore/fluffstuff/custom_items_vr.dm b/code/modules/vore/fluffstuff/custom_items_vr.dm index 50c5a2cf78..e717262689 100644 --- a/code/modules/vore/fluffstuff/custom_items_vr.dm +++ b/code/modules/vore/fluffstuff/custom_items_vr.dm @@ -1247,394 +1247,6 @@ slot_flags = SLOT_TIE slot = ACCESSORY_SLOT_DECOR -//The perfect adminboos device? -/obj/item/device/perfect_tele - name = "personal translocator" - desc = "Seems absurd, doesn't it? Yet, here we are. Generally considered dangerous contraband unless the user has permission from Central Command." - icon = 'icons/obj/device_alt.dmi' - icon_state = "hand_tele" - w_class = ITEMSIZE_SMALL - origin_tech = list(TECH_MAGNET = 5, TECH_BLUESPACE = 5, TECH_ILLEGAL = 7) - - var/cell_type = /obj/item/weapon/cell/device/weapon - var/obj/item/weapon/cell/power_source - var/charge_cost = 800 // cell/device/weapon has 2400 - - var/list/beacons = list() - var/ready = 1 - var/beacons_left = 3 - var/failure_chance = 5 //Percent - var/obj/item/device/perfect_tele_beacon/destination - var/datum/effect/effect/system/spark_spread/spk - var/list/warned_users = list() - var/list/logged_events = list() - -/obj/item/device/perfect_tele/New() - ..() - flags |= NOBLUDGEON - if(cell_type) - power_source = new cell_type(src) - else - power_source = new /obj/item/weapon/cell/device(src) - spk = new(src) - spk.set_up(5, 0, src) - spk.attach(src) - -/obj/item/device/perfect_tele/Destroy() - // Must clear the beacon's backpointer or we won't GC. Someday maybe do something nicer even. - for(var/obj/item/device/perfect_tele_beacon/B in beacons) - B.tele_hand = null - beacons.Cut() - QDEL_NULL(power_source) - QDEL_NULL(spk) - return ..() - -/obj/item/device/perfect_tele/update_icon() - if(!power_source) - icon_state = "[initial(icon_state)]_o" - else if(ready && (power_source.check_charge(charge_cost) || power_source.fully_charged())) - icon_state = "[initial(icon_state)]" - else - icon_state = "[initial(icon_state)]_w" - - ..() - -/obj/item/device/perfect_tele/attack_hand(mob/user) - if(user.get_inactive_hand() == src && power_source) - to_chat(user,"You eject \the [power_source] from \the [src].") - user.put_in_hands(power_source) - power_source = null - update_icon() - else - return ..() - -/obj/item/device/perfect_tele/attack_self(mob/user) - if(!(user.ckey in warned_users)) - warned_users |= user.ckey - alert(user,"This device can be easily used to break ERP preferences due to the nature of teleporting \ - and tele-vore. Make sure you carefully examine someone's OOC prefs before teleporting them if you are \ - going to use this device for ERP purposes. This device records all warnings given and teleport events for \ - admin review in case of pref-breaking, so just don't do it.","OOC WARNING") - - var/choice = alert(user,"What do you want to do?","[src]","Create Beacon","Cancel","Target Beacon") - switch(choice) - if("Create Beacon") - if(beacons_left <= 0) - alert("The translocator can't support any more beacons!","Error") - return - - var/new_name = html_encode(input(user,"New beacon's name (2-20 char):","[src]") as text|null) - - if(length(new_name) > 20 || length(new_name) < 2) - alert("Entered name length invalid (must be longer than 2, no more than than 20).","Error") - return - if(new_name in beacons) - alert("No duplicate names, please. '[new_name]' exists already.","Error") - return - - var/obj/item/device/perfect_tele_beacon/nb = new(get_turf(src)) - nb.tele_name = new_name - nb.tele_hand = src - nb.creator = user.ckey - beacons[new_name] = nb - beacons_left-- - if(isliving(user)) - var/mob/living/L = user - L.put_in_any_hand_if_possible(nb) - - if("Target Beacon") - if(!beacons.len) - to_chat(user,"\The [src] doesn't have any beacons!") - else - var/target = input("Which beacon do you target?","[src]") in beacons|null - if(target && (target in beacons)) - destination = beacons[target] - to_chat(user,"Destination set to '[target]'.") - else - return - -/obj/item/device/perfect_tele/attackby(obj/W, mob/user) - if(istype(W,cell_type) && !power_source) - power_source = W - power_source.update_icon() //Why doesn't a cell do this already? :| - user.unEquip(power_source) - power_source.forceMove(src) - to_chat(user,"You insert \the [power_source] into \the [src].") - update_icon() - - else if(istype(W,/obj/item/device/perfect_tele_beacon)) - var/obj/item/device/perfect_tele_beacon/tb = W - if(tb.tele_name in beacons) - to_chat(user,"You re-insert \the [tb] into \the [src].") - beacons -= tb.tele_name - user.unEquip(tb) - qdel(tb) - beacons_left++ - else - to_chat(user,"\The [tb] doesn't belong to \the [src].") - return - else - ..() - -/obj/item/device/perfect_tele/proc/teleport_checks(mob/living/target,mob/living/user) - //Uhhuh, need that power source - if(!power_source) - to_chat(user,"\The [src] has no power source!") - return FALSE - - //Check for charge - if((!power_source.check_charge(charge_cost)) && (!power_source.fully_charged())) - to_chat(user,"\The [src] does not have enough power left!") - return FALSE - - //Only mob/living need apply. - if(!istype(user) || !istype(target)) - return FALSE - - //No, you can't teleport buckled people. - if(target.buckled) - to_chat(user,"The target appears to be attached to something...") - return FALSE - - //No, you can't teleport if it's not ready yet. - if(!ready) - to_chat(user,"\The [src] is still recharging!") - return FALSE - - //No, you can't teleport if there's no destination. - if(!destination) - to_chat(user,"\The [src] doesn't have a current valid destination set!") - return FALSE - - //No, you can't teleport if there's a jammer. - if(is_jammed(src) || is_jammed(destination)) - to_chat(user,"\The [src] refuses to teleport you, due to strong interference!") - return FALSE - - //No, you can't port to or from away missions. Stupidly complicated check. - var/turf/uT = get_turf(user) - var/turf/dT = get_turf(destination) - var/list/dat = list() - dat["z_level_detection"] = using_map.get_map_levels(uT.z) - - if(!uT || !dT) - return FALSE - - if( (uT.z != dT.z) && (!(dT.z in dat["z_level_detection"])) ) - to_chat(user,"\The [src] can't teleport you that far!") - return FALSE - - if(uT.block_tele || dT.block_tele) - to_chat(user,"Something is interfering with \the [src]!") - return FALSE - - //Seems okay to me! - return TRUE - -/obj/item/device/perfect_tele/afterattack(mob/living/target, mob/living/user, proximity) - //No, you can't teleport people from over there. - if(!proximity) - return - - if(!teleport_checks(target,user)) - return //The checks proc can send them a message if it wants. - - //Bzzt. - ready = 0 - power_source.use(charge_cost) - - //Failure chance - if(prob(failure_chance) && beacons.len >= 2) - var/list/wrong_choices = beacons - destination.tele_name - var/wrong_name = pick(wrong_choices) - destination = beacons[wrong_name] - to_chat(user,"\The [src] malfunctions and sends you to the wrong beacon!") - - //Destination beacon vore checking - var/turf/dT = get_turf(destination) - var/atom/real_dest = dT - - var/atom/real_loc = destination.loc - if(isbelly(real_loc)) - real_dest = real_loc - if(isliving(real_loc)) - var/mob/living/L = real_loc - if(L.vore_selected) - real_dest = L.vore_selected - else if(L.vore_organs.len) - real_dest = pick(L.vore_organs) - - //Confirm televore - var/televored = FALSE - if(isbelly(real_dest)) - var/obj/belly/B = real_dest - if(!target.can_be_drop_prey && B.owner != user) - to_chat(target,"\The [src] narrowly avoids teleporting you right into \a [lowertext(real_dest.name)]!") - real_dest = dT //Nevermind! - else - televored = TRUE - to_chat(target,"\The [src] teleports you right into \a [lowertext(real_dest.name)]!") - - //Phase-out effect - phase_out(target,get_turf(target)) - - //Move them - target.forceMove(real_dest) - - //Phase-in effect - phase_in(target,get_turf(target)) - - //And any friends! - for(var/obj/item/weapon/grab/G in target.contents) - if(G.affecting && (G.state >= GRAB_AGGRESSIVE)) - - //Phase-out effect for grabbed person - phase_out(G.affecting,get_turf(G.affecting)) - - //Move them, and televore if necessary - G.affecting.forceMove(real_dest) - if(televored) - to_chat(target,"\The [src] teleports you right into \a [lowertext(real_dest.name)]!") - - //Phase-in effect for grabbed person - phase_in(G.affecting,get_turf(G.affecting)) - - update_icon() - spawn(30 SECONDS) - ready = 1 - update_icon() - - logged_events["[world.time]"] = "[user] teleported [target] to [real_dest] [televored ? "(Belly: [lowertext(real_dest.name)])" : null]" - -/obj/item/device/perfect_tele/proc/phase_out(var/mob/M,var/turf/T) - - if(!M || !T) - return - - spk.set_up(5, 0, M) - spk.attach(M) - playsound(T, "sparks", 50, 1) - anim(T,M,'icons/mob/mob.dmi',,"phaseout",,M.dir) - -/obj/item/device/perfect_tele/proc/phase_in(var/mob/M,var/turf/T) - - if(!M || !T) - return - - spk.start() - playsound(T, 'sound/effects/phasein.ogg', 25, 1) - playsound(T, 'sound/effects/sparks2.ogg', 50, 1) - anim(T,M,'icons/mob/mob.dmi',,"phasein",,M.dir) - spk.set_up(5, 0, src) - spk.attach(src) - -/obj/item/device/perfect_tele_beacon - name = "translocator beacon" - desc = "That's unusual." - icon = 'icons/obj/device_alt.dmi' - icon_state = "motion2" - w_class = ITEMSIZE_TINY - - var/tele_name - var/obj/item/device/perfect_tele/tele_hand - var/creator - var/warned_users = list() - -/obj/item/device/perfect_tele_beacon/New() - ..() - flags |= NOBLUDGEON - -/obj/item/device/perfect_tele_beacon/Destroy() - tele_name = null - tele_hand = null - return ..() - -/obj/item/device/perfect_tele_beacon/attack_hand(mob/user) - if((user.ckey != creator) && !(user.ckey in warned_users)) - warned_users |= user.ckey - var/choice = alert(user,"This device is a translocator beacon. Having it on your person may mean that anyone \ - who teleports to this beacon gets teleported into your selected vore-belly. If you are prey-only \ - or don't wish to potentially have a random person teleported into you, it's suggested that you \ - not carry this around.","OOC WARNING","Take It","Leave It") - if(choice == "Leave It") - return - - ..() - -/obj/item/device/perfect_tele_beacon/attack_self(mob/user) - if(!isliving(user)) - return - var/mob/living/L = user - var/confirm = alert(user, "You COULD eat the beacon...", "Eat beacon?", "Eat it!", "No, thanks.") - if(confirm == "Eat it!") - var/obj/belly/bellychoice = input("Which belly?","Select A Belly") as null|anything in L.vore_organs - if(bellychoice) - user.visible_message("[user] is trying to stuff \the [src] into [user.gender == MALE ? "his" : user.gender == FEMALE ? "her" : "their"] [bellychoice]!","You begin putting \the [src] into your [bellychoice]!") - if(do_after(user,5 SECONDS,src)) - user.unEquip(src) - forceMove(bellychoice) - user.visible_message("[user] eats a telebeacon!","You eat the the beacon!") - -// A single-beacon variant for use by miners (or whatever) -/obj/item/device/perfect_tele/one_beacon - name = "mini-translocator" - desc = "A more limited translocator with a single beacon, useful for some things, like setting the mining department on fire accidentally. Legal for use in the pursuit of NanoTrasen interests, namely mining and exploration." - icon_state = "minitrans" - beacons_left = 1 //Just one - cell_type = /obj/item/weapon/cell/device - origin_tech = list(TECH_MAGNET = 5, TECH_BLUESPACE = 5) - -/* -/obj/item/device/perfect_tele/one_beacon/teleport_checks(mob/living/target,mob/living/user) - var/turf/T = get_turf(destination) - if(T && user.z != T.z) - to_chat(user,"\The [src] is too far away from the beacon. Try getting closer first!") - return FALSE - return ..() -*/ - -/obj/item/device/perfect_tele/admin - name = "alien translocator" - desc = "This strange device allows one to teleport people and objects across large distances." - - cell_type = /obj/item/weapon/cell/device/weapon/recharge/alien - charge_cost = 400 - beacons_left = 6 - failure_chance = 0 //Percent - -/obj/item/device/perfect_tele/admin/teleport_checks(mob/living/target,mob/living/user) - //Uhhuh, need that power source - if(!power_source) - to_chat(user,"\The [src] has no power source!") - return FALSE - - //Check for charge - if((!power_source.check_charge(charge_cost)) && (!power_source.fully_charged())) - to_chat(user,"\The [src] does not have enough power left!") - return FALSE - - //Only mob/living need apply. - if(!istype(user) || !istype(target)) - return FALSE - - //No, you can't teleport buckled people. - if(target.buckled) - to_chat(user,"The target appears to be attached to something...") - return FALSE - - //No, you can't teleport if it's not ready yet. - if(!ready) - to_chat(user,"\The [src] is still recharging!") - return FALSE - - //No, you can't teleport if there's no destination. - if(!destination) - to_chat(user,"\The [src] doesn't have a current valid destination set!") - return FALSE - - //Seems okay to me! - return TRUE - //InterroLouis: Ruda Lizden /obj/item/clothing/accessory/badge/holo/detective/ruda name = "Hisstective's Badge" diff --git a/icons/obj/radio_vr.dmi b/icons/obj/radio_vr.dmi index 77d695cf23..88d6011a7f 100644 Binary files a/icons/obj/radio_vr.dmi and b/icons/obj/radio_vr.dmi differ diff --git a/maps/submaps/shelters/shelter_a.dmm b/maps/submaps/shelters/shelter_a.dmm index c631e60891..6211a4937d 100644 --- a/maps/submaps/shelters/shelter_a.dmm +++ b/maps/submaps/shelters/shelter_a.dmm @@ -73,7 +73,7 @@ /obj/item/weapon/storage/box/survival/space, /obj/item/weapon/extinguisher/mini, /obj/item/device/radio{ - icon_state = "walkietalkieOLD"; + icon_state = "walkietalkiebay"; name = "emergency radio" }, /obj/item/weapon/towel{ diff --git a/maps/tether/submaps/admin_use/aro.dmm b/maps/tether/submaps/admin_use/aro.dmm new file mode 100644 index 0000000000..86cc03caca --- /dev/null +++ b/maps/tether/submaps/admin_use/aro.dmm @@ -0,0 +1,22411 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/turf/space, +/area/space) +"ab" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/houseboat) +"ac" = ( +/turf/simulated/floor/reinforced/airless{ + name = "outer hull" + }, +/area/space) +"ad" = ( +/obj/machinery/porta_turret, +/turf/simulated/floor/reinforced/airless{ + name = "outer hull" + }, +/area/space) +"ae" = ( +/obj/machinery/computer/security/telescreen/entertainment, +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/houseboat) +"af" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/houseboat) +"ag" = ( +/turf/simulated/floor/carpet/blue, +/area/houseboat) +"ah" = ( +/obj/machinery/media/jukebox, +/turf/simulated/floor/wood, +/area/houseboat) +"ai" = ( +/turf/simulated/floor/wood, +/area/houseboat) +"aj" = ( +/obj/structure/table/marble, +/turf/simulated/floor/carpet/blue, +/area/houseboat) +"ak" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 10; + icon_state = "fwindow" + }, +/obj/machinery/door/blast/shutters{ + density = 1; + dir = 1; + icon_state = "shutter1"; + id = "dongleship_blast"; + layer = 3.3; + name = "Blast Shutters"; + opacity = 1 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/shuttle/plating, +/area/houseboat) +"al" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/simulated/floor/wood, +/area/houseboat) +"am" = ( +/obj/structure/bed/chair/comfy/black{ + icon_state = "comfychair_preview"; + dir = 1 + }, +/turf/simulated/floor/carpet/blue, +/area/houseboat) +"an" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1"; + pixel_x = 0 + }, +/turf/simulated/floor/wood, +/area/houseboat) +"ao" = ( +/obj/machinery/computer/gyrotron_control, +/turf/simulated/floor/tiled/steel_grid, +/area/houseboat) +"ap" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/houseboat) +"aq" = ( +/obj/structure/flora/pottedplant, +/turf/simulated/floor/wood, +/area/houseboat) +"ar" = ( +/obj/structure/flora/pottedplant, +/obj/machinery/button/remote/blast_door{ + dir = 8; + id = "dongleship_blast"; + name = "exterior shutters"; + pixel_x = 28 + }, +/turf/simulated/floor/wood, +/area/houseboat) +"as" = ( +/obj/structure/bed/chair/shuttle{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/houseboat) +"at" = ( +/obj/machinery/door/blast/shutters{ + density = 1; + dir = 8; + icon_state = "shutter1"; + id = "dongleship_blast"; + layer = 3.3; + name = "Blast Shutters"; + opacity = 1 + }, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 10; + icon_state = "fwindow" + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/shuttle/plating, +/area/houseboat) +"au" = ( +/obj/structure/closet/crate/bin, +/turf/simulated/floor/wood, +/area/houseboat) +"av" = ( +/obj/structure/grille, +/obj/machinery/door/blast/shutters{ + density = 1; + dir = 4; + icon_state = "shutter1"; + id = "dongleship_blast"; + layer = 3.3; + name = "Blast Shutters"; + opacity = 1 + }, +/obj/structure/window/reinforced{ + dir = 10; + icon_state = "fwindow" + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/shuttle/plating, +/area/houseboat) +"aw" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/houseboat) +"ax" = ( +/obj/machinery/computer/card/centcom, +/turf/simulated/floor/tiled/steel_grid, +/area/houseboat) +"ay" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/computer/message_monitor, +/turf/simulated/floor/tiled/steel_grid, +/area/houseboat) +"az" = ( +/obj/structure/bed/chair/wood{ + icon_state = "wooden_chair"; + dir = 4 + }, +/turf/simulated/floor/carpet/blue, +/area/houseboat) +"aA" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/carpet/blue, +/area/houseboat) +"aB" = ( +/obj/structure/bed/chair/wood{ + icon_state = "wooden_chair"; + dir = 8 + }, +/turf/simulated/floor/carpet/blue, +/area/houseboat) +"aC" = ( +/obj/structure/bed/chair/wood{ + dir = 4 + }, +/turf/simulated/floor/carpet/blue, +/area/houseboat) +"aD" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/book/codex, +/turf/simulated/floor/carpet/blue, +/area/houseboat) +"aE" = ( +/obj/structure/closet/crate/bin, +/turf/simulated/floor/tiled/steel_grid, +/area/houseboat) +"aF" = ( +/obj/effect/floor_decal/techfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor/corner{ + dir = 1 + }, +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/houseboat) +"aG" = ( +/obj/machinery/button/remote/blast_door{ + dir = 8; + id = "dongleship_blast"; + name = "exterior shutters"; + pixel_x = 28 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/houseboat) +"aH" = ( +/obj/machinery/vending/food/arojoan{ + density = 0; + pixel_x = -32 + }, +/turf/simulated/floor/wood, +/area/houseboat) +"aI" = ( +/obj/machinery/vending/boozeomat{ + density = 0; + pixel_x = 32 + }, +/turf/simulated/floor/wood, +/area/houseboat) +"aJ" = ( +/obj/machinery/door/airlock/voidcraft, +/turf/simulated/floor/tiled/techfloor, +/area/houseboat) +"aK" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/simulated/floor/tiled/white, +/area/houseboat) +"aL" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/houseboat) +"aM" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 4 + }, +/obj/machinery/vending/dinnerware, +/turf/simulated/floor/tiled/white, +/area/houseboat) +"aN" = ( +/turf/simulated/floor/tiled/techfloor, +/area/houseboat) +"aO" = ( +/obj/structure/sign/department/bridge, +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/houseboat) +"aP" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/turf/simulated/floor/tiled/white, +/area/houseboat) +"aQ" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 1 + }, +/obj/structure/table/standard, +/obj/machinery/reagentgrinder, +/turf/simulated/floor/tiled/white, +/area/houseboat) +"aR" = ( +/obj/structure/table/standard, +/obj/machinery/microwave, +/turf/simulated/floor/tiled/white, +/area/houseboat) +"aS" = ( +/obj/structure/closet/secure_closet/freezer/kitchen, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/houseboat) +"aT" = ( +/turf/simulated/floor/tiled/white, +/area/houseboat) +"aU" = ( +/obj/machinery/cooker/oven, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/houseboat) +"aV" = ( +/obj/machinery/cooker/grill, +/turf/simulated/floor/tiled/white, +/area/houseboat) +"aW" = ( +/obj/structure/table/standard, +/turf/simulated/floor/tiled/white, +/area/houseboat) +"aX" = ( +/obj/structure/table/standard, +/obj/item/weapon/material/knife/butch, +/obj/item/weapon/material/kitchen/rollingpin, +/turf/simulated/floor/tiled/white, +/area/houseboat) +"aY" = ( +/obj/effect/step_trigger/teleporter{ + dir = 2; + icon = 'icons/obj/stairs.dmi'; + invisibility = 0; + name = "stairs"; + teleport_x = 99; + teleport_y = 104; + teleport_z = 22 + }, +/turf/simulated/floor/tiled/techfloor, +/area/houseboat) +"aZ" = ( +/obj/structure/bed/chair, +/turf/simulated/floor/tiled/steel_grid, +/area/houseboat) +"ba" = ( +/obj/machinery/door/airlock/voidcraft, +/turf/simulated/floor/tiled/white, +/area/houseboat) +"bb" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/houseboat) +"bc" = ( +/obj/machinery/door/airlock/voidcraft/vertical, +/turf/simulated/floor/tiled/techfloor, +/area/houseboat) +"bd" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/houseboat) +"be" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/houseboat) +"bf" = ( +/obj/structure/table/steel, +/turf/simulated/floor/tiled/steel_grid, +/area/houseboat) +"bg" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/houseboat) +"bh" = ( +/obj/machinery/computer/operating, +/turf/simulated/floor/tiled/steel_grid, +/area/houseboat) +"bi" = ( +/obj/machinery/optable, +/turf/simulated/floor/tiled/steel_grid, +/area/houseboat) +"bj" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/firstaid/surgery, +/turf/simulated/floor/tiled/steel_grid, +/area/houseboat) +"bk" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/houseboat) +"bl" = ( +/obj/structure/table/steel_reinforced, +/obj/item/stack/material/plasteel, +/obj/item/stack/material/plasteel, +/turf/simulated/floor/tiled/techmaint, +/area/houseboat) +"bm" = ( +/obj/structure/table/steel_reinforced, +/obj/item/stack/material/diamond, +/obj/item/stack/material/gold, +/obj/item/stack/material/silver, +/turf/simulated/floor/tiled/techmaint, +/area/houseboat) +"bn" = ( +/obj/structure/table/steel_reinforced, +/obj/item/stack/material/uranium, +/obj/item/stack/material/uranium, +/turf/simulated/floor/tiled/techmaint, +/area/houseboat) +"bo" = ( +/obj/structure/table/steel, +/obj/item/weapon/storage/secure/briefcase/nsfw_pack, +/turf/simulated/floor/tiled/steel_grid, +/area/houseboat) +"bp" = ( +/obj/structure/table/steel, +/obj/machinery/recharger, +/turf/simulated/floor/tiled/steel_grid, +/area/houseboat) +"bq" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/houseboat) +"br" = ( +/obj/structure/table/standard, +/obj/item/weapon/tank/anesthetic, +/obj/item/clothing/mask/breath/medical, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/houseboat) +"bs" = ( +/obj/structure/sink{ + dir = 4; + icon_state = "sink"; + pixel_x = 12; + pixel_y = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/houseboat) +"bt" = ( +/obj/structure/closet/hydrant{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled/techfloor, +/area/houseboat) +"bu" = ( +/obj/structure/closet/crate/bin, +/turf/simulated/floor/tiled/techmaint, +/area/houseboat) +"bv" = ( +/turf/simulated/floor/tiled/techmaint, +/area/houseboat) +"bw" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/houseboat) +"bx" = ( +/obj/structure/bed/chair{ + icon_state = "chair_preview"; + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/houseboat) +"by" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/houseboat) +"bz" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/table/standard, +/obj/item/device/healthanalyzer/advanced, +/turf/simulated/floor/tiled/white, +/area/houseboat) +"bA" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/table/standard, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1"; + pixel_x = 0 + }, +/obj/item/roller/adv, +/turf/simulated/floor/tiled/white, +/area/houseboat) +"bB" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/houseboat) +"bC" = ( +/obj/item/weapon/stool/padded, +/turf/simulated/floor/tiled/techmaint, +/area/houseboat) +"bD" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/storage/toolbox/syndicate, +/turf/simulated/floor/tiled/techmaint, +/area/houseboat) +"bE" = ( +/obj/machinery/iv_drip, +/turf/simulated/floor/tiled/white, +/area/houseboat) +"bF" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/houseboat) +"bG" = ( +/obj/machinery/computer/transhuman/resleeving{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/houseboat) +"bH" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 10; + icon_state = "fwindow" + }, +/turf/simulated/shuttle/plating, +/area/houseboat) +"bI" = ( +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/tiled/techmaint, +/area/houseboat) +"bJ" = ( +/turf/simulated/floor/reinforced{ + name = "Holodeck Projector Floor" + }, +/area/houseboat/holodeck_area) +"bK" = ( +/obj/machinery/computer/HolodeckControl/houseboat{ + dir = 2 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/houseboat) +"bL" = ( +/obj/machinery/clonepod/transhuman, +/turf/simulated/floor/tiled/white, +/area/houseboat) +"bM" = ( +/obj/structure/table/steel_reinforced, +/obj/item/stack/material/steel{ + amount = 50 + }, +/obj/item/stack/material/steel{ + amount = 50 + }, +/turf/simulated/floor/tiled/techmaint, +/area/houseboat) +"bN" = ( +/obj/structure/table/steel_reinforced, +/obj/item/stack/material/glass{ + amount = 50 + }, +/obj/item/stack/material/glass{ + amount = 50 + }, +/turf/simulated/floor/tiled/techmaint, +/area/houseboat) +"bO" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/houseboat) +"bP" = ( +/obj/machinery/bodyscanner{ + dir = 8 + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/houseboat) +"bQ" = ( +/obj/machinery/body_scanconsole, +/turf/simulated/floor/tiled/white, +/area/houseboat) +"bR" = ( +/obj/machinery/transhuman/synthprinter, +/turf/simulated/floor/tiled/white, +/area/houseboat) +"bS" = ( +/obj/machinery/pros_fabricator{ + req_access = list() + }, +/turf/simulated/floor/tiled/techmaint, +/area/houseboat) +"bT" = ( +/obj/machinery/autolathe{ + desc = "Your typical Autolathe. It appears to have much more options than your regular one, however..."; + hacked = 1; + name = "Centcom Autolathe" + }, +/turf/simulated/floor/tiled/techmaint, +/area/houseboat) +"bU" = ( +/obj/machinery/mecha_part_fabricator{ + req_access = list() + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/houseboat) +"bV" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/table/standard, +/obj/structure/bedsheetbin, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/houseboat) +"bW" = ( +/obj/machinery/transhuman/resleever, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1"; + pixel_x = 0 + }, +/turf/simulated/floor/tiled/white, +/area/houseboat) +"bX" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/houseboat) +"bY" = ( +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/techmaint, +/area/houseboat) +"bZ" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/techmaint, +/area/houseboat) +"ca" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techmaint, +/area/houseboat) +"cb" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/houseboat) +"cc" = ( +/obj/machinery/vending/medical{ + density = 0; + pixel_x = 0; + pixel_y = 0; + req_access = list() + }, +/turf/simulated/floor/tiled/white, +/area/houseboat) +"cd" = ( +/obj/machinery/button/remote/blast_door{ + dir = 8; + id = "dongleship_blast"; + name = "exterior shutters"; + pixel_x = 28 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/houseboat) +"ce" = ( +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/bodybag/cryobag{ + pixel_x = 5 + }, +/obj/item/bodybag/cryobag{ + pixel_x = 5 + }, +/obj/item/weapon/storage/firstaid/o2{ + layer = 2.8; + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/weapon/storage/box/masks{ + pixel_x = 0; + pixel_y = 0 + }, +/obj/item/weapon/storage/box/gloves{ + pixel_x = 3; + pixel_y = 4 + }, +/obj/item/weapon/storage/firstaid/toxin, +/obj/item/weapon/storage/firstaid/fire{ + layer = 2.9; + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/weapon/storage/firstaid/adv{ + pixel_x = -2 + }, +/obj/item/weapon/reagent_containers/blood/empty, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/structure/closet/medical_wall{ + pixel_y = -32 + }, +/obj/item/weapon/storage/box/body_record_disk, +/turf/simulated/floor/tiled/white, +/area/houseboat) +"cf" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 10; + icon_state = "fwindow" + }, +/obj/machinery/door/blast/shutters{ + density = 1; + dir = 2; + icon_state = "shutter1"; + id = "dongleship_blast"; + layer = 3.3; + name = "Blast Shutters"; + opacity = 1 + }, +/obj/structure/window/reinforced, +/turf/simulated/shuttle/plating, +/area/houseboat) +"cg" = ( +/obj/machinery/chem_master, +/turf/simulated/floor/tiled/white, +/area/houseboat) +"ch" = ( +/obj/machinery/chemical_dispenser/ert, +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/tiled/white, +/area/houseboat) +"ci" = ( +/obj/structure/flora/pottedplant/minitree, +/turf/simulated/floor/tiled/techfloor, +/area/houseboat) +"cj" = ( +/obj/machinery/mech_recharger, +/turf/simulated/floor/tiled/techmaint, +/area/houseboat) +"ck" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/houseboat) +"cl" = ( +/obj/structure/railing, +/turf/simulated/floor/tiled/techfloor, +/area/houseboat) +"cm" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/turf/simulated/floor/tiled/techfloor, +/area/houseboat) +"cn" = ( +/obj/effect/step_trigger/teleporter{ + icon = 'icons/obj/stairs.dmi'; + invisibility = 0; + name = "stairs"; + pixel_y = -32; + teleport_x = 128; + teleport_y = 100; + teleport_z = 22 + }, +/turf/simulated/floor/tiled/techmaint, +/area/houseboat) +"co" = ( +/obj/structure/railing{ + icon_state = "railing0"; + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/houseboat) +"cp" = ( +/obj/effect/step_trigger/teleporter{ + icon = 'icons/obj/stairs.dmi'; + invisibility = 0; + name = "stairs"; + pixel_y = -32; + teleport_x = 129; + teleport_y = 100; + teleport_z = 22 + }, +/turf/simulated/floor/tiled/techmaint, +/area/houseboat) +"cq" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/houseboat) +"cr" = ( +/obj/structure/closet/secure_closet/personal, +/turf/simulated/floor/tiled/techfloor, +/area/houseboat) +"cs" = ( +/obj/machinery/light/small{ + dir = 8; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/techfloor, +/area/houseboat) +"ct" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/houseboat) +"cu" = ( +/obj/machinery/door/airlock/voidcraft/vertical, +/turf/simulated/floor/tiled/white, +/area/houseboat) +"cv" = ( +/obj/effect/floor_decal/corner_techfloor_grid{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor, +/area/houseboat) +"cw" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled/techfloor, +/area/houseboat) +"cx" = ( +/obj/structure/table/rack, +/obj/item/device/suit_cooling_unit, +/obj/item/weapon/tank/air, +/turf/simulated/floor/tiled/techfloor, +/area/houseboat) +"cy" = ( +/obj/machinery/door/blast/regular{ + icon_state = "pdoor1"; + dir = 8 + }, +/turf/space, +/area/houseboat) +"cz" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/tiled/white, +/area/houseboat) +"cA" = ( +/obj/effect/floor_decal/corner_techfloor_grid{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor, +/area/houseboat) +"cB" = ( +/obj/structure/closet{ + name = "custodial" + }, +/obj/item/weapon/reagent_containers/spray/cleaner, +/obj/item/weapon/reagent_containers/glass/bucket, +/obj/item/weapon/mop, +/obj/item/weapon/storage/box/lights/mixed, +/obj/machinery/light/small{ + dir = 8; + pixel_x = 0 + }, +/turf/simulated/floor/tiled/techfloor, +/area/houseboat) +"cC" = ( +/obj/machinery/washing_machine, +/turf/simulated/floor/tiled/white, +/area/houseboat) +"cD" = ( +/turf/simulated/floor/tiled/steel, +/area/houseboat) +"cE" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/houseboat) +"cF" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/ore_box, +/turf/simulated/floor/tiled/steel_grid, +/area/houseboat) +"cG" = ( +/obj/structure/ore_box, +/turf/simulated/floor/tiled/steel, +/area/houseboat) +"cH" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1"; + pixel_x = 0 + }, +/turf/simulated/floor/tiled/white, +/area/houseboat) +"cI" = ( +/obj/structure/sink{ + icon_state = "sink"; + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/turf/simulated/floor/tiled/white, +/area/houseboat) +"cJ" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/firedoor/glass, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "security_lockdown"; + name = "Security Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/houseboat) +"cK" = ( +/obj/machinery/door/window/brigdoor/southleft{ + name = "Cell 3"; + icon_state = "leftsecure"; + dir = 1; + req_access = list(2); + id = "Cell 3" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "security_lockdown"; + name = "Security Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor/tiled/dark, +/area/houseboat) +"cL" = ( +/obj/effect/step_trigger/teleporter{ + icon = 'icons/obj/stairs.dmi'; + invisibility = 0; + name = "stairs"; + teleport_x = 126; + teleport_y = 122; + teleport_z = 22 + }, +/turf/simulated/floor/tiled/techfloor, +/area/houseboat) +"cM" = ( +/obj/structure/closet/hydrant{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled/techfloor, +/area/houseboat) +"cN" = ( +/obj/effect/floor_decal/techfloor{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/houseboat) +"cO" = ( +/obj/machinery/cryopod, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/houseboat) +"cP" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/houseboat) +"cQ" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/houseboat) +"cR" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell 3" + }, +/obj/effect/floor_decal/industrial/outline, +/turf/simulated/floor/tiled/dark, +/area/houseboat) +"cS" = ( +/obj/structure/bed/padded, +/turf/simulated/floor/tiled/dark, +/area/houseboat) +"cT" = ( +/turf/simulated/floor/tiled/dark, +/area/houseboat) +"cU" = ( +/obj/structure/sink{ + dir = 4; + icon_state = "sink"; + pixel_x = 12; + pixel_y = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/houseboat) +"cV" = ( +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/houseboat) +"cW" = ( +/obj/machinery/computer/cryopod{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/houseboat) +"cX" = ( +/obj/structure/toilet{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/houseboat) +"cY" = ( +/obj/effect/floor_decal/techfloor{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/houseboat) +"cZ" = ( +/obj/machinery/cryopod, +/obj/effect/floor_decal/techfloor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/houseboat) +"da" = ( +/obj/machinery/recharge_station, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/houseboat) +"db" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/steel, +/area/houseboat) +"dc" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + icon_state = "warningcorner"; + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/houseboat) +"dd" = ( +/turf/simulated/floor/tiled/steel_ridged, +/area/houseboat) +"de" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/tiled/steel_grid, +/area/houseboat) +"df" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/houseboat) +"dg" = ( +/turf/simulated/floor/reinforced, +/area/houseboat) +"dh" = ( +/obj/item/device/perfect_tele, +/turf/simulated/floor/reinforced, +/area/houseboat) +"di" = ( +/obj/machinery/button/remote/blast_door{ + dir = 8; + id = "dongleship_blast"; + name = "exterior shutters"; + pixel_x = 28 + }, +/turf/simulated/floor/reinforced, +/area/houseboat) +"dj" = ( +/obj/structure/closet/crate, +/turf/simulated/floor/tiled/steel, +/area/houseboat) +"dk" = ( +/obj/structure/railing{ + icon_state = "railing0"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/houseboat) +"dl" = ( +/obj/structure/catwalk, +/obj/structure/closet/crate/bin, +/turf/simulated/floor/plating, +/area/houseboat) +"dm" = ( +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/houseboat) +"dn" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing, +/turf/simulated/floor/plating, +/area/houseboat) +"do" = ( +/obj/structure/railing, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 4 + }, +/turf/simulated/floor/plating, +/area/houseboat) +"dp" = ( +/obj/structure/railing, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 6 + }, +/turf/simulated/floor/plating, +/area/houseboat) +"dq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/houseboat) +"dr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/houseboat) +"ds" = ( +/obj/structure/railing, +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + icon_state = "intact-supply"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 4 + }, +/turf/simulated/floor/plating, +/area/houseboat) +"dt" = ( +/obj/structure/railing, +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + icon_state = "intact-supply"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/houseboat) +"du" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 10 + }, +/turf/simulated/floor/plating, +/area/houseboat) +"dv" = ( +/obj/structure/railing, +/obj/structure/railing{ + icon_state = "railing0"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + icon_state = "intact-supply"; + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers, +/turf/simulated/floor/plating, +/area/houseboat) +"dw" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/houseboat) +"dx" = ( +/obj/machinery/computer/teleporter{ + icon_state = "computer"; + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/houseboat) +"dy" = ( +/obj/machinery/light, +/obj/machinery/teleport/station{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/houseboat) +"dz" = ( +/obj/machinery/teleport/hub, +/turf/simulated/floor/reinforced, +/area/houseboat) +"dA" = ( +/obj/effect/step_trigger/teleporter{ + icon = 'icons/obj/stairs.dmi'; + invisibility = 0; + name = "stairs"; + pixel_y = 0; + teleport_x = 101; + teleport_y = 109; + teleport_z = 22 + }, +/turf/simulated/floor/tiled/steel, +/area/houseboat) +"dB" = ( +/obj/effect/step_trigger/teleporter{ + icon = 'icons/obj/stairs.dmi'; + invisibility = 0; + name = "stairs"; + pixel_y = 0; + teleport_x = 102; + teleport_y = 109; + teleport_z = 22 + }, +/turf/simulated/floor/tiled/steel, +/area/houseboat) +"dC" = ( +/obj/machinery/light, +/obj/structure/closet/crate, +/turf/simulated/floor/tiled/steel, +/area/houseboat) +"dD" = ( +/obj/structure/railing{ + icon_state = "railing0"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/purple, +/obj/machinery/atmospherics/pipe/simple/visible/supply, +/obj/machinery/light/small{ + dir = 8; + pixel_y = 0 + }, +/turf/simulated/floor/plating, +/area/houseboat) +"dE" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, +/turf/simulated/floor/plating, +/area/houseboat) +"dF" = ( +/obj/structure/catwalk, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/houseboat) +"dG" = ( +/obj/structure/catwalk, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/houseboat) +"dH" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/houseboat) +"dI" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/floor_decal/rust, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/houseboat) +"dK" = ( +/obj/structure/railing, +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/houseboat) +"dL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/purple{ + icon_state = "intact"; + dir = 4 + }, +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/houseboat) +"dM" = ( +/obj/structure/railing, +/obj/structure/railing{ + icon_state = "railing0"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + icon_state = "intact"; + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/visible/supply, +/turf/simulated/floor/plating, +/area/houseboat) +"dN" = ( +/obj/structure/catwalk, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/houseboat) +"dO" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/houseboat) +"dP" = ( +/obj/structure/railing, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/houseboat) +"dR" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + icon_state = "intact-supply"; + dir = 4 + }, +/turf/simulated/floor/plating, +/area/houseboat) +"dS" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + icon_state = "intact-supply"; + dir = 5 + }, +/turf/simulated/floor/plating, +/area/houseboat) +"dT" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + icon_state = "intact-supply"; + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/houseboat) +"dU" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/visible/supply{ + icon_state = "map-supply"; + dir = 1 + }, +/turf/simulated/floor/plating, +/area/houseboat) +"dV" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/houseboat) +"dW" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/houseboat) +"dX" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + icon_state = "intact-supply"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers, +/turf/simulated/floor/plating, +/area/houseboat) +"dY" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/houseboat) +"dZ" = ( +/obj/structure/railing{ + icon_state = "railing0"; + dir = 4 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, +/turf/simulated/floor/plating, +/area/houseboat) +"ea" = ( +/obj/structure/catwalk, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/houseboat) +"eb" = ( +/obj/structure/railing{ + icon_state = "railing0"; + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/houseboat) +"ec" = ( +/obj/structure/table/woodentable, +/obj/item/modular_computer/laptop/preset/custom_loadout/elite, +/turf/simulated/floor/wood, +/area/houseboat) +"ed" = ( +/obj/structure/table/woodentable, +/obj/item/device/flashlight/lamp, +/turf/simulated/floor/wood, +/area/houseboat) +"ee" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/power/fractal_reactor/fluff/converter, +/turf/simulated/floor/plating, +/area/houseboat) +"ef" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, +/obj/machinery/atmospherics/pipe/simple/visible/supply, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/houseboat) +"eg" = ( +/obj/structure/railing{ + icon_state = "railing0"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 5 + }, +/turf/simulated/floor/plating, +/area/houseboat) +"eh" = ( +/obj/machinery/atmospherics/unary/freezer{ + dir = 2; + icon_state = "freezer_1"; + use_power = 1; + power_setting = 20; + set_temperature = 73 + }, +/turf/simulated/floor/plating, +/area/houseboat) +"ei" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 4 + }, +/turf/simulated/floor/plating, +/area/houseboat) +"ej" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 4 + }, +/turf/simulated/floor/plating, +/area/houseboat) +"ek" = ( +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/houseboat) +"el" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/houseboat) +"em" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, +/obj/machinery/atmospherics/pipe/simple/visible/supply, +/turf/simulated/floor/plating, +/area/houseboat) +"en" = ( +/obj/item/weapon/bedsheet/captaindouble, +/obj/structure/bed/double, +/turf/simulated/floor/wood, +/area/houseboat) +"eo" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/houseboat) +"ep" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/houseboat) +"eq" = ( +/obj/structure/railing{ + icon_state = "railing0"; + dir = 4 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/houseboat) +"er" = ( +/obj/structure/railing{ + icon_state = "railing0"; + dir = 4 + }, +/turf/simulated/floor/plating, +/area/houseboat) +"es" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + icon_state = "intact"; + dir = 5 + }, +/turf/simulated/floor/plating, +/area/houseboat) +"eu" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/houseboat) +"ev" = ( +/obj/structure/bed/chair/office/dark, +/turf/simulated/floor/wood, +/area/houseboat) +"ew" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + icon_state = "intact"; + dir = 8 + }, +/turf/simulated/floor/plating, +/area/houseboat) +"ex" = ( +/turf/simulated/shuttle/wall/voidcraft/blue, +/area/houseboat) +"ey" = ( +/turf/unsimulated/wall, +/area/space) +"ez" = ( +/obj/structure/window/reinforced, +/turf/unsimulated/wall, +/area/space) +"eA" = ( +/turf/simulated/shuttle/wall, +/area/shuttle/cruiser/cruiser) +"eB" = ( +/obj/machinery/airlock_sensor{ + frequency = 1380; + id_tag = "cruiser_shuttle_bay_sensor"; + pixel_x = -11; + pixel_y = 28 + }, +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + frequency = 1380; + id_tag = "cruiser_shuttle_bay"; + pixel_x = 0; + pixel_y = 28; + tag_door = "cruiser_shuttle_bay_hatch" + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/computer/shuttle_control/cruiser_shuttle, +/turf/simulated/floor/reinforced, +/area/houseboat) +"eC" = ( +/turf/simulated/floor/holofloor/beach/sand, +/area/houseboat/holodeck/beach) +"eD" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/unsimulated/wall, +/area/space) +"eE" = ( +/obj/structure/flora/grass/both, +/turf/simulated/floor/holofloor/snow, +/area/houseboat/holodeck/snow) +"eF" = ( +/turf/simulated/floor/holofloor/snow, +/area/houseboat/holodeck/snow) +"eG" = ( +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/holofloor/desert, +/area/houseboat/holodeck/desert) +"eH" = ( +/turf/simulated/floor/holofloor/desert, +/area/houseboat/holodeck/desert) +"eI" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/unsimulated/wall, +/area/space) +"eK" = ( +/obj/structure/catwalk, +/obj/machinery/vending/tool, +/turf/simulated/floor/plating, +/area/houseboat) +"eL" = ( +/obj/structure/catwalk, +/obj/machinery/vending/engivend, +/turf/simulated/floor/plating, +/area/houseboat) +"eM" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/visible, +/turf/simulated/floor/plating, +/area/houseboat) +"eN" = ( +/obj/machinery/computer/shuttle_control/cruiser_shuttle, +/turf/simulated/shuttle/floor/black, +/area/shuttle/cruiser/cruiser) +"eP" = ( +/obj/effect/overlay/palmtree_r, +/turf/simulated/floor/holofloor/beach/sand, +/area/houseboat/holodeck/beach) +"eQ" = ( +/obj/item/weapon/beach_ball, +/turf/simulated/floor/holofloor/beach/sand, +/area/houseboat/holodeck/beach) +"eR" = ( +/obj/effect/overlay/palmtree_l, +/obj/effect/overlay/coconut, +/turf/simulated/floor/holofloor/beach/sand, +/area/houseboat/holodeck/beach) +"eS" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/turf/simulated/floor/holofloor/desert, +/area/houseboat/holodeck/desert) +"eW" = ( +/obj/structure/railing{ + icon_state = "railing0"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/tank/nitrogen, +/turf/simulated/floor/plating, +/area/houseboat) +"eX" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/houseboat) +"eY" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/cruiser/cruiser) +"eZ" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/visible, +/turf/simulated/floor/plating, +/area/houseboat) +"fa" = ( +/obj/effect/floor_decal/techfloor/orange{ + icon_state = "techfloororange_edges"; + dir = 5 + }, +/obj/effect/floor_decal/corner_techfloor_grid{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/houseboat) +"fb" = ( +/obj/structure/bed/chair/shuttle{ + dir = 1 + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/cruiser/cruiser) +"fc" = ( +/obj/effect/floor_decal/techfloor/orange{ + icon_state = "techfloororange_edges"; + dir = 9 + }, +/obj/effect/floor_decal/corner_techfloor_grid, +/turf/simulated/floor/tiled/techfloor, +/area/houseboat) +"fd" = ( +/turf/unsimulated/beach/sand{ + icon_state = "beach" + }, +/area/houseboat/holodeck/beach) +"fe" = ( +/obj/structure/flora/tree/dead, +/turf/simulated/floor/holofloor/snow, +/area/houseboat/holodeck/snow) +"ff" = ( +/obj/structure/flora/tree/pine, +/turf/simulated/floor/holofloor/snow, +/area/houseboat/holodeck/snow) +"fh" = ( +/obj/structure/railing{ + icon_state = "railing0"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/visible, +/turf/simulated/floor/plating, +/area/houseboat) +"fi" = ( +/obj/machinery/atmospherics/pipe/tank/oxygen{ + icon_state = "o2_map"; + dir = 4 + }, +/turf/simulated/floor/plating, +/area/houseboat) +"fj" = ( +/obj/structure/catwalk, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/houseboat) +"fk" = ( +/obj/machinery/atmospherics/pipe/tank/air{ + icon_state = "air_map"; + dir = 8 + }, +/turf/simulated/floor/plating, +/area/houseboat) +"fl" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + frequency = 1380; + id_tag = "cruiser_shuttle"; + pixel_x = 25; + pixel_y = 0; + tag_door = "cruiser_shuttle_hatch" + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/cruiser/cruiser) +"fm" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/simulated/floor/reinforced, +/area/houseboat) +"fn" = ( +/obj/effect/floor_decal/techfloor/orange/corner{ + icon_state = "techfloororange_corners"; + dir = 4 + }, +/obj/effect/floor_decal/techfloor/orange/corner, +/obj/effect/floor_decal/corner_techfloor_grid{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor, +/area/houseboat) +"fo" = ( +/obj/effect/floor_decal/techfloor/orange, +/obj/effect/floor_decal/techfloor/orange{ + icon_state = "techfloororange_edges"; + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/houseboat) +"fp" = ( +/obj/effect/floor_decal/techfloor/orange/corner{ + icon_state = "techfloororange_corners"; + dir = 1 + }, +/obj/effect/floor_decal/techfloor/orange/corner{ + icon_state = "techfloororange_corners"; + dir = 8 + }, +/obj/effect/floor_decal/corner_techfloor_grid{ + icon_state = "corner_techfloor_grid"; + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor, +/area/houseboat) +"fq" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/houseboat) +"fr" = ( +/obj/structure/railing{ + icon_state = "railing0"; + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/houseboat) +"fs" = ( +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/simulated/floor/plating, +/area/houseboat) +"ft" = ( +/obj/structure/catwalk, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/houseboat) +"fu" = ( +/turf/simulated/shuttle/floor/black, +/area/shuttle/cruiser/cruiser) +"fv" = ( +/obj/structure/catwalk, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/table/steel_reinforced, +/obj/item/weapon/rcd, +/obj/item/weapon/rcd_ammo, +/obj/item/weapon/rcd_ammo, +/turf/simulated/floor/plating, +/area/houseboat) +"fw" = ( +/turf/simulated/floor/holofloor/beach/water, +/area/houseboat/holodeck/beach) +"fx" = ( +/obj/structure/flora/grass/green, +/turf/simulated/floor/holofloor/snow, +/area/houseboat/holodeck/snow) +"fy" = ( +/obj/structure/catwalk, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/portable_atmospherics/powered/pump, +/turf/simulated/floor/plating, +/area/houseboat) +"fz" = ( +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/turf/simulated/floor/plating, +/area/houseboat) +"fA" = ( +/obj/machinery/power/fractal_reactor/fluff/converter, +/obj/structure/cable/cyan, +/turf/simulated/floor/plating, +/area/houseboat) +"fB" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/houseboat) +"fC" = ( +/obj/machinery/door/airlock/glass_external{ + frequency = 1380; + icon_state = "door_locked"; + id_tag = null; + locked = 1; + name = "Shuttle Hatch" + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/cruiser/cruiser) +"fD" = ( +/obj/machinery/door/airlock/glass_external{ + frequency = 1380; + icon_state = "door_locked"; + id_tag = "cruiser_shuttle_hatch"; + locked = 1; + name = "Shuttle Hatch" + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/cruiser/cruiser) +"fE" = ( +/obj/effect/floor_decal/techfloor/orange{ + icon_state = "techfloororange_edges"; + dir = 6 + }, +/obj/effect/floor_decal/corner_techfloor_grid{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/houseboat) +"fF" = ( +/obj/effect/floor_decal/techfloor/orange{ + icon_state = "techfloororange_edges"; + dir = 10 + }, +/obj/effect/floor_decal/corner_techfloor_grid{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/houseboat) +"fG" = ( +/obj/structure/railing{ + icon_state = "railing0"; + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/houseboat) +"fH" = ( +/turf/simulated/floor/plating, +/area/houseboat) +"fI" = ( +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/table/steel_reinforced, +/obj/item/weapon/storage/toolbox/syndicate, +/turf/simulated/floor/plating, +/area/houseboat) +"fJ" = ( +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/table/steel_reinforced, +/obj/machinery/recharger, +/turf/simulated/floor/plating, +/area/houseboat) +"fK" = ( +/obj/structure/shuttle/engine/heater, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/shuttle/plating, +/area/shuttle/cruiser/cruiser) +"fL" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/unsimulated/wall, +/area/space) +"fM" = ( +/obj/machinery/atmospherics/unary/heater, +/turf/simulated/floor/plating, +/area/houseboat) +"fN" = ( +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/portable_atmospherics/powered/pump, +/turf/simulated/floor/plating, +/area/houseboat) +"fO" = ( +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/telecomms/relay/preset/houseboat{ + toggled = 0 + }, +/turf/simulated/floor/plating, +/area/houseboat) +"fP" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/houseboat) +"fQ" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/houseboat) +"fR" = ( +/obj/structure/shuttle/engine/propulsion, +/turf/simulated/floor/reinforced, +/area/shuttle/cruiser/cruiser) +"fS" = ( +/obj/structure/flora/ausbushes/brflowers, +/obj/effect/floor_decal/spline/fancy/wood/corner, +/turf/simulated/floor/holofloor/grass, +/area/houseboat/holodeck/picnic) +"fT" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/turf/simulated/floor/holofloor/grass, +/area/houseboat/holodeck/picnic) +"fU" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/holofloor/desert, +/area/houseboat/holodeck/picnic) +"fV" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/holofloor/grass, +/area/houseboat/holodeck/picnic) +"fW" = ( +/turf/simulated/floor/holofloor/space, +/area/houseboat/holodeck/space) +"fX" = ( +/obj/structure/bed/holobed, +/turf/simulated/floor/holofloor/wood, +/area/houseboat/holodeck/bunking) +"fY" = ( +/turf/simulated/floor/holofloor/wood, +/area/houseboat/holodeck/bunking) +"fZ" = ( +/obj/structure/flora/ausbushes/brflowers, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/holofloor/grass, +/area/houseboat/holodeck/picnic) +"ga" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/holostool, +/turf/simulated/floor/holofloor/desert, +/area/houseboat/holodeck/picnic) +"gb" = ( +/obj/structure/shuttle/engine/heater, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/shuttle/plating/airless, +/area/space) +"gc" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/holofloor/grass, +/area/houseboat/holodeck/picnic) +"gd" = ( +/obj/structure/table/woodentable/holotable, +/turf/simulated/floor/holofloor/desert, +/area/houseboat/holodeck/picnic) +"ge" = ( +/turf/simulated/floor/holofloor/desert, +/area/houseboat/holodeck/picnic) +"gf" = ( +/obj/structure/flora/ausbushes/brflowers, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/holofloor/grass, +/area/houseboat/holodeck/picnic) +"gg" = ( +/obj/structure/shuttle/engine/propulsion, +/turf/space, +/area/space) +"gh" = ( +/obj/structure/holostool, +/turf/simulated/floor/holofloor/wood, +/area/houseboat/holodeck/bunking) +"gi" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/freezer{ + dir = 2; + icon_state = "freezer_1"; + use_power = 1; + power_setting = 20; + set_temperature = 73 + }, +/turf/simulated/floor/plating, +/area/houseboat) +"gj" = ( +/obj/structure/flora/ausbushes/brflowers, +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 1 + }, +/turf/simulated/floor/holofloor/grass, +/area/houseboat/holodeck/picnic) +"gk" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/holofloor/grass, +/area/houseboat/holodeck/picnic) +"gl" = ( +/obj/structure/flora/ausbushes/brflowers, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/holofloor/grass, +/area/houseboat/holodeck/picnic) +"gm" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 4 + }, +/turf/simulated/floor/holofloor/grass, +/area/houseboat/holodeck/picnic) +"gn" = ( +/obj/structure/table/woodentable/holotable, +/turf/simulated/floor/holofloor/wood, +/area/houseboat/holodeck/bunking) +"go" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/turf/unsimulated/wall, +/area/space) +"gp" = ( +/turf/simulated/floor/holofloor/wood, +/area/houseboat/holodeck/gaming) +"gq" = ( +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/turf/simulated/floor/holofloor/tiled, +/area/houseboat/holodeck/basketball) +"gr" = ( +/obj/effect/floor_decal/corner/red/full{ + dir = 8 + }, +/turf/simulated/floor/holofloor/tiled, +/area/houseboat/holodeck/basketball) +"gs" = ( +/obj/structure/holohoop, +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/turf/simulated/floor/holofloor/tiled, +/area/houseboat/holodeck/basketball) +"gt" = ( +/obj/effect/floor_decal/corner/red/full{ + dir = 1 + }, +/turf/simulated/floor/holofloor/tiled, +/area/houseboat/holodeck/basketball) +"gu" = ( +/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/houseboat/holodeck/thunderdome) +"gv" = ( +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/turf/simulated/floor/holofloor/tiled, +/area/houseboat/holodeck/thunderdome) +"gw" = ( +/obj/structure/bed/chair/holochair, +/turf/simulated/floor/holofloor/wood, +/area/houseboat/holodeck/gaming) +"gx" = ( +/obj/effect/floor_decal/corner/red{ + dir = 10 + }, +/turf/simulated/floor/holofloor/tiled, +/area/houseboat/holodeck/basketball) +"gy" = ( +/turf/simulated/floor/holofloor/tiled, +/area/houseboat/holodeck/thunderdome) +"gz" = ( +/obj/structure/table/woodentable/holotable, +/turf/simulated/floor/holofloor/wood, +/area/houseboat/holodeck/gaming) +"gA" = ( +/turf/simulated/floor/holofloor/tiled, +/area/houseboat/holodeck/basketball) +"gB" = ( +/obj/item/weapon/beach_ball/holoball, +/turf/simulated/floor/holofloor/tiled, +/area/houseboat/holodeck/basketball) +"gC" = ( +/obj/structure/bed/chair/holochair{ + dir = 1 + }, +/turf/simulated/floor/holofloor/wood, +/area/houseboat/holodeck/gaming) +"gD" = ( +/obj/effect/floor_decal/corner/green{ + dir = 5 + }, +/turf/simulated/floor/holofloor/tiled, +/area/houseboat/holodeck/basketball) +"gE" = ( +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/turf/simulated/floor/holofloor/tiled, +/area/houseboat/holodeck/basketball) +"gF" = ( +/obj/effect/floor_decal/corner/green/full, +/turf/simulated/floor/holofloor/tiled, +/area/houseboat/holodeck/basketball) +"gG" = ( +/obj/structure/holohoop{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/turf/simulated/floor/holofloor/tiled, +/area/houseboat/holodeck/basketball) +"gH" = ( +/obj/effect/floor_decal/corner/green/full{ + dir = 4 + }, +/turf/simulated/floor/holofloor/tiled, +/area/houseboat/holodeck/basketball) +"gI" = ( +/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/houseboat/holodeck/thunderdome) +"gJ" = ( +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/turf/simulated/floor/holofloor/tiled, +/area/houseboat/holodeck/thunderdome) +"gK" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/unsimulated/wall, +/area/space) +"gL" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/unsimulated/wall, +/area/space) +"gM" = ( +/turf/simulated/floor/holofloor/reinforced, +/area/houseboat/holodeck/off) +"gN" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/houseboat) +"gQ" = ( +/obj/machinery/power/fractal_reactor/fluff/smes, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/houseboat) +"gR" = ( +/obj/machinery/power/fractal_reactor/fluff/smes, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/houseboat) +"gS" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/houseboat) + +(1,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(2,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(3,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(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 +"} +(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 +"} +(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 +"} +(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 +"} +(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 +"} +(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 +"} +(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 +"} +(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 +"} +(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 +"} +(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 +"} +(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 +"} +(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 +"} +(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 +"} +(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 +"} +(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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(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 +"} +(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 +"} +(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 +"} +(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 +"} +(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 +"} +(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 +"} +(25,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(26,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(27,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(28,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(29,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(30,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(31,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(32,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(33,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(34,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(35,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(36,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(37,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(38,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(39,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(40,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(41,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(42,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(43,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(44,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(45,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(46,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(47,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(48,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(49,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(50,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(51,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(52,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(53,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(54,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(55,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(56,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(57,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(58,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(59,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(60,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(61,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(62,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(63,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(64,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(65,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(66,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(67,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(68,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(69,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(70,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(71,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(72,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(73,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(74,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(75,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(76,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(77,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(78,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(79,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(80,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(81,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(82,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(83,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(84,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(85,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(86,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(87,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +dg +dg +fm +dg +dg +dg +dg +ab +af +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(88,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +dg +dg +dg +dg +dg +dg +dg +dg +aN +cy +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(89,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +af +ek +ab +ab +dg +dg +dg +fa +fn +fE +dg +dg +dg +aN +cy +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(90,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +dL +ab +eb +eq +ab +eu +dg +dg +dg +dg +fo +dg +dg +dg +dg +aN +cy +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(91,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +af +dK +dm +dF +dm +ba +dg +dg +dg +dg +dg +fo +dg +dg +dg +dg +aN +cy +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(92,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +dk +dD +dM +dS +dF +dm +ba +dg +dg +dg +dg +dg +fo +dg +dg +dg +dg +aN +cy +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(93,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +at +ab +ab +ab +ab +cJ +cR +cR +ab +dl +dm +dm +dR +dF +dm +ab +eu +dg +dg +dg +dg +fo +dg +dg +dg +dg +aN +cy +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(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 +ab +ab +at +at +at +ab +ab +cm +cs +aN +cm +ab +bF +aT +cJ +cS +cS +ab +dm +dm +dm +dU +ef +em +df +ab +dg +dg +dg +fc +fp +fF +dg +dg +dg +aN +cy +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(95,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +at +at +ab +bP +aT +aT +aT +cg +ab +ab +ab +cu +ab +ab +cz +aT +cK +cT +cT +ab +dn +dm +dN +dT +ee +ab +ab +ab +ab +dg +dg +dg +dg +dg +dg +dg +dg +aN +cy +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(96,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +br +by +bE +aT +bQ +aT +aT +aT +ch +ab +ab +bX +aN +bX +ba +aT +aT +cJ +cT +cT +ab +dp +dE +dH +dX +af +ab +ab +ab +ab +ab +dg +dg +fq +dg +dg +dg +dg +ab +af +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(97,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +at +at +at +ab +af +aK +aP +ab +bh +ap +aT +aT +aT +aT +aT +aT +ce +af +ab +aN +aN +aN +aN +ab +aT +cH +cJ +cU +cX +ab +do +dm +dF +dV +ab +en +ab +en +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gg +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(98,1,1) = {" +aa +aa +aa +aa +aa +ab +ab +ab +ab +af +aq +ai +ai +ai +al +aH +aL +aQ +ab +bi +ap +bz +bF +aT +aT +aT +aT +aT +ba +aN +aN +aN +aN +aN +af +ab +ab +ab +ab +ab +ab +do +dm +dF +ab +ec +eo +ab +ev +ec +ab +ex +fi +fs +fA +fH +fM +ab +gb +gg +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(99,1,1) = {" +aa +aa +aa +aa +ab +af +ah +ai +ai +al +ai +ag +ag +ag +ag +ag +aL +aR +ab +bj +bs +bA +bG +bL +bR +bW +cc +af +af +ck +aN +aN +aN +aN +aN +cA +aN +cL +ab +ab +ab +do +dm +dF +ab +ed +ai +ab +ai +ed +ab +eW +fh +fr +fG +fH +fH +ab +gb +gg +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(100,1,1) = {" +aa +aa +aa +ab +ae +ag +ag +ag +ag +am +ai +ag +az +aC +az +ag +aL +aS +ab +ab +ab +ab +bH +bH +bH +ab +ab +ab +ci +aN +co +co +aN +cw +af +ab +ab +ab +ab +ab +ab +dq +cu +ab +ab +ab +cu +ab +cu +ab +ab +eK +eX +fv +fJ +gi +gQ +ab +gb +gg +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(101,1,1) = {" +aa +aa +ab +ab +ae +ag +ag +aj +ag +am +ai +ag +aA +aD +aA +ag +aL +aT +ba +aN +aN +aN +aN +aN +aN +bX +aJ +aN +aN +cl +cn +bv +cv +aN +aN +aJ +aN +cM +aN +bX +aJ +aN +aN +bX +aJ +aN +aN +aN +aN +bX +aJ +ea +fj +ft +fI +fQ +gN +ab +gb +gg +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(102,1,1) = {" +aa +aa +ab +ab +ae +ag +ag +aj +ag +am +ai +ag +aA +aA +aA +ag +aL +aT +ba +bk +bt +aN +aN +aN +aN +aN +aJ +aN +aN +cl +cp +bv +cv +aN +aN +aJ +bk +aN +aN +aN +aJ +bk +aN +aN +aJ +bk +aN +aN +aN +aN +aJ +ea +fj +dG +fO +fQ +gS +ab +gb +gg +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(103,1,1) = {" +aa +aa +aa +ab +ae +ag +ag +ag +ag +am +ai +ag +aB +aB +aB +ag +aL +aU +ab +ab +ab +ab +bH +bH +bH +ab +ab +ab +ci +aN +cq +cq +aN +cw +af +ab +af +cN +cV +cY +ab +dr +cu +ab +ab +ab +cu +ab +cu +ab +ab +eL +eX +fy +fN +gi +gR +ab +gb +gg +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(104,1,1) = {" +aa +aa +aa +aa +ab +af +ai +ai +ai +an +ai +ag +ag +ag +ag +ag +aL +aV +ab +bl +bu +bB +bv +bv +bv +bB +bv +af +af +ck +aN +aN +aN +aN +ba +cB +ab +cO +cW +cZ +ab +ds +dm +dm +ab +ed +ai +ab +ai +ed +ab +eM +eZ +fB +fP +fH +fH +ab +gb +gg +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(105,1,1) = {" +aa +aa +aa +aa +aa +ab +ab +ab +ab +af +ar +au +ai +ai +an +aI +aL +aW +ab +bm +bv +bv +bv +bv +bv +bv +bv +bv +ba +aN +aN +aN +aN +aN +ab +ab +ab +ab +ab +ab +ab +ds +dm +dm +ab +ec +eo +ab +ev +ec +ab +ab +fk +fz +fA +fH +fM +ab +gb +gg +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(106,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +av +av +av +ab +af +aM +aX +ab +bn +bv +bC +bv +bM +bS +bY +bv +bv +af +ab +aN +aN +aN +aN +ab +aT +cI +cP +cI +aW +ab +dt +dG +dm +dY +ab +en +ab +en +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gg +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(107,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +bw +bD +bI +bN +bT +bZ +bv +bv +cj +ab +ab +bk +aN +bk +ba +aT +aT +aT +aT +aT +ab +ds +dF +dm +dW +af +ab +ab +ab +ab +ab +dg +dg +fm +dg +dg +dg +dg +ab +af +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(108,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +av +av +ab +bU +ca +bv +bv +cj +ab +ab +ab +cu +ab +ab +aT +aT +aT +aT +aT +df +dv +dF +dm +dW +eh +ab +ab +ab +ab +dg +dg +dg +dg +dg +dg +dg +dg +aN +cy +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(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 +ab +ab +av +av +av +ab +ab +cr +ct +aN +cx +ab +cC +ab +cu +ab +cu +ab +du +dH +dE +dZ +eg +er +ab +ab +dg +dg +aN +aN +aN +aN +aN +dg +dg +aN +cy +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(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 +ab +ab +ab +av +ab +ab +ab +ab +cQ +ab +da +ab +dm +dF +dm +dm +ei +dm +ab +eu +dg +eA +eA +eA +fC +eA +eA +eA +dg +aN +cy +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(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 +ab +ab +ab +ab +ab +ab +dw +dI +dO +dm +ei +dm +ba +dg +dg +eA +eN +fb +fu +fb +fK +fR +dg +aN +cy +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(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 +ab +ab +ab +ab +ab +ab +af +dP +ea +el +ea +ba +dg +dg +eA +eY +fl +fu +fb +fK +fR +dg +aN +cy +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(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 +ab +ab +ab +ab +af +ej +es +ab +eB +dg +eA +eA +eA +fD +eA +eA +eA +dg +aN +cy +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(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 +ab +ab +ab +ab +ep +ew +ab +ex +dg +dg +aN +aN +aN +aN +aN +dg +dg +aN +cy +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(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 +ab +ab +ab +ab +ab +ab +ex +ex +dg +dg +dg +dg +dg +dg +dg +dg +aN +cy +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(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 +ab +ab +ab +ab +ab +ex +dg +dg +fq +dg +dg +dg +dg +ab +af +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(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 +"} +(120,1,1) = {" +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(121,1,1) = {" +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ey +gL +gL +gL +gL +gL +ey +gL +gL +gL +gL +gL +ey +gL +gL +gL +gL +gL +ey +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(122,1,1) = {" +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ez +eC +eP +fd +fw +fw +fL +fS +fZ +gc +gc +gj +fL +gp +gp +gp +gp +gp +gK +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(123,1,1) = {" +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +at +at +at +at +at +ab +ab +aa +aa +aa +aa +aa +aa +ez +eC +eQ +fd +fw +fw +fL +fT +ga +gd +ga +gk +fL +gp +gw +gz +gC +gp +gK +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(124,1,1) = {" +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +cD +cD +cD +cD +db +dg +dx +ab +aa +aa +aa +aa +aa +aa +ez +eC +eC +fd +fw +fw +fL +fU +ga +gd +ga +gl +fL +gp +gw +gz +gC +gp +gK +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(125,1,1) = {" +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +ab +ab +ab +ab +ab +aa +ab +ab +ab +ab +ab +ab +ab +aa +aa +aa +aa +aa +aa +ab +cE +cD +cD +cD +db +dh +dy +ab +aa +aa +aa +aa +aa +aa +ez +eC +eC +fd +fw +fw +fL +fU +fU +ge +fU +gk +fL +gp +gw +gz +gC +gp +gK +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(126,1,1) = {" +aa +aa +ac +ad +ac +ac +ac +ac +ab +ab +ab +ab +ab +ab +aF +ab +aN +aY +bb +ab +aa +ab +bJ +bJ +bJ +bJ +bJ +cf +aa +aa +aa +aa +aa +aa +cy +ap +ap +cD +cD +db +di +dz +ab +aa +aa +aa +aa +aa +aa +ez +eC +eR +fd +fw +fw +fL +fV +fV +gf +gf +gm +fL +gp +gp +gp +gp +gp +gK +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(127,1,1) = {" +aa +aa +ac +ac +ac +ac +ac +ac +ak +ao +as +aw +ap +aE +af +ab +aO +ab +bc +ab +ab +ab +bJ +bJ +bJ +bJ +bJ +cf +aa +aa +aa +aa +aa +aa +cy +ap +ap +ap +ap +dc +ab +ab +ab +aa +aa +aa +aa +aa +aa +ey +eD +eD +eD +eD +eD +ey +eD +eD +eD +eD +eD +ey +eD +eD +eD +eD +eD +ey +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(128,1,1) = {" +aa +aa +ac +ac +ac +ac +ac +ac +ak +ap +ap +ap +ap +ap +ap +aJ +aN +aN +aN +aN +aN +aJ +bJ +bJ +bJ +bJ +bJ +cf +aa +aa +aa +aa +aa +aa +cy +ap +ap +ap +ap +dd +cD +dA +ab +aa +aa +aa +aa +aa +aa +ez +eE +eF +eF +eF +eF +fL +fW +fW +fW +fW +fW +fL +gq +gx +gA +gD +gE +gK +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(129,1,1) = {" +aa +aa +ac +ac +ac +ac +ac +ac +ak +ap +ap +ax +as +ap +aG +aJ +aN +aN +bd +aN +aN +aJ +bJ +bJ +bJ +bJ +bJ +cf +aa +aa +aa +aa +aa +aa +cy +ap +ap +ap +ap +dd +cD +dB +ab +aa +aa +aa +aa +aa +aa +ez +eF +eF +fe +eF +eF +fL +fW +fW +fW +fW +fW +fL +gr +gx +gA +gD +gF +gK +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(130,1,1) = {" +aa +aa +ac +ac +ac +ac +ac +ac +ak +ao +as +ay +as +ap +af +ab +aO +ab +ab +ab +bc +ab +bJ +bJ +bJ +bJ +bJ +cf +aa +aa +aa +aa +aa +aa +cy +ap +ap +ap +ap +de +ab +ab +ab +aa +aa +aa +aa +aa +aa +ez +eF +eF +eF +fx +eF +fL +fW +fW +fW +fW +fW +fL +gs +gx +gB +gD +gG +gK +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(131,1,1) = {" +aa +aa +ac +ad +ac +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +be +be +ap +ab +bK +bO +bV +cb +cd +ab +aa +aa +aa +aa +aa +aa +cy +ap +ap +cD +cD +db +dj +dj +ab +aa +aa +aa +aa +aa +aa +ez +eF +eF +ff +eF +eF +fL +fW +fW +fW +fW +fW +fL +gt +gx +gA +gD +gH +gK +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(132,1,1) = {" +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +ab +aZ +bf +bo +bx +ab +ab +ab +ab +ab +ab +ab +aa +aa +aa +aa +aa +aa +ab +cF +cD +cD +cD +db +cG +dC +ab +aa +aa +aa +aa +aa +aa +ez +eF +eF +eF +eF +eF +fL +fW +fW +fW +fW +fW +fL +gq +gx +gA +gD +gE +gK +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(133,1,1) = {" +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +ab +aZ +bf +bp +bx +ab +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +cG +cG +cD +cD +db +cG +cG +ab +aa +aa +aa +aa +aa +aa +ey +eD +eD +eD +eD +eD +ey +eD +eD +eD +eD +eD +ey +eD +eD +eD +eD +eD +ey +gL +gL +gL +gL +gL +ey +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(134,1,1) = {" +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +ab +aE +bg +bq +ap +ab +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +av +av +av +av +av +ab +ab +aa +aa +aa +aa +aa +aa +ez +eG +eH +eH +eH +eH +fL +fX +fX +fX +fX +fX +go +gu +gy +gy +gy +gI +go +gM +gM +gM +gM +gM +gK +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(135,1,1) = {" +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +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 +ez +eH +eH +eS +eH +eH +fL +fY +fY +fY +fY +fY +go +gv +gy +gy +gy +gJ +go +gM +gM +gM +gM +gM +gK +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(136,1,1) = {" +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ez +eH +eH +eH +eH +eH +fL +fY +fY +fY +gh +gn +go +gv +gy +gy +gy +gJ +go +gM +gM +gM +gM +gM +gK +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(137,1,1) = {" +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ez +eH +eH +eH +eH +eH +fL +fY +fY +fY +gh +gn +go +gv +gy +gy +gy +gJ +go +gM +gM +gM +gM +gM +gK +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(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 +ez +eH +eS +eH +eH +eG +fL +fY +fY +fY +fY +fY +go +gu +gy +gy +gy +gI +go +gM +gM +gM +gM +gM +gK +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(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 +ey +eI +eI +eI +eI +eI +ey +eI +eI +eI +eI +eI +ey +eI +eI +eI +eI +eI +ey +eI +eI +eI +eI +eI +ey +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(140,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} diff --git a/maps/tether/submaps/tether_ships.dmm b/maps/tether/submaps/tether_ships.dmm index 9ad3b6a752..08d662e127 100644 --- a/maps/tether/submaps/tether_ships.dmm +++ b/maps/tether/submaps/tether_ships.dmm @@ -2,1827 +2,16 @@ "aa" = ( /turf/space, /area/space) -"ab" = ( -/turf/simulated/shuttle/wall/voidcraft/blue{ - name = "small craft wall"; - stripe_color = "#45b3d8" - }, -/area/houseboat) -"ac" = ( -/turf/simulated/floor/reinforced/airless{ - name = "outer hull" - }, -/area/space) -"ad" = ( -/obj/machinery/porta_turret, -/turf/simulated/floor/reinforced/airless{ - name = "outer hull" - }, -/area/space) -"ae" = ( -/obj/machinery/computer/security/telescreen/entertainment, -/turf/simulated/shuttle/wall/voidcraft/blue{ - name = "small craft wall"; - stripe_color = "#45b3d8" - }, -/area/houseboat) -"af" = ( -/turf/simulated/shuttle/wall/voidcraft/blue{ - hard_corner = 1; - icon_state = "void-hc"; - name = "small craft wall hc"; - stripe_color = "#45b3d8" - }, -/area/houseboat) -"ag" = ( -/turf/simulated/floor/carpet/blue, -/area/houseboat) -"ah" = ( -/obj/machinery/media/jukebox, -/turf/simulated/floor/wood, -/area/houseboat) -"ai" = ( -/turf/simulated/floor/wood, -/area/houseboat) -"aj" = ( -/obj/structure/table/marble, -/turf/simulated/floor/carpet/blue, -/area/houseboat) -"ak" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 10; - icon_state = "fwindow" - }, -/obj/machinery/door/blast/shutters{ - density = 1; - dir = 1; - icon_state = "shutter1"; - id = "dongleship_blast"; - layer = 3.3; - name = "Blast Shutters"; - opacity = 1 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/shuttle/plating, -/area/houseboat) -"al" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/simulated/floor/wood, -/area/houseboat) -"am" = ( -/obj/structure/bed/chair/comfy/black{ - icon_state = "comfychair_preview"; - dir = 1 - }, -/turf/simulated/floor/carpet/blue, -/area/houseboat) -"an" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_x = 0 - }, -/turf/simulated/floor/wood, -/area/houseboat) -"ao" = ( -/obj/machinery/computer/gyrotron_control, -/turf/simulated/floor/tiled/steel_grid, -/area/houseboat) -"ap" = ( -/turf/simulated/floor/tiled/steel_grid, -/area/houseboat) -"aq" = ( -/obj/structure/flora/pottedplant, -/turf/simulated/floor/wood, -/area/houseboat) -"ar" = ( -/obj/structure/flora/pottedplant, -/obj/machinery/button/remote/blast_door{ - dir = 8; - id = "dongleship_blast"; - name = "exterior shutters"; - pixel_x = 28 - }, -/turf/simulated/floor/wood, -/area/houseboat) -"as" = ( -/obj/structure/bed/chair/shuttle{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/houseboat) -"at" = ( -/obj/machinery/door/blast/shutters{ - density = 1; - dir = 8; - icon_state = "shutter1"; - id = "dongleship_blast"; - layer = 3.3; - name = "Blast Shutters"; - opacity = 1 - }, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 10; - icon_state = "fwindow" - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/shuttle/plating, -/area/houseboat) -"au" = ( -/obj/structure/closet/crate/bin, -/turf/simulated/floor/wood, -/area/houseboat) -"av" = ( -/obj/structure/grille, -/obj/machinery/door/blast/shutters{ - density = 1; - dir = 4; - icon_state = "shutter1"; - id = "dongleship_blast"; - layer = 3.3; - name = "Blast Shutters"; - opacity = 1 - }, -/obj/structure/window/reinforced{ - dir = 10; - icon_state = "fwindow" - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/shuttle/plating, -/area/houseboat) -"aw" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/houseboat) -"ax" = ( -/obj/machinery/computer/card/centcom, -/turf/simulated/floor/tiled/steel_grid, -/area/houseboat) -"ay" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/computer/message_monitor, -/turf/simulated/floor/tiled/steel_grid, -/area/houseboat) -"az" = ( -/obj/structure/bed/chair/wood{ - icon_state = "wooden_chair"; - dir = 4 - }, -/turf/simulated/floor/carpet/blue, -/area/houseboat) -"aA" = ( -/obj/structure/table/woodentable, -/turf/simulated/floor/carpet/blue, -/area/houseboat) -"aB" = ( -/obj/structure/bed/chair/wood{ - icon_state = "wooden_chair"; - dir = 8 - }, -/turf/simulated/floor/carpet/blue, -/area/houseboat) -"aC" = ( -/obj/structure/bed/chair/wood{ - dir = 4 - }, -/turf/simulated/floor/carpet/blue, -/area/houseboat) -"aD" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/book/codex, -/turf/simulated/floor/carpet/blue, -/area/houseboat) -"aE" = ( -/obj/structure/closet/crate/bin, -/turf/simulated/floor/tiled/steel_grid, -/area/houseboat) -"aF" = ( -/obj/effect/floor_decal/techfloor/corner{ - dir = 4 - }, -/obj/effect/floor_decal/techfloor/corner{ - dir = 1 - }, -/turf/simulated/shuttle/wall/voidcraft/blue{ - name = "small craft wall"; - stripe_color = "#45b3d8" - }, -/area/houseboat) -"aG" = ( -/obj/machinery/button/remote/blast_door{ - dir = 8; - id = "dongleship_blast"; - name = "exterior shutters"; - pixel_x = 28 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/houseboat) -"aH" = ( -/obj/machinery/vending/food/arojoan{ - density = 0; - pixel_x = -32 - }, -/turf/simulated/floor/wood, -/area/houseboat) -"aI" = ( -/obj/machinery/vending/boozeomat{ - density = 0; - pixel_x = 32 - }, -/turf/simulated/floor/wood, -/area/houseboat) -"aJ" = ( -/obj/machinery/door/airlock/voidcraft, -/turf/simulated/floor/tiled/techfloor, -/area/houseboat) -"aK" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/turf/simulated/floor/tiled/white, -/area/houseboat) -"aL" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/houseboat) -"aM" = ( -/obj/effect/floor_decal/spline/fancy/wood/corner{ - dir = 4 - }, -/obj/machinery/vending/dinnerware, -/turf/simulated/floor/tiled/white, -/area/houseboat) -"aN" = ( -/turf/simulated/floor/tiled/techfloor, -/area/houseboat) -"aO" = ( -/obj/structure/sign/department/bridge, -/turf/simulated/shuttle/wall/voidcraft/blue{ - name = "small craft wall"; - stripe_color = "#45b3d8" - }, -/area/houseboat) -"aP" = ( -/obj/structure/closet/secure_closet/freezer/meat, -/turf/simulated/floor/tiled/white, -/area/houseboat) -"aQ" = ( -/obj/effect/floor_decal/spline/fancy/wood/corner{ - dir = 1 - }, -/obj/structure/table/standard, -/obj/machinery/reagentgrinder, -/turf/simulated/floor/tiled/white, -/area/houseboat) -"aR" = ( -/obj/structure/table/standard, -/obj/machinery/microwave, -/turf/simulated/floor/tiled/white, -/area/houseboat) -"aS" = ( -/obj/structure/closet/secure_closet/freezer/kitchen, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/houseboat) -"aT" = ( -/turf/simulated/floor/tiled/white, -/area/houseboat) -"aU" = ( -/obj/machinery/cooker/oven, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/houseboat) -"aV" = ( -/obj/machinery/cooker/grill, -/turf/simulated/floor/tiled/white, -/area/houseboat) -"aW" = ( -/obj/structure/table/standard, -/turf/simulated/floor/tiled/white, -/area/houseboat) -"aX" = ( -/obj/structure/table/standard, -/obj/item/weapon/material/knife/butch, -/obj/item/weapon/material/kitchen/rollingpin, -/turf/simulated/floor/tiled/white, -/area/houseboat) -"aY" = ( -/obj/effect/step_trigger/teleporter{ - dir = 2; - icon = 'icons/obj/stairs.dmi'; - invisibility = 0; - name = "stairs"; - teleport_x = 99; - teleport_y = 104; - teleport_z = 12 - }, -/turf/simulated/floor/tiled/techfloor, -/area/houseboat) -"aZ" = ( -/obj/structure/bed/chair, -/turf/simulated/floor/tiled/steel_grid, -/area/houseboat) -"ba" = ( -/obj/machinery/door/airlock/voidcraft, -/turf/simulated/floor/tiled/white, -/area/houseboat) -"bb" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/houseboat) -"bc" = ( -/obj/machinery/door/airlock/voidcraft/vertical, -/turf/simulated/floor/tiled/techfloor, -/area/houseboat) -"bd" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/houseboat) -"be" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/houseboat) -"bf" = ( -/obj/structure/table/steel, -/turf/simulated/floor/tiled/steel_grid, -/area/houseboat) -"bg" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/houseboat) -"bh" = ( -/obj/machinery/computer/operating, -/turf/simulated/floor/tiled/steel_grid, -/area/houseboat) -"bi" = ( -/obj/machinery/optable, -/turf/simulated/floor/tiled/steel_grid, -/area/houseboat) -"bj" = ( -/obj/structure/table/standard, -/obj/item/weapon/storage/firstaid/surgery, -/turf/simulated/floor/tiled/steel_grid, -/area/houseboat) -"bk" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/houseboat) -"bl" = ( -/obj/structure/table/steel_reinforced, -/obj/item/stack/material/plasteel, -/obj/item/stack/material/plasteel, -/turf/simulated/floor/tiled/techmaint, -/area/houseboat) -"bm" = ( -/obj/structure/table/steel_reinforced, -/obj/item/stack/material/diamond, -/obj/item/stack/material/gold, -/obj/item/stack/material/silver, -/turf/simulated/floor/tiled/techmaint, -/area/houseboat) -"bn" = ( -/obj/structure/table/steel_reinforced, -/obj/item/stack/material/uranium, -/obj/item/stack/material/uranium, -/turf/simulated/floor/tiled/techmaint, -/area/houseboat) -"bo" = ( -/obj/structure/table/steel, -/obj/item/weapon/storage/secure/briefcase/nsfw_pack, -/turf/simulated/floor/tiled/steel_grid, -/area/houseboat) -"bp" = ( -/obj/structure/table/steel, -/obj/machinery/recharger, -/turf/simulated/floor/tiled/steel_grid, -/area/houseboat) -"bq" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/houseboat) -"br" = ( -/obj/structure/table/standard, -/obj/item/weapon/tank/anesthetic, -/obj/item/clothing/mask/breath/medical, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/houseboat) -"bs" = ( -/obj/structure/sink{ - dir = 4; - icon_state = "sink"; - pixel_x = 12; - pixel_y = 5 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/houseboat) -"bt" = ( -/obj/structure/closet/hydrant{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled/techfloor, -/area/houseboat) -"bu" = ( -/obj/structure/closet/crate/bin, -/turf/simulated/floor/tiled/techmaint, -/area/houseboat) -"bv" = ( -/turf/simulated/floor/tiled/techmaint, -/area/houseboat) -"bw" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/houseboat) -"bx" = ( -/obj/structure/bed/chair{ - icon_state = "chair_preview"; - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/houseboat) -"by" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/houseboat) -"bz" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/table/standard, -/obj/item/device/healthanalyzer/advanced, -/turf/simulated/floor/tiled/white, -/area/houseboat) -"bA" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/table/standard, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_x = 0 - }, -/obj/item/roller/adv, -/turf/simulated/floor/tiled/white, -/area/houseboat) -"bB" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/houseboat) -"bC" = ( -/obj/item/weapon/stool/padded, -/turf/simulated/floor/tiled/techmaint, -/area/houseboat) -"bD" = ( -/obj/structure/table/steel_reinforced, -/obj/item/weapon/storage/toolbox/syndicate, -/turf/simulated/floor/tiled/techmaint, -/area/houseboat) -"bE" = ( -/obj/machinery/iv_drip, -/turf/simulated/floor/tiled/white, -/area/houseboat) -"bF" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/houseboat) -"bG" = ( -/obj/machinery/computer/transhuman/resleeving{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/houseboat) -"bH" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 10; - icon_state = "fwindow" - }, -/turf/simulated/shuttle/plating, -/area/houseboat) -"bI" = ( -/obj/structure/table/steel_reinforced, -/turf/simulated/floor/tiled/techmaint, -/area/houseboat) -"bJ" = ( -/turf/simulated/floor/reinforced{ - name = "Holodeck Projector Floor" - }, -/area/houseboat/holodeck_area) -"bK" = ( -/obj/machinery/computer/HolodeckControl/houseboat{ - dir = 2 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/houseboat) -"bL" = ( -/obj/machinery/clonepod/transhuman, -/turf/simulated/floor/tiled/white, -/area/houseboat) -"bM" = ( -/obj/structure/table/steel_reinforced, -/obj/item/stack/material/steel{ - amount = 50 - }, -/obj/item/stack/material/steel{ - amount = 50 - }, -/turf/simulated/floor/tiled/techmaint, -/area/houseboat) -"bN" = ( -/obj/structure/table/steel_reinforced, -/obj/item/stack/material/glass{ - amount = 50 - }, -/obj/item/stack/material/glass{ - amount = 50 - }, -/turf/simulated/floor/tiled/techmaint, -/area/houseboat) -"bO" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/houseboat) -"bP" = ( -/obj/machinery/bodyscanner{ - dir = 8 - }, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/houseboat) -"bQ" = ( -/obj/machinery/body_scanconsole, -/turf/simulated/floor/tiled/white, -/area/houseboat) -"bR" = ( -/obj/machinery/transhuman/synthprinter, -/turf/simulated/floor/tiled/white, -/area/houseboat) -"bS" = ( -/obj/machinery/pros_fabricator{ - req_access = list() - }, -/turf/simulated/floor/tiled/techmaint, -/area/houseboat) -"bT" = ( -/obj/machinery/autolathe{ - desc = "Your typical Autolathe. It appears to have much more options than your regular one, however..."; - hacked = 1; - name = "Centcom Autolathe" - }, -/turf/simulated/floor/tiled/techmaint, -/area/houseboat) -"bU" = ( -/obj/machinery/mecha_part_fabricator{ - req_access = list() - }, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/houseboat) -"bV" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/table/standard, -/obj/structure/bedsheetbin, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/houseboat) -"bW" = ( -/obj/machinery/transhuman/resleever, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_x = 0 - }, -/turf/simulated/floor/tiled/white, -/area/houseboat) -"bX" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/houseboat) -"bY" = ( -/obj/effect/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled/techmaint, -/area/houseboat) -"bZ" = ( -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/techmaint, -/area/houseboat) -"ca" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techmaint, -/area/houseboat) -"cb" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/houseboat) -"cc" = ( -/obj/machinery/vending/medical{ - density = 0; - pixel_x = 0; - pixel_y = 0; - req_access = list() - }, -/turf/simulated/floor/tiled/white, -/area/houseboat) -"cd" = ( -/obj/machinery/button/remote/blast_door{ - dir = 8; - id = "dongleship_blast"; - name = "exterior shutters"; - pixel_x = 28 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/houseboat) -"ce" = ( -/obj/item/weapon/storage/firstaid/regular{ - pixel_x = -2; - pixel_y = 4 - }, -/obj/item/weapon/storage/firstaid/regular{ - pixel_x = -2; - pixel_y = 4 - }, -/obj/item/bodybag/cryobag{ - pixel_x = 5 - }, -/obj/item/bodybag/cryobag{ - pixel_x = 5 - }, -/obj/item/weapon/storage/firstaid/o2{ - layer = 2.8; - pixel_x = 4; - pixel_y = 6 - }, -/obj/item/weapon/storage/box/masks{ - pixel_x = 0; - pixel_y = 0 - }, -/obj/item/weapon/storage/box/gloves{ - pixel_x = 3; - pixel_y = 4 - }, -/obj/item/weapon/storage/firstaid/toxin, -/obj/item/weapon/storage/firstaid/fire{ - layer = 2.9; - pixel_x = 2; - pixel_y = 3 - }, -/obj/item/weapon/storage/firstaid/adv{ - pixel_x = -2 - }, -/obj/item/weapon/reagent_containers/blood/empty, -/obj/item/weapon/reagent_containers/blood/OMinus, -/obj/item/weapon/reagent_containers/blood/OMinus, -/obj/item/weapon/reagent_containers/blood/OMinus, -/obj/item/weapon/reagent_containers/blood/OMinus, -/obj/structure/closet/medical_wall{ - pixel_y = -32 - }, -/obj/item/weapon/storage/box/body_record_disk, -/turf/simulated/floor/tiled/white, -/area/houseboat) -"cf" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 10; - icon_state = "fwindow" - }, -/obj/machinery/door/blast/shutters{ - density = 1; - dir = 2; - icon_state = "shutter1"; - id = "dongleship_blast"; - layer = 3.3; - name = "Blast Shutters"; - opacity = 1 - }, -/obj/structure/window/reinforced, -/turf/simulated/shuttle/plating, -/area/houseboat) -"cg" = ( -/obj/machinery/chem_master, -/turf/simulated/floor/tiled/white, -/area/houseboat) -"ch" = ( -/obj/machinery/chemical_dispenser/ert, -/obj/structure/table/steel_reinforced, -/turf/simulated/floor/tiled/white, -/area/houseboat) -"ci" = ( -/obj/structure/flora/pottedplant/minitree, -/turf/simulated/floor/tiled/techfloor, -/area/houseboat) -"cj" = ( -/obj/machinery/mech_recharger, -/turf/simulated/floor/tiled/techmaint, -/area/houseboat) -"ck" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/houseboat) -"cl" = ( -/obj/structure/railing, -/turf/simulated/floor/tiled/techfloor, -/area/houseboat) -"cm" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/turf/simulated/floor/tiled/techfloor, -/area/houseboat) -"cn" = ( -/obj/effect/step_trigger/teleporter{ - icon = 'icons/obj/stairs.dmi'; - invisibility = 0; - name = "stairs"; - pixel_y = -32; - teleport_x = 128; - teleport_y = 100; - teleport_z = 12 - }, -/turf/simulated/floor/tiled/techmaint, -/area/houseboat) -"co" = ( -/obj/structure/railing{ - icon_state = "railing0"; - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/houseboat) -"cp" = ( -/obj/effect/step_trigger/teleporter{ - icon = 'icons/obj/stairs.dmi'; - invisibility = 0; - name = "stairs"; - pixel_y = -32; - teleport_x = 129; - teleport_y = 100; - teleport_z = 12 - }, -/turf/simulated/floor/tiled/techmaint, -/area/houseboat) -"cq" = ( -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/houseboat) -"cr" = ( -/obj/structure/closet/secure_closet/personal, -/turf/simulated/floor/tiled/techfloor, -/area/houseboat) -"cs" = ( -/obj/machinery/light/small{ - dir = 8; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/techfloor, -/area/houseboat) -"ct" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/houseboat) -"cu" = ( -/obj/machinery/door/airlock/voidcraft/vertical, -/turf/simulated/floor/tiled/white, -/area/houseboat) -"cv" = ( -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 5 - }, -/turf/simulated/floor/tiled/techfloor, -/area/houseboat) -"cw" = ( -/obj/machinery/light, -/turf/simulated/floor/tiled/techfloor, -/area/houseboat) -"cx" = ( -/obj/structure/table/rack, -/obj/item/device/suit_cooling_unit, -/obj/item/weapon/tank/air, -/turf/simulated/floor/tiled/techfloor, -/area/houseboat) -"cy" = ( -/obj/machinery/door/blast/regular{ - icon_state = "pdoor1"; - dir = 8 - }, -/turf/space, -/area/houseboat) -"cz" = ( -/obj/structure/table/woodentable, -/turf/simulated/floor/tiled/white, -/area/houseboat) -"cA" = ( -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor, -/area/houseboat) -"cB" = ( -/obj/structure/closet{ - name = "custodial" - }, -/obj/item/weapon/reagent_containers/spray/cleaner, -/obj/item/weapon/reagent_containers/glass/bucket, -/obj/item/weapon/mop, -/obj/item/weapon/storage/box/lights/mixed, -/obj/machinery/light/small{ - dir = 8; - pixel_x = 0 - }, -/turf/simulated/floor/tiled/techfloor, -/area/houseboat) -"cC" = ( -/obj/machinery/washing_machine, -/turf/simulated/floor/tiled/white, -/area/houseboat) -"cD" = ( -/turf/simulated/floor/tiled/steel, -/area/houseboat) -"cE" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/houseboat) -"cF" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/ore_box, -/turf/simulated/floor/tiled/steel_grid, -/area/houseboat) -"cG" = ( -/obj/structure/ore_box, -/turf/simulated/floor/tiled/steel, -/area/houseboat) -"cH" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_x = 0 - }, -/turf/simulated/floor/tiled/white, -/area/houseboat) -"cI" = ( -/obj/structure/sink{ - icon_state = "sink"; - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/turf/simulated/floor/tiled/white, -/area/houseboat) -"cJ" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor/glass, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "security_lockdown"; - name = "Security Blast Doors"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/houseboat) -"cK" = ( -/obj/machinery/door/window/brigdoor/southleft{ - name = "Cell 3"; - icon_state = "leftsecure"; - dir = 1; - req_access = list(2); - id = "Cell 3" - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "security_lockdown"; - name = "Security Blast Doors"; - opacity = 0 - }, -/turf/simulated/floor/tiled/dark, -/area/houseboat) -"cL" = ( -/obj/effect/step_trigger/teleporter{ - icon = 'icons/obj/stairs.dmi'; - invisibility = 0; - name = "stairs"; - teleport_x = 126; - teleport_y = 122; - teleport_z = 12 - }, -/turf/simulated/floor/tiled/techfloor, -/area/houseboat) -"cM" = ( -/obj/structure/closet/hydrant{ - pixel_x = -32 - }, -/turf/simulated/floor/tiled/techfloor, -/area/houseboat) -"cN" = ( -/obj/effect/floor_decal/techfloor{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/houseboat) -"cO" = ( -/obj/machinery/cryopod, -/obj/effect/floor_decal/techfloor{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/houseboat) -"cP" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/houseboat) -"cQ" = ( -/obj/structure/toilet{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/houseboat) -"cR" = ( -/obj/structure/closet/secure_closet/brig{ - id = "Cell 3" - }, -/obj/effect/floor_decal/industrial/outline, -/turf/simulated/floor/tiled/dark, -/area/houseboat) -"cS" = ( -/obj/structure/bed/padded, -/turf/simulated/floor/tiled/dark, -/area/houseboat) -"cT" = ( -/turf/simulated/floor/tiled/dark, -/area/houseboat) -"cU" = ( -/obj/structure/sink{ - dir = 4; - icon_state = "sink"; - pixel_x = 12; - pixel_y = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/houseboat) -"cV" = ( -/obj/effect/floor_decal/techfloor{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/houseboat) -"cW" = ( -/obj/machinery/computer/cryopod{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/houseboat) -"cX" = ( -/obj/structure/toilet{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/houseboat) -"cY" = ( -/obj/effect/floor_decal/techfloor{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/houseboat) -"cZ" = ( -/obj/machinery/cryopod, -/obj/effect/floor_decal/techfloor, -/turf/simulated/floor/tiled/techfloor/grid, -/area/houseboat) -"da" = ( -/obj/machinery/recharge_station, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/houseboat) -"db" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/steel, -/area/houseboat) -"dc" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - icon_state = "warningcorner"; - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/houseboat) -"dd" = ( -/turf/simulated/floor/tiled/steel_ridged, -/area/houseboat) -"de" = ( -/obj/effect/floor_decal/industrial/warning/corner, -/turf/simulated/floor/tiled/steel_grid, -/area/houseboat) -"df" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/shuttle/wall/voidcraft/blue{ - name = "small craft wall"; - stripe_color = "#45b3d8" - }, -/area/houseboat) -"dg" = ( -/turf/simulated/floor/reinforced, -/area/houseboat) -"dh" = ( -/obj/item/device/perfect_tele, -/turf/simulated/floor/reinforced, -/area/houseboat) -"di" = ( -/obj/machinery/button/remote/blast_door{ - dir = 8; - id = "dongleship_blast"; - name = "exterior shutters"; - pixel_x = 28 - }, -/turf/simulated/floor/reinforced, -/area/houseboat) -"dj" = ( -/obj/structure/closet/crate, -/turf/simulated/floor/tiled/steel, -/area/houseboat) -"dk" = ( -/obj/structure/railing{ - icon_state = "railing0"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/shuttle/wall/voidcraft/blue{ - name = "small craft wall"; - stripe_color = "#45b3d8" - }, -/area/houseboat) -"dl" = ( -/obj/structure/catwalk, -/obj/structure/closet/crate/bin, -/turf/simulated/floor/plating, -/area/houseboat) -"dm" = ( -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/houseboat) -"dn" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/railing, -/turf/simulated/floor/plating, -/area/houseboat) -"do" = ( -/obj/structure/railing, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, -/turf/simulated/floor/plating, -/area/houseboat) -"dp" = ( -/obj/structure/railing, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 6 - }, -/turf/simulated/floor/plating, -/area/houseboat) -"dq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/shuttle/wall/voidcraft/blue{ - name = "small craft wall"; - stripe_color = "#45b3d8" - }, -/area/houseboat) -"dr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/shuttle/wall/voidcraft/blue{ - name = "small craft wall"; - stripe_color = "#45b3d8" - }, -/area/houseboat) -"ds" = ( -/obj/structure/railing, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - icon_state = "intact-supply"; - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, -/turf/simulated/floor/plating, -/area/houseboat) -"dt" = ( -/obj/structure/railing, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - icon_state = "intact-supply"; - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/houseboat) -"du" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 10 - }, -/turf/simulated/floor/plating, -/area/houseboat) -"dv" = ( -/obj/structure/railing, -/obj/structure/railing{ - icon_state = "railing0"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - icon_state = "intact-supply"; - dir = 9 - }, -/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers, -/turf/simulated/floor/plating, -/area/houseboat) -"dw" = ( -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/shuttle/wall/voidcraft/blue{ - name = "small craft wall"; - stripe_color = "#45b3d8" - }, -/area/houseboat) -"dx" = ( -/obj/machinery/computer/teleporter{ - icon_state = "computer"; - dir = 1 - }, -/turf/simulated/floor/reinforced, -/area/houseboat) -"dy" = ( -/obj/machinery/light, -/obj/machinery/teleport/station{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/houseboat) -"dz" = ( -/obj/machinery/teleport/hub, -/turf/simulated/floor/reinforced, -/area/houseboat) -"dA" = ( -/obj/effect/step_trigger/teleporter{ - icon = 'icons/obj/stairs.dmi'; - invisibility = 0; - name = "stairs"; - pixel_y = 0; - teleport_x = 102; - teleport_y = 109; - teleport_z = 12 - }, -/turf/simulated/floor/tiled/steel, -/area/houseboat) -"dB" = ( -/obj/effect/step_trigger/teleporter{ - icon = 'icons/obj/stairs.dmi'; - invisibility = 0; - name = "stairs"; - pixel_y = 0; - teleport_x = 101; - teleport_y = 109; - teleport_z = 12 - }, -/turf/simulated/floor/tiled/steel, -/area/houseboat) -"dC" = ( -/obj/machinery/light, -/obj/structure/closet/crate, -/turf/simulated/floor/tiled/steel, -/area/houseboat) -"dD" = ( -/obj/structure/railing{ - icon_state = "railing0"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/purple, -/obj/machinery/atmospherics/pipe/simple/visible/supply, -/obj/machinery/light/small{ - dir = 8; - pixel_y = 0 - }, -/turf/simulated/floor/plating, -/area/houseboat) -"dE" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, -/turf/simulated/floor/plating, -/area/houseboat) -"dF" = ( -/obj/structure/catwalk, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/houseboat) -"dG" = ( -/obj/structure/catwalk, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/houseboat) -"dH" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/houseboat) -"dI" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/effect/floor_decal/rust, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/houseboat) "dJ" = ( /turf/unsimulated/wall/seperator, /area/space) -"dK" = ( -/obj/structure/railing, -/obj/machinery/atmospherics/pipe/simple/visible/purple{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/houseboat) -"dL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/purple{ - icon_state = "intact"; - dir = 4 - }, -/turf/simulated/shuttle/wall/voidcraft/blue{ - name = "small craft wall"; - stripe_color = "#45b3d8" - }, -/area/houseboat) -"dM" = ( -/obj/structure/railing, -/obj/structure/railing{ - icon_state = "railing0"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/purple{ - icon_state = "intact"; - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/visible/supply, -/turf/simulated/floor/plating, -/area/houseboat) -"dN" = ( -/obj/structure/catwalk, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/plating, -/area/houseboat) -"dO" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/railing, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/houseboat) -"dP" = ( -/obj/structure/railing, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/houseboat) "dQ" = ( /obj/effect/step_trigger/zlevel_fall/beach, /turf/space/sandyscroll, /area/space) -"dR" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - icon_state = "intact-supply"; - dir = 4 - }, -/turf/simulated/floor/plating, -/area/houseboat) -"dS" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - icon_state = "intact-supply"; - dir = 5 - }, -/turf/simulated/floor/plating, -/area/houseboat) -"dT" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - icon_state = "intact-supply"; - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/houseboat) -"dU" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 6 - }, -/obj/machinery/atmospherics/pipe/manifold/visible/supply{ - icon_state = "map-supply"; - dir = 1 - }, -/turf/simulated/floor/plating, -/area/houseboat) -"dV" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/shuttle/wall/voidcraft/blue{ - hard_corner = 1; - icon_state = "void-hc"; - name = "small craft wall hc"; - stripe_color = "#45b3d8" - }, -/area/houseboat) -"dW" = ( -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/houseboat) -"dX" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - icon_state = "intact-supply"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers, -/turf/simulated/floor/plating, -/area/houseboat) -"dY" = ( -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/shuttle/wall/voidcraft/blue{ - hard_corner = 1; - icon_state = "void-hc"; - name = "small craft wall hc"; - stripe_color = "#45b3d8" - }, -/area/houseboat) -"dZ" = ( -/obj/structure/railing{ - icon_state = "railing0"; - dir = 4 - }, -/obj/structure/railing{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, -/turf/simulated/floor/plating, -/area/houseboat) -"ea" = ( -/obj/structure/catwalk, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/houseboat) -"eb" = ( -/obj/structure/railing{ - icon_state = "railing0"; - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/houseboat) -"ec" = ( -/obj/structure/table/woodentable, -/obj/item/modular_computer/laptop/preset/custom_loadout/elite, -/turf/simulated/floor/wood, -/area/houseboat) -"ed" = ( -/obj/structure/table/woodentable, -/obj/item/device/flashlight/lamp, -/turf/simulated/floor/wood, -/area/houseboat) -"ee" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/power/fractal_reactor/fluff/converter, -/turf/simulated/floor/plating, -/area/houseboat) -"ef" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, -/obj/machinery/atmospherics/pipe/simple/visible/supply, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/houseboat) -"eg" = ( -/obj/structure/railing{ - icon_state = "railing0"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 5 - }, -/turf/simulated/floor/plating, -/area/houseboat) -"eh" = ( -/obj/machinery/atmospherics/unary/freezer{ - dir = 2; - icon_state = "freezer_1"; - use_power = 1; - power_setting = 20; - set_temperature = 73 - }, -/turf/simulated/floor/plating, -/area/houseboat) -"ei" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, -/turf/simulated/floor/plating, -/area/houseboat) -"ej" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, -/turf/simulated/floor/plating, -/area/houseboat) -"ek" = ( -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/houseboat) -"el" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/houseboat) -"em" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, -/obj/machinery/atmospherics/pipe/simple/visible/supply, -/turf/simulated/floor/plating, -/area/houseboat) -"en" = ( -/obj/item/weapon/bedsheet/captaindouble, -/obj/structure/bed/double, -/turf/simulated/floor/wood, -/area/houseboat) -"eo" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/houseboat) -"ep" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/shuttle/wall/voidcraft/blue{ - hard_corner = 1; - icon_state = "void-hc"; - name = "small craft wall hc"; - stripe_color = "#45b3d8" - }, -/area/houseboat) -"eq" = ( -/obj/structure/railing{ - icon_state = "railing0"; - dir = 4 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/houseboat) -"er" = ( -/obj/structure/railing{ - icon_state = "railing0"; - dir = 4 - }, -/turf/simulated/floor/plating, -/area/houseboat) -"es" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - icon_state = "intact"; - dir = 5 - }, -/turf/simulated/floor/plating, -/area/houseboat) "et" = ( /turf/space/bluespace, /area/space) -"eu" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/reinforced, -/area/houseboat) -"ev" = ( -/obj/structure/bed/chair/office/dark, -/turf/simulated/floor/wood, -/area/houseboat) -"ew" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - icon_state = "intact"; - dir = 8 - }, -/turf/simulated/floor/plating, -/area/houseboat) -"ex" = ( -/turf/simulated/shuttle/wall/voidcraft/blue, -/area/houseboat) -"ey" = ( -/turf/unsimulated/wall, -/area/space) -"ez" = ( -/obj/structure/window/reinforced, -/turf/unsimulated/wall, -/area/space) -"eA" = ( -/turf/simulated/shuttle/wall, -/area/shuttle/cruiser/cruiser) -"eB" = ( -/obj/machinery/airlock_sensor{ - frequency = 1380; - id_tag = "cruiser_shuttle_bay_sensor"; - pixel_x = -11; - pixel_y = 28 - }, -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - frequency = 1380; - id_tag = "cruiser_shuttle_bay"; - pixel_x = 0; - pixel_y = 28; - tag_door = "cruiser_shuttle_bay_hatch" - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/computer/shuttle_control/cruiser_shuttle, -/turf/simulated/floor/reinforced, -/area/houseboat) -"eC" = ( -/turf/simulated/floor/holofloor/beach/sand, -/area/houseboat/holodeck/beach) -"eD" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/unsimulated/wall, -/area/space) -"eE" = ( -/obj/structure/flora/grass/both, -/turf/simulated/floor/holofloor/snow, -/area/houseboat/holodeck/snow) -"eF" = ( -/turf/simulated/floor/holofloor/snow, -/area/houseboat/holodeck/snow) -"eG" = ( -/obj/structure/flora/ausbushes/fullgrass, -/turf/simulated/floor/holofloor/desert, -/area/houseboat/holodeck/desert) -"eH" = ( -/turf/simulated/floor/holofloor/desert, -/area/houseboat/holodeck/desert) -"eI" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/unsimulated/wall, -/area/space) -"eK" = ( -/obj/structure/catwalk, -/obj/machinery/vending/tool, -/turf/simulated/floor/plating, -/area/houseboat) -"eL" = ( -/obj/structure/catwalk, -/obj/machinery/vending/engivend, -/turf/simulated/floor/plating, -/area/houseboat) -"eM" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/visible, -/turf/simulated/floor/plating, -/area/houseboat) -"eN" = ( -/obj/machinery/computer/shuttle_control/cruiser_shuttle, -/turf/simulated/shuttle/floor/black, -/area/shuttle/cruiser/cruiser) "eO" = ( /obj/effect/step_trigger/thrower{ affect_ghosts = 1; @@ -1833,700 +22,9 @@ }, /turf/space/sandyscroll, /area/space) -"eP" = ( -/obj/effect/overlay/palmtree_r, -/turf/simulated/floor/holofloor/beach/sand, -/area/houseboat/holodeck/beach) -"eQ" = ( -/obj/item/weapon/beach_ball, -/turf/simulated/floor/holofloor/beach/sand, -/area/houseboat/holodeck/beach) -"eR" = ( -/obj/effect/overlay/palmtree_l, -/obj/effect/overlay/coconut, -/turf/simulated/floor/holofloor/beach/sand, -/area/houseboat/holodeck/beach) -"eS" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/turf/simulated/floor/holofloor/desert, -/area/houseboat/holodeck/desert) -"eW" = ( -/obj/structure/railing{ - icon_state = "railing0"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/tank/nitrogen, -/turf/simulated/floor/plating, -/area/houseboat) -"eX" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/houseboat) -"eY" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/cruiser/cruiser) -"eZ" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/visible, -/turf/simulated/floor/plating, -/area/houseboat) -"fa" = ( -/obj/effect/floor_decal/techfloor/orange{ - icon_state = "techfloororange_edges"; - dir = 5 - }, -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/houseboat) -"fb" = ( -/obj/structure/bed/chair/shuttle{ - dir = 1 - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/cruiser/cruiser) -"fc" = ( -/obj/effect/floor_decal/techfloor/orange{ - icon_state = "techfloororange_edges"; - dir = 9 - }, -/obj/effect/floor_decal/corner_techfloor_grid, -/turf/simulated/floor/tiled/techfloor, -/area/houseboat) -"fd" = ( -/turf/unsimulated/beach/sand{ - icon_state = "beach" - }, -/area/houseboat/holodeck/beach) -"fe" = ( -/obj/structure/flora/tree/dead, -/turf/simulated/floor/holofloor/snow, -/area/houseboat/holodeck/snow) -"ff" = ( -/obj/structure/flora/tree/pine, -/turf/simulated/floor/holofloor/snow, -/area/houseboat/holodeck/snow) "fg" = ( /turf/space/bluespace, /area/shuttle/excursion/bluespace) -"fh" = ( -/obj/structure/railing{ - icon_state = "railing0"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/visible, -/turf/simulated/floor/plating, -/area/houseboat) -"fi" = ( -/obj/machinery/atmospherics/pipe/tank/oxygen{ - icon_state = "o2_map"; - dir = 4 - }, -/turf/simulated/floor/plating, -/area/houseboat) -"fj" = ( -/obj/structure/catwalk, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/houseboat) -"fk" = ( -/obj/machinery/atmospherics/pipe/tank/air{ - icon_state = "air_map"; - dir = 8 - }, -/turf/simulated/floor/plating, -/area/houseboat) -"fl" = ( -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - frequency = 1380; - id_tag = "cruiser_shuttle"; - pixel_x = 25; - pixel_y = 0; - tag_door = "cruiser_shuttle_hatch" - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/cruiser/cruiser) -"fm" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/simulated/floor/reinforced, -/area/houseboat) -"fn" = ( -/obj/effect/floor_decal/techfloor/orange/corner{ - icon_state = "techfloororange_corners"; - dir = 4 - }, -/obj/effect/floor_decal/techfloor/orange/corner, -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor, -/area/houseboat) -"fo" = ( -/obj/effect/floor_decal/techfloor/orange, -/obj/effect/floor_decal/techfloor/orange{ - icon_state = "techfloororange_edges"; - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/houseboat) -"fp" = ( -/obj/effect/floor_decal/techfloor/orange/corner{ - icon_state = "techfloororange_corners"; - dir = 1 - }, -/obj/effect/floor_decal/techfloor/orange/corner{ - icon_state = "techfloororange_corners"; - dir = 8 - }, -/obj/effect/floor_decal/corner_techfloor_grid{ - icon_state = "corner_techfloor_grid"; - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor, -/area/houseboat) -"fq" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/houseboat) -"fr" = ( -/obj/structure/railing{ - icon_state = "railing0"; - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/houseboat) -"fs" = ( -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/simulated/floor/plating, -/area/houseboat) -"ft" = ( -/obj/structure/catwalk, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/plating, -/area/houseboat) -"fu" = ( -/turf/simulated/shuttle/floor/black, -/area/shuttle/cruiser/cruiser) -"fv" = ( -/obj/structure/catwalk, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/table/steel_reinforced, -/obj/item/weapon/rcd, -/obj/item/weapon/rcd_ammo, -/obj/item/weapon/rcd_ammo, -/turf/simulated/floor/plating, -/area/houseboat) -"fw" = ( -/turf/simulated/floor/holofloor/beach/water, -/area/houseboat/holodeck/beach) -"fx" = ( -/obj/structure/flora/grass/green, -/turf/simulated/floor/holofloor/snow, -/area/houseboat/holodeck/snow) -"fy" = ( -/obj/structure/catwalk, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/portable_atmospherics/powered/pump, -/turf/simulated/floor/plating, -/area/houseboat) -"fz" = ( -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/turf/simulated/floor/plating, -/area/houseboat) -"fA" = ( -/obj/machinery/power/fractal_reactor/fluff/converter, -/obj/structure/cable/cyan, -/turf/simulated/floor/plating, -/area/houseboat) -"fB" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/houseboat) -"fC" = ( -/obj/machinery/door/airlock/glass_external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = null; - locked = 1; - name = "Shuttle Hatch" - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/cruiser/cruiser) -"fD" = ( -/obj/machinery/door/airlock/glass_external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "cruiser_shuttle_hatch"; - locked = 1; - name = "Shuttle Hatch" - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/cruiser/cruiser) -"fE" = ( -/obj/effect/floor_decal/techfloor/orange{ - icon_state = "techfloororange_edges"; - dir = 6 - }, -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/houseboat) -"fF" = ( -/obj/effect/floor_decal/techfloor/orange{ - icon_state = "techfloororange_edges"; - dir = 10 - }, -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/houseboat) -"fG" = ( -/obj/structure/railing{ - icon_state = "railing0"; - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/houseboat) -"fH" = ( -/turf/simulated/floor/plating, -/area/houseboat) -"fI" = ( -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/table/steel_reinforced, -/obj/item/weapon/storage/toolbox/syndicate, -/turf/simulated/floor/plating, -/area/houseboat) -"fJ" = ( -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/table/steel_reinforced, -/obj/machinery/recharger, -/turf/simulated/floor/plating, -/area/houseboat) -"fK" = ( -/obj/structure/shuttle/engine/heater, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/shuttle/plating, -/area/shuttle/cruiser/cruiser) -"fL" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/unsimulated/wall, -/area/space) -"fM" = ( -/obj/machinery/atmospherics/unary/heater, -/turf/simulated/floor/plating, -/area/houseboat) -"fN" = ( -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/portable_atmospherics/powered/pump, -/turf/simulated/floor/plating, -/area/houseboat) -"fO" = ( -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/telecomms/relay/preset/houseboat{ - toggled = 0 - }, -/turf/simulated/floor/plating, -/area/houseboat) -"fP" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/houseboat) -"fQ" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/houseboat) -"fR" = ( -/obj/structure/shuttle/engine/propulsion, -/turf/simulated/floor/reinforced, -/area/shuttle/cruiser/cruiser) -"fS" = ( -/obj/structure/flora/ausbushes/brflowers, -/obj/effect/floor_decal/spline/fancy/wood/corner, -/turf/simulated/floor/holofloor/grass, -/area/houseboat/holodeck/picnic) -"fT" = ( -/obj/structure/flora/ausbushes/ywflowers, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 6 - }, -/turf/simulated/floor/holofloor/grass, -/area/houseboat/holodeck/picnic) -"fU" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/holofloor/desert, -/area/houseboat/holodeck/picnic) -"fV" = ( -/obj/structure/flora/ausbushes/ywflowers, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/turf/simulated/floor/holofloor/grass, -/area/houseboat/holodeck/picnic) -"fW" = ( -/turf/simulated/floor/holofloor/space, -/area/houseboat/holodeck/space) -"fX" = ( -/obj/structure/bed/holobed, -/turf/simulated/floor/holofloor/wood, -/area/houseboat/holodeck/bunking) -"fY" = ( -/turf/simulated/floor/holofloor/wood, -/area/houseboat/holodeck/bunking) -"fZ" = ( -/obj/structure/flora/ausbushes/brflowers, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/turf/simulated/floor/holofloor/grass, -/area/houseboat/holodeck/picnic) -"ga" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/holostool, -/turf/simulated/floor/holofloor/desert, -/area/houseboat/holodeck/picnic) -"gb" = ( -/obj/structure/shuttle/engine/heater, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/shuttle/plating/airless, -/area/space) -"gc" = ( -/obj/structure/flora/ausbushes/ywflowers, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/turf/simulated/floor/holofloor/grass, -/area/houseboat/holodeck/picnic) -"gd" = ( -/obj/structure/table/woodentable/holotable, -/turf/simulated/floor/holofloor/desert, -/area/houseboat/holodeck/picnic) -"ge" = ( -/turf/simulated/floor/holofloor/desert, -/area/houseboat/holodeck/picnic) -"gf" = ( -/obj/structure/flora/ausbushes/brflowers, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/turf/simulated/floor/holofloor/grass, -/area/houseboat/holodeck/picnic) -"gg" = ( -/obj/structure/shuttle/engine/propulsion, -/turf/space, -/area/space) -"gh" = ( -/obj/structure/holostool, -/turf/simulated/floor/holofloor/wood, -/area/houseboat/holodeck/bunking) -"gi" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/freezer{ - dir = 2; - icon_state = "freezer_1"; - use_power = 1; - power_setting = 20; - set_temperature = 73 - }, -/turf/simulated/floor/plating, -/area/houseboat) -"gj" = ( -/obj/structure/flora/ausbushes/brflowers, -/obj/effect/floor_decal/spline/fancy/wood/corner{ - dir = 1 - }, -/turf/simulated/floor/holofloor/grass, -/area/houseboat/holodeck/picnic) -"gk" = ( -/obj/structure/flora/ausbushes/ywflowers, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/turf/simulated/floor/holofloor/grass, -/area/houseboat/holodeck/picnic) -"gl" = ( -/obj/structure/flora/ausbushes/brflowers, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/turf/simulated/floor/holofloor/grass, -/area/houseboat/holodeck/picnic) -"gm" = ( -/obj/structure/flora/ausbushes/ywflowers, -/obj/effect/floor_decal/spline/fancy/wood/corner{ - dir = 4 - }, -/turf/simulated/floor/holofloor/grass, -/area/houseboat/holodeck/picnic) -"gn" = ( -/obj/structure/table/woodentable/holotable, -/turf/simulated/floor/holofloor/wood, -/area/houseboat/holodeck/bunking) -"go" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/turf/unsimulated/wall, -/area/space) -"gp" = ( -/turf/simulated/floor/holofloor/wood, -/area/houseboat/holodeck/gaming) -"gq" = ( -/obj/effect/floor_decal/corner/red{ - dir = 5 - }, -/turf/simulated/floor/holofloor/tiled, -/area/houseboat/holodeck/basketball) -"gr" = ( -/obj/effect/floor_decal/corner/red/full{ - dir = 8 - }, -/turf/simulated/floor/holofloor/tiled, -/area/houseboat/holodeck/basketball) -"gs" = ( -/obj/structure/holohoop, -/obj/effect/floor_decal/corner/red{ - dir = 5 - }, -/turf/simulated/floor/holofloor/tiled, -/area/houseboat/holodeck/basketball) -"gt" = ( -/obj/effect/floor_decal/corner/red/full{ - dir = 1 - }, -/turf/simulated/floor/holofloor/tiled, -/area/houseboat/holodeck/basketball) -"gu" = ( -/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/houseboat/holodeck/thunderdome) -"gv" = ( -/obj/effect/floor_decal/corner/red{ - dir = 5 - }, -/turf/simulated/floor/holofloor/tiled, -/area/houseboat/holodeck/thunderdome) -"gw" = ( -/obj/structure/bed/chair/holochair, -/turf/simulated/floor/holofloor/wood, -/area/houseboat/holodeck/gaming) -"gx" = ( -/obj/effect/floor_decal/corner/red{ - dir = 10 - }, -/turf/simulated/floor/holofloor/tiled, -/area/houseboat/holodeck/basketball) -"gy" = ( -/turf/simulated/floor/holofloor/tiled, -/area/houseboat/holodeck/thunderdome) -"gz" = ( -/obj/structure/table/woodentable/holotable, -/turf/simulated/floor/holofloor/wood, -/area/houseboat/holodeck/gaming) -"gA" = ( -/turf/simulated/floor/holofloor/tiled, -/area/houseboat/holodeck/basketball) -"gB" = ( -/obj/item/weapon/beach_ball/holoball, -/turf/simulated/floor/holofloor/tiled, -/area/houseboat/holodeck/basketball) -"gC" = ( -/obj/structure/bed/chair/holochair{ - dir = 1 - }, -/turf/simulated/floor/holofloor/wood, -/area/houseboat/holodeck/gaming) -"gD" = ( -/obj/effect/floor_decal/corner/green{ - dir = 5 - }, -/turf/simulated/floor/holofloor/tiled, -/area/houseboat/holodeck/basketball) -"gE" = ( -/obj/effect/floor_decal/corner/green{ - dir = 10 - }, -/turf/simulated/floor/holofloor/tiled, -/area/houseboat/holodeck/basketball) -"gF" = ( -/obj/effect/floor_decal/corner/green/full, -/turf/simulated/floor/holofloor/tiled, -/area/houseboat/holodeck/basketball) -"gG" = ( -/obj/structure/holohoop{ - dir = 1 - }, -/obj/effect/floor_decal/corner/green{ - dir = 10 - }, -/turf/simulated/floor/holofloor/tiled, -/area/houseboat/holodeck/basketball) -"gH" = ( -/obj/effect/floor_decal/corner/green/full{ - dir = 4 - }, -/turf/simulated/floor/holofloor/tiled, -/area/houseboat/holodeck/basketball) -"gI" = ( -/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/houseboat/holodeck/thunderdome) -"gJ" = ( -/obj/effect/floor_decal/corner/green{ - dir = 10 - }, -/turf/simulated/floor/holofloor/tiled, -/area/houseboat/holodeck/thunderdome) -"gK" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/unsimulated/wall, -/area/space) -"gL" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/unsimulated/wall, -/area/space) -"gM" = ( -/turf/simulated/floor/holofloor/reinforced, -/area/houseboat/holodeck/off) -"gN" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/plating, -/area/houseboat) "gO" = ( /obj/effect/step_trigger/teleporter/planetary_fall/virgo3b, /turf/simulated/sky/virgo3b/south, @@ -2534,30 +32,6 @@ "gP" = ( /turf/simulated/sky/virgo3b/south, /area/shuttle/excursion/virgo3b_sky) -"gQ" = ( -/obj/machinery/power/fractal_reactor/fluff/smes, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/houseboat) -"gR" = ( -/obj/machinery/power/fractal_reactor/fluff/smes, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/plating, -/area/houseboat) -"gS" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/houseboat) "gT" = ( /turf/space/transit/east, /area/space) @@ -14815,15 +12289,15 @@ aa aa aa aa -ab -ab -ab -ab -ab -ab -ab -ab -ab +aa +aa +aa +aa +aa +aa +aa +aa +aa aa aa aa @@ -14955,18 +12429,18 @@ aa aa aa aa -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 @@ -15095,21 +12569,21 @@ aa aa aa aa -ab -ab -ab -ab -ab -ab -dg -dg -fm -dg -dg -dg -dg -ab -af +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa aa aa aa @@ -15234,24 +12708,24 @@ aa aa aa aa -ab -ab -ab -ab -ab -ab -ab -ab -dg -dg -dg -dg -dg -dg -dg -dg -aN -cy +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa aa aa aa @@ -15375,25 +12849,25 @@ aa aa aa aa -ab -ab -ab -ab -af -ek -ab -ab -dg -dg -dg -fa -fn -fE -dg -dg -dg -aN -cy +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa aa aa aa @@ -15516,26 +12990,26 @@ aa aa aa aa -ab -ab -ab -dL -ab -eb -eq -ab -eu -dg -dg -dg -dg -fo -dg -dg -dg -dg -aN -cy +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa aa aa aa @@ -15654,30 +13128,30 @@ aa aa aa aa -ab -ab -ab -ab -ab -ab -af -dK -dm -dF -dm -ba -dg -dg -dg -dg -dg -fo -dg -dg -dg -dg -aN -cy +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa aa aa aa @@ -15795,31 +13269,31 @@ aa aa aa aa -ab -ab -ab -ab -ab -ab -dk -dD -dM -dS -dF -dm -ba -dg -dg -dg -dg -dg -fo -dg -dg -dg -dg -aN -cy +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa aa aa aa @@ -15931,37 +13405,37 @@ aa aa aa aa -ab -ab -ab -at -ab -ab -ab -ab -cJ -cR -cR -ab -dl -dm -dm -dR -dF -dm -ab -eu -dg -dg -dg -dg -fo -dg -dg -dg -dg -aN -cy +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa aa aa aa @@ -16067,43 +13541,43 @@ aa aa aa aa -ab -ab -at -at -at -ab -ab -cm -cs -aN -cm -ab -bF -aT -cJ -cS -cS -ab -dm -dm -dm -dU -ef -em -df -ab -dg -dg -dg -fc -fp -fF -dg -dg -dg -aN -cy +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa aa aa aa @@ -16205,47 +13679,47 @@ aa aa aa aa -ab -ab -at -at -ab -bP -aT -aT -aT -cg -ab -ab -ab -cu -ab -ab -cz -aT -cK -cT -cT -ab -dn -dm -dN -dT -ee -ab -ab -ab -ab -dg -dg -dg -dg -dg -dg -dg -dg -aN -cy +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa aa aa aa @@ -16343,51 +13817,51 @@ aa aa aa aa -ab -ab -ab -ab -ab -br -by -bE -aT -bQ -aT -aT -aT -ch -ab -ab -bX -aN -bX -ba -aT -aT -cJ -cT -cT -ab -dp -dE -dH -dX -af -ab -ab -ab -ab -ab -dg -dg -fq -dg -dg -dg -dg -ab -af +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa aa aa aa @@ -16479,57 +13953,57 @@ aa aa aa aa -ab -ab -at -at -at -ab -af -aK -aP -ab -bh -ap -aT -aT -aT -aT -aT -aT -ce -af -ab -aN -aN -aN -aN -ab -aT -cH -cJ -cU -cX -ab -do -dm -dF -dV -ab -en -ab -en -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gg +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa aa aa aa @@ -16617,61 +14091,61 @@ aa aa aa aa -ab -ab -ab -ab -af -aq -ai -ai -ai -al -aH -aL -aQ -ab -bi -ap -bz -bF -aT -aT -aT -aT -aT -ba -aN -aN -aN -aN -aN -af -ab -ab -ab -ab -ab -ab -do -dm -dF -ab -ec -eo -ab -ev -ec -ab -ex -fi -fs -fA -fH -fM -ab -gb -gg +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa aa aa aa @@ -16758,62 +14232,62 @@ aa aa aa aa -ab -af -ah -ai -ai -al -ai -ag -ag -ag -ag -ag -aL -aR -ab -bj -bs -bA -bG -bL -bR -bW -cc -af -af -ck -aN -aN -aN -aN -aN -cA -aN -cL -ab -ab -ab -do -dm -dF -ab -ed -ai -ab -ai -ed -ab -eW -fh -fr -fG -fH -fH -ab -gb -gg +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa aa aa aa @@ -16899,63 +14373,63 @@ aa aa aa aa -ab -ae -ag -ag -ag -ag -am -ai -ag -az -aC -az -ag -aL -aS -ab -ab -ab -ab -bH -bH -bH -ab -ab -ab -ci -aN -co -co -aN -cw -af -ab -ab -ab -ab -ab -ab -dq -cu -ab -ab -ab -cu -ab -cu -ab -ab -eK -eX -fv -fJ -gi -gQ -ab -gb -gg +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa aa aa aa @@ -17040,64 +14514,64 @@ aa (101,1,1) = {" aa aa -ab -ab -ae -ag -ag -aj -ag -am -ai -ag -aA -aD -aA -ag -aL -aT -ba -aN -aN -aN -aN -aN -aN -bX -aJ -aN -aN -cl -cn -bv -cv -aN -aN -aJ -aN -cM -aN -bX -aJ -aN -aN -bX -aJ -aN -aN -aN -aN -bX -aJ -ea -fj -ft -fI -fQ -gN -ab -gb -gg +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa aa aa aa @@ -17182,64 +14656,64 @@ aa (102,1,1) = {" aa aa -ab -ab -ae -ag -ag -aj -ag -am -ai -ag -aA -aA -aA -ag -aL -aT -ba -bk -bt -aN -aN -aN -aN -aN -aJ -aN -aN -cl -cp -bv -cv -aN -aN -aJ -bk -aN -aN -aN -aJ -bk -aN -aN -aJ -bk -aN -aN -aN -aN -aJ -ea -fj -dG -fO -fQ -gS -ab -gb -gg +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa aa aa aa @@ -17325,63 +14799,63 @@ aa aa aa aa -ab -ae -ag -ag -ag -ag -am -ai -ag -aB -aB -aB -ag -aL -aU -ab -ab -ab -ab -bH -bH -bH -ab -ab -ab -ci -aN -cq -cq -aN -cw -af -ab -af -cN -cV -cY -ab -dr -cu -ab -ab -ab -cu -ab -cu -ab -ab -eL -eX -fy -fN -gi -gR -ab -gb -gg +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa aa aa aa @@ -17468,62 +14942,62 @@ aa aa aa aa -ab -af -ai -ai -ai -an -ai -ag -ag -ag -ag -ag -aL -aV -ab -bl -bu -bB -bv -bv -bv -bB -bv -af -af -ck -aN -aN -aN -aN -ba -cB -ab -cO -cW -cZ -ab -ds -dm -dm -ab -ed -ai -ab -ai -ed -ab -eM -eZ -fB -fP -fH -fH -ab -gb -gg +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa aa aa aa @@ -17611,61 +15085,61 @@ aa aa aa aa -ab -ab -ab -ab -af -ar -au -ai -ai -an -aI -aL -aW -ab -bm -bv -bv -bv -bv -bv -bv -bv -bv -ba -aN -aN -aN -aN -aN -ab -ab -ab -ab -ab -ab -ab -ds -dm -dm -ab -ec -eo -ab -ev -ec -ab -ab -fk -fz -fA -fH -fM -ab -gb -gg +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa aa aa aa @@ -17757,57 +15231,57 @@ aa aa aa aa -ab -ab -av -av -av -ab -af -aM -aX -ab -bn -bv -bC -bv -bM -bS -bY -bv -bv -af -ab -aN -aN -aN -aN -ab -aT -cI -cP -cI -aW -ab -dt -dG -dm -dY -ab -en -ab -en -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gg +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa aa aa aa @@ -17905,51 +15379,51 @@ aa aa aa aa -ab -ab -ab -ab -ab -bw -bD -bI -bN -bT -bZ -bv -bv -cj -ab -ab -bk -aN -bk -ba -aT -aT -aT -aT -aT -ab -ds -dF -dm -dW -af -ab -ab -ab -ab -ab -dg -dg -fm -dg -dg -dg -dg -ab -af +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa aa aa aa @@ -18051,47 +15525,47 @@ aa aa aa aa -ab -ab -av -av -ab -bU -ca -bv -bv -cj -ab -ab -ab -cu -ab -ab -aT -aT -aT -aT -aT -df -dv -dF -dm -dW -eh -ab -ab -ab -ab -dg -dg -dg -dg -dg -dg -dg -dg -aN -cy +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa aa aa aa @@ -18197,43 +15671,43 @@ aa aa aa aa -ab -ab -av -av -av -ab -ab -cr -ct -aN -cx -ab -cC -ab -cu -ab -cu -ab -du -dH -dE -dZ -eg -er -ab -ab -dg -dg -aN -aN -aN -aN -aN -dg -dg -aN -cy +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa aa aa aa @@ -18345,37 +15819,37 @@ aa aa aa aa -ab -ab -ab -av -ab -ab -ab -ab -cQ -ab -da -ab -dm -dF -dm -dm -ei -dm -ab -eu -dg -eA -eA -eA -fC -eA -eA -eA -dg -aN -cy +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa aa aa aa @@ -18493,31 +15967,31 @@ aa aa aa aa -ab -ab -ab -ab -ab -ab -dw -dI -dO -dm -ei -dm -ba -dg -dg -eA -eN -fb -fu -fb -fK -fR -dg -aN -cy +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa aa aa aa @@ -18636,30 +16110,30 @@ aa aa aa aa -ab -ab -ab -ab -ab -ab -af -dP -ea -el -ea -ba -dg -dg -eA -eY -fl -fu -fb -fK -fR -dg -aN -cy +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa aa aa aa @@ -18782,26 +16256,26 @@ aa aa aa aa -ab -ab -ab -ab -af -ej -es -ab -eB -dg -eA -eA -eA -fD -eA -eA -eA -dg -aN -cy +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa aa aa aa @@ -18925,25 +16399,25 @@ aa aa aa aa -ab -ab -ab -ab -ep -ew -ab -ex -dg -dg -aN -aN -aN -aN -aN -dg -dg -aN -cy +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa aa aa aa @@ -19068,24 +16542,24 @@ aa aa aa aa -ab -ab -ab -ab -ab -ab -ex -ex -dg -dg -dg -dg -dg -dg -dg -dg -aN -cy +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa aa aa aa @@ -19213,21 +16687,21 @@ aa aa aa aa -ab -ab -ab -ab -ab -ex -dg -dg -fq -dg -dg -dg -dg -ab -af +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa aa aa aa @@ -19357,18 +16831,18 @@ aa aa aa aa -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 @@ -19501,15 +16975,15 @@ aa aa aa aa -ab -ab -ab -ab -ab -ab -ab -ab -ab +aa +aa +aa +aa +aa +aa +aa +aa +aa aa aa aa @@ -19738,16 +17212,16 @@ aa (120,1,1) = {" aa aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa aa aa aa @@ -19880,16 +17354,6 @@ aa (121,1,1) = {" aa aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac aa aa aa @@ -19927,25 +17391,35 @@ aa aa aa aa -ey -gL -gL -gL -gL -gL -ey -gL -gL -gL -gL -gL -ey -gL -gL -gL -gL -gL -ey +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa aa aa aa @@ -20022,16 +17496,6 @@ aa (122,1,1) = {" aa aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac aa aa aa @@ -20069,25 +17533,35 @@ aa aa aa aa -ez -eC -eP -fd -fw -fw -fL -fS -fZ -gc -gc -gj -fL -gp -gp -gp -gp -gp -gK +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa aa aa aa @@ -20164,16 +17638,6 @@ aa (123,1,1) = {" aa aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac aa aa aa @@ -20196,40 +17660,50 @@ aa aa aa aa -ab -ab -at -at -at -at -at -ab -ab aa aa aa aa aa aa -ez -eC -eQ -fd -fw -fw -fL -fT -ga -gd -ga -gk -fL -gp -gw -gz -gC -gp -gK +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa aa aa aa @@ -20306,16 +17780,6 @@ aa (124,1,1) = {" aa aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac aa aa aa @@ -20338,40 +17802,50 @@ aa aa aa aa -ab -cD -cD -cD -cD -db -dg -dx -ab aa aa aa aa aa aa -ez -eC -eC -fd -fw -fw -fL -fU -ga -gd -ga -gl -fL -gp -gw -gz -gC -gp -gK +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa aa aa aa @@ -20448,72 +17922,72 @@ aa (125,1,1) = {" aa aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab aa aa aa aa aa aa -ab -cE -cD -cD -cD -db -dh -dy -ab aa aa aa aa aa aa -ez -eC -eC -fd -fw -fw -fL -fU -fU -ge -fU -gk -fL -gp -gw -gz -gC -gp -gK +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa aa aa aa @@ -20590,72 +18064,72 @@ aa (126,1,1) = {" aa aa -ac -ad -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -aF -ab -aN -aY -bb -ab -aa -ab -bJ -bJ -bJ -bJ -bJ -cf aa aa aa aa aa aa -cy -ap -ap -cD -cD -db -di -dz -ab aa aa aa aa aa aa -ez -eC -eR -fd -fw -fw -fL -fV -fV -gf -gf -gm -fL -gp -gp -gp -gp -gp -gK +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa aa aa aa @@ -20732,72 +18206,72 @@ aa (127,1,1) = {" aa aa -ac -ac -ac -ac -ac -ac -ak -ao -as -aw -ap -aE -af -ab -aO -ab -bc -ab -ab -ab -bJ -bJ -bJ -bJ -bJ -cf aa aa aa aa aa aa -cy -ap -ap -ap -ap -dc -ab -ab -ab aa aa aa aa aa aa -ey -eD -eD -eD -eD -eD -ey -eD -eD -eD -eD -eD -ey -eD -eD -eD -eD -eD -ey +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa aa aa aa @@ -20874,72 +18348,72 @@ aa (128,1,1) = {" aa aa -ac -ac -ac -ac -ac -ac -ak -ap -ap -ap -ap -ap -ap -aJ -aN -aN -aN -aN -aN -aJ -bJ -bJ -bJ -bJ -bJ -cf aa aa aa aa aa aa -cy -ap -ap -ap -ap -dd -cD -dB -ab aa aa aa aa aa aa -ez -eE -eF -eF -eF -eF -fL -fW -fW -fW -fW -fW -fL -gq -gx -gA -gD -gE -gK +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa aa aa aa @@ -21016,72 +18490,72 @@ aa (129,1,1) = {" aa aa -ac -ac -ac -ac -ac -ac -ak -ap -ap -ax -as -ap -aG -aJ -aN -aN -bd -aN -aN -aJ -bJ -bJ -bJ -bJ -bJ -cf aa aa aa aa aa aa -cy -ap -ap -ap -ap -dd -cD -dA -ab aa aa aa aa aa aa -ez -eF -eF -fe -eF -eF -fL -fW -fW -fW -fW -fW -fL -gr -gx -gA -gD -gF -gK +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa aa aa aa @@ -21158,72 +18632,72 @@ aa (130,1,1) = {" aa aa -ac -ac -ac -ac -ac -ac -ak -ao -as -ay -as -ap -af -ab -aO -ab -ab -ab -bc -ab -bJ -bJ -bJ -bJ -bJ -cf aa aa aa aa aa aa -cy -ap -ap -ap -ap -de -ab -ab -ab aa aa aa aa aa aa -ez -eF -eF -eF -fx -eF -fL -fW -fW -fW -fW -fW -fL -gs -gx -gB -gD -gG -gK +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa aa aa aa @@ -21300,72 +18774,72 @@ aa (131,1,1) = {" aa aa -ac -ad -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ap -be -be -ap -ab -bK -bO -bV -cb -cd -ab aa aa aa aa aa aa -cy -ap -ap -cD -cD -db -dj -dj -ab aa aa aa aa aa aa -ez -eF -eF -ff -eF -eF -fL -fW -fW -fW -fW -fW -fL -gt -gx -gA -gD -gH -gK +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa aa aa aa @@ -21442,72 +18916,72 @@ aa (132,1,1) = {" aa aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -ab -aZ -bf -bo -bx -ab -ab -ab -ab -ab -ab -ab aa aa aa aa aa aa -ab -cF -cD -cD -cD -db -cG -dC -ab aa aa aa aa aa aa -ez -eF -eF -eF -eF -eF -fL -fW -fW -fW -fW -fW -fL -gq -gx -gA -gD -gE -gK +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa aa aa aa @@ -21584,26 +19058,6 @@ aa (133,1,1) = {" aa aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -ab -aZ -bf -bp -bx -ab aa aa aa @@ -21616,46 +19070,66 @@ aa aa aa aa -ab -cG -cG -cD -cD -db -cG -cG -ab aa aa aa aa aa aa -ey -eD -eD -eD -eD -eD -ey -eD -eD -eD -eD -eD -ey -eD -eD -eD -eD -eD -ey -gL -gL -gL -gL -gL -ey +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa aa aa aa @@ -21726,26 +19200,6 @@ aa (134,1,1) = {" aa aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -ab -aE -bg -bq -ap -ab aa aa aa @@ -21758,46 +19212,66 @@ aa aa aa aa -ab -ab -av -av -av -av -av -ab -ab aa aa aa aa aa aa -ez -eG -eH -eH -eH -eH -fL -fX -fX -fX -fX -fX -go -gu -gy -gy -gy -gI -go -gM -gM -gM -gM -gM -gK +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa aa aa aa @@ -21868,26 +19342,6 @@ aa (135,1,1) = {" aa aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab aa aa aa @@ -21915,31 +19369,51 @@ aa aa aa aa -ez -eH -eH -eS -eH -eH -fL -fY -fY -fY -fY -fY -go -gv -gy -gy -gy -gJ -go -gM -gM -gM -gM -gM -gK +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa aa aa aa @@ -22010,16 +19484,6 @@ aa (136,1,1) = {" aa aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac aa aa aa @@ -22057,31 +19521,41 @@ aa aa aa aa -ez -eH -eH -eH -eH -eH -fL -fY -fY -fY -gh -gn -go -gv -gy -gy -gy -gJ -go -gM -gM -gM -gM -gM -gK +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa aa aa aa @@ -22152,16 +19626,6 @@ aa (137,1,1) = {" aa aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac aa aa aa @@ -22199,31 +19663,41 @@ aa aa aa aa -ez -eH -eH -eH -eH -eH -fL -fY -fY -fY -gh -gn -go -gv -gy -gy -gy -gJ -go -gM -gM -gM -gM -gM -gK +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa aa aa aa @@ -22341,31 +19815,31 @@ aa aa aa aa -ez -eH -eS -eH -eH -eG -fL -fY -fY -fY -fY -fY -go -gu -gy -gy -gy -gI -go -gM -gM -gM -gM -gM -gK +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa aa aa aa @@ -22483,31 +19957,31 @@ aa aa aa aa -ey -eI -eI -eI -eI -eI -ey -eI -eI -eI -eI -eI -ey -eI -eI -eI -eI -eI -ey -eI -eI -eI -eI -eI -ey +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa aa aa aa diff --git a/maps/tether/tether-10-colony.dmm b/maps/tether/tether-10-colony.dmm index 8b29e3ea3f..9110701884 100644 --- a/maps/tether/tether-10-colony.dmm +++ b/maps/tether/tether-10-colony.dmm @@ -2,9 +2,6 @@ "aa" = ( /turf/unsimulated/wall/planetary/virgo3b, /area/space) -"ab" = ( -/turf/simulated/floor/outdoors/grass/sif/virgo3b, -/area/space) "ac" = ( /turf/unsimulated/mineral/virgo3b, /area/space) @@ -12,26 +9,31 @@ /turf/unsimulated/wall/planetary/virgo3b, /area/centcom/specops) "ae" = ( -/obj/structure/shuttle/engine/propulsion{ - icon_state = "burst_l"; - dir = 8 +/obj/structure/cable/cyan{ + d1 = 0; + d2 = 4; + icon_state = "0-4" }, -/turf/unsimulated/floor/shuttle_ceiling, -/turf/simulated/shuttle/plating/airless/carry, -/area/shuttle/specialops/centcom) +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_x = 0; + pixel_y = 28 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/teleporter) "af" = ( /turf/simulated/shuttle/wall/dark{ join_group = "shuttle_ert" }, /area/shuttle/specialops/centcom) "ag" = ( -/obj/structure/shuttle/engine/propulsion{ - icon_state = "propulsion"; - dir = 8 +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 }, -/turf/unsimulated/floor/shuttle_ceiling, -/turf/simulated/shuttle/plating/airless/carry, -/area/shuttle/specialops/centcom) +/turf/simulated/floor/tiled/techmaint, +/area/mothership/eva) "ah" = ( /turf/unsimulated/wall, /area/centcom/specops) @@ -524,13 +526,21 @@ }, /area/shuttle/specialops/centcom) "aV" = ( -/obj/structure/shuttle/engine/propulsion{ - icon_state = "burst_r"; +/obj/machinery/door/window/survival_pod{ dir = 8 }, -/turf/unsimulated/floor/shuttle_ceiling, -/turf/simulated/shuttle/plating/airless/carry, -/area/shuttle/specialops/centcom) +/obj/machinery/shower{ + dir = 8; + icon_state = "shower"; + pixel_x = 2; + pixel_y = 0 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 4 + }, +/obj/structure/curtain/open/shower, +/turf/simulated/floor/tiled/white, +/area/mothership/bathroom2) "aW" = ( /obj/structure/table/rack, /obj/item/clothing/accessory/storage/black_vest, @@ -693,6 +703,32 @@ join_group = "shuttle_ert" }, /area/shuttle/specialops/centcom) +"bi" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/tool/crowbar, +/obj/item/weapon/tool/screwdriver, +/obj/item/weapon/tool/wrench, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"bj" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/cyan{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/cyan, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/sechallway) "bk" = ( /obj/machinery/iv_drip, /turf/unsimulated/floor{ @@ -886,6 +922,20 @@ icon_state = "dark" }, /area/centcom/specops) +"by" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/light/small, +/turf/simulated/floor/wood, +/area/mothership/dorm5) "bz" = ( /obj/structure/table/rack, /obj/item/weapon/rig/ert/assetprotection, @@ -1051,6 +1101,29 @@ icon_state = "wood" }, /area/centcom/specops) +"bN" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4; + icon_state = "map" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/resleeving) "bO" = ( /obj/structure/sign/nanotrasen, /turf/unsimulated/wall, @@ -1599,6 +1672,25 @@ icon_state = "dark" }, /area/centcom/specops) +"cJ" = ( +/turf/unsimulated/wall{ + icon = 'icons/obj/doors/Doorext.dmi'; + icon_state = "door_locked"; + name = "Sealed Door" + }, +/area/mothership/telecomms1) +"cK" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/kitchen) +"cL" = ( +/obj/structure/particle_accelerator/fuel_chamber{ + anchored = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) "cM" = ( /obj/structure/table/reinforced, /obj/effect/floor_decal/industrial/outline/blue, @@ -1651,6 +1743,32 @@ icon_state = "dark" }, /area/centcom/specops) +"cR" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"cS" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/processing) +"cT" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + icon_state = "intact"; + dir = 8 + }, +/obj/machinery/atmospherics/binary/pump/high_power/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) "cU" = ( /obj/structure/table/steel_reinforced, /obj/item/clothing/gloves/yellow, @@ -3210,6 +3328,19 @@ icon_state = "dark" }, /area/tdome/tdomeobserve) +"fP" = ( +/obj/machinery/door/blast/regular{ + id = "ship-mechbay-inner"; + name = "Mech Bay" + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/robotics) "fQ" = ( /obj/structure/table/rack, /obj/item/clothing/under/color/green, @@ -3368,6 +3499,31 @@ name = "plating" }, /area/centcom/control) +"gh" = ( +/obj/structure/table/survival_pod, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm3) +"gi" = ( +/obj/structure/table/woodentable, +/obj/item/modular_computer/laptop/preset/custom_loadout/elite, +/obj/machinery/status_display{ + pixel_y = -29 + }, +/turf/simulated/floor/wood, +/area/mothership/dorm3) +"gj" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/machinery/computer/HolodeckControl/holodorm/warship, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/holodeck) "gk" = ( /obj/structure/table/rack, /obj/item/clothing/under/color/red, @@ -3477,48 +3633,93 @@ }, /turf/unsimulated/floor/steel, /area/centcom/control) +"gw" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/mothership/treatment) "gx" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner, -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/light/flamp/noshade, -/turf/unsimulated/floor/steel, -/area/centcom/evac) +/obj/structure/table/woodentable, +/obj/item/weapon/book/codex, +/turf/simulated/floor/carpet/blue, +/area/mothership/breakroom) "gy" = ( -/obj/effect/floor_decal/industrial/warning/dust, -/obj/structure/railing{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/turf/unsimulated/floor/steel, -/area/centcom/evac) +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) "gz" = ( -/obj/effect/floor_decal/rust, -/obj/effect/floor_decal/industrial/warning/dust, -/obj/structure/railing{ - dir = 1 +/obj/item/device/defib_kit/jumper_kit, +/obj/structure/table/steel_reinforced, +/obj/item/device/robotanalyzer, +/obj/machinery/light, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 }, -/turf/unsimulated/floor/steel, -/area/centcom/evac) +/turf/simulated/floor/tiled/techmaint, +/area/mothership/rnd) "gA" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner{ +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/kitchen) +"gB" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/blast/regular{ + density = 0; + destroy_hits = 1000; + dir = 1; + icon_state = "pdoor0"; + id = "ship-lounge"; + name = "Shuttle Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/window/reinforced{ dir = 8 }, -/obj/structure/railing{ - dir = 1 +/turf/simulated/floor/plating, +/area/mothership/breakroom) +"gC" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 }, -/turf/unsimulated/floor/steel, -/area/centcom/evac) -"gB" = ( -/obj/structure/railing{ - dir = 1 +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 }, -/obj/machinery/light/flamp/noshade, -/turf/unsimulated/floor/steel, -/area/centcom/evac) +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 6 + }, +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = 30 + }, +/turf/unsimulated/floor{ + icon_state = "vault"; + dir = 5 + }, +/area/centcom/security{ + name = "\improper CentCom Residential Security" + }) "gD" = ( /obj/machinery/recharger{ pixel_y = 4 @@ -3680,14 +3881,11 @@ /turf/unsimulated/floor/steel, /area/centcom/control) "gX" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4 +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" }, -/obj/structure/railing{ - dir = 8 - }, -/turf/unsimulated/floor/steel, -/area/centcom/evac) +/area/mothership/hydroponics) "gY" = ( /turf/unsimulated/floor/steel, /area/shuttle/large_escape_pod2/centcom{ @@ -3878,19 +4076,6 @@ /obj/structure/filingcabinet/filingcabinet, /turf/unsimulated/floor/steel, /area/centcom/control) -"hx" = ( -/obj/machinery/button/remote/blast_door{ - id = "ArmouryC5"; - name = "Armoury Access"; - pixel_x = 0; - pixel_y = -28; - req_access = list(3) - }, -/turf/unsimulated/floor{ - icon_state = "vault"; - dir = 5 - }, -/area/centcom/control) "hy" = ( /obj/machinery/button/remote/blast_door{ id = "ArmouryC4"; @@ -4054,6 +4239,16 @@ }, /turf/unsimulated/floor/steel, /area/centcom/evac) +"hP" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/mothership/treatment) "hQ" = ( /obj/machinery/door/airlock/centcom{ name = "General Access"; @@ -4111,15 +4306,11 @@ /turf/unsimulated/wall/planetary/virgo3b, /area/centcom/security) "hY" = ( -/obj/effect/floor_decal/rust, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4 +/obj/effect/floor_decal/techfloor{ + dir = 1 }, -/obj/structure/railing{ - dir = 8 - }, -/turf/unsimulated/floor/steel, -/area/centcom/evac) +/turf/simulated/floor/tiled/techfloor/grid, +/area/mothership/cryotube) "hZ" = ( /obj/effect/floor_decal/corner_steel_grid/diagonal, /turf/unsimulated/floor/steel, @@ -4449,12 +4640,11 @@ /turf/unsimulated/floor/steel, /area/centcom/evac) "iA" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner{ - dir = 1 +/obj/item/modular_computer/console/preset/ert{ + dir = 4 }, -/obj/machinery/light/flamp/noshade, -/turf/unsimulated/floor/steel, -/area/centcom/evac) +/turf/simulated/floor/tiled/steel_grid, +/area/mothership/bridge) "iB" = ( /obj/machinery/door/blast/regular{ id = "thunderdomehea"; @@ -4484,16 +4674,10 @@ }, /area/centcom/security) "iE" = ( -/obj/effect/floor_decal/corner_steel_grid/diagonal, -/obj/effect/floor_decal/industrial/warning/dust/corner{ - dir = 4 - }, -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/light/flamp/noshade, -/turf/unsimulated/floor/steel, -/area/centcom/evac) +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) "iF" = ( /obj/effect/floor_decal/industrial/warning/dust{ dir = 1 @@ -4501,61 +4685,49 @@ /turf/unsimulated/floor/steel, /area/centcom/evac) "iG" = ( -/obj/effect/floor_decal/derelict/d9, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/turf/unsimulated/floor/steel, -/area/centcom/evac) +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/teleport/hub, +/turf/simulated/shuttle/floor/voidcraft, +/area/unknown/dorm2) "iH" = ( -/obj/effect/floor_decal/derelict/d10, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 +/obj/effect/floor_decal/industrial/warning/corner{ + icon_state = "warningcorner"; + dir = 8 }, -/turf/unsimulated/floor/steel, -/area/centcom/evac) +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/teleporter) "iI" = ( -/obj/effect/floor_decal/derelict/d11, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/turf/unsimulated/floor/steel, -/area/centcom/evac) +/obj/structure/fans, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm3) "iJ" = ( -/obj/effect/floor_decal/derelict/d12, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/turf/unsimulated/floor/steel, -/area/centcom/evac) +/obj/structure/shuttle/engine/propulsion, +/turf/space, +/area/mothership/telecomms1) "iK" = ( -/obj/effect/floor_decal/derelict/d13, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/turf/unsimulated/floor/steel, -/area/centcom/evac) +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/mothership/medical) "iL" = ( -/obj/effect/floor_decal/derelict/d14, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 +/obj/machinery/light{ + dir = 4 }, -/turf/unsimulated/floor/steel, -/area/centcom/evac) +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) "iM" = ( -/obj/effect/floor_decal/derelict/d15, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/turf/unsimulated/floor/steel, -/area/centcom/evac) +/turf/simulated/floor/tiled/techmaint, +/area/mothership/eva) "iN" = ( -/obj/effect/floor_decal/derelict/d16, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/turf/unsimulated/floor/steel, -/area/centcom/evac) +/turf/simulated/floor/carpet/oracarpet, +/area/mothership/engineering) "iO" = ( /obj/effect/floor_decal/rust, /obj/effect/floor_decal/industrial/warning/dust{ @@ -4569,21 +4741,27 @@ }, /turf/unsimulated/floor/steel, /area/centcom/evac) -"iQ" = ( -/obj/machinery/light/spot{ +"iR" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/storage/box/gloves, +/obj/machinery/firealarm{ + dir = 1; + pixel_x = 0; + pixel_y = -25 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/surgery) +"iS" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/turf/unsimulated/floor/steel, -/area/centcom/evac) -"iR" = ( -/obj/effect/floor_decal/rust, -/turf/unsimulated/floor/steel, -/area/centcom/evac) -"iS" = ( -/obj/effect/floor_decal/rust, -/obj/effect/floor_decal/corner_steel_grid/diagonal, -/turf/unsimulated/floor/steel, -/area/centcom/evac) +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hydroponics) "iT" = ( /obj/structure/table/rack, /obj/item/clothing/under/color/red, @@ -4812,58 +4990,63 @@ }, /area/centcom/security) "jk" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner, -/obj/structure/railing{ - dir = 8 +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/obj/machinery/light/flamp/noshade, -/turf/unsimulated/floor/steel, -/area/centcom/evac) +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hydroponics) "jl" = ( /obj/effect/floor_decal/rust/steel_decals_rusted2, /obj/effect/floor_decal/industrial/warning/dust, /turf/unsimulated/floor/steel, /area/centcom/evac) -"jm" = ( -/obj/effect/floor_decal/derelict/d1, -/obj/effect/floor_decal/industrial/warning/dust, -/turf/unsimulated/floor/steel, -/area/centcom/evac) "jn" = ( -/obj/effect/floor_decal/derelict/d2, -/obj/effect/floor_decal/industrial/warning/dust, -/turf/unsimulated/floor/steel, -/area/centcom/evac) +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm3) "jo" = ( -/obj/effect/floor_decal/derelict/d3, -/obj/effect/floor_decal/industrial/warning/dust, -/turf/unsimulated/floor/steel, -/area/centcom/evac) +/obj/structure/cable/cyan{ + d1 = 0; + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_x = 0; + pixel_y = 28 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/wood, +/area/mothership/dorm3) "jp" = ( -/obj/effect/floor_decal/derelict/d4, -/obj/effect/floor_decal/industrial/warning/dust, -/turf/unsimulated/floor/steel, -/area/centcom/evac) +/obj/machinery/door/airlock/multi_tile/metal, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/eva) "jq" = ( -/obj/effect/floor_decal/derelict/d5, -/obj/effect/floor_decal/industrial/warning/dust, -/turf/unsimulated/floor/steel, -/area/centcom/evac) -"jr" = ( -/obj/effect/floor_decal/derelict/d6, -/obj/effect/floor_decal/industrial/warning/dust, -/turf/unsimulated/floor/steel, -/area/centcom/evac) -"js" = ( -/obj/effect/floor_decal/derelict/d7, -/obj/effect/floor_decal/industrial/warning/dust, -/turf/unsimulated/floor/steel, -/area/centcom/evac) +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/cryotube) "jt" = ( -/obj/effect/floor_decal/derelict/d8, -/obj/effect/floor_decal/industrial/warning/dust, -/turf/unsimulated/floor/steel, -/area/centcom/evac) +/obj/structure/closet/secure_closet/medical3, +/turf/simulated/floor/tiled/white, +/area/mothership/medical) "ju" = ( /obj/effect/floor_decal/industrial/warning/dust, /turf/unsimulated/floor/steel, @@ -4894,13 +5077,6 @@ /area/shuttle/large_escape_pod1/centcom{ base_turf = /turf/simulated/floor/tiled/steel_dirty/virgo3b }) -"jz" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner{ - dir = 8 - }, -/obj/machinery/light/flamp/noshade, -/turf/unsimulated/floor/steel, -/area/centcom/evac) "jA" = ( /obj/structure/table/rack, /obj/effect/floor_decal/industrial/outline/yellow, @@ -5694,9 +5870,11 @@ /turf/unsimulated/floor/steel, /area/centcom/security) "kP" = ( -/obj/effect/floor_decal/corner_steel_grid/diagonal, -/turf/unsimulated/floor/steel, -/area/centcom/evac) +/obj/machinery/computer/prisoner{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/warden) "kQ" = ( /obj/machinery/door/airlock/glass_medical{ name = "Virology Laboratory" @@ -5889,53 +6067,55 @@ /turf/unsimulated/floor/steel, /area/centcom/security) "li" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner{ +/obj/machinery/computer/station_alert/all{ + dir = 8; + icon_state = "computer" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"lj" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"lk" = ( +/obj/structure/table/rack/shelf/steel, +/obj/machinery/light/small{ + dir = 8; + pixel_x = 0 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"ll" = ( +/obj/machinery/atmospherics/pipe/tank/air{ dir = 4 }, -/obj/structure/railing, -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/light/flamp/noshade, -/turf/unsimulated/floor/steel, -/area/centcom/evac) -"lj" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/obj/structure/railing, -/turf/unsimulated/floor/steel, -/area/centcom/evac) -"lk" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 9 - }, -/obj/structure/railing, -/turf/unsimulated/floor/steel, -/area/centcom/evac) -"ll" = ( -/obj/effect/floor_decal/rust, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/obj/structure/railing, -/turf/unsimulated/floor/steel, -/area/centcom/evac) +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) "lm" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner{ - dir = 1 +/obj/structure/table/woodentable, +/obj/item/modular_computer/laptop/preset/custom_loadout/elite, +/obj/machinery/status_display{ + pixel_y = 29 }, -/obj/structure/railing, -/turf/unsimulated/floor/steel, -/area/centcom/evac) +/turf/simulated/floor/wood, +/area/mothership/dorm1) "ln" = ( -/obj/structure/railing, -/obj/machinery/light/flamp/noshade, -/turf/unsimulated/floor/steel, -/area/centcom/evac) +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/telecomms1) "lo" = ( /obj/item/weapon/stool/padded, /turf/unsimulated/floor/steel{ @@ -6194,6 +6374,38 @@ }, /turf/unsimulated/floor/steel, /area/centcom/security) +"lE" = ( +/obj/machinery/cryopod/robot, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/robotics) +"lF" = ( +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_x = 0; + pixel_y = 28 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/wood, +/area/mothership/dorm4) +"lG" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/processing) "lH" = ( /obj/machinery/vending/snack, /obj/effect/floor_decal/borderfloorwhite{ @@ -6844,9 +7056,9 @@ /turf/unsimulated/wall, /area/centcom/evac) "mR" = ( -/obj/machinery/door/airlock/glass_external, -/turf/unsimulated/floor/steel, -/area/centcom/evac) +/obj/machinery/sleeper/survival_pod, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm4) "mS" = ( /obj/machinery/shower{ dir = 4; @@ -7037,40 +7249,36 @@ /turf/unsimulated/floor/steel, /area/centcom/security) "nk" = ( -/obj/structure/table/reinforced, -/obj/item/roller, -/obj/item/roller{ - pixel_y = 8 +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/obj/item/roller{ - pixel_y = 16 +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; + dir = 8 }, -/turf/unsimulated/floor/steel, -/area/centcom/evac) -"nl" = ( -/obj/effect/floor_decal/corner_steel_grid/diagonal, -/obj/effect/floor_decal/corner_steel_grid/diagonal{ - dir = 4 - }, -/turf/unsimulated/floor/steel, -/area/centcom/evac) +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) "nm" = ( /turf/unsimulated/floor/steel, /area/centcom/evac) "nn" = ( -/obj/structure/grille, -/obj/structure/railing{ - dir = 8 +/obj/structure/table/steel_reinforced, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 }, -/turf/unsimulated/floor{ - icon_state = "plating"; - name = "plating" - }, -/area/centcom/evac) +/obj/item/weapon/pen/multi, +/obj/item/weapon/folder/yellow_ce, +/turf/simulated/floor/carpet/oracarpet, +/area/mothership/engineering) "no" = ( -/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary/tram, -/turf/unsimulated/floor/steel, -/area/centcom/evac) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/kitchen) "np" = ( /obj/structure/sink{ icon_state = "sink"; @@ -7344,9 +7552,14 @@ /turf/unsimulated/floor/steel, /area/centcom/security) "nO" = ( -/obj/structure/sign/warning/caution, -/turf/unsimulated/wall, -/area/centcom/evac) +/obj/item/clothing/suit/space/void/medical/alt, +/obj/item/clothing/head/helmet/space/void/medical/emt, +/obj/item/weapon/tank/oxygen, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/mask/breath, +/obj/structure/table/rack/shelf/steel, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/eva) "nP" = ( /obj/structure/table/standard, /obj/item/weapon/surgical/hemostat, @@ -7454,33 +7667,11 @@ }, /area/centcom/medical) "nW" = ( -/obj/structure/table/glass, -/obj/item/weapon/reagent_containers/glass/bottle/biomass{ - pixel_x = -4; - pixel_y = 8 +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" }, -/obj/item/weapon/reagent_containers/glass/bottle/biomass{ - pixel_x = -3; - pixel_y = -2 - }, -/obj/item/weapon/reagent_containers/glass/bottle/biomass{ - pixel_x = 3; - pixel_y = 5 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloorwhite/corner2{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/bordercorner2{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/space) +/area/mothership/bathroom1) "nX" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 1 @@ -7984,9 +8175,11 @@ /turf/unsimulated/floor/steel, /area/centcom/security) "oN" = ( -/obj/structure/table/reinforced, -/turf/unsimulated/floor/steel, -/area/centcom/evac) +/obj/machinery/computer/transhuman/resleeving{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/resleeving) "oO" = ( /obj/structure/table/standard, /obj/item/weapon/surgical/bonesetter, @@ -8163,12 +8356,20 @@ /turf/unsimulated/floor/steel, /area/centcom/holding) "ph" = ( -/obj/effect/wingrille_spawn/reinforced/crescent, -/turf/unsimulated/floor{ - icon_state = "plating"; - name = "plating" +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" }, -/area/centcom/evac) +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) "pi" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 8 @@ -9355,9 +9556,11 @@ /turf/unsimulated/wall, /area/centcom/terminal) "ro" = ( -/obj/machinery/door/blast/regular, -/turf/unsimulated/floor/techfloor_grid, -/area/centcom/terminal) +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/morgue) "rp" = ( /obj/structure/sign/warning{ name = "\improper STAND AWAY FROM TRACK EDGE" @@ -9368,10 +9571,6 @@ /obj/structure/sign/warning/nosmoking_2, /turf/unsimulated/wall, /area/centcom/terminal) -"rr" = ( -/obj/machinery/door/airlock/glass_external, -/turf/unsimulated/floor/steel, -/area/centcom/terminal) "rs" = ( /turf/unsimulated/wall, /area/centcom/terminal) @@ -10242,8 +10441,7 @@ req_one_access = list(101) }, /obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 + dir = 8 }, /turf/unsimulated/floor/steel, /area/centcom/security) @@ -10399,8 +10597,7 @@ dir = 8 }, /obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 + dir = 8 }, /turf/unsimulated/floor/steel, /area/centcom/security) @@ -10681,8 +10878,7 @@ dir = 10 }, /obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 + dir = 8 }, /obj/structure/window/reinforced, /turf/unsimulated/floor/steel, @@ -10741,9 +10937,9 @@ base_turf = /turf/unsimulated/floor/techfloor_grid }) "uc" = ( -/obj/effect/wingrille_spawn/reinforced/crescent, -/turf/unsimulated/floor/steel, -/area/centcom/main_hall) +/obj/structure/closet/secure_closet/personal, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm1) "ud" = ( /obj/effect/wingrille_spawn/reinforced/crescent, /turf/unsimulated/floor{ @@ -11161,7 +11357,7 @@ dir = 1 }, /turf/unsimulated/floor/steel, -/area/centcom/main_hall) +/area/centcom/terminal) "va" = ( /obj/machinery/cryopod/robot/door/dorms{ base_icon_state = "door_closed"; @@ -13759,8 +13955,7 @@ "yR" = ( /obj/structure/table/reinforced, /obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 + dir = 8 }, /obj/machinery/computer/skills, /obj/effect/floor_decal/borderfloorblack{ @@ -13983,8 +14178,7 @@ "zj" = ( /obj/structure/table/reinforced, /obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 + dir = 8 }, /obj/effect/floor_decal/borderfloorblack{ dir = 8 @@ -14210,8 +14404,7 @@ "zB" = ( /obj/structure/table/reinforced, /obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 + dir = 8 }, /obj/machinery/recharger{ pixel_y = 4 @@ -15284,8 +15477,7 @@ dir = 10 }, /obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 + dir = 8 }, /turf/unsimulated/floor{ icon_state = "vault"; @@ -15342,22 +15534,9 @@ name = "\improper CentCom Residential Security" }) "Bx" = ( -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = 30 - }, -/obj/effect/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 4 - }, -/turf/unsimulated/floor{ - icon_state = "vault"; - dir = 5 - }, -/area/centcom/security{ - name = "\improper CentCom Residential Security" - }) +/obj/structure/table/alien, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm2) "By" = ( /obj/machinery/porta_turret/crescent{ density = 1 @@ -15417,8 +15596,7 @@ dir = 1 }, /obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 + dir = 8 }, /obj/machinery/door/blast/regular{ density = 0; @@ -15626,8 +15804,7 @@ /area/centcom/living) "BS" = ( /obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 + dir = 8 }, /obj/effect/floor_decal/industrial/warning{ dir = 8 @@ -15892,8 +16069,7 @@ }, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 + dir = 8 }, /obj/machinery/door/blast/regular{ density = 0; @@ -15973,34 +16149,30 @@ /turf/unsimulated/floor/steel, /area/centcom/command) "CC" = ( -/obj/machinery/telecomms/receiver/preset_cent, -/turf/unsimulated/floor{ - icon_state = "steel" +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/area/centcom/command) +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hydroponics) "CD" = ( -/obj/machinery/telecomms/bus/preset_cent, -/turf/unsimulated/floor{ - icon_state = "steel" +/obj/machinery/door/blast/regular{ + id = "ship-mechbay-inner"; + name = "Mech Bay" }, -/area/centcom/command) -"CE" = ( -/turf/unsimulated/floor{ - icon_state = "steel" - }, -/area/centcom/command) -"CF" = ( -/obj/machinery/telecomms/processor/preset_cent, -/turf/unsimulated/floor{ - icon_state = "steel" - }, -/area/centcom/command) +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/robotics) "CG" = ( -/obj/machinery/telecomms/server/presets/centcomm, -/turf/unsimulated/floor{ - icon_state = "steel" +/obj/structure/bed/chair/wood{ + icon_state = "wooden_chair"; + dir = 4 }, -/area/centcom/command) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/carpet/blue, +/area/mothership/breakroom) "CH" = ( /obj/machinery/computer/card{ dir = 4 @@ -16292,19 +16464,19 @@ /turf/unsimulated/floor/steel, /area/centcom/command) "CZ" = ( -/obj/machinery/door/airlock/security{ - name = "Security" +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/turf/unsimulated/floor{ - icon_state = "steel" - }, -/area/centcom/command) +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hydroponics) "Da" = ( -/obj/structure/toilet, -/turf/unsimulated/floor{ - icon_state = "freezer" +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" }, -/area/centcom/bathroom) +/area/mothership/bridge) "Db" = ( /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/blue/border, @@ -16376,160 +16548,152 @@ /turf/unsimulated/floor/steel, /area/centcom/command) "Di" = ( -/obj/machinery/telecomms/relay/preset/centcom, -/turf/unsimulated/floor{ - icon_state = "steel" +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + pixel_x = 0; + pixel_y = 32 }, -/area/centcom/command) -"Dj" = ( -/obj/machinery/telecomms/broadcaster/preset_cent, -/turf/unsimulated/floor{ - icon_state = "steel" +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8 }, -/area/centcom/command) -"Dk" = ( -/obj/machinery/telecomms/hub/preset_cent, -/turf/unsimulated/floor{ - icon_state = "steel" - }, -/area/centcom/command) -"Dl" = ( -/obj/machinery/computer/rdservercontrol{ - badmin = 1; - dir = 1; - name = "Master RnD Server Controller" - }, -/turf/unsimulated/floor{ - icon_state = "steel" - }, -/area/centcom/command) +/turf/simulated/floor/tiled/techmaint, +/area/mothership/eva) "Dm" = ( -/obj/machinery/r_n_d/server/centcom, -/turf/unsimulated/floor{ - icon_state = "steel" - }, -/area/centcom/command) -"Dn" = ( -/obj/machinery/door/airlock{ - name = "Unit 2" - }, -/turf/unsimulated/floor{ - icon_state = "freezer" - }, -/area/centcom/bathroom) -"Do" = ( -/obj/machinery/door/airlock{ - name = "Unit 1" - }, -/turf/unsimulated/floor{ - icon_state = "freezer" - }, -/area/centcom/bathroom) -"Dp" = ( -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/turf/unsimulated/floor/steel, -/area/centcom/living) -"Dq" = ( -/obj/machinery/computer/cryopod/dorms{ - name = "Company Property Retention System"; - pixel_y = -28 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/turf/unsimulated/floor/steel, -/area/centcom/living) -"Dr" = ( -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/effect/floor_decal/steeldecal/steel_decals9{ +/obj/structure/table/steel_reinforced, +/obj/machinery/cell_charger, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"Dn" = ( +/obj/machinery/seed_extractor, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hydroponics) +"Do" = ( +/obj/machinery/atmospherics/portables_connector{ dir = 8 }, -/turf/unsimulated/floor/steel, -/area/centcom/living) +/obj/machinery/portable_atmospherics/canister/oxygen/prechilled, +/turf/simulated/floor/tiled/white, +/area/mothership/medical) +"Dp" = ( +/obj/machinery/account_database{ + name = "CentComm Accounts database" + }, +/turf/simulated/floor/bluegrid, +/area/mothership/telecomms2) +"Dq" = ( +/obj/machinery/mech_recharger, +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; + dir = 1 + }, +/turf/simulated/floor/bluegrid, +/area/mothership/robotics) +"Dr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/mothership/bridge) "Ds" = ( -/turf/unsimulated/floor{ - icon_state = "freezer" - }, -/area/centcom/bathroom) +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hydroponics) "Dt" = ( -/obj/structure/closet/crate/bin, -/turf/unsimulated/floor{ - icon_state = "freezer" +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" }, -/area/centcom/bathroom) +/area/mothership/security) "Du" = ( -/obj/machinery/door/airlock{ - name = "Sitting Restrooms" +/obj/item/weapon/gun/energy/gun, +/obj/item/weapon/gun/energy/gun, +/obj/item/weapon/gun/energy/gun, +/obj/item/weapon/gun/energy/gun, +/obj/item/weapon/cell/device/weapon, +/obj/item/weapon/cell/device/weapon, +/obj/item/weapon/cell/device/weapon, +/obj/item/weapon/cell/device/weapon, +/obj/item/weapon/cell/device/weapon, +/obj/item/weapon/cell/device/weapon, +/obj/item/weapon/cell/device/weapon, +/obj/item/weapon/cell/device/weapon, +/obj/structure/closet/secure_closet/guncabinet{ + req_one_access = list(103) }, -/turf/unsimulated/floor{ - icon_state = "freezer" +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/area/centcom/living) +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) "Dv" = ( -/obj/machinery/door/airlock{ - name = "Standing Restrooms" +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/turf/unsimulated/floor{ - icon_state = "freezer" +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/area/centcom/living) +/turf/simulated/floor/tiled/techmaint, +/area/mothership/rnd) "Dw" = ( -/obj/structure/urinal{ - pixel_y = 30 +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" }, -/turf/unsimulated/floor{ - icon_state = "freezer" +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/area/centcom/bathroom) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/processing) "Dx" = ( -/obj/structure/sink{ - icon_state = "sink"; - dir = 8; - pixel_x = -12; - pixel_y = 2 +/obj/structure/shuttle/engine/propulsion{ + icon_state = "burst_r"; + dir = 8 }, -/obj/structure/mirror{ - dir = 4; - pixel_x = -32; - pixel_y = 0 - }, -/turf/unsimulated/floor{ - icon_state = "freezer" - }, -/area/centcom/bathroom) +/turf/unsimulated/floor/shuttle_ceiling, +/turf/simulated/shuttle/plating/airless/carry, +/area/shuttle/specialops/centcom) "Dy" = ( -/obj/machinery/camera/network/crescent, -/turf/unsimulated/floor{ - icon_state = "freezer" - }, -/area/centcom/bathroom) +/obj/structure/closet/secure_closet/sar, +/turf/simulated/floor/tiled/white, +/area/mothership/medical) "Dz" = ( -/obj/structure/sink{ +/obj/machinery/atmospherics/trinary/atmos_filter{ dir = 4; - icon_state = "sink"; - pixel_x = 11; - pixel_y = 0 + filter_type = 3; + filtered_out = list("carbon_dioxide") }, -/obj/structure/mirror{ - pixel_x = 29 - }, -/turf/unsimulated/floor{ - icon_state = "freezer" - }, -/area/centcom/bathroom) +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) "DA" = ( -/turf/unsimulated/wall/planetary/virgo3b, -/area/centcom/bathroom) +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/highsecurity{ + req_one_access = list(101) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/telecomms2) "DB" = ( /obj/effect/landmark{ name = "Commando" @@ -16546,12 +16710,176 @@ icon_state = "white" }, /area/centcom/medical) -"DR" = ( -/obj/effect/floor_decal/corner_steel_grid{ - dir = 10 +"DD" = ( +/obj/machinery/door/airlock/alien/public, +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm1) +"DE" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/turf/simulated/floor/outdoors/grass/sif/virgo3b, -/area/space) +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"DF" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"DG" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow, +/obj/machinery/meter, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"DH" = ( +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + icon_state = "intact-supply"; + dir = 4 + }, +/obj/machinery/portable_atmospherics/powered/pump/filled, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"DI" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/dorm3) +"DJ" = ( +/obj/structure/table/survival_pod, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm2) +"DK" = ( +/obj/structure/table/steel_reinforced, +/obj/fiftyspawner/phoron, +/obj/machinery/reagentgrinder, +/turf/simulated/floor/tiled/white, +/area/mothership/chemistry) +"DL" = ( +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm4) +"DM" = ( +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/robotics) +"DN" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell M1" + }, +/obj/effect/floor_decal/corner/lightorange{ + icon_state = "corner_white"; + dir = 5 + }, +/obj/effect/floor_decal/borderfloor/shifted{ + icon_state = "borderfloor_shifted"; + dir = 1 + }, +/obj/effect/floor_decal/corner/lightorange/border/shifted{ + icon_state = "bordercolor_shifted"; + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/sechallway) +"DP" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/cell_charger, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/rnd) +"DQ" = ( +/obj/structure/closet/wardrobe/ert, +/obj/item/weapon/storage/box/survival/comp{ + starts_with = list(/obj/item/weapon/tool/prybar/red,/obj/item/clothing/glasses/goggles,/obj/item/weapon/reagent_containers/hypospray/autoinjector,/obj/item/stack/medical/bruise_pack,/obj/item/device/flashlight/glowstick,/obj/item/weapon/reagent_containers/food/snacks/candy/proteinbar,/obj/item/clothing/mask/breath,/obj/item/weapon/tank/emergency/oxygen/engi) + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/item/weapon/storage/box/survival/space, +/obj/item/weapon/storage/toolbox/emergency, +/turf/simulated/floor/wood, +/area/mothership/dorm1) +"DR" = ( +/obj/machinery/ntnet_relay, +/turf/simulated/floor/bluegrid, +/area/mothership/telecomms1) +"DS" = ( +/obj/structure/bed/chair/comfy/black, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm2) +"DT" = ( +/obj/item/rig_module/device/drill, +/obj/item/rig_module/device/drill, +/obj/item/rig_module/device/plasmacutter, +/obj/item/rig_module/device/plasmacutter, +/obj/item/rig_module/device/orescanner, +/obj/item/rig_module/device/orescanner, +/obj/structure/table/rack/shelf/steel, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"DU" = ( +/obj/structure/table/survival_pod, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm4) +"DV" = ( +/obj/machinery/computer/message_monitor{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/mothership/bridge) +"DW" = ( +/obj/structure/toilet{ + dir = 1 + }, +/obj/machinery/power/apc{ + dir = 2; + name = "south bump"; + pixel_y = -28; + req_access = list(67) + }, +/obj/structure/cable/cyan, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/bathroom1) +"DX" = ( +/turf/simulated/floor/tiled/techmaint, +/area/mothership/sechallway) +"DY" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/sechallway) +"DZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/warden) "Ea" = ( /obj/structure/table/reinforced, /obj/item/weapon/storage/firstaid/clotting, @@ -16561,12 +16889,158 @@ dir = 5 }, /area/centcom/specops) -"Ei" = ( -/obj/effect/floor_decal/corner_steel_grid{ +"Eb" = ( +/obj/item/modular_computer/telescreen/preset/generic{ + pixel_y = 28 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/mothership/bridge) +"Ec" = ( +/obj/item/device/healthanalyzer/advanced, +/obj/item/device/healthanalyzer/advanced, +/obj/item/device/healthanalyzer/advanced, +/obj/item/device/healthanalyzer/advanced, +/obj/item/weapon/reagent_containers/hypospray, +/obj/item/weapon/reagent_containers/hypospray, +/obj/item/weapon/reagent_containers/hypospray, +/obj/item/weapon/reagent_containers/hypospray, +/obj/structure/table/rack/shelf/steel, +/turf/simulated/floor/tiled/white, +/area/mothership/medical) +"Ed" = ( +/obj/machinery/vending/medical, +/turf/simulated/floor/tiled/white, +/area/mothership/medical) +"Ee" = ( +/obj/machinery/shower{ + pixel_y = 13 + }, +/obj/structure/curtain/open/shower, +/obj/effect/floor_decal/steeldecal/steel_decals10{ dir = 5 }, -/turf/simulated/floor/outdoors/grass/sif/virgo3b, -/area/space) +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm3) +"Eg" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/door/window/westleft, +/obj/machinery/door/window/eastright, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/chemistry) +"Eh" = ( +/obj/machinery/vending/robotics, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/rnd) +"Ei" = ( +/obj/structure/prop/alien/dispenser, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm1) +"Ej" = ( +/obj/structure/closet/secure_closet/personal, +/turf/simulated/floor/wood, +/area/mothership/dorm4) +"Ek" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled/white, +/area/mothership/treatment) +"El" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/sechallway) +"Em" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/mothership/bridge) +"En" = ( +/obj/machinery/transhuman/resleever, +/turf/simulated/floor/tiled/white, +/area/mothership/resleeving) +"Eo" = ( +/obj/machinery/telecomms/relay/preset/centcom/tether/midpoint, +/turf/simulated/floor/bluegrid, +/area/mothership/telecomms2) +"Ep" = ( +/obj/machinery/firealarm{ + dir = 2; + layer = 3.3; + pixel_x = 4; + pixel_y = 26 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/teleporter) +"Er" = ( +/obj/machinery/shower{ + dir = 4; + icon_state = "shower"; + pixel_x = 2; + pixel_y = 0 + }, +/obj/machinery/door/window/survival_pod, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 1 + }, +/obj/structure/curtain/open/shower, +/turf/simulated/floor/tiled/white, +/area/mothership/bathroom1) +"Es" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/teleport/hub, +/turf/simulated/shuttle/floor/voidcraft, +/area/unknown/dorm4) +"Et" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"Eu" = ( +/obj/machinery/disposal, +/turf/simulated/floor/tiled/white, +/area/mothership/medical) +"Ev" = ( +/obj/effect/floor_decal/derelict/d5, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"Ew" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"Ex" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/dorm4) +"Ey" = ( +/obj/machinery/iv_drip, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/surgery) "Ez" = ( /obj/structure/table/reinforced, /obj/item/weapon/cell/hyper, @@ -16585,6 +17059,77 @@ icon_state = "dark" }, /area/centcom/specops) +"EA" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/mothership/bridge) +"EB" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/vault) +"EC" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/stamp/ward, +/obj/item/weapon/stamp/denied{ + pixel_x = 5 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/warden) +"ED" = ( +/obj/machinery/alarm{ + alarm_id = "pen_nine"; + breach_detection = 0; + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"EE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/processing) +"EF" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/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/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/sechallway) +"EG" = ( +/obj/machinery/computer/robotics{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/mothership/bridge) "EI" = ( /obj/structure/table/rack, /obj/item/weapon/gun/launcher/rocket, @@ -16601,12 +17146,265 @@ icon_state = "dark" }, /area/centcom/specops) +"EJ" = ( +/obj/machinery/door/airlock/external, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/breakroom) +"EK" = ( +/obj/machinery/telecomms/relay/preset/centcom/tether/base_low, +/turf/simulated/floor/bluegrid, +/area/mothership/telecomms2) +"EL" = ( +/obj/structure/prop/alien/power, +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm1) +"EM" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/resleeving) +"EN" = ( +/obj/structure/bed/chair/comfy/black, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm4) +"EO" = ( +/obj/machinery/atmospherics/pipe/simple/visible/universal{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/supply, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"EP" = ( +/obj/machinery/door/airlock/highsecurity{ + req_one_access = list(103) + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"EQ" = ( +/obj/machinery/computer/secure_data{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/processing) +"ES" = ( +/obj/structure/closet/crate/bin, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/processing) +"EU" = ( +/obj/structure/closet/crate/secure/gear{ + req_one_access = list(108) + }, +/obj/item/rig_module/chem_dispenser/injector/advanced, +/obj/item/rig_module/vision/multi, +/obj/item/weapon/rig/military/equipped, +/obj/item/weapon/rig/pmc/commander, +/obj/item/weapon/rig/pmc/medical, +/obj/item/weapon/rig/pmc/engineer, +/obj/item/weapon/rig/pmc/security, +/obj/item/weapon/rig/pmc/security, +/obj/item/weapon/rig/light/ninja, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/vault) +"EV" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_x = 0; + pixel_y = -25 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"EW" = ( +/obj/structure/closet/excavation, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/robotics) +"EY" = ( +/obj/machinery/door/airlock/multi_tile/metal{ + dir = 2; + req_one_access = list(1) + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"Fa" = ( +/obj/structure/prop/blackbox, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/vault) +"Fb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/resleeving) +"Fc" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/dorm3) +"Fd" = ( +/obj/item/weapon/bedsheet/captaindouble, +/obj/structure/bed/double/padded, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 26 + }, +/obj/machinery/button/remote/airlock{ + id = "ship-dorm4-door"; + name = "Dorm 4 Lock"; + pixel_x = -6; + pixel_y = 26; + specialfunctions = 4 + }, +/obj/structure/curtain/open/bed, +/turf/simulated/floor/wood, +/area/mothership/dorm4) +"Fe" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/dorm1) +"Ff" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/mothership/treatment) +"Fg" = ( +/obj/machinery/light{ + dir = 8; + icon_state = "tube1" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/mothership/bridge) +"Fh" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/chemical_dispenser/bar_alc/full, +/turf/simulated/floor/wood, +/area/mothership/breakroom) +"Fi" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) "Fj" = ( /obj/machinery/power/emitter, /turf/unsimulated/floor{ icon_state = "dark" }, /area/centcom/control) +"Fk" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/morgue) +"Fl" = ( +/obj/item/weapon/gun/energy/laser, +/obj/item/weapon/gun/energy/laser, +/obj/item/weapon/gun/energy/laser, +/obj/item/weapon/gun/energy/laser, +/obj/item/weapon/cell/device/weapon, +/obj/item/weapon/cell/device/weapon, +/obj/item/weapon/cell/device/weapon, +/obj/item/weapon/cell/device/weapon, +/obj/item/weapon/cell/device/weapon, +/obj/item/weapon/cell/device/weapon, +/obj/item/weapon/cell/device/weapon, +/obj/item/weapon/cell/device/weapon, +/obj/structure/closet/secure_closet/guncabinet{ + req_one_access = list(103) + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"Fm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5; + icon_state = "intact" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/resleeving) +"Fn" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) "Fo" = ( /obj/structure/table/reinforced, /obj/item/weapon/storage/box/survival/comp{ @@ -16631,6 +17429,147 @@ icon_state = "dark" }, /area/centcom/specops) +"Fp" = ( +/obj/effect/floor_decal/derelict/d6, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"Fq" = ( +/obj/item/weapon/storage/firstaid/toxin{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/storage/firstaid/toxin, +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/tiled/white, +/area/mothership/medical) +"Fr" = ( +/obj/machinery/gear_painter, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/cryotube) +"Fs" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hydroponics) +"Ft" = ( +/obj/machinery/computer/supplycomp{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/mothership/bridge) +"Fu" = ( +/obj/machinery/computer/communications{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/mothership/bridge) +"Fv" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/treatment) +"Fw" = ( +/obj/effect/floor_decal/industrial/warning/dust/corner, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"Fx" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/teleporter) +"Fy" = ( +/obj/machinery/computer/teleporter{ + dir = 1 + }, +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm3) +"Fz" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/light, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/warden) +"FA" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/telecomms2) +"FB" = ( +/obj/machinery/vending/loadout/uniform, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/cryotube) +"FC" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/eva) +"FD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"FE" = ( +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"FF" = ( +/obj/machinery/door_timer/cell_2{ + id = "Cell M2"; + pixel_x = -32 + }, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/sechallway) +"FH" = ( +/turf/unsimulated/wall{ + icon = 'icons/obj/doors/Doorext.dmi'; + icon_state = "door_locked"; + name = "Sealed Door" + }, +/area/mothership/breakroom) +"FK" = ( +/obj/item/device/holowarrant, +/obj/structure/closet/secure_closet/nanotrasen_security, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) "FL" = ( /obj/structure/table/rack, /obj/item/clothing/accessory/storage/brown_vest, @@ -16649,6 +17588,187 @@ icon_state = "dark" }, /area/centcom/control) +"FM" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/eva) +"FN" = ( +/obj/machinery/teleport/station, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/teleporter) +"FO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"FP" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/sechallway) +"FR" = ( +/obj/machinery/power/smes/buildable{ + charge = 2e+007; + cur_coils = 4; + input_attempt = 1; + input_level = 1e+006; + output_level = 1e+006 + }, +/obj/structure/cable/cyan{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/vault) +"FS" = ( +/obj/machinery/photocopier, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/warden) +"FT" = ( +/obj/structure/closet/toolcloset, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/robotics) +"FU" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/surgery) +"FV" = ( +/obj/machinery/firealarm{ + dir = 2; + layer = 3.3; + pixel_x = 4; + pixel_y = 26 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/warden) +"FW" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/warden) +"FX" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/cyan{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/chemistry) +"FZ" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/dorm5) +"Ga" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hydroponics) +"Gb" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"Gc" = ( +/turf/simulated/floor/tiled/white, +/area/mothership/resleeving) +"Gd" = ( +/obj/structure/bed/chair/office/dark, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/mothership/dorm3) +"Ge" = ( +/obj/machinery/seed_storage/xenobotany, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hydroponics) +"Gf" = ( +/obj/structure/bed/chair/wood{ + icon_state = "wooden_chair"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/carpet/blue, +/area/mothership/breakroom) +"Gg" = ( +/turf/simulated/floor/tiled/techmaint, +/area/mothership/telecomms2) +"Gh" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/reagent_containers/glass/beaker/large, +/obj/item/weapon/reagent_containers/glass/beaker/large, +/obj/item/weapon/reagent_containers/dropper, +/turf/simulated/floor/tiled/white, +/area/mothership/chemistry) +"Gi" = ( +/obj/machinery/transhuman/synthprinter, +/turf/simulated/floor/tiled/white, +/area/mothership/resleeving) +"Gk" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/empty/carbon_dioxide, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"Gl" = ( +/obj/machinery/power/apc{ + dir = 2; + name = "south bump"; + pixel_y = -28; + req_access = list(67) + }, +/obj/structure/cable/cyan, +/turf/simulated/floor/tiled/white, +/area/mothership/kitchen) "Gm" = ( /obj/structure/table/rack, /obj/item/weapon/rig/ert/engineer, @@ -16658,6 +17778,142 @@ icon_state = "dark" }, /area/centcom/control) +"Gn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/carpet/blue, +/area/mothership/breakroom) +"Go" = ( +/obj/structure/table/woodentable, +/obj/item/modular_computer/laptop/preset/custom_loadout/elite, +/obj/machinery/status_display{ + pixel_y = 29 + }, +/turf/simulated/floor/wood, +/area/mothership/dorm6) +"Gp" = ( +/obj/machinery/chem_master/condimaster, +/turf/simulated/floor/tiled/white, +/area/mothership/kitchen) +"Gr" = ( +/obj/structure/closet/crate/bin, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/rnd) +"Gs" = ( +/obj/item/ammo_magazine/m9mm/large/preban, +/obj/item/ammo_magazine/m9mm/large/preban, +/obj/item/ammo_magazine/m9mm/large/preban, +/obj/item/ammo_magazine/m9mm/large/preban, +/obj/item/ammo_magazine/m9mm/large/preban, +/obj/item/ammo_magazine/m9mm/large/preban, +/obj/item/ammo_magazine/m9mm/large/preban, +/obj/item/ammo_magazine/m9mm/large/preban, +/obj/item/weapon/gun/projectile/p92x, +/obj/item/weapon/gun/projectile/p92x, +/obj/item/weapon/gun/projectile/p92x, +/obj/item/weapon/gun/projectile/p92x, +/obj/structure/closet/secure_closet/guncabinet{ + req_one_access = list(103) + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"Gt" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/button/remote/blast_door{ + id = "ship-med-treatment"; + name = "Blast Doors Controls"; + pixel_y = 28 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/treatment) +"Gu" = ( +/obj/machinery/door/airlock/highsecurity{ + req_one_access = list(103) + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"Gv" = ( +/obj/machinery/atmospherics/trinary/atmos_filter{ + dir = 4; + filter_type = 4; + filtered_out = list("sleeping_agent") + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"Gw" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + pixel_x = 0; + pixel_y = 32 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/eva) +"Gx" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"Gy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/robotics) +"Gz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"GB" = ( +/obj/structure/table/steel_reinforced, +/obj/item/device/camera, +/obj/item/device/retail_scanner/security, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/processing) +"GC" = ( +/obj/machinery/door/airlock/voidcraft/vertical{ + opacity = 1 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/bathroom2) +"GD" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hydroponics) +"GF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/warden) "GG" = ( /obj/structure/table/rack, /obj/item/weapon/gun/launcher/grenade, @@ -16666,12 +17922,169 @@ icon_state = "dark" }, /area/centcom/specops) +"GI" = ( +/obj/structure/bed/chair/shuttle{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/mothership/bridge) +"GJ" = ( +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm2) +"GK" = ( +/obj/item/weapon/bedsheet/rddouble, +/obj/structure/bed/double/padded, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm4) "GL" = ( /obj/machinery/pipedispenser/disposal/orderable, /turf/unsimulated/floor{ icon_state = "dark" }, /area/centcom/control) +"GM" = ( +/obj/machinery/computer/cryopod{ + pixel_y = -32 + }, +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/mothership/cryotube) +"GN" = ( +/obj/machinery/vending/medical, +/turf/simulated/floor/tiled/white, +/area/mothership/resleeving) +"GO" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/button/remote/blast_door{ + id = "ship-med-surgery"; + name = "Blast Doors Controls"; + pixel_y = -28 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/surgery) +"GP" = ( +/obj/machinery/vending/engineering, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"GQ" = ( +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/turf/unsimulated/floor/steel, +/area/centcom/living) +"GR" = ( +/obj/machinery/vending/loadout, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/cryotube) +"GS" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/voidcraft/vertical, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/eva) +"GT" = ( +/obj/machinery/door/airlock/multi_tile/metal{ + dir = 2 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hydroponics) +"GU" = ( +/obj/structure/particle_accelerator/end_cap{ + anchored = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"GV" = ( +/obj/machinery/telecomms/relay/preset/centcom/tether/station_high, +/turf/simulated/floor/bluegrid, +/area/mothership/telecomms2) +"GW" = ( +/obj/machinery/atmospherics/binary/passive_gate{ + dir = 4; + icon_state = "on"; + unlocked = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"GX" = ( +/obj/machinery/vending/fitness, +/turf/simulated/floor/wood, +/area/mothership/breakroom) +"GY" = ( +/obj/structure/bed/chair/shuttle{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/mothership/bridge) +"GZ" = ( +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + dir = 2; + name = "south bump"; + pixel_y = -28; + req_access = list(67) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/closet/secure_closet/pathfinder, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"Ha" = ( +/obj/machinery/light, +/obj/machinery/firealarm{ + dir = 1; + pixel_x = 0; + pixel_y = -25 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hydroponics) +"Hb" = ( +/turf/simulated/floor/tiled/techmaint, +/area/mothership/rnd) +"Hc" = ( +/obj/structure/table/woodentable, +/obj/item/modular_computer/laptop/preset/custom_loadout/elite, +/obj/machinery/status_display{ + pixel_y = 29 + }, +/turf/simulated/floor/wood, +/area/mothership/dorm5) +"Hd" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/sechallway) +"He" = ( +/obj/machinery/door/blast/regular{ + dir = 4 + }, +/turf/unsimulated/floor/techfloor_grid, +/area/centcom/terminal) "Hf" = ( /obj/structure/table/rack, /obj/item/weapon/gun/energy/xray, @@ -16680,30 +18093,330 @@ icon_state = "dark" }, /area/centcom/specops) +"Hg" = ( +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"Hh" = ( +/obj/structure/table/steel_reinforced, +/obj/item/device/retail_scanner/security, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/warden) +"Hi" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/teleporter) +"Hj" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/telecomms2) +"Hk" = ( +/obj/structure/bed/chair/office/dark, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/mothership/dorm4) +"Hl" = ( +/obj/item/rig_module/mounted, +/obj/item/rig_module/mounted, +/obj/structure/table/rack/shelf/steel, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"Hm" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/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/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) "Hn" = ( /obj/structure/reagent_dispensers/watertank, /turf/unsimulated/floor{ icon_state = "dark" }, /area/centcom/control) -"Hs" = ( -/obj/effect/floor_decal/corner_steel_grid{ +"Ho" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light, +/obj/machinery/button/remote/blast_door{ + id = "ship-lounge"; + name = "Blast Doors Controls"; + pixel_y = -28 + }, +/turf/simulated/floor/carpet/blue, +/area/mothership/breakroom) +"Hp" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/microwave, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/kitchen) +"Hq" = ( +/turf/simulated/shuttle/wall/alien/hard_corner, +/area/unknown/dorm4) +"Hr" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/medical, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/turf/simulated/floor/outdoors/grass/sif/virgo3b, -/area/space) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/morgue) +"Ht" = ( +/obj/effect/floor_decal/derelict/d13, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"Hu" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 26 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/processing) "Hv" = ( -/obj/machinery/telecomms/relay/preset/centcom/tether/station_mid, -/turf/unsimulated/floor{ - icon_state = "steel" +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 }, -/area/centcom/command) +/turf/simulated/floor/tiled/white, +/area/mothership/treatment) +"Hw" = ( +/obj/machinery/atmospherics/pipe/simple/visible/universal, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 9 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"Hy" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet, +/obj/effect/floor_decal/borderfloor/shifted{ + icon_state = "borderfloor_shifted"; + dir = 1 + }, +/obj/effect/floor_decal/corner/lightorange{ + icon_state = "corner_white"; + dir = 5 + }, +/obj/effect/floor_decal/corner/lightorange/border/shifted{ + icon_state = "bordercolor_shifted"; + dir = 1 + }, +/obj/machinery/light/small{ + icon_state = "bulb1"; + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/sechallway) +"Hz" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/engineering) +"HA" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/warden) +"HB" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/mothership/treatment) +"HC" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/engineering) +"HD" = ( +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/carpet/blue, +/area/mothership/breakroom) +"HE" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/recharger, +/obj/item/weapon/tool/screwdriver, +/turf/simulated/floor/tiled/white, +/area/mothership/treatment) +"HF" = ( +/turf/simulated/floor/tiled/techmaint, +/area/mothership/morgue) +"HG" = ( +/obj/structure/filingcabinet/chestdrawer, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/processing) +"HH" = ( +/obj/machinery/vending/loadout/gadget, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/cryotube) +"HI" = ( +/obj/machinery/atmospherics/trinary/mixer{ + dir = 8; + node1_concentration = 0.21; + node2_concentration = 0.79 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"HJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/eva) "HL" = ( -/obj/machinery/telecomms/relay/preset/centcom/tether/midpoint, -/turf/unsimulated/floor{ - icon_state = "steel" +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" }, -/area/centcom/command) +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"HN" = ( +/obj/structure/table/woodentable, +/obj/item/modular_computer/laptop/preset/custom_loadout/elite, +/obj/machinery/status_display{ + pixel_y = -29 + }, +/turf/simulated/floor/wood, +/area/mothership/dorm4) +"HO" = ( +/turf/simulated/floor/tiled/techmaint, +/area/mothership/breakroom) +"HP" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/breakroom) +"HQ" = ( +/obj/machinery/power/emitter/gyrotron/anchored{ + desc = "It is a heavy duty pulse laser emitter."; + dir = 1; + icon_state = "emitter-off"; + name = "pulse laser" + }, +/turf/space, +/turf/simulated/shuttle/plating/airless/carry, +/area/mothership/breakroom) +"HR" = ( +/obj/machinery/power/terminal{ + icon_state = "term"; + dir = 1 + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2"; + pixel_y = 0 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/vault) +"HS" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm1) +"HT" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/rnd) "HU" = ( /obj/structure/table/rack, /obj/item/weapon/gun/energy/lasercannon, @@ -16712,6 +18425,23 @@ icon_state = "dark" }, /area/centcom/specops) +"HV" = ( +/obj/effect/floor_decal/techfloor{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/mothership/cryotube) +"HW" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"HX" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + icon_state = "door_closed"; + dir = 2 + }, +/turf/unsimulated/floor/steel, +/area/centcom/evac) "HY" = ( /obj/structure/table/rack, /obj/item/clothing/suit/armor/swat, @@ -16753,30 +18483,997 @@ icon_state = "dark" }, /area/centcom/specops) +"HZ" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5; + icon_state = "intact" + }, +/turf/simulated/floor/tiled/white, +/area/mothership/medical) +"Ia" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/holodeck) +"Ib" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/kitchen) +"Ic" = ( +/turf/simulated/floor/tiled/techmaint, +/area/mothership/robotics) +"Id" = ( +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"If" = ( +/obj/machinery/door/airlock/medical, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/mothership/treatment) +"Ig" = ( +/obj/structure/particle_accelerator/end_cap{ + anchored = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/telecomms2) +"Ii" = ( +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"Ij" = ( +/obj/machinery/door/airlock/voidcraft/vertical{ + id_tag = "ship-dorm5-door"; + opacity = 1 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/dorm5) +"Ik" = ( +/obj/item/rig_module/mounted/egun, +/obj/item/rig_module/mounted/egun, +/obj/item/rig_module/mounted/egun, +/obj/item/rig_module/mounted/egun, +/obj/structure/table/rack/shelf/steel, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"Il" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/warden) +"Im" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"Io" = ( +/obj/machinery/computer/teleporter{ + dir = 1 + }, +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm1) +"Iq" = ( +/obj/structure/shuttle/engine/propulsion{ + icon_state = "burst_l"; + dir = 8 + }, +/turf/unsimulated/floor/shuttle_ceiling, +/turf/simulated/shuttle/plating/airless/carry, +/area/shuttle/specialops/centcom) +"Is" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell M2" + }, +/obj/effect/floor_decal/borderfloor/shifted{ + icon_state = "borderfloor_shifted"; + dir = 1 + }, +/obj/effect/floor_decal/corner/lightorange{ + icon_state = "corner_white"; + dir = 5 + }, +/obj/effect/floor_decal/corner/lightorange/border/shifted{ + icon_state = "bordercolor_shifted"; + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/sechallway) +"It" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/cell_charger, +/obj/item/weapon/cell/hyper, +/obj/item/weapon/cell/hyper, +/obj/item/weapon/cell/hyper, +/obj/item/weapon/cell/hyper, +/obj/item/weapon/cell/hyper, +/obj/item/weapon/cell/hyper, +/obj/item/weapon/cell/hyper, +/obj/item/weapon/cell/hyper, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"Iu" = ( +/obj/structure/table/glass, +/obj/item/weapon/reagent_containers/glass/bottle/biomass{ + pixel_x = -4; + pixel_y = 8 + }, +/obj/item/weapon/reagent_containers/glass/bottle/biomass{ + pixel_x = -3; + pixel_y = -2 + }, +/obj/item/weapon/reagent_containers/glass/bottle/biomass{ + pixel_x = 3; + pixel_y = 5 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"Iv" = ( +/obj/item/weapon/gun/energy/frontier/locked/carbine, +/obj/item/weapon/gun/energy/frontier/locked/carbine, +/obj/item/weapon/gun/energy/frontier/locked/carbine, +/obj/item/weapon/gun/energy/frontier/locked/carbine, +/obj/item/weapon/gun/energy/frontier/locked/holdout, +/obj/item/weapon/gun/energy/frontier/locked/holdout, +/obj/item/weapon/gun/energy/frontier/locked/holdout, +/obj/item/weapon/gun/energy/frontier/locked/holdout, +/obj/structure/closet/secure_closet/guncabinet{ + req_one_access = list(103) + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"Iw" = ( +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + icon_state = "intact-supply"; + dir = 4 + }, +/obj/structure/closet/secure_closet/engineering_personal, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"Ix" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/blast/regular{ + density = 0; + destroy_hits = 1000; + dir = 1; + icon_state = "pdoor0"; + id = "ship-med-treatment"; + name = "Shuttle Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/mothership/treatment) +"Iy" = ( +/obj/item/weapon/bedsheet/captaindouble, +/obj/structure/bed/double/padded, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 26 + }, +/obj/machinery/button/remote/airlock{ + id = "ship-dorm2-door"; + name = "Dorm 2 Lock"; + pixel_x = -6; + pixel_y = -26; + specialfunctions = 4 + }, +/obj/structure/curtain/open/bed, +/turf/simulated/floor/wood, +/area/mothership/dorm2) +"IA" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/processing) +"IB" = ( +/obj/item/weapon/storage/firstaid/fire{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/storage/firstaid/fire, +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/tiled/white, +/area/mothership/medical) +"ID" = ( +/obj/item/weapon/storage/box/flashshells, +/obj/item/weapon/storage/box/flashshells, +/obj/item/weapon/storage/box/stunshells, +/obj/item/weapon/storage/box/stunshells, +/obj/item/weapon/storage/box/beanbags, +/obj/item/weapon/storage/box/beanbags, +/obj/item/weapon/storage/box/empshells/large, +/obj/item/weapon/storage/box/empshells/large, +/obj/item/weapon/storage/box/shotgunammo/large, +/obj/item/weapon/storage/box/shotgunammo/large, +/obj/item/weapon/storage/box/shotgunammo/large, +/obj/item/weapon/storage/box/shotgunammo/large, +/obj/item/weapon/storage/box/shotgunshells/large, +/obj/item/weapon/storage/box/shotgunshells/large, +/obj/item/weapon/storage/box/shotgunshells/large, +/obj/item/weapon/storage/box/shotgunshells/large, +/obj/item/weapon/gun/projectile/shotgun/pump/combat, +/obj/item/weapon/gun/projectile/shotgun/pump/combat, +/obj/structure/closet/secure_closet/guncabinet{ + req_one_access = list(103) + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"IE" = ( +/obj/machinery/vending/security, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"IF" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/resleeving) +"IG" = ( +/obj/machinery/telecomms/relay/preset/centcom/tether/sci_outpost, +/turf/simulated/floor/bluegrid, +/area/mothership/telecomms2) "IH" = ( /obj/machinery/shield_capacitor, /turf/unsimulated/floor{ icon_state = "dark" }, /area/centcom/control) -"JB" = ( -/obj/machinery/telecomms/relay/preset/centcom/tether/station_low, -/turf/unsimulated/floor{ - icon_state = "steel" +"II" = ( +/turf/unsimulated/wall{ + icon = 'icons/obj/doors/Doorext.dmi'; + icon_state = "door_locked"; + name = "Sealed Door" }, -/area/centcom/command) +/area/mothership/telecomms2) +"IJ" = ( +/obj/machinery/firealarm{ + dir = 2; + layer = 3.3; + pixel_x = 4; + pixel_y = 26 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/telecomms2) +"IK" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/sechallway) +"IM" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/reinforced/airless{ + name = "outer hull" + }, +/area/space) +"IN" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/cryotube) +"IO" = ( +/obj/structure/shuttle/engine/heater, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/reinforced/airless, +/area/mothership/telecomms2) +"IP" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/cyan, +/obj/structure/cable/cyan{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"IQ" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet, +/obj/effect/floor_decal/corner/lightorange{ + icon_state = "corner_white"; + dir = 5 + }, +/obj/effect/floor_decal/borderfloor/shifted{ + icon_state = "borderfloor_shifted"; + dir = 1 + }, +/obj/effect/floor_decal/corner/lightorange/border/shifted{ + icon_state = "bordercolor_shifted"; + dir = 1 + }, +/obj/machinery/light/small{ + icon_state = "bulb1"; + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/sechallway) +"IR" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/closet/secure_closet/engineering_welding, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"IS" = ( +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/carpet/oracarpet, +/area/mothership/engineering) +"IT" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/breakroom) +"IV" = ( +/obj/item/rig_module/rescue_pharm, +/obj/item/rig_module/rescue_pharm, +/obj/item/rig_module/chem_dispenser/injector, +/obj/item/rig_module/chem_dispenser/injector, +/obj/item/rig_module/chem_dispenser/combat, +/obj/item/rig_module/chem_dispenser/combat, +/obj/structure/table/rack/shelf/steel, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"IW" = ( +/obj/machinery/door/airlock/voidcraft/vertical{ + id_tag = "ship-dorm3-door"; + opacity = 1 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/dorm3) +"IX" = ( +/obj/item/clothing/suit/armor/vest/ert/command, +/obj/item/clothing/head/helmet/ert/command, +/obj/item/weapon/storage/backpack/ert/commander, +/obj/structure/table/rack/shelf/steel, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"IY" = ( +/obj/machinery/power/apc{ + dir = 2; + name = "south bump"; + pixel_y = -28; + req_access = list(67) + }, +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"IZ" = ( +/obj/effect/floor_decal/industrial/warning/dust/corner{ + dir = 4 + }, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"Ja" = ( +/obj/machinery/power/emitter/gyrotron/anchored{ + desc = "It is a heavy duty pulse laser emitter."; + dir = 4; + icon_state = "emitter-off"; + name = "pulse laser" + }, +/turf/space, +/turf/simulated/shuttle/plating/airless/carry, +/area/mothership/telecomms2) +"Jb" = ( +/obj/machinery/door/airlock/multi_tile/metal/mait{ + dir = 2; + req_one_access = list(103) + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/blast/regular{ + destroy_hits = 100; + id = "ship-armory"; + name = "Armory" + }, +/obj/machinery/button/remote/blast_door{ + id = "ship-armory"; + name = "Blast Doors Controls"; + pixel_x = 0; + pixel_y = -28 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"Jc" = ( +/obj/machinery/power/emitter/gyrotron/anchored{ + desc = "It is a heavy duty pulse laser emitter."; + dir = 8; + icon_state = "emitter-off"; + name = "pulse laser" + }, +/turf/space, +/turf/simulated/shuttle/plating/airless/carry, +/area/mothership/rnd) +"Jd" = ( +/obj/structure/undies_wardrobe, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/cryotube) +"Je" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"Jf" = ( +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"Jg" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/morgue) +"Jh" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"Ji" = ( +/obj/structure/table/rack/shelf/steel, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"Jj" = ( +/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) +"Jk" = ( +/obj/structure/prop/alien/computer{ + icon_state = "console-c"; + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/mothership/bridge) +"Jl" = ( +/obj/structure/filingcabinet/chestdrawer, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/warden) +"Jm" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/robotics) +"Jo" = ( +/obj/machinery/r_n_d/destructive_analyzer, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/rnd) +"Jp" = ( +/obj/item/clothing/glasses/graviton, +/obj/item/clothing/glasses/graviton, +/obj/item/clothing/glasses/graviton, +/obj/item/clothing/glasses/night, +/obj/item/clothing/glasses/night, +/obj/item/clothing/glasses/night, +/obj/item/clothing/glasses/night, +/obj/item/weapon/storage/belt/security/tactical, +/obj/item/weapon/storage/belt/security/tactical, +/obj/item/weapon/storage/belt/security/tactical, +/obj/item/weapon/storage/belt/security/tactical, +/obj/item/clothing/mask/gas/explorer, +/obj/item/clothing/mask/gas/explorer, +/obj/item/clothing/mask/gas/explorer, +/obj/item/clothing/mask/gas/explorer, +/obj/item/clothing/mask/gas/explorer, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/structure/table/rack/shelf/steel, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"Jq" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/blast/regular{ + density = 0; + destroy_hits = 1000; + dir = 1; + icon_state = "pdoor0"; + id = "ship-lounge"; + name = "Shuttle Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/mothership/breakroom) +"Jr" = ( +/obj/machinery/atmospherics/pipe/simple/visible/universal{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/red, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"Js" = ( +/obj/item/weapon/bedsheet/rddouble, +/obj/structure/bed/double/padded, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm3) +"Jt" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/machinery/power/apc{ + cell_type = /obj/item/weapon/cell/super; + dir = 8; + name = "west bump"; + pixel_x = -28 + }, +/obj/structure/cable/cyan, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/processing) +"Ju" = ( +/obj/effect/floor_decal/rust, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 4 + }, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"Jv" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hydroponics) +"Jw" = ( +/obj/machinery/power/emitter/gyrotron/anchored{ + desc = "It is a heavy duty pulse laser emitter."; + dir = 4; + icon_state = "emitter-off"; + name = "pulse laser" + }, +/turf/space, +/turf/simulated/shuttle/plating/airless/carry, +/area/mothership/security) +"Jx" = ( +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/robotics) +"Jy" = ( +/obj/machinery/light, +/turf/simulated/floor/bluegrid, +/area/mothership/robotics) +"Jz" = ( +/obj/machinery/power/fractal_reactor/fluff/converter, +/obj/structure/cable, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/vault) +"JA" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/medical, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/mothership/chemistry) "JC" = ( /obj/machinery/power/thermoregulator, /turf/unsimulated/floor{ icon_state = "dark" }, /area/centcom/specops) -"JW" = ( -/obj/machinery/telecomms/relay/preset/centcom/tether/base_low, -/turf/unsimulated/floor{ - icon_state = "steel" +"JD" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 }, -/area/centcom/command) +/obj/machinery/door/blast/regular{ + density = 0; + destroy_hits = 1000; + dir = 1; + icon_state = "pdoor0"; + id = "ship-sec-warden"; + name = "Shuttle Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/mothership/warden) +"JE" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 6 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"JF" = ( +/obj/item/device/perfect_tele_beacon/stationary{ + tele_name = "Unknown"; + tele_network = "unkfour" + }, +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm4) +"JG" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"JH" = ( +/obj/machinery/door/airlock/voidcraft/vertical{ + opacity = 1 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/bathroom1) +"JJ" = ( +/obj/machinery/door/airlock/external, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5; + icon_state = "intact" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/telecomms2) +"JK" = ( +/obj/structure/prop/alien/dispenser, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm3) +"JL" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/warden) +"JM" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/table/bench/steel, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"JN" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/storage/box/pillbottles, +/obj/item/weapon/storage/box/pillbottles, +/obj/item/weapon/storage/box/beakers, +/obj/item/weapon/storage/box/syringes, +/obj/item/weapon/storage/box/syringes, +/obj/item/weapon/tool/screwdriver, +/obj/item/weapon/storage/box/pillbottles, +/obj/item/weapon/storage/box/pillbottles, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -23; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/chemistry) +"JO" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/voidcraft, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hydroponics) +"JP" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/eva) +"JQ" = ( +/obj/structure/closet/alien, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm2) +"JR" = ( +/obj/item/clothing/accessory/storage/white_vest, +/obj/item/clothing/accessory/storage/white_vest, +/obj/item/clothing/accessory/storage/white_vest, +/obj/item/clothing/accessory/storage/white_vest, +/obj/item/clothing/accessory/storage/white_drop_pouches, +/obj/item/clothing/accessory/storage/white_drop_pouches, +/obj/item/clothing/accessory/storage/white_drop_pouches, +/obj/item/clothing/accessory/storage/white_drop_pouches, +/obj/item/weapon/storage/backpack/dufflebag/syndie/med, +/obj/item/weapon/storage/backpack/dufflebag/syndie/med, +/obj/structure/table/rack/shelf/steel, +/turf/simulated/floor/tiled/white, +/area/mothership/medical) +"JS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hydroponics) +"JT" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/empty/sleeping_agent, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"JU" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"JV" = ( +/obj/item/clothing/suit/armor/vest/ert/security, +/obj/item/clothing/suit/armor/vest/ert/security, +/obj/item/clothing/suit/armor/vest/ert/security, +/obj/item/clothing/head/helmet/ert/security, +/obj/item/clothing/head/helmet/ert/security, +/obj/item/clothing/head/helmet/ert/security, +/obj/item/weapon/storage/backpack/ert/security, +/obj/item/weapon/storage/backpack/ert/security, +/obj/item/weapon/storage/backpack/ert/security, +/obj/structure/table/rack/shelf/steel, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"JW" = ( +/obj/structure/bed/chair/wood{ + icon_state = "wooden_chair"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/carpet/blue, +/area/mothership/breakroom) +"JX" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/voidcraft/vertical{ + id_tag = "ship-holodeck-door"; + opacity = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/holodeck) +"JY" = ( +/obj/structure/prop/alien/power, +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm4) +"JZ" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) "Ka" = ( /obj/machinery/vending/nifsoft_shop{ categories = 111; @@ -16789,6 +19486,229 @@ dir = 5 }, /area/centcom/specops) +"Kb" = ( +/obj/structure/closet/secure_closet/personal, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm2) +"Kc" = ( +/obj/structure/bed/chair/shuttle{ + icon_state = "shuttle_chair"; + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/mothership/bridge) +"Kd" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "vault"; + dir = 5 + }, +/area/centcom/security{ + name = "\improper CentCom Residential Security" + }) +"Ke" = ( +/obj/structure/closet{ + name = "mechanical equipment" + }, +/obj/item/weapon/storage/toolbox/syndicate/powertools, +/obj/item/weapon/storage/toolbox/syndicate/powertools, +/obj/item/clothing/head/welding{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/item/clothing/head/welding{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/item/clothing/glasses/welding, +/obj/item/clothing/glasses/welding, +/obj/item/weapon/storage/belt/utility, +/obj/item/device/multitool{ + pixel_x = 3 + }, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/item/device/assembly/prox_sensor{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/item/device/assembly/prox_sensor{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/item/device/flash/synthetic, +/obj/item/device/flash/synthetic, +/obj/item/device/flash/synthetic, +/obj/item/device/flash/synthetic, +/obj/item/device/healthanalyzer, +/obj/item/device/healthanalyzer, +/obj/item/weapon/storage/firstaid/regular{ + empty = 1; + name = "First-Aid (empty)" + }, +/obj/item/weapon/storage/firstaid/regular{ + empty = 1; + name = "First-Aid (empty)" + }, +/obj/item/weapon/cell/high{ + charge = 100; + maxcharge = 15000; + pixel_x = 5; + pixel_y = -5 + }, +/obj/item/weapon/cell/high{ + charge = 100; + maxcharge = 15000; + pixel_x = 5; + pixel_y = -5 + }, +/obj/item/weapon/cell/high{ + charge = 100; + maxcharge = 15000; + pixel_x = 5; + pixel_y = -5 + }, +/obj/item/weapon/cell/high{ + charge = 100; + maxcharge = 15000; + pixel_x = 5; + pixel_y = -5 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/rnd) +"Kf" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/eva) +"Kh" = ( +/obj/item/clothing/suit/space/void/atmos, +/obj/item/clothing/head/helmet/space/void/atmos, +/obj/item/weapon/tank/oxygen/red, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/mask/breath, +/obj/structure/table/rack/shelf/steel, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/eva) +"Ki" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/kitchen) +"Kj" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/mothership/bridge) +"Kk" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/dorm6) +"Kl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/telecomms1) +"Km" = ( +/obj/machinery/sleeper/survival_pod, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm2) +"Kn" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/telecomms1) +"Ko" = ( +/obj/machinery/mech_recharger, +/obj/machinery/firealarm{ + dir = 1; + pixel_x = 0; + pixel_y = -25 + }, +/turf/simulated/floor/bluegrid, +/area/mothership/robotics) +"Kp" = ( +/obj/machinery/computer/rdservercontrol{ + badmin = 1; + dir = 1; + name = "Master RnD Server Controller" + }, +/turf/simulated/floor/bluegrid, +/area/mothership/telecomms1) +"Kq" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"Kr" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/computer/skills, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"Ks" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/medical) +"Kt" = ( +/obj/machinery/recharge_station, +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm1) +"Ku" = ( +/obj/effect/floor_decal/derelict/d1, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"Kv" = ( +/obj/structure/fans, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm2) "Kw" = ( /obj/structure/table/reinforced, /obj/item/weapon/storage/firstaid/combat{ @@ -16801,12 +19721,311 @@ dir = 5 }, /area/centcom/specops) -"Lb" = ( -/obj/machinery/telecomms/relay/preset/centcom/tether/base_high, -/turf/unsimulated/floor{ - icon_state = "steel" +"Kx" = ( +/obj/machinery/door/airlock/security, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/area/centcom/command) +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/processing) +"Ky" = ( +/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/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/telecomms2) +"Kz" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/machinery/light/small, +/obj/machinery/alarm{ + alarm_id = "pen_nine"; + breach_detection = 0; + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/mothership/dorm2) +"KA" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/eva) +"KB" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/supply{ + icon_state = "map-supply"; + dir = 1 + }, +/obj/structure/closet/secure_closet/engineering_personal, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"KC" = ( +/obj/structure/closet/secure_closet/engineering_chief, +/obj/item/weapon/rcd, +/obj/item/weapon/rcd_ammo, +/obj/item/weapon/rcd_ammo, +/obj/item/weapon/rcd_ammo, +/obj/item/weapon/rcd_ammo, +/obj/item/weapon/rcd_ammo, +/obj/item/weapon/rcd_ammo, +/obj/item/weapon/rcd_ammo, +/obj/item/weapon/rcd_ammo, +/obj/item/weapon/rig/ce/equipped, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"KD" = ( +/obj/machinery/door/airlock/engineeringatmos, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"KE" = ( +/obj/structure/table/rack/steel, +/obj/machinery/door/window/survival_pod{ + dir = 8; + req_one_access = list(103) + }, +/obj/structure/window/reinforced/survival_pod, +/obj/item/weapon/rig/ert/medical, +/obj/item/weapon/rig/ert/medical, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"KF" = ( +/obj/structure/bed/chair/shuttle{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_x = 0; + pixel_y = -25 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/mothership/bridge) +"KG" = ( +/obj/structure/filingcabinet/chestdrawer{ + name = "Scan Records" + }, +/turf/simulated/floor/tiled/white, +/area/mothership/treatment) +"KH" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/bridge) +"KI" = ( +/obj/machinery/button/remote/airlock{ + id = "ship-vault-door"; + name = "Vault Lock"; + pixel_x = -6; + pixel_y = -26; + req_one_access = list(108); + specialfunctions = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/mothership/bridge) +"KK" = ( +/turf/simulated/shuttle/wall/alien/hard_corner, +/area/unknown/dorm1) +"KL" = ( +/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) +"KM" = ( +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/machinery/computer/cryopod/dorms{ + name = "Company Property Retention System"; + pixel_x = -28; + pixel_y = 0 + }, +/turf/unsimulated/floor/steel, +/area/centcom/living) +"KN" = ( +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + icon_state = "intact-supply"; + dir = 4 + }, +/obj/machinery/space_heater, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"KO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/processing) +"KP" = ( +/obj/machinery/biogenerator, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hydroponics) +"KR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/engineering) +"KS" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/medical, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/white, +/area/mothership/medical) +"KT" = ( +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + icon_state = "intact-supply"; + dir = 4 + }, +/obj/machinery/pipedispenser/orderable, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"KU" = ( +/obj/machinery/telecomms/relay/preset/centcom/tether/base_mid, +/turf/simulated/floor/bluegrid, +/area/mothership/telecomms2) +"KV" = ( +/obj/structure/table/rack/shelf/steel, +/obj/item/weapon/storage/box/flashbangs{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/weapon/cell/device/weapon, +/obj/item/weapon/cell/device/weapon, +/obj/item/weapon/cell/device/weapon, +/obj/item/weapon/cell/device/weapon, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -23; + pixel_y = 0 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/item/clothing/accessory/storage/pouches/large/blue, +/obj/item/clothing/accessory/storage/pouches/large/blue, +/obj/item/clothing/accessory/storage/pouches/large/blue, +/obj/item/clothing/accessory/storage/pouches/large/blue, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"KW" = ( +/obj/machinery/door/airlock/external, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"KX" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"KY" = ( +/obj/effect/floor_decal/derelict/d15, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"KZ" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/telecomms2) +"La" = ( +/obj/machinery/atmospherics/tvalve/digital/mirrored{ + dir = 8; + name = "Filter Bypass" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"Lb" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/eva) +"Lc" = ( +/obj/structure/bed/pod, +/obj/item/weapon/bedsheet/ce, +/obj/structure/curtain/open/bed, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"Ld" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/medical) "Le" = ( /obj/structure/table/rack, /obj/item/weapon/gun/energy/gun/burst, @@ -16815,31 +20034,449 @@ icon_state = "dark" }, /area/centcom/specops) +"Lf" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) "Lg" = ( -/obj/effect/floor_decal/corner_steel_grid{ - dir = 9 - }, -/turf/simulated/floor/outdoors/grass/sif/virgo3b, -/area/space) +/obj/machinery/r_n_d/circuit_imprinter, +/obj/item/weapon/reagent_containers/glass/beaker/sulphuric, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/rnd) "Lh" = ( -/obj/effect/floor_decal/corner_steel_grid/diagonal{ - dir = 4 +/obj/machinery/firealarm{ + dir = 2; + layer = 3.3; + pixel_x = 4; + pixel_y = 26 }, -/obj/effect/floor_decal/corner_steel_grid/diagonal, -/turf/unsimulated/floor/steel, -/area/centcom/evac) +/turf/simulated/floor/wood, +/area/mothership/breakroom) +"Li" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9; + icon_state = "intact" + }, +/turf/simulated/floor/tiled/white, +/area/mothership/treatment) +"Lj" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hydroponics) +"Lk" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"Ll" = ( +/obj/structure/closet/secure_closet/detective, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"Lm" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"Ln" = ( +/obj/machinery/power/emitter/gyrotron/anchored{ + desc = "It is a heavy duty pulse laser emitter."; + dir = 8; + icon_state = "emitter-off"; + name = "pulse laser" + }, +/turf/space, +/turf/simulated/shuttle/plating/airless/carry, +/area/mothership/resleeving) +"Lo" = ( +/obj/machinery/vending/snack, +/turf/simulated/floor/wood, +/area/mothership/breakroom) +"Lp" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/medical) +"Lr" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/teleporter) +"Ls" = ( +/obj/structure/closet/crate/bin, +/turf/simulated/floor/tiled/white, +/area/mothership/treatment) +"Lu" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/breakroom) +"Lv" = ( +/obj/item/weapon/bedsheet/captaindouble, +/obj/structure/bed/double/padded, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/button/remote/airlock{ + id = "ship-dorm3-door"; + name = "Dorm 3 Lock"; + pixel_x = 6; + pixel_y = 26; + specialfunctions = 4 + }, +/obj/structure/curtain/open/bed, +/turf/simulated/floor/wood, +/area/mothership/dorm3) +"Lw" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/treatment) +"Lx" = ( +/obj/structure/closet/crate/secure/gear{ + req_one_access = list(108) + }, +/obj/item/device/subspaceradio, +/obj/item/weapon/storage/firstaid/insiderepair, +/obj/item/weapon/storage/firstaid/combat, +/obj/item/weapon/storage/toolbox/syndicate/powertools, +/obj/item/weapon/storage/box/syndie_kit/demolitions_super_heavy{ + name = "Super Heavy Demolitions kit" + }, +/obj/item/weapon/storage/box/syndie_kit/demolitions_heavy{ + name = "Heavy Demolitions kit" + }, +/obj/item/weapon/storage/box/syndie_kit/demolitions_heavy{ + name = "Heavy Demolitions kit" + }, +/obj/item/weapon/storage/box/syndie_kit/demolitions_heavy{ + name = "Heavy Demolitions kit" + }, +/obj/item/weapon/plastique, +/obj/item/weapon/plastique, +/obj/item/weapon/plastique, +/obj/item/weapon/plastique, +/obj/item/weapon/plastique, +/obj/item/weapon/plastique, +/obj/item/weapon/storage/box/emps{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/weapon/cell/device/weapon/recharge/alien, +/obj/item/weapon/cell/device/weapon/recharge/alien, +/obj/item/weapon/cell/device/weapon/recharge/alien, +/obj/item/weapon/cell/device/weapon/recharge/alien, +/obj/item/weapon/cell/device/weapon/recharge/alien, +/obj/item/weapon/cell/device/weapon/recharge/alien, +/obj/item/weapon/material/knife/machete/deluxe{ + default_material = "durasteel" + }, +/obj/item/clothing/accessory/holster/machete, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/vault) +"Ly" = ( +/obj/item/weapon/storage/firstaid/o2{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/storage/firstaid/o2, +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/tiled/white, +/area/mothership/medical) +"Lz" = ( +/obj/structure/closet/crate/freezer/rations, +/obj/random/mre, +/obj/random/mre, +/obj/random/mre, +/obj/random/mre, +/obj/random/mre, +/obj/random/mre, +/obj/machinery/power/apc{ + dir = 2; + name = "south bump"; + pixel_y = -28; + req_access = list(67) + }, +/obj/structure/cable/cyan{ + d1 = 0; + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/wood, +/area/mothership/breakroom) +"LA" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"LC" = ( +/obj/machinery/vending/loadout/loadout_misc, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/cryotube) "LD" = ( /obj/machinery/portable_atmospherics/powered/scrubber, /turf/unsimulated/floor{ icon_state = "dark" }, /area/centcom/control) +"LE" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/machinery/light, +/obj/machinery/alarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/machinery/button/remote/blast_door{ + id = "ship-hydroponics"; + name = "Blast Doors Controls"; + pixel_x = 20; + pixel_y = -28 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hydroponics) +"LG" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1; + icon_state = "map" + }, +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/telecomms1) +"LI" = ( +/obj/machinery/door/airlock/medical, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/mothership/medical) +"LJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/warden) +"LL" = ( +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"LM" = ( +/obj/machinery/alarm{ + alarm_id = "anomaly_testing"; + breach_detection = 0; + dir = 8; + frequency = 1439; + pixel_x = 22; + pixel_y = 0; + report_danger_level = 0 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/processing) +"LN" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/folder/red{ + pixel_x = 2; + pixel_y = 4 + }, +/obj/item/weapon/folder/red, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/processing) +"LO" = ( +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/cryotube) +"LP" = ( +/obj/machinery/atmospherics/binary/pump/on{ + dir = 2; + target_pressure = 200 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"LQ" = ( +/obj/machinery/autolathe{ + desc = "Your typical Autolathe. It appears to have much more options than your regular one, however..."; + hacked = 1; + name = "Centcom Autolathe" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/rnd) +"LR" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/blast/regular{ + density = 0; + destroy_hits = 1000; + dir = 4; + icon_state = "pdoor0"; + id = "ship-lounge"; + name = "Shuttle Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/mothership/breakroom) "LS" = ( /obj/machinery/shieldgen, /turf/unsimulated/floor{ icon_state = "dark" }, /area/centcom/control) +"LT" = ( +/turf/simulated/floor/tiled/white, +/area/mothership/treatment) +"LV" = ( +/obj/machinery/power/emitter/gyrotron/anchored{ + desc = "It is a heavy duty pulse laser emitter."; + dir = 4; + icon_state = "emitter-off"; + name = "pulse laser" + }, +/turf/space, +/turf/simulated/shuttle/plating/airless/carry, +/area/mothership/warden) +"LW" = ( +/obj/machinery/recharge_station, +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm2) +"LX" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm4) +"LY" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/cyan, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/rnd) +"LZ" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/treatment) +"Ma" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/teleporter) +"Mb" = ( +/obj/machinery/cryopod, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/mothership/cryotube) +"Mc" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/voidcraft, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hydroponics) +"Md" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/reagent_containers/glass/bottle/biomass, +/obj/item/weapon/reagent_containers/glass/bottle/biomass, +/obj/item/weapon/reagent_containers/glass/bottle/biomass, +/obj/item/weapon/reagent_containers/glass/bottle/biomass, +/obj/item/weapon/reagent_containers/glass/bottle/biomass, +/obj/item/weapon/reagent_containers/glass/bottle/biomass, +/obj/item/weapon/reagent_containers/glass/bottle/biomass, +/obj/item/weapon/reagent_containers/glass/bottle/biomass, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/resleeving) "Me" = ( /obj/item/weapon/storage/firstaid/regular, /turf/unsimulated/floor{ @@ -16847,6 +20484,80 @@ icon_state = "dark" }, /area/centcom/control) +"Mf" = ( +/obj/structure/bed/chair/shuttle{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/mothership/bridge) +"Mg" = ( +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm4) +"Mh" = ( +/obj/machinery/vending/food/arojoan{ + density = 0; + pixel_x = 0; + pixel_y = -32 + }, +/turf/simulated/floor/carpet/blue, +/area/mothership/breakroom) +"Mi" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/breakroom) +"Mj" = ( +/obj/structure/shuttle/engine/propulsion, +/turf/space, +/area/mothership/engineering) +"Mk" = ( +/obj/machinery/door/airlock/research, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/rnd) +"Ml" = ( +/obj/structure/closet/secure_closet/personal, +/turf/simulated/floor/wood, +/area/mothership/dorm1) +"Mm" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 1 + }, +/obj/structure/closet/emcloset/legacy, +/obj/item/weapon/storage/box/survival/space, +/obj/item/weapon/storage/box/survival/space, +/obj/item/weapon/storage/box/survival/space, +/obj/item/weapon/storage/box/survival/space, +/obj/item/weapon/storage/box/survival/space, +/obj/item/weapon/storage/box/survival/space, +/obj/item/weapon/storage/box/syndie_kit/space, +/obj/item/weapon/storage/box/syndie_kit/space, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"Mn" = ( +/obj/structure/closet/secure_closet/personal, +/turf/simulated/floor/wood, +/area/mothership/dorm3) +"Mp" = ( +/turf/simulated/floor/tiled/techmaint, +/area/mothership/warden) +"Mr" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/chemical_dispenser/bar_coffee/full, +/turf/simulated/floor/wood, +/area/mothership/breakroom) +"Ms" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/white, +/area/mothership/chemistry) "Mt" = ( /obj/structure/table/rack, /obj/item/weapon/extinguisher/mini, @@ -16858,12 +20569,383 @@ dir = 5 }, /area/centcom/specops) +"Mu" = ( +/turf/simulated/floor/carpet/blue, +/area/mothership/breakroom) +"Mv" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/machinery/alarm{ + alarm_id = "pen_nine"; + breach_detection = 0; + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/light/small, +/turf/simulated/floor/wood, +/area/mothership/dorm1) "Mw" = ( /obj/machinery/shield_gen/external, /turf/unsimulated/floor{ icon_state = "dark" }, /area/centcom/specops) +"My" = ( +/obj/machinery/light/small, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/morgue) +"MA" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/medical) +"MB" = ( +/obj/machinery/sleeper{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/treatment) +"MC" = ( +/obj/structure/closet/secure_closet/RD, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/rnd) +"MD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/mothership/treatment) +"ME" = ( +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"MF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10; + icon_state = "intact" + }, +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/telecomms2) +"MG" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/treatment) +"MI" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/recharger, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/rnd) +"MJ" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/surgery) +"MK" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/teleporter) +"ML" = ( +/obj/machinery/vending/dinnerware, +/turf/simulated/floor/wood, +/area/mothership/breakroom) +"MM" = ( +/obj/structure/closet/wardrobe/ert, +/obj/item/weapon/storage/box/survival/comp{ + starts_with = list(/obj/item/weapon/tool/prybar/red,/obj/item/clothing/glasses/goggles,/obj/item/weapon/reagent_containers/hypospray/autoinjector,/obj/item/stack/medical/bruise_pack,/obj/item/device/flashlight/glowstick,/obj/item/weapon/reagent_containers/food/snacks/candy/proteinbar,/obj/item/clothing/mask/breath,/obj/item/weapon/tank/emergency/oxygen/engi) + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/item/weapon/storage/box/survival/space, +/obj/item/weapon/storage/toolbox/emergency, +/turf/simulated/floor/wood, +/area/mothership/dorm6) +"MN" = ( +/obj/machinery/power/apc{ + dir = 2; + name = "south bump"; + pixel_y = -28 + }, +/obj/structure/cable/cyan{ + d1 = 0; + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/robotics) +"MO" = ( +/obj/machinery/chem_master, +/turf/simulated/floor/tiled/white, +/area/mothership/chemistry) +"MP" = ( +/obj/structure/closet/secure_closet/nanotrasen_commander, +/obj/item/weapon/storage/secure/briefcase/nsfw_pack_hos, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"MQ" = ( +/obj/machinery/door/airlock/security, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/processing) +"MS" = ( +/obj/machinery/teleport/station, +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm2) +"MT" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/book/manual/chef_recipes, +/obj/item/weapon/reagent_containers/food/condiment/enzyme{ + layer = 5 + }, +/obj/item/weapon/reagent_containers/food/condiment/enzyme{ + layer = 5 + }, +/obj/item/weapon/material/knife/butch, +/obj/item/weapon/material/kitchen/rollingpin, +/obj/machinery/firealarm{ + dir = 2; + layer = 3.3; + pixel_x = 4; + pixel_y = 26 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/kitchen) +"MU" = ( +/obj/item/weapon/bedsheet/captaindouble, +/obj/structure/bed/double/padded, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 26 + }, +/obj/machinery/button/remote/airlock{ + id = "ship-dorm6-door"; + name = "Dorm 6 Lock"; + pixel_x = -6; + pixel_y = -26; + specialfunctions = 4 + }, +/obj/structure/curtain/open/bed, +/turf/simulated/floor/wood, +/area/mothership/dorm6) +"MV" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/rnd) +"MW" = ( +/obj/machinery/light{ + dir = 8; + icon_state = "tube1" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/white, +/area/mothership/chemistry) +"MX" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/teleporter) +"MZ" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/reagentgrinder, +/obj/item/weapon/storage/box/beakers, +/obj/machinery/button/remote/blast_door{ + id = "ship-kitchen"; + name = "Blast Doors Controls"; + pixel_y = 28 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/kitchen) +"Na" = ( +/obj/machinery/vending/loadout/overwear, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/cryotube) +"Nb" = ( +/obj/machinery/atmospherics/unary/cryo_cell, +/turf/simulated/floor/tiled/white, +/area/mothership/resleeving) +"Nd" = ( +/obj/effect/floor_decal/industrial/warning/dust/corner, +/obj/machinery/light/flamp/noshade, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"Ne" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"Nf" = ( +/obj/machinery/light{ + dir = 8; + icon_state = "tube1" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"Ng" = ( +/obj/machinery/vending/fitness, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"Nh" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/holodeck) +"Ni" = ( +/obj/machinery/vending/cola, +/turf/simulated/floor/wood, +/area/mothership/breakroom) +"Nj" = ( +/obj/structure/table/steel_reinforced, +/obj/item/device/defib_kit/compact/combat/loaded, +/turf/simulated/floor/tiled/white, +/area/mothership/treatment) +"Nk" = ( +/obj/item/clothing/suit/space/void/exploration, +/obj/item/clothing/head/helmet/space/void/exploration, +/obj/item/weapon/tank/oxygen, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/mask/breath, +/obj/machinery/firealarm{ + dir = 1; + pixel_x = 0; + pixel_y = -25 + }, +/obj/structure/table/rack/shelf/steel, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/eva) +"Nl" = ( +/obj/structure/prop/alien/dispenser, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm4) +"Nm" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"Nn" = ( +/obj/structure/table/steel_reinforced, +/obj/item/device/flashlight/lamp, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/processing) +"No" = ( +/obj/machinery/telecomms/hub/preset_cent, +/turf/simulated/floor/bluegrid, +/area/mothership/telecomms1) +"Np" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/resleeving) +"Nq" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/structure/table/steel_reinforced, +/obj/effect/floor_decal/corner/lightorange{ + icon_state = "corner_white"; + dir = 5 + }, +/obj/effect/floor_decal/borderfloor/shifted{ + icon_state = "borderfloor_shifted"; + dir = 1 + }, +/obj/effect/floor_decal/corner/lightorange/border/shifted{ + icon_state = "bordercolor_shifted"; + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/sechallway) +"Nr" = ( +/obj/machinery/computer/transhuman{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/resleeving) +"Ns" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/medical) +"Nt" = ( +/obj/machinery/door/airlock/alien/public, +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm4) +"Nu" = ( +/obj/machinery/telecomms/processor/preset_cent, +/turf/simulated/floor/bluegrid, +/area/mothership/telecomms1) +"Nv" = ( +/obj/machinery/door/airlock/external, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/eva) +"Nw" = ( +/obj/machinery/vending/hydronutrients, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hydroponics) "Nx" = ( /obj/structure/table/rack, /obj/item/weapon/plastique, @@ -16878,13 +20960,230 @@ icon_state = "dark" }, /area/centcom/specops) -"NI" = ( -/obj/effect/floor_decal/corner_steel_grid/diagonal{ +"Nz" = ( +/obj/structure/table/woodentable, +/obj/item/modular_computer/laptop/preset/custom_loadout/elite, +/obj/machinery/status_display{ + pixel_y = 29 + }, +/turf/simulated/floor/wood, +/area/mothership/dorm2) +"NA" = ( +/obj/machinery/door/blast/regular{ + dir = 4; + id = "ship-mechbay"; + name = "Mech Bay" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/rnd) +"NB" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/effect/floor_decal/corner_steel_grid/diagonal, -/turf/simulated/floor/outdoors/grass/sif/virgo3b, -/area/space) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"NC" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/sechallway) +"ND" = ( +/obj/machinery/teleport/station, +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm3) +"NE" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/door/window/westleft, +/obj/machinery/door/window/eastright, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/rnd) +"NF" = ( +/obj/machinery/status_display{ + pixel_y = -29 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"NG" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/breakroom) +"NI" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/medical) +"NJ" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + pixel_x = 0; + pixel_y = 32 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/telecomms1) +"NK" = ( +/obj/machinery/computer/rdconsole/core, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/rnd) +"NL" = ( +/turf/simulated/floor/tiled/techmaint, +/area/mothership/telecomms1) +"NM" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hydroponics) +"NN" = ( +/obj/item/rig_module/vision/multi, +/obj/structure/table/rack/shelf/steel, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"NO" = ( +/obj/item/weapon/gun/energy/gun/nuclear, +/obj/item/weapon/gun/energy/gun/nuclear, +/obj/item/weapon/gun/energy/gun/nuclear, +/obj/item/weapon/gun/energy/gun/nuclear, +/obj/structure/closet/secure_closet/guncabinet{ + req_one_access = list(103) + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"NP" = ( +/obj/machinery/door/airlock/voidcraft/vertical, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/cryotube) +"NQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/medical) +"NR" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/storage/box/evidence, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/processing) +"NS" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 10 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"NT" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/teleporter) +"NU" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/simulated/floor/tiled/white, +/area/mothership/kitchen) +"NV" = ( +/obj/machinery/door/airlock/security, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/warden) +"NW" = ( +/obj/machinery/sleep_console{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/treatment) +"NX" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/kitchen) +"NY" = ( +/obj/machinery/chemical_dispenser/ert, +/turf/simulated/floor/tiled/white, +/area/mothership/chemistry) +"Oa" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/rnd) +"Ob" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) "Oc" = ( /obj/structure/table/reinforced, /obj/item/weapon/reagent_containers/blood/OMinus, @@ -16898,6 +21197,50 @@ dir = 5 }, /area/centcom/specops) +"Od" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hydroponics) +"Oe" = ( +/obj/structure/closet/crate/secure/weapon{ + req_one_access = list(108) + }, +/obj/item/weapon/gun/energy/modular/cannon, +/obj/item/weapon/gun/energy/modular/carbine, +/obj/item/weapon/gun/energy/modular/pistol, +/obj/item/weapon/gun/energy/medigun, +/obj/item/weapon/gun/energy/captain, +/obj/machinery/firealarm{ + dir = 1; + pixel_x = 0; + pixel_y = -25 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/vault) +"Of" = ( +/obj/machinery/door/airlock/highsecurity{ + req_one_access = list(103) + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) "Og" = ( /obj/structure/table/rack, /obj/item/weapon/gun/projectile/automatic/l6_saw, @@ -16914,21 +21257,1360 @@ icon_state = "dark" }, /area/centcom/specops) +"Oh" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/rnd) +"Oi" = ( +/obj/structure/particle_accelerator/fuel_chamber{ + anchored = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/telecomms1) +"Oj" = ( +/obj/machinery/atmospherics/unary/heater{ + dir = 1; + icon_state = "heater"; + use_power = 0 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"Ok" = ( +/obj/structure/table/alien, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm4) +"Ol" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/storage/box/bodybags, +/obj/item/weapon/storage/box/bodybags{ + pixel_x = 2; + pixel_y = 2 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/morgue) +"Om" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/telecomms2) +"On" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"Oo" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/teleporter) +"Op" = ( +/obj/machinery/door/airlock/research, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/white, +/area/mothership/medical) +"Oq" = ( +/obj/machinery/telecomms/server/presets/centcomm, +/turf/simulated/floor/bluegrid, +/area/mothership/telecomms1) +"Or" = ( +/obj/machinery/door/airlock/voidcraft/vertical{ + id_tag = "ship-dorm2-door"; + opacity = 1 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/dorm2) +"Os" = ( +/obj/machinery/vending/loadout/uniform, +/turf/simulated/floor/tiled/white, +/area/mothership/resleeving) +"Ot" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/empty/phoron, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"Ou" = ( +/obj/structure/particle_accelerator/power_box{ + anchored = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/telecomms1) +"Ov" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"Ow" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/warden) +"Ox" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"Oy" = ( +/obj/structure/bed/chair/wood{ + icon_state = "wooden_chair"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/carpet/blue, +/area/mothership/breakroom) +"Oz" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/resleeving) +"OA" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/vault/bolted{ + id_tag = "ship-vault-door"; + req_one_access = list(109) + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/regular{ + destroy_hits = 100; + id = "ship-vault"; + name = "Vault" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/vault) +"OB" = ( +/obj/item/stack/material/glass{ + amount = 50 + }, +/obj/item/stack/material/glass{ + amount = 50 + }, +/obj/item/stack/material/glass{ + amount = 50 + }, +/obj/item/stack/material/glass{ + amount = 50 + }, +/obj/item/stack/material/steel{ + amount = 50; + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/stack/material/steel{ + amount = 50; + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/stack/material/steel{ + amount = 50; + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/stack/material/steel{ + amount = 50; + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/stack/material/plasteel{ + amount = 50 + }, +/obj/item/stack/material/plasteel{ + amount = 50 + }, +/obj/item/stack/material/plasteel{ + amount = 50 + }, +/obj/item/stack/material/plasteel{ + amount = 50 + }, +/obj/item/stack/material/glass/reinforced{ + amount = 50 + }, +/obj/item/stack/material/glass/reinforced{ + amount = 50 + }, +/obj/item/stack/material/glass/reinforced{ + amount = 50 + }, +/obj/item/weapon/storage/briefcase/inflatable{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/storage/briefcase/inflatable{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/storage/briefcase/inflatable{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/storage/briefcase/inflatable{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/structure/table/steel_reinforced, +/obj/item/stack/rods, +/obj/item/stack/rods, +/obj/item/stack/material/glass/phoronglass, +/obj/item/stack/material/glass/phoronglass, +/obj/item/stack/rods, +/obj/item/stack/rods, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"OC" = ( +/obj/machinery/mech_recharger, +/obj/structure/ghost_pod/manual/lost_drone/dogborg, +/turf/simulated/floor/bluegrid, +/area/mothership/robotics) "OD" = ( /obj/machinery/power/port_gen/pacman, /turf/unsimulated/floor{ icon_state = "dark" }, /area/centcom/specops) +"OE" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/blast/regular{ + density = 0; + destroy_hits = 1000; + dir = 1; + icon_state = "pdoor0"; + id = "ship-kitchen"; + name = "Shuttle Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/mothership/kitchen) +"OF" = ( +/turf/space, +/area/space) +"OG" = ( +/obj/machinery/atmospherics/binary/pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"OH" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/processing) +"OI" = ( +/obj/effect/floor_decal/derelict/d9, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"OJ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"OK" = ( +/obj/machinery/door/firedoor/glass, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/window/brigdoor/southleft{ + dir = 4; + id = "Cell M1"; + name = "Cell 1"; + req_access = list(2) + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 1; + icon_state = "pdoor0"; + id = "ship-sec-cell1"; + name = "Security Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor/tiled/dark, +/area/mothership/sechallway) +"OL" = ( +/obj/machinery/door/airlock/security, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/sechallway) +"OM" = ( +/obj/machinery/door/blast/regular{ + dir = 4; + id = "ship-mechbay"; + name = "Mech Bay" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/rnd) +"ON" = ( +/obj/machinery/status_display{ + pixel_x = 32; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"OO" = ( +/obj/machinery/teleport/station, +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm1) +"OP" = ( +/obj/machinery/chemical_dispenser/full, +/turf/simulated/floor/tiled/white, +/area/mothership/chemistry) +"OQ" = ( +/obj/machinery/status_display{ + pixel_x = -32; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"OR" = ( +/turf/simulated/floor/wood, +/area/mothership/breakroom) +"OS" = ( +/obj/machinery/vending/blood, +/turf/simulated/floor/tiled/white, +/area/mothership/treatment) +"OT" = ( +/obj/item/rig_module/device/healthscanner, +/obj/item/rig_module/device/healthscanner, +/obj/item/rig_module/sprinter, +/obj/item/rig_module/sprinter, +/obj/item/rig_module/sprinter, +/obj/item/rig_module/sprinter, +/obj/structure/table/rack/shelf/steel, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"OU" = ( +/turf/unsimulated/wall{ + icon = 'icons/obj/doors/Doorext.dmi'; + icon_state = "door_locked"; + name = "Sealed Door" + }, +/area/mothership/engineering) +"OV" = ( +/turf/simulated/floor/tiled/white, +/area/mothership/surgery) +"OW" = ( +/obj/machinery/cooker/fryer, +/obj/structure/table/steel_reinforced, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/kitchen) +"OX" = ( +/obj/structure/sink/kitchen, +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/hydroponics) +"OY" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"OZ" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + pixel_x = 0; + pixel_y = 32 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/telecomms2) +"Pa" = ( +/obj/machinery/power/apc{ + dir = 2; + name = "south bump"; + pixel_y = -28; + req_access = list(67) + }, +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/wood, +/area/mothership/dorm2) +"Pb" = ( +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"Pc" = ( +/obj/machinery/status_display{ + pixel_y = 29 + }, +/turf/simulated/floor/carpet/blue, +/area/mothership/breakroom) +"Pe" = ( +/obj/machinery/door_timer/cell_1{ + id = "Cell M1"; + pixel_x = -32 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/sechallway) +"Pf" = ( +/obj/machinery/telecomms/relay/preset/centcom/underdark, +/turf/simulated/floor/bluegrid, +/area/mothership/telecomms2) +"Ph" = ( +/obj/machinery/door/airlock/multi_tile/metal{ + dir = 2; + req_one_access = list(5) + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/treatment) +"Pi" = ( +/obj/machinery/door/blast/regular{ + dir = 1 + }, +/turf/unsimulated/floor/techfloor_grid, +/area/centcom/evac) +"Pj" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/white, +/area/mothership/resleeving) +"Pk" = ( +/obj/structure/closet/alien, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm1) +"Pl" = ( +/obj/machinery/door/airlock/command{ + req_one_access = list(101) + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/bridge) +"Pm" = ( +/obj/item/weapon/storage/belt/medical/emt, +/obj/item/weapon/storage/belt/medical/emt, +/obj/item/weapon/storage/belt/medical/emt, +/obj/item/weapon/storage/belt/medical/emt, +/obj/item/weapon/storage/belt/medical/emt, +/obj/item/weapon/storage/belt/medical/emt, +/obj/item/device/defib_kit/compact/combat/loaded, +/obj/item/device/defib_kit/compact/combat/loaded, +/obj/structure/table/rack/shelf/steel, +/obj/machinery/light, +/turf/simulated/floor/tiled/white, +/area/mothership/medical) +"Pn" = ( +/obj/structure/toilet, +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm3) +"Po" = ( +/obj/item/weapon/melee/baton/loaded, +/obj/item/weapon/melee/baton/loaded, +/obj/item/weapon/melee/baton/loaded, +/obj/item/weapon/melee/baton/loaded, +/obj/item/weapon/melee/energy/sword, +/obj/item/weapon/melee/energy/sword, +/obj/item/weapon/melee/energy/sword, +/obj/item/weapon/melee/energy/sword, +/obj/item/weapon/melee/energy/sword, +/obj/item/weapon/shield/energy, +/obj/item/weapon/shield/energy, +/obj/item/weapon/shield/energy, +/obj/item/weapon/shield/energy, +/obj/item/weapon/shield/energy, +/obj/item/weapon/material/knife/tacknife/survival, +/obj/item/weapon/material/knife/tacknife/survival, +/obj/item/weapon/material/knife/tacknife/survival, +/obj/item/weapon/material/knife/tacknife/survival, +/obj/item/weapon/material/knife/tacknife/survival, +/obj/item/weapon/material/knife/machete, +/obj/item/weapon/material/knife/machete, +/obj/item/weapon/material/knife/machete, +/obj/item/clothing/accessory/holster/machete, +/obj/item/clothing/accessory/holster/machete, +/obj/item/clothing/accessory/holster/machete, +/obj/structure/table/rack/shelf/steel, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"Pp" = ( +/obj/item/weapon/storage/firstaid/combat{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/storage/firstaid/combat, +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/tiled/white, +/area/mothership/medical) +"Pq" = ( +/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) +"Pr" = ( +/obj/item/clothing/suit/armor/vest/ert/engineer, +/obj/item/clothing/suit/armor/vest/ert/engineer, +/obj/item/clothing/head/helmet/ert/engineer, +/obj/item/clothing/head/helmet/ert/engineer, +/obj/item/weapon/storage/backpack/ert/engineer, +/obj/item/weapon/storage/backpack/ert/engineer, +/obj/structure/table/rack/shelf/steel, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"Ps" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/eva) +"Pt" = ( +/obj/item/device/perfect_tele_beacon/stationary{ + tele_name = "Unknown"; + tele_network = "unktwo" + }, +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm2) +"Pu" = ( +/obj/structure/table/steel_reinforced, +/obj/item/device/retail_scanner/security, +/obj/item/device/retail_scanner/security, +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = 0; + pixel_y = -30 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"Pv" = ( +/obj/machinery/computer/teleporter{ + dir = 1 + }, +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm2) +"Pw" = ( +/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) +"Px" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black, +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/engineering) +"Pz" = ( +/obj/structure/closet/crate/secure/weapon{ + req_one_access = list(108) + }, +/obj/item/weapon/rig/ert/assetprotection, +/obj/item/weapon/rig/ert/assetprotection, +/obj/item/clothing/glasses/thermal, +/obj/item/clothing/glasses/thermal, +/obj/item/clothing/suit/armor/pcarrier/merc, +/obj/item/clothing/suit/armor/pcarrier/merc, +/obj/item/clothing/head/helmet/merc, +/obj/item/clothing/head/helmet/merc, +/obj/item/weapon/storage/box/syndie_kit/combat_armor, +/obj/item/weapon/storage/box/syndie_kit/combat_armor, +/obj/item/weapon/storage/box/syndie_kit/combat_armor, +/obj/item/weapon/storage/box/syndie_kit/combat_armor, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"PA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/teleporter) +"PB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/cryotube) +"PC" = ( +/obj/item/clothing/suit/armor/pcarrier/blue/sol, +/obj/item/clothing/suit/armor/pcarrier/blue/sol, +/obj/item/clothing/suit/armor/pcarrier/blue/sol, +/obj/item/clothing/suit/armor/pcarrier/blue/sol, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 26 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/table/rack/shelf/steel, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"PD" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/resleeving) +"PE" = ( +/obj/structure/sink{ + pixel_y = 32 + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/firealarm{ + dir = 2; + layer = 3.3; + pixel_x = 4; + pixel_y = 26 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/bathroom1) +"PF" = ( +/obj/machinery/door/airlock/voidcraft/vertical{ + id_tag = "ship-dorm4-door"; + opacity = 1 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/dorm4) +"PG" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/kitchen) +"PH" = ( +/obj/machinery/power/apc{ + dir = 2; + name = "south bump"; + pixel_y = -28; + req_access = list(67) + }, +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/eva) +"PI" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_x = 0; + pixel_y = -24 + }, +/obj/structure/closet/secure_closet/personal, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/item/weapon/storage/box/survival/space, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/holodeck) +"PJ" = ( +/obj/effect/floor_decal/corner_steel_grid/diagonal, +/obj/effect/floor_decal/industrial/warning/dust/corner{ + dir = 4 + }, +/obj/machinery/light/flamp/noshade, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"PK" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/processing) +"PL" = ( +/obj/item/clothing/suit/space/void/security/alt, +/obj/item/clothing/head/helmet/space/void/security/alt, +/obj/item/weapon/tank/oxygen, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/mask/breath, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/structure/table/rack/shelf/steel, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/eva) +"PM" = ( +/obj/machinery/power/apc{ + dir = 2; + name = "south bump"; + pixel_y = -28; + req_access = list(67) + }, +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/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/techmaint, +/area/mothership/holodeck) +"PN" = ( +/obj/structure/ladder, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"PO" = ( +/obj/machinery/cooker/oven, +/obj/structure/table/steel_reinforced, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/kitchen) "PP" = ( /turf/unsimulated/floor{ icon_state = "dark" }, /area/centcom/control) -"QB" = ( -/obj/machinery/washing_machine, +"PQ" = ( +/obj/structure/sink/kitchen, +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/kitchen) +"PR" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/mothership/surgery) +"PS" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/chemical_dispenser/bar_soft/full, +/turf/simulated/floor/wood, +/area/mothership/breakroom) +"PT" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/treatment) +"PU" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/sechallway) +"PV" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/blast/regular{ + density = 0; + destroy_hits = 1000; + dir = 1; + icon_state = "pdoor0"; + id = "ship-sec-equip"; + name = "Shuttle Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/mothership/security) +"PW" = ( +/obj/machinery/door/airlock/research, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/mothership/medical) +"PX" = ( +/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) +"PY" = ( +/obj/structure/shuttle/engine/propulsion{ + icon_state = "propulsion"; + dir = 8 + }, +/turf/unsimulated/floor/shuttle_ceiling, +/turf/simulated/shuttle/plating/airless/carry, +/area/shuttle/specialops/centcom) +"PZ" = ( +/obj/machinery/power/emitter/gyrotron/anchored{ + desc = "It is a heavy duty pulse laser emitter."; + dir = 8; + icon_state = "emitter-off"; + name = "pulse laser" + }, +/turf/space, +/turf/simulated/shuttle/plating/airless/carry, +/area/mothership/surgery) +"Qa" = ( +/obj/machinery/alarm{ + alarm_id = "pen_nine"; + breach_detection = 0; + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/machinery/light/small, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/bathroom1) +"Qc" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/mothership/treatment) +"Qd" = ( +/obj/structure/closet/secure_closet/explorer, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"Qe" = ( +/obj/item/device/perfect_tele_beacon/stationary{ + tele_name = "Unknown"; + tele_network = "unkone" + }, +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm1) +"Qf" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/robotics) +"Qg" = ( +/obj/machinery/button/remote/blast_door{ + id = "ship-vault"; + name = "Vault Blast Door Controls"; + pixel_y = 28; + req_one_access = list(108) + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/teleporter) +"Qh" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/breakroom) +"Qj" = ( +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + icon_state = "intact-supply"; + dir = 4 + }, +/obj/machinery/portable_atmospherics/powered/scrubber, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"Qk" = ( +/obj/structure/fans, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm4) +"Ql" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 1 + }, /turf/unsimulated/floor/steel, /area/centcom/evac) +"Qm" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 26 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/sechallway) +"Qn" = ( +/obj/structure/particle_accelerator/end_cap{ + anchored = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/telecomms1) +"Qo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"Qp" = ( +/obj/machinery/status_display{ + pixel_y = 29 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/eva) +"Qq" = ( +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hydroponics) +"Qs" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/security, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"Qt" = ( +/obj/structure/particle_accelerator/fuel_chamber{ + anchored = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/telecomms2) +"Qu" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -23; + pixel_y = 0 + }, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/telecomms1) +"Qv" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/eva) +"Qw" = ( +/obj/machinery/door/airlock/voidcraft/vertical, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/cryotube) +"Qx" = ( +/obj/structure/bed/chair/shuttle{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/mothership/bridge) +"Qy" = ( +/obj/structure/closet/crate/freezer, +/turf/simulated/floor/tiled/white, +/area/mothership/treatment) +"Qz" = ( +/obj/machinery/recharger, +/obj/structure/table/steel_reinforced, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"QA" = ( +/obj/structure/morgue{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/morgue) +"QB" = ( +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/bodybag/cryobag{ + pixel_x = 5 + }, +/obj/item/bodybag/cryobag{ + pixel_x = 5 + }, +/obj/item/weapon/storage/firstaid/o2{ + layer = 2.8; + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/weapon/storage/box/masks{ + pixel_x = 0; + pixel_y = 0 + }, +/obj/item/weapon/storage/box/gloves{ + pixel_x = 3; + pixel_y = 4 + }, +/obj/item/weapon/storage/firstaid/toxin, +/obj/item/weapon/storage/firstaid/fire{ + layer = 2.9; + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/weapon/storage/firstaid/adv{ + pixel_x = -2 + }, +/obj/item/weapon/reagent_containers/blood/empty, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/structure/closet/medical_wall{ + pixel_y = -32 + }, +/obj/item/weapon/storage/box/body_record_disk, +/obj/item/weapon/storage/firstaid/insiderepair, +/obj/item/weapon/storage/firstaid/clotting, +/obj/item/weapon/storage/firstaid/bonemed, +/obj/item/weapon/storage/firstaid/adv{ + pixel_x = -2 + }, +/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/fitnessflask/glucose, +/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/fitnessflask/glucose, +/turf/simulated/floor/tiled/white, +/area/mothership/resleeving) +"QC" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/telecomms1) +"QD" = ( +/obj/structure/bed/chair/comfy/black, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm1) +"QE" = ( +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"QF" = ( +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = 0; + pixel_y = -30 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"QG" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/blast/regular{ + density = 0; + destroy_hits = 1000; + dir = 4; + icon_state = "pdoor0"; + id = "ship-med-surgery"; + name = "Shuttle Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/mothership/surgery) +"QH" = ( +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, +/obj/machinery/atmospherics/pipe/simple/visible/supply, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -23; + pixel_y = 0 + }, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"QI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"QJ" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"QK" = ( +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"QL" = ( +/turf/unsimulated/wall{ + icon = 'icons/obj/doors/Doorext.dmi'; + icon_state = "door_locked"; + name = "Sealed Door" + }, +/area/mothership/eva) +"QN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/carpet/blue, +/area/mothership/breakroom) +"QO" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/empty/nitrogen, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"QP" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_x = 0; + pixel_y = 24 + }, +/obj/structure/cable/cyan{ + d1 = 0; + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/telecomms1) "QQ" = ( /obj/structure/table/rack, /obj/item/weapon/storage/secure/briefcase/nsfw_pack_hybrid_combat, @@ -16937,6 +22619,77 @@ icon_state = "dark" }, /area/centcom/specops) +"QR" = ( +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm1) +"QS" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/white, +/area/mothership/treatment) +"QT" = ( +/obj/machinery/door/airlock/alien/public, +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm3) +"QU" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/hydroponics) +"QW" = ( +/obj/structure/closet/walllocker{ + name = "Janitor Locker"; + pixel_x = 32 + }, +/obj/item/weapon/storage/box/lights/mixed, +/obj/item/weapon/storage/box/lights/mixed, +/obj/item/weapon/mop, +/obj/item/weapon/reagent_containers/glass/bucket, +/obj/item/weapon/reagent_containers/spray/cleaner, +/obj/item/weapon/reagent_containers/spray/cleaner, +/obj/item/weapon/grenade/chem_grenade/cleaner, +/obj/item/weapon/grenade/chem_grenade/cleaner, +/obj/item/weapon/grenade/chem_grenade/cleaner, +/obj/item/weapon/grenade/chem_grenade/cleaner, +/obj/item/weapon/soap/nanotrasen, +/obj/item/weapon/soap/deluxe, +/obj/item/weapon/soap, +/obj/item/weapon/rig/ert/janitor, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"QX" = ( +/obj/machinery/light{ + dir = 8; + icon_state = "tube1" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"QY" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/teleporter) +"QZ" = ( +/obj/effect/floor_decal/derelict/d12, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"Ra" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"Rb" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/teleport/hub, +/turf/simulated/shuttle/floor/voidcraft, +/area/unknown/dorm3) "Rc" = ( /obj/structure/table/glass, /obj/item/device/defib_kit/compact/loaded, @@ -16944,6 +22697,16 @@ icon_state = "white" }, /area/centcom/medical) +"Rd" = ( +/obj/machinery/power/emitter/gyrotron/anchored{ + desc = "It is a heavy duty pulse laser emitter."; + dir = 4; + icon_state = "emitter-off"; + name = "pulse laser" + }, +/turf/space, +/turf/simulated/shuttle/plating/airless/carry, +/area/mothership/armory) "Re" = ( /obj/structure/table/reinforced, /obj/item/device/binoculars, @@ -16953,12 +22716,200 @@ icon_state = "dark" }, /area/centcom/specops) -"Rx" = ( -/obj/machinery/telecomms/relay/preset/centcom/underdark, -/turf/unsimulated/floor{ - icon_state = "steel" +"Rf" = ( +/obj/structure/particle_accelerator/power_box{ + anchored = 1 }, -/area/centcom/command) +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"Rg" = ( +/obj/machinery/button/remote/airlock{ + id = "ship-holodeck-door"; + name = "Holodeck Lock"; + pixel_x = -26; + pixel_y = -6; + specialfunctions = 4 + }, +/obj/machinery/button/remote/blast_door{ + dir = 8; + id = "ship-holodeck"; + name = "Blast Door Controls"; + pixel_x = -28; + pixel_y = 6 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/holodeck) +"Rh" = ( +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm3) +"Ri" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/armory) +"Rj" = ( +/obj/structure/closet/secure_closet/medical2, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/surgery) +"Rk" = ( +/obj/machinery/vending/boozeomat{ + density = 0; + pixel_x = 0; + pixel_y = -32 + }, +/turf/simulated/floor/carpet/blue, +/area/mothership/breakroom) +"Rl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/rnd) +"Rm" = ( +/obj/machinery/door/blast/regular{ + dir = 4; + id = "ship-mechbay"; + name = "Mech Bay" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/button/remote/blast_door{ + id = "ship-mechbay"; + name = "Mech Bay Controls"; + pixel_x = 28 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/rnd) +"Rn" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 26 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"Ro" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/bathroom2) +"Rp" = ( +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/storage/firstaid/regular, +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/tiled/white, +/area/mothership/medical) +"Rq" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/sechallway) +"Rr" = ( +/obj/machinery/telecomms/bus/preset_cent, +/turf/simulated/floor/bluegrid, +/area/mothership/telecomms1) +"Rs" = ( +/obj/machinery/mech_recharger, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/bluegrid, +/area/mothership/robotics) +"Rt" = ( +/obj/machinery/light/spot, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"Ru" = ( +/obj/effect/floor_decal/rust, +/obj/effect/floor_decal/industrial/warning/dust, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"Rv" = ( +/obj/machinery/light, +/turf/simulated/floor/carpet/blue, +/area/mothership/breakroom) +"Rw" = ( +/obj/structure/bed/chair/comfy/black, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm3) +"Rx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/medical) +"Ry" = ( +/obj/machinery/door/airlock/command{ + req_one_access = list(101) + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/bridge) +"Rz" = ( +/obj/machinery/telecomms/relay/preset/centcom/tether/station_low, +/turf/simulated/floor/bluegrid, +/area/mothership/telecomms2) +"RA" = ( +/obj/machinery/smartfridge, +/turf/simulated/floor/plating, +/area/mothership/chemistry) +"RB" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/mothership/breakroom) +"RC" = ( +/obj/item/ammo_magazine/m9mm/compact, +/obj/item/ammo_magazine/m9mm/compact, +/obj/item/ammo_magazine/m9mm/compact, +/obj/item/ammo_magazine/m9mm/compact, +/obj/item/ammo_magazine/m9mm/compact, +/obj/item/ammo_magazine/m9mm/compact, +/obj/item/ammo_magazine/m9mm/compact/flash, +/obj/item/ammo_magazine/m9mm/compact/flash, +/obj/item/ammo_magazine/m9mm/compact/flash, +/obj/item/ammo_magazine/m9mm/compact/rubber, +/obj/item/ammo_magazine/m9mm/compact/rubber, +/obj/item/ammo_magazine/m9mm/compact/rubber, +/obj/item/ammo_magazine/m9mm/compact/practice, +/obj/item/ammo_magazine/m9mm/compact/practice, +/obj/item/ammo_magazine/m9mm/compact/practice, +/obj/item/weapon/gun/projectile/pistol, +/obj/item/weapon/gun/projectile/pistol, +/obj/item/weapon/gun/projectile/pistol, +/obj/structure/closet/secure_closet/guncabinet{ + req_one_access = list(103) + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) "RD" = ( /obj/machinery/shield_capacitor, /turf/unsimulated/floor{ @@ -16976,6 +22927,69 @@ icon_state = "dark" }, /area/centcom/specops) +"RG" = ( +/obj/structure/closet/crate/secure/weapon{ + req_one_access = list(108) + }, +/obj/item/clothing/suit/space/void/merc/fire, +/obj/item/clothing/head/helmet/space/void/merc/fire, +/obj/item/clothing/suit/space/void/merc, +/obj/item/clothing/head/helmet/space/void/merc, +/obj/item/clothing/suit/space/void/merc, +/obj/item/clothing/head/helmet/space/void/merc, +/obj/item/clothing/suit/space/void/merc/odst, +/obj/item/clothing/head/helmet/space/void/merc/odst, +/obj/item/clothing/suit/space/void/security/fluff/hos, +/obj/item/clothing/head/helmet/space/void/security/fluff/hos, +/obj/item/weapon/tank/oxygen/yellow, +/obj/item/weapon/tank/vox, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_x = 0; + pixel_y = 28 + }, +/obj/structure/cable/cyan{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/vault) +"RH" = ( +/obj/structure/toilet, +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm1) +"RI" = ( +/obj/item/ammo_magazine/m545/ap, +/obj/item/ammo_magazine/m545/ap, +/obj/item/ammo_magazine/m545/ap, +/obj/item/ammo_magazine/m545/ap, +/obj/item/ammo_magazine/m545/ap, +/obj/item/ammo_magazine/m545/ap, +/obj/item/ammo_magazine/m545/ap, +/obj/item/ammo_magazine/m545/ap, +/obj/item/ammo_magazine/m545, +/obj/item/ammo_magazine/m545, +/obj/item/ammo_magazine/m545, +/obj/item/ammo_magazine/m545, +/obj/item/ammo_magazine/m545, +/obj/item/ammo_magazine/m545, +/obj/item/ammo_magazine/m545, +/obj/item/ammo_magazine/m545, +/obj/item/weapon/gun/projectile/automatic/sts35, +/obj/item/weapon/gun/projectile/automatic/sts35, +/obj/item/weapon/gun/projectile/automatic/sts35, +/obj/item/weapon/gun/projectile/automatic/sts35, +/obj/structure/closet/secure_closet/guncabinet{ + req_one_access = list(103) + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) "RJ" = ( /obj/structure/table/rack, /obj/item/weapon/gun/projectile/automatic/z8, @@ -16994,22 +23008,398 @@ icon_state = "dark" }, /area/centcom/specops) +"RK" = ( +/obj/structure/prop/alien/computer{ + dir = 8 + }, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm1) +"RL" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/resleeving) +"RM" = ( +/turf/simulated/shuttle/wall/alien, +/area/unknown/dorm3) "RN" = ( -/obj/effect/floor_decal/corner_steel_grid, -/turf/simulated/floor/outdoors/grass/sif/virgo3b, -/area/space) +/obj/structure/table/alien, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm3) +"RO" = ( +/obj/machinery/door/blast/regular{ + id = "ArmouryC5"; + name = "Armoury" + }, +/obj/machinery/button/remote/blast_door{ + id = "ArmouryC5"; + name = "Armoury Access"; + pixel_x = 0; + pixel_y = -28; + req_access = list(101) + }, +/turf/unsimulated/floor{ + icon_state = "vault"; + dir = 5 + }, +/area/centcom/control) +"RP" = ( +/obj/machinery/vending/loadout/clothing, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/cryotube) +"RQ" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/mothership/breakroom) +"RR" = ( +/turf/simulated/shuttle/wall/alien, +/area/unknown/dorm2) +"RS" = ( +/obj/structure/closet/hydrant{ + pixel_x = -32 + }, +/obj/item/clothing/suit/fire/firefighter, +/obj/item/clothing/mask/gas, +/obj/item/device/flashlight, +/obj/item/weapon/tank/oxygen/red, +/obj/item/weapon/tank/emergency/oxygen/double, +/obj/item/weapon/extinguisher, +/obj/item/weapon/extinguisher, +/obj/item/clothing/head/hardhat/red, +/obj/item/weapon/storage/toolbox/emergency, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"RT" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/warden) +"RU" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/processing) +"RV" = ( +/obj/machinery/computer/teleporter{ + dir = 1 + }, +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm4) +"RW" = ( +/obj/machinery/recharge_station, +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm3) +"RX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10; + icon_state = "intact" + }, +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/engineering) "RY" = ( /obj/structure/reagent_dispensers/fueltank, /turf/unsimulated/floor{ icon_state = "dark" }, /area/centcom/control) -"Sp" = ( -/obj/machinery/telecomms/relay/preset/centcom/tether/station_high, -/turf/unsimulated/floor{ - icon_state = "steel" +"RZ" = ( +/obj/machinery/vending/coffee, +/turf/simulated/floor/wood, +/area/mothership/breakroom) +"Sa" = ( +/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) +"Sb" = ( +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"Sc" = ( +/obj/machinery/atm{ + pixel_x = 0; + pixel_y = 26 }, -/area/centcom/command) +/turf/unsimulated/floor{ + icon_state = "vault"; + dir = 5 + }, +/area/centcom/specops) +"Sd" = ( +/obj/structure/closet/crate/secure/weapon{ + req_one_access = list(108) + }, +/obj/item/weapon/gun/energy/pulse_rifle, +/obj/item/weapon/gun/energy/pulse_rifle, +/obj/item/weapon/gun/energy/pulse_rifle, +/obj/item/weapon/gun/energy/pulse_rifle, +/obj/item/weapon/cell/device/weapon, +/obj/item/weapon/cell/device/weapon, +/obj/item/weapon/cell/device/weapon, +/obj/item/weapon/cell/device/weapon, +/obj/item/weapon/cell/device/weapon, +/obj/item/weapon/cell/device/weapon, +/obj/item/weapon/cell/device/weapon, +/obj/item/weapon/cell/device/weapon, +/obj/item/weapon/gun/energy/protector, +/obj/item/weapon/gun/energy/protector, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"Sf" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/kitchen) +"Sg" = ( +/obj/machinery/computer/cryopod/robot{ + dir = 1; + pixel_y = -28 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/robotics) +"Sh" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/eva) +"Si" = ( +/obj/effect/floor_decal/derelict/d14, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"Sj" = ( +/obj/effect/floor_decal/derelict/d10, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"Sk" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/treatment) +"Sl" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 5 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"Sm" = ( +/obj/machinery/body_scanconsole, +/turf/simulated/floor/tiled/white, +/area/mothership/treatment) +"Sn" = ( +/obj/machinery/vending/loadout/accessory, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/cryotube) +"So" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/wood, +/area/mothership/breakroom) +"Sq" = ( +/obj/machinery/optable, +/turf/simulated/floor/tiled/white, +/area/mothership/surgery) +"Sr" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"Ss" = ( +/obj/machinery/r_n_d/protolathe, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/rnd) +"Su" = ( +/obj/machinery/telecomms/relay/preset/centcom/tether/base_high, +/turf/simulated/floor/bluegrid, +/area/mothership/telecomms2) +"Sv" = ( +/obj/effect/floor_decal/derelict/d11, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"Sw" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"Sx" = ( +/obj/machinery/media/jukebox, +/turf/simulated/floor/wood, +/area/mothership/breakroom) +"Sz" = ( +/obj/structure/closet/alien, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm3) +"SA" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/dorm4) +"SB" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/blast/regular{ + density = 0; + destroy_hits = 1000; + dir = 1; + icon_state = "pdoor0"; + id = "ship-holodeck"; + name = "Shuttle Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/mothership/holodeck) +"SC" = ( +/obj/machinery/computer/teleporter{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/teleporter) +"SE" = ( +/obj/machinery/vending/sovietsoda, +/turf/simulated/floor/wood, +/area/mothership/breakroom) +"SF" = ( +/obj/item/device/perfect_tele_beacon/stationary{ + tele_name = "Unknown"; + tele_network = "unkthree" + }, +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm3) +"SG" = ( +/obj/structure/table/steel_reinforced, +/obj/item/clothing/accessory/badge/holo/cord, +/obj/item/clothing/accessory/badge/holo/cord, +/obj/item/clothing/accessory/badge/holo/cord, +/obj/item/clothing/accessory/badge/holo/cord, +/obj/item/clothing/accessory/badge/holo, +/obj/item/clothing/accessory/badge/holo, +/obj/item/clothing/accessory/badge/holo, +/obj/item/clothing/accessory/badge/holo, +/obj/machinery/button/remote/blast_door{ + id = "ship-sec-equip"; + name = "Blast Doors Controls"; + pixel_y = -28 + }, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"SI" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/resleeving) +"SJ" = ( +/obj/structure/closet/crate/secure/weapon{ + req_one_access = list(108) + }, +/obj/item/weapon/storage/box/frags, +/obj/item/weapon/storage/box/frags, +/obj/item/weapon/storage/box/teargas, +/obj/item/weapon/storage/box/teargas, +/obj/item/weapon/storage/box/empslite, +/obj/item/weapon/storage/box/empslite, +/obj/item/weapon/storage/box/smokes, +/obj/item/weapon/storage/box/smokes, +/obj/item/weapon/storage/box/flashbangs, +/obj/item/weapon/storage/box/flashbangs, +/obj/item/weapon/gun/launcher/grenade, +/obj/item/weapon/gun/launcher/grenade, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"SK" = ( +/obj/machinery/door/airlock/multi_tile/metal, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/teleporter) +"SN" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"SO" = ( +/obj/structure/closet/wardrobe/ert, +/obj/item/weapon/storage/box/survival/comp{ + starts_with = list(/obj/item/weapon/tool/prybar/red,/obj/item/clothing/glasses/goggles,/obj/item/weapon/reagent_containers/hypospray/autoinjector,/obj/item/stack/medical/bruise_pack,/obj/item/device/flashlight/glowstick,/obj/item/weapon/reagent_containers/food/snacks/candy/proteinbar,/obj/item/clothing/mask/breath,/obj/item/weapon/tank/emergency/oxygen/engi) + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/item/weapon/storage/box/survival/space, +/obj/item/weapon/storage/toolbox/emergency, +/turf/simulated/floor/wood, +/area/mothership/dorm2) "SP" = ( /obj/structure/table/rack, /obj/item/bodybag/cryobag, @@ -17023,6 +23413,253 @@ dir = 5 }, /area/centcom/specops) +"SQ" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/simulated/floor/carpet/oracarpet, +/area/mothership/engineering) +"SR" = ( +/obj/machinery/atmospherics/unary/freezer{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/medical) +"SS" = ( +/obj/structure/fans, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm1) +"ST" = ( +/obj/machinery/pros_fabricator, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/rnd) +"SU" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/mothership/breakroom) +"SV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9; + icon_state = "intact" + }, +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/engineering) +"SW" = ( +/obj/machinery/cooker/grill, +/obj/structure/table/steel_reinforced, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/white, +/area/mothership/kitchen) +"SX" = ( +/turf/simulated/floor/tiled/white, +/area/mothership/chemistry) +"SY" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/teleport/hub, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/teleporter) +"SZ" = ( +/obj/machinery/mineral/equipment_vendor, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/vault) +"Ta" = ( +/obj/item/ammo_magazine/m9mmp90, +/obj/item/ammo_magazine/m9mmp90, +/obj/item/ammo_magazine/m9mmp90, +/obj/item/ammo_magazine/m9mmp90, +/obj/item/ammo_magazine/m9mmp90, +/obj/item/ammo_magazine/m9mmp90, +/obj/item/ammo_magazine/m9mmp90, +/obj/item/ammo_magazine/m9mmp90, +/obj/item/weapon/gun/projectile/automatic/p90, +/obj/item/weapon/gun/projectile/automatic/p90, +/obj/item/ammo_magazine/m9mmt/flash, +/obj/item/ammo_magazine/m9mmt/flash, +/obj/item/ammo_magazine/m9mmt/flash, +/obj/item/ammo_magazine/m9mmt/flash, +/obj/item/ammo_magazine/m9mmt/rubber, +/obj/item/ammo_magazine/m9mmt/rubber, +/obj/item/ammo_magazine/m9mmt/rubber, +/obj/item/ammo_magazine/m9mmt/rubber, +/obj/structure/closet/secure_closet/guncabinet{ + req_one_access = list(103) + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"Tb" = ( +/obj/machinery/button/remote/blast_door{ + id = "ship-med-equip"; + name = "Blast Doors Controls"; + pixel_y = -28 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/medical) +"Td" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/table/bench/steel, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"Te" = ( +/obj/structure/table/steel_reinforced, +/obj/item/device/radio/off, +/obj/item/device/radio/off, +/obj/item/device/radio/off, +/obj/item/device/radio/off, +/obj/item/device/radio/off, +/obj/item/device/radio/off, +/obj/item/device/radio/off, +/obj/machinery/firealarm{ + dir = 2; + layer = 3.3; + pixel_x = 4; + pixel_y = 26 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/eva) +"Tf" = ( +/obj/item/weapon/bedsheet/rddouble, +/obj/structure/bed/double/padded, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm2) +"Tg" = ( +/obj/structure/closet/secure_closet/personal, +/turf/simulated/floor/wood, +/area/mothership/dorm2) +"Th" = ( +/obj/machinery/atmospherics/trinary/atmos_filter{ + dir = 4; + filter_type = 0; + filtered_out = list("phoron") + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"Ti" = ( +/obj/machinery/r_n_d/server/centcom, +/turf/simulated/floor/bluegrid, +/area/mothership/telecomms1) +"Tk" = ( +/obj/structure/closet/hydrant{ + pixel_x = 32 + }, +/obj/item/clothing/suit/fire/firefighter, +/obj/item/clothing/mask/gas, +/obj/item/device/flashlight, +/obj/item/weapon/tank/oxygen/red, +/obj/item/weapon/tank/emergency/oxygen/double, +/obj/item/weapon/extinguisher, +/obj/item/weapon/extinguisher, +/obj/item/clothing/head/hardhat/red, +/obj/item/weapon/storage/toolbox/emergency, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"Tl" = ( +/obj/machinery/oxygen_pump/anesthetic, +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/surgery) +"Tm" = ( +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm1) +"Tn" = ( +/obj/machinery/cooker/cereal, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/kitchen) +"To" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/mothership/medical) +"Tp" = ( +/obj/effect/floor_decal/derelict/d3, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"Tq" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -23; + pixel_y = 0 + }, +/obj/structure/closet/crate/bin, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/holodeck) +"Tr" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_x = 0; + pixel_y = 24 + }, +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/telecomms2) +"Ts" = ( +/obj/machinery/recharge_station, +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm4) +"Tt" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/vault) +"Tu" = ( +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"Tv" = ( +/turf/simulated/floor/tiled/techmaint, +/area/mothership/teleporter) "Tx" = ( /obj/machinery/autolathe{ desc = "Your typical Autolathe. It appears to have much more options than your regular one, however..."; @@ -17033,18 +23670,543 @@ icon_state = "dark" }, /area/centcom/specops) +"Ty" = ( +/obj/machinery/vending/cart, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/rnd) +"Tz" = ( +/obj/item/weapon/gun/projectile/shotgun/pump/combat{ + ammo_type = /obj/item/ammo_casing/a12g/beanbag; + desc = "Built for close quarters combat, the Hesphaistos Industries KS-40 is widely regarded as a weapon of choice for repelling boarders. This one has 'Property of the Warden' inscribed on the stock."; + name = "warden's shotgun" + }, +/obj/item/weapon/book/manual/security_space_law, +/obj/structure/closet/secure_closet/nanotrasen_warden, +/obj/machinery/power/apc{ + cell_type = /obj/item/weapon/cell/super; + dir = 8; + name = "west bump"; + pixel_x = -28 + }, +/obj/structure/cable/cyan, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/warden) +"TA" = ( +/obj/machinery/door/airlock/voidcraft/vertical{ + id_tag = "ship-dorm6-door"; + opacity = 1 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/dorm6) +"TB" = ( +/obj/machinery/vending/tool, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"TC" = ( +/obj/effect/floor_decal/derelict/d4, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"TD" = ( +/turf/simulated/shuttle/wall/alien/hard_corner, +/area/unknown/dorm2) +"TE" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/clipboard, +/obj/item/weapon/folder/red, +/obj/item/weapon/pen, +/obj/item/device/radio{ + pixel_x = -4 + }, +/obj/item/weapon/hand_labeler, +/obj/item/weapon/tool/wrench, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/warden) +"TF" = ( +/obj/structure/closet/crate/secure/weapon{ + req_one_access = list(108) + }, +/obj/item/weapon/gun/projectile/automatic/l6_saw, +/obj/item/weapon/gun/projectile/automatic/l6_saw, +/obj/item/ammo_magazine/m545saw, +/obj/item/ammo_magazine/m545saw, +/obj/item/ammo_magazine/m545saw, +/obj/item/ammo_magazine/m545saw, +/obj/item/ammo_magazine/m545saw/ap, +/obj/item/ammo_magazine/m545saw/ap, +/obj/item/ammo_magazine/m545saw/ap, +/obj/item/ammo_magazine/m545saw/ap, +/obj/item/ammo_magazine/m545saw/ap, +/obj/item/ammo_magazine/m545saw/ap, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"TH" = ( +/obj/structure/cable/cyan{ + d1 = 0; + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + dir = 2; + name = "south bump"; + pixel_y = -28; + req_access = list(67) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/wood, +/area/mothership/dorm5) +"TI" = ( +/obj/structure/table/alien, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm1) +"TJ" = ( +/obj/structure/ghost_pod/manual/lost_drone/dogborg, +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/robotics) +"TK" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/mothership/bridge) +"TL" = ( +/obj/structure/table/rack/steel, +/obj/machinery/door/window/survival_pod{ + dir = 8; + req_one_access = list(103) + }, +/obj/item/weapon/rig/ert/security, +/obj/item/weapon/rig/ert/security, +/obj/item/weapon/rig/ert/security, +/obj/item/weapon/rig/ert/security, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"TM" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"TN" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hydroponics) +"TO" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/turf/simulated/floor/tiled/white, +/area/mothership/kitchen) +"TP" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/chemistry) +"TQ" = ( +/obj/machinery/telecomms/broadcaster/preset_cent, +/turf/simulated/floor/bluegrid, +/area/mothership/telecomms1) +"TR" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"TS" = ( +/obj/structure/dispenser/oxygen{ + oxygentanks = 40 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/eva) +"TT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/mothership/resleeving) +"TV" = ( +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/black_drop_pouches, +/obj/item/clothing/accessory/storage/black_drop_pouches, +/obj/item/clothing/accessory/storage/black_drop_pouches, +/obj/item/clothing/accessory/storage/black_drop_pouches, +/obj/item/weapon/storage/backpack/dufflebag/syndie/ammo, +/obj/item/weapon/storage/backpack/dufflebag/syndie/ammo, +/obj/item/weapon/storage/backpack/dufflebag/syndie/ammo, +/obj/item/weapon/storage/backpack/dufflebag/syndie/ammo, +/obj/structure/table/rack/shelf/steel, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) "TW" = ( /obj/machinery/shield_gen, /turf/unsimulated/floor{ icon_state = "dark" }, /area/centcom/specops) -"Uh" = ( -/obj/effect/floor_decal/corner_steel_grid{ +"TX" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/armory) +"TY" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"TZ" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/cyan{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/cyan, +/turf/simulated/floor/tiled/white, +/area/mothership/medical) +"Ua" = ( +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"Ub" = ( +/obj/item/clothing/suit/armor/vest/ert/medical, +/obj/item/clothing/suit/armor/vest/ert/medical, +/obj/item/clothing/head/helmet/ert/medical, +/obj/item/clothing/head/helmet/ert/medical, +/obj/item/weapon/storage/backpack/ert/medical, +/obj/item/weapon/storage/backpack/ert/medical, +/obj/structure/table/rack/shelf/steel, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"Uc" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"Ud" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, -/turf/simulated/floor/outdoors/grass/sif/virgo3b, -/area/space) +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"Ue" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/table/bench/steel, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"Uf" = ( +/obj/structure/closet/crate/bin, +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "ship-sec-cell1"; + name = "Cell 1 Blast Doors"; + pixel_x = 28; + pixel_y = 6; + req_one_access = list(2) + }, +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "ship-sec-cell2"; + name = "Cell 2 Blast Doors"; + pixel_x = 28; + pixel_y = -6; + req_one_access = list(2) + }, +/obj/machinery/button/remote/blast_door{ + id = "ship-sec-warden"; + name = "Blast Doors Controls"; + pixel_y = 28 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/warden) +"Ug" = ( +/obj/machinery/firealarm{ + dir = 2; + layer = 3.3; + pixel_x = 4; + pixel_y = 26 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/telecomms1) +"Uh" = ( +/obj/structure/sink{ + pixel_y = 32 + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/firealarm{ + dir = 2; + layer = 3.3; + pixel_x = 4; + pixel_y = 26 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/bathroom2) +"Ui" = ( +/obj/machinery/door/airlock/multi_tile/metal{ + dir = 2 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/medical) +"Uj" = ( +/obj/structure/closet/crate/bin, +/turf/simulated/floor/tiled/white, +/area/mothership/resleeving) +"Uk" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/teleporter) +"Ul" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/machinery/power/thermoregulator, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"Um" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hydroponics) +"Un" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"Uo" = ( +/obj/item/rig_module/grenade_launcher/smoke, +/obj/item/rig_module/grenade_launcher/cleaner, +/obj/item/rig_module/grenade_launcher, +/obj/structure/table/rack/shelf/steel, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"Up" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"Uq" = ( +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/morgue) +"Ur" = ( +/obj/effect/floor_decal/derelict/d7, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"Us" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/red{ + icon_state = "map"; + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"Ut" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/cryotube) +"Uu" = ( +/obj/machinery/mecha_part_fabricator, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/rnd) +"Uv" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 5 + }, +/obj/machinery/portable_atmospherics/canister/empty/oxygen, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"Uw" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hydroponics) +"Ux" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/vault) +"Uy" = ( +/obj/machinery/door/window/northleft, +/obj/machinery/door/window/southleft, +/obj/structure/table/steel_reinforced, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/kitchen) +"Uz" = ( +/obj/machinery/door/blast/regular{ + id = "ship-mechbay-inner"; + name = "Mech Bay" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/button/remote/blast_door{ + id = "ship-mechbay-inner"; + name = "Mech Bay Controls"; + pixel_x = 0; + pixel_y = 28 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/robotics) +"UA" = ( +/obj/item/device/holowarrant, +/obj/structure/closet/secure_closet/nanotrasen_security, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"UB" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) "UC" = ( /obj/structure/table/steel_reinforced, /obj/item/stack/cable_coil, @@ -17057,6 +24219,73 @@ icon_state = "dark" }, /area/centcom/specops) +"UD" = ( +/obj/structure/closet/wardrobe/ert, +/obj/item/weapon/storage/box/survival/comp{ + starts_with = list(/obj/item/weapon/tool/prybar/red,/obj/item/clothing/glasses/goggles,/obj/item/weapon/reagent_containers/hypospray/autoinjector,/obj/item/stack/medical/bruise_pack,/obj/item/device/flashlight/glowstick,/obj/item/weapon/reagent_containers/food/snacks/candy/proteinbar,/obj/item/clothing/mask/breath,/obj/item/weapon/tank/emergency/oxygen/engi) + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/item/weapon/storage/box/survival/space, +/obj/item/weapon/storage/toolbox/emergency, +/turf/simulated/floor/wood, +/area/mothership/dorm4) +"UE" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/telecomms1) +"UF" = ( +/obj/structure/shuttle/engine/propulsion, +/turf/space, +/area/mothership/telecomms2) +"UG" = ( +/obj/structure/closet/crate/bin, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"UH" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"UJ" = ( +/obj/structure/closet/alien, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm4) +"UK" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/pen, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/processing) +"UL" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/robotics) +"UM" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/dorm2) +"UN" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 4 + }, +/turf/unsimulated/floor/steel, +/area/centcom/evac) "UO" = ( /obj/structure/table/rack, /obj/item/weapon/gun/energy/gun/martin, @@ -17067,6 +24296,248 @@ icon_state = "dark" }, /area/centcom/control) +"UP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/engineering) +"UQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"UR" = ( +/obj/structure/closet/wardrobe/science_white, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/rnd) +"US" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1; + icon_state = "map" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"UT" = ( +/turf/simulated/floor/tiled/techmaint, +/area/mothership/processing) +"UU" = ( +/obj/structure/closet/crate/secure/gear{ + req_one_access = list(108) + }, +/obj/item/stack/telecrystal{ + amount = 240 + }, +/obj/item/stack/telecrystal{ + amount = 240 + }, +/obj/item/stack/telecrystal{ + amount = 240 + }, +/obj/item/stack/telecrystal{ + amount = 240 + }, +/obj/item/stack/telecrystal{ + amount = 240 + }, +/obj/item/stack/telecrystal{ + amount = 240 + }, +/obj/item/stack/telecrystal{ + amount = 240 + }, +/obj/item/stack/telecrystal{ + amount = 240 + }, +/obj/item/weapon/card/mining_point_card{ + mine_points = 50000 + }, +/obj/item/weapon/card/mining_point_card{ + mine_points = 50000 + }, +/obj/item/weapon/card/mining_point_card{ + mine_points = 50000 + }, +/obj/item/weapon/card/mining_point_card{ + mine_points = 50000 + }, +/obj/item/weapon/card/mining_point_card{ + mine_points = 50000 + }, +/obj/item/weapon/card/mining_point_card{ + mine_points = 50000 + }, +/obj/item/weapon/card/mining_point_card/survey{ + name = "survey point card"; + survey_points = 5000 + }, +/obj/item/weapon/card/mining_point_card/survey{ + name = "survey point card"; + survey_points = 5000 + }, +/obj/item/weapon/card/mining_point_card/survey{ + name = "survey point card"; + survey_points = 5000 + }, +/obj/item/weapon/card/mining_point_card/survey{ + name = "survey point card"; + survey_points = 5000 + }, +/obj/item/weapon/card/mining_point_card/survey{ + name = "survey point card"; + survey_points = 5000 + }, +/obj/item/weapon/card/mining_point_card/survey{ + name = "survey point card"; + survey_points = 5000 + }, +/obj/item/device/survivalcapsule/military, +/obj/item/device/survivalcapsule/military, +/obj/item/weapon/storage/secure/briefcase/money{ + desc = "An sleek tidy briefcase."; + name = "secure briefcase" + }, +/obj/item/weapon/storage/secure/briefcase/money{ + desc = "An sleek tidy briefcase."; + name = "secure briefcase" + }, +/obj/item/weapon/storage/secure/briefcase/money{ + desc = "An sleek tidy briefcase."; + name = "secure briefcase" + }, +/obj/item/weapon/storage/secure/briefcase/money{ + desc = "An sleek tidy briefcase."; + name = "secure briefcase" + }, +/obj/item/weapon/storage/secure/briefcase/money{ + desc = "An sleek tidy briefcase."; + name = "secure briefcase" + }, +/obj/item/weapon/storage/secure/briefcase/money{ + desc = "An sleek tidy briefcase."; + name = "secure briefcase" + }, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/vault) +"UV" = ( +/obj/structure/closet/bombcloset/double, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/light, +/obj/machinery/recharger/wallcharger{ + pixel_x = 3; + pixel_y = -29 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"UW" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/mothership/breakroom) +"UX" = ( +/obj/structure/closet/crate/bin, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/chemistry) +"UY" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 1; + icon_state = "pdoor0"; + id = "ship-sec-cell1"; + name = "Security Blast Doors"; + opacity = 0 + }, +/obj/structure/cable/cyan{ + d1 = 0; + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/mothership/sechallway) +"UZ" = ( +/obj/machinery/vending/coffee, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"Vb" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm2) +"Vc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/telecomms2) +"Vd" = ( +/obj/item/weapon/reagent_containers/glass/bucket, +/obj/item/weapon/reagent_containers/glass/bucket, +/obj/structure/table/steel_reinforced, +/obj/item/weapon/material/minihoe, +/obj/item/weapon/material/minihoe, +/obj/item/weapon/material/knife, +/obj/item/weapon/material/knife, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_x = 0; + pixel_y = 28 + }, +/obj/structure/cable/cyan{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hydroponics) +"Ve" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/rnd) "Vf" = ( /obj/structure/table/rack, /obj/item/weapon/storage/box/frags, @@ -17079,6 +24550,317 @@ icon_state = "dark" }, /area/centcom/specops) +"Vg" = ( +/obj/machinery/telecomms/relay/preset/centcom, +/turf/simulated/floor/bluegrid, +/area/mothership/telecomms1) +"Vh" = ( +/obj/structure/closet/crate/bin, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"Vi" = ( +/obj/effect/floor_decal/derelict/d16, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"Vj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5; + icon_state = "intact" + }, +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/engineering) +"Vk" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1; + icon_state = "map" + }, +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/telecomms2) +"Vl" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/structure/table/steel_reinforced, +/obj/effect/floor_decal/borderfloor/shifted{ + icon_state = "borderfloor_shifted"; + dir = 1 + }, +/obj/effect/floor_decal/corner/lightorange{ + icon_state = "corner_white"; + dir = 5 + }, +/obj/effect/floor_decal/corner/lightorange/border/shifted{ + icon_state = "bordercolor_shifted"; + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/sechallway) +"Vn" = ( +/obj/item/device/holowarrant, +/obj/structure/closet/secure_closet/nanotrasen_security, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"Vo" = ( +/obj/machinery/washing_machine, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/cryotube) +"Vp" = ( +/obj/structure/table/bench/steel, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"Vq" = ( +/turf/unsimulated/wall/planetary/virgo3b, +/area/centcom/bathroom) +"Vr" = ( +/obj/machinery/sleeper/survival_pod, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm1) +"Vs" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/treatment) +"Vt" = ( +/obj/machinery/clonepod/transhuman/full, +/turf/simulated/floor/tiled/white, +/area/mothership/resleeving) +"Vu" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/rnd) +"Vv" = ( +/turf/simulated/shuttle/wall/alien/hard_corner, +/area/unknown/dorm3) +"Vw" = ( +/obj/structure/closet/wardrobe/ert, +/obj/item/weapon/storage/box/survival/comp{ + starts_with = list(/obj/item/weapon/tool/prybar/red,/obj/item/clothing/glasses/goggles,/obj/item/weapon/reagent_containers/hypospray/autoinjector,/obj/item/stack/medical/bruise_pack,/obj/item/device/flashlight/glowstick,/obj/item/weapon/reagent_containers/food/snacks/candy/proteinbar,/obj/item/clothing/mask/breath,/obj/item/weapon/tank/emergency/oxygen/engi) + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/item/weapon/storage/box/survival/space, +/obj/item/weapon/storage/toolbox/emergency, +/turf/simulated/floor/wood, +/area/mothership/dorm3) +"Vx" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/morgue) +"Vy" = ( +/obj/machinery/door/airlock/alien/public, +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm2) +"Vz" = ( +/obj/structure/closet/crate/secure/weapon{ + req_one_access = list(108) + }, +/obj/item/weapon/gun/projectile/automatic/z8, +/obj/item/weapon/gun/projectile/automatic/z8, +/obj/item/weapon/gun/projectile/heavysniper, +/obj/item/weapon/storage/box/sniperammo, +/obj/item/weapon/storage/box/sniperammo, +/obj/item/ammo_magazine/m762, +/obj/item/ammo_magazine/m762, +/obj/item/ammo_magazine/m762, +/obj/item/ammo_magazine/m762, +/obj/item/ammo_magazine/m762/ap, +/obj/item/ammo_magazine/m762/ap, +/obj/item/ammo_magazine/m762/ap, +/obj/item/ammo_magazine/m762/ap, +/obj/item/ammo_magazine/m762/ap, +/obj/item/ammo_magazine/m762/ap, +/obj/item/weapon/storage/box/sniperammo, +/obj/item/weapon/storage/box/sniperammo, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"VB" = ( +/obj/item/weapon/bedsheet/rddouble, +/obj/structure/bed/double/padded, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm1) +"VC" = ( +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; + dir = 1 + }, +/turf/simulated/floor/bluegrid, +/area/mothership/robotics) +"VD" = ( +/obj/machinery/vending/engivend, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"VE" = ( +/obj/structure/closet/secure_closet/personal, +/turf/simulated/floor/wood, +/area/mothership/dorm5) +"VF" = ( +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm2) +"VG" = ( +/obj/structure/closet/crate/medical, +/obj/item/stack/nanopaste/advanced, +/obj/item/stack/nanopaste/advanced, +/obj/item/stack/nanopaste/advanced, +/obj/item/stack/nanopaste/advanced, +/obj/item/stack/nanopaste/advanced, +/obj/item/stack/nanopaste/advanced, +/obj/item/stack/nanopaste/advanced, +/obj/item/stack/nanopaste/advanced, +/obj/item/stack/nanopaste/advanced, +/obj/item/stack/nanopaste/advanced, +/obj/item/device/mmi/digital/posibrain, +/obj/item/device/mmi, +/obj/item/weapon/book/manual/robotics_cyborgs, +/obj/item/device/robotanalyzer, +/obj/item/weapon/storage/toolbox/syndicate/powertools, +/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/mothership/surgery) +"VH" = ( +/obj/machinery/door/airlock/multi_tile/metal{ + dir = 2 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/kitchen) +"VI" = ( +/obj/machinery/door/airlock/external, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10; + icon_state = "intact" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"VJ" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + pixel_x = 32 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/breakroom) +"VK" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/processing) +"VL" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/sink{ + dir = 4; + icon_state = "sink"; + pixel_x = 12; + pixel_y = 8 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/surgery) +"VM" = ( +/obj/item/weapon/storage/firstaid/adv{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/storage/firstaid/adv, +/obj/structure/table/steel_reinforced, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/medical) +"VN" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hydroponics) +"VO" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/bathroom2) +"VP" = ( +/obj/structure/prop/alien/power, +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm3) +"VQ" = ( +/obj/machinery/atmospherics/omni/atmos_filter{ + tag_east = 2; + tag_north = 1; + tag_south = 3; + tag_west = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"VR" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/bathroom1) +"VT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/cryotube) "VU" = ( /obj/structure/table/reinforced, /obj/item/weapon/reagent_containers/glass/beaker/large, @@ -17088,6 +24870,333 @@ dir = 5 }, /area/centcom/specops) +"VV" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible/cyan, +/obj/machinery/meter, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"VX" = ( +/obj/structure/closet/secure_closet/personal, +/turf/simulated/floor/wood, +/area/mothership/dorm6) +"VY" = ( +/obj/structure/toilet{ + dir = 1 + }, +/obj/machinery/power/apc{ + dir = 2; + name = "south bump"; + pixel_y = -28; + req_access = list(67) + }, +/obj/structure/cable/cyan, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/bathroom2) +"VZ" = ( +/obj/machinery/mineral/equipment_vendor/survey, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/vault) +"Wa" = ( +/obj/structure/closet/hydrant{ + pixel_x = 32 + }, +/obj/item/clothing/suit/fire/firefighter, +/obj/item/clothing/mask/gas, +/obj/item/device/flashlight, +/obj/item/weapon/tank/oxygen/red, +/obj/item/weapon/tank/emergency/oxygen/double, +/obj/item/weapon/extinguisher, +/obj/item/weapon/extinguisher, +/obj/item/clothing/head/hardhat/red, +/obj/item/weapon/storage/toolbox/emergency, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"Wb" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{ + pixel_x = 3 + }, +/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{ + pixel_x = -3; + pixel_y = 0 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/kitchen) +"Wc" = ( +/obj/machinery/organ_printer/flesh, +/turf/simulated/floor/tiled/white, +/area/mothership/resleeving) +"Wd" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/medical, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/mothership/surgery) +"We" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/eva) +"Wf" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8; + icon_state = "map" + }, +/turf/simulated/floor/tiled/white, +/area/mothership/medical) +"Wg" = ( +/obj/structure/table/rack/steel, +/obj/machinery/door/window/survival_pod{ + dir = 8; + req_one_access = list(103) + }, +/obj/structure/window/reinforced/survival_pod{ + dir = 1 + }, +/obj/item/weapon/rig/ert, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"Wh" = ( +/obj/machinery/atmospherics/unary/freezer{ + dir = 1; + icon_state = "freezer"; + use_power = 0 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"Wi" = ( +/obj/structure/toilet, +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm4) +"Wj" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/light/small, +/turf/simulated/floor/wood, +/area/mothership/dorm6) +"Wk" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/black{ + icon_state = "map"; + dir = 4 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"Wn" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/storage/firstaid/surgery, +/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/mothership/surgery) +"Wo" = ( +/obj/structure/closet/wardrobe/ert, +/obj/item/weapon/storage/box/survival/comp{ + starts_with = list(/obj/item/weapon/tool/prybar/red,/obj/item/clothing/glasses/goggles,/obj/item/weapon/reagent_containers/hypospray/autoinjector,/obj/item/stack/medical/bruise_pack,/obj/item/device/flashlight/glowstick,/obj/item/weapon/reagent_containers/food/snacks/candy/proteinbar,/obj/item/clothing/mask/breath,/obj/item/weapon/tank/emergency/oxygen/engi) + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/item/weapon/storage/box/survival/space, +/obj/item/weapon/storage/toolbox/emergency, +/turf/simulated/floor/wood, +/area/mothership/dorm5) +"Wp" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/blast/regular{ + density = 0; + destroy_hits = 1000; + dir = 1; + icon_state = "pdoor0"; + id = "ship-med-equip"; + name = "Shuttle Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/mothership/medical) +"Wq" = ( +/obj/machinery/door/airlock/external, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9; + icon_state = "intact" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/telecomms1) +"Wr" = ( +/obj/machinery/suit_cycler, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/eva) +"Ws" = ( +/obj/item/clothing/head/helmet/solgov, +/obj/item/clothing/head/helmet/solgov, +/obj/item/clothing/head/helmet/solgov, +/obj/item/clothing/head/helmet/solgov, +/obj/machinery/light/small{ + dir = 4; + pixel_y = 0 + }, +/obj/structure/table/rack/shelf/steel, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"Wt" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/surgery) +"Wu" = ( +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + icon_state = "intact-supply"; + dir = 4 + }, +/obj/machinery/pipedispenser/disposal/orderable, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"Wv" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/eva) +"Wx" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"Wy" = ( +/obj/effect/floor_decal/techfloor{ + dir = 9 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/mothership/cryotube) +"Wz" = ( +/obj/machinery/telecomms/relay/preset/centcom/tether/station_mid, +/turf/simulated/floor/bluegrid, +/area/mothership/telecomms2) +"WA" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/resleeving) +"WB" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 26 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/mothership/surgery) +"WC" = ( +/obj/structure/closet/secure_closet/personal, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm4) +"WD" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/medical, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/white, +/area/mothership/treatment) +"WE" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/eva) +"WF" = ( +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/warden) +"WH" = ( +/obj/structure/prop/alien/computer{ + dir = 8 + }, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm3) +"WI" = ( +/turf/simulated/floor/wood, +/area/houseboat) "WL" = ( /obj/structure/table/rack, /obj/item/weapon/storage/box/pillbottles, @@ -17099,18 +25208,313 @@ dir = 5 }, /area/centcom/specops) +"WM" = ( +/obj/structure/cable/cyan{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/mothership/bridge) +"WN" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/bathroom2) +"WO" = ( +/obj/structure/table/survival_pod, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm1) +"WP" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/white, +/area/mothership/resleeving) +"WR" = ( +/obj/machinery/door/airlock/security, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/warden) +"WT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/resleeving) +"WU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/telecomms1) +"WW" = ( +/obj/structure/closet/secure_closet/scientist, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/rnd) +"WX" = ( +/obj/machinery/telecomms/receiver/preset_cent, +/turf/simulated/floor/bluegrid, +/area/mothership/telecomms1) +"WY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/treatment) +"WZ" = ( +/obj/structure/toilet, +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm2) "Xa" = ( /obj/machinery/space_heater, /turf/unsimulated/floor{ icon_state = "dark" }, /area/centcom/specops) -"Xi" = ( -/obj/machinery/telecomms/relay/preset/centcom/tether/base_mid, -/turf/unsimulated/floor{ - icon_state = "steel" +"Xb" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 }, -/area/centcom/command) +/turf/simulated/floor/tiled/steel_grid, +/area/mothership/bridge) +"Xc" = ( +/obj/machinery/door/airlock/medical, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/mothership/surgery) +"Xd" = ( +/obj/structure/closet/hydrant{ + pixel_x = -32 + }, +/obj/item/clothing/suit/fire/firefighter, +/obj/item/clothing/mask/gas, +/obj/item/device/flashlight, +/obj/item/weapon/tank/oxygen/red, +/obj/item/weapon/tank/emergency/oxygen/double, +/obj/item/weapon/extinguisher, +/obj/item/weapon/extinguisher, +/obj/item/clothing/head/hardhat/red, +/obj/item/weapon/storage/toolbox/emergency, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"Xe" = ( +/obj/machinery/atmospherics/unary/cryo_cell, +/turf/simulated/floor/tiled/white, +/area/mothership/treatment) +"Xf" = ( +/obj/machinery/camera/network/ert{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/sechallway) +"Xg" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/mothership/breakroom) +"Xh" = ( +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"Xj" = ( +/obj/item/modular_computer/console/preset/ert{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/mothership/bridge) +"Xk" = ( +/obj/structure/table/rack/steel, +/obj/machinery/door/window/survival_pod{ + dir = 8; + req_one_access = list(103) + }, +/obj/item/weapon/rig/ert/engineer, +/obj/item/weapon/rig/ert/engineer, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"Xl" = ( +/obj/item/rig_module/device/anomaly_scanner, +/obj/item/rig_module/device/anomaly_scanner, +/obj/item/rig_module/device/rcd, +/obj/item/rig_module/device/rcd, +/obj/structure/table/rack/shelf/steel, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"Xm" = ( +/obj/structure/reagent_dispensers/acid{ + density = 0; + pixel_x = -30; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/rnd) +"Xn" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + pixel_x = 32 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"Xo" = ( +/obj/machinery/status_display{ + pixel_y = 29 + }, +/obj/item/modular_computer/console/preset/mercenary, +/turf/simulated/floor/tiled/steel_grid, +/area/mothership/bridge) +"Xp" = ( +/turf/simulated/shuttle/wall/alien, +/area/unknown/dorm4) +"Xq" = ( +/obj/structure/shuttle/engine/heater, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/reinforced/airless, +/area/mothership/telecomms1) +"Xr" = ( +/obj/machinery/cooker/candy, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/kitchen) +"Xs" = ( +/obj/item/weapon/bedsheet/captaindouble, +/obj/structure/bed/double/padded, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/button/remote/airlock{ + id = "ship-dorm1-door"; + name = "Dorm 1 Lock"; + pixel_x = 6; + pixel_y = -26; + specialfunctions = 4 + }, +/obj/structure/curtain/open/bed, +/turf/simulated/floor/wood, +/area/mothership/dorm1) +"Xt" = ( +/turf/simulated/floor/tiled/white, +/area/mothership/medical) +"Xu" = ( +/obj/structure/closet{ + name = "materials" + }, +/obj/fiftyspawner/diamond, +/obj/fiftyspawner/gold, +/obj/fiftyspawner/phoron, +/obj/fiftyspawner/plasteel, +/obj/fiftyspawner/plastic, +/obj/fiftyspawner/osmium, +/obj/fiftyspawner/silver, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/uranium, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/durasteel, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/rnd) +"Xv" = ( +/obj/structure/closet/crate/medical, +/obj/item/weapon/storage/mre/menu11, +/obj/item/weapon/storage/mre/menu11, +/obj/item/weapon/storage/mre/menu11, +/obj/item/weapon/storage/mre/menu11, +/obj/item/weapon/storage/mre/menu13, +/obj/item/weapon/storage/mre/menu13, +/turf/simulated/floor/tiled/white, +/area/mothership/surgery) +"Xw" = ( +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"Xx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/rnd) +"Xy" = ( +/obj/structure/prop/alien/power, +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm2) +"Xz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) "XA" = ( /obj/structure/table/steel_reinforced, /obj/item/weapon/smes_coil, @@ -17121,24 +25525,903 @@ icon_state = "dark" }, /area/centcom/specops) +"XB" = ( +/obj/machinery/power/emitter/gyrotron/anchored{ + desc = "It is a heavy duty pulse laser emitter."; + dir = 4; + icon_state = "emitter-off"; + name = "pulse laser" + }, +/turf/space, +/turf/simulated/shuttle/plating/airless/carry, +/area/mothership/eva) +"XC" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/carpet/blue, +/area/mothership/breakroom) +"XD" = ( +/turf/simulated/floor/bluegrid, +/area/mothership/robotics) +"XF" = ( +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/obj/machinery/power/apc{ + dir = 2; + name = "south bump"; + pixel_y = -28; + req_access = list(67) + }, +/obj/structure/cable/cyan, +/turf/simulated/floor/tiled/techfloor/grid, +/area/mothership/cryotube) +"XG" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/surgery) +"XH" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/machinery/firealarm{ + dir = 2; + layer = 3.3; + pixel_x = 4; + pixel_y = 26 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hydroponics) +"XI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/engineering) +"XJ" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/white, +/area/mothership/resleeving) +"XK" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/blast/regular{ + density = 0; + destroy_hits = 1000; + dir = 1; + icon_state = "pdoor0"; + id = "ship-hydroponics"; + name = "Shuttle Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/mothership/hydroponics) +"XL" = ( +/obj/machinery/syndicate_beacon/virgo{ + charges = 10 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/vault) +"XM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/mothership/bridge) +"XN" = ( +/obj/machinery/smartfridge, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/kitchen) +"XO" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hydroponics) +"XP" = ( +/obj/machinery/vending/nifsoft_shop{ + categories = 111; + emagged = 1; + name = "Hacked NIFSoft Shop"; + prices = list() + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"XQ" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/regular{ + destroy_hits = 100; + id = "ship-armory"; + name = "Armory" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"XR" = ( +/obj/structure/table/steel_reinforced, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/eva) +"XS" = ( +/turf/simulated/floor/reinforced/airless{ + name = "outer hull" + }, +/area/space) +"XT" = ( +/turf/simulated/floor/reinforced{ + name = "Holodeck Projector Floor" + }, +/area/mothership/holodeck/holo) +"XU" = ( +/obj/structure/table/rack/shelf/steel, +/obj/item/weapon/storage/lockbox, +/obj/item/clothing/mask/gas{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/gas{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/gas{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/glasses/hud/security, +/obj/item/clothing/glasses/hud/security, +/obj/item/clothing/glasses/hud/security, +/obj/item/clothing/glasses/hud/security, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"XV" = ( +/obj/machinery/vending/loadout/costume, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/cryotube) +"XW" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"XX" = ( +/obj/structure/closet/crate/secure/weapon{ + req_one_access = list(108) + }, +/obj/item/weapon/storage/secure/briefcase/nsfw_pack_hybrid_combat, +/obj/item/weapon/storage/secure/briefcase/nsfw_pack_hybrid, +/obj/item/ammo_casing/microbattery/medical/corpse_mend, +/obj/item/ammo_casing/microbattery/medical/corpse_mend, +/obj/item/slime_extract/pink, +/obj/item/slime_extract/pink, +/obj/item/slime_extract/pink, +/obj/item/slime_extract/pink, +/obj/item/slime_extract/pink, +/obj/item/slime_extract/pink, +/obj/item/weapon/cell/slime{ + description_info = "This 'cell' holds a max charge of 20k and self recharges over time."; + icon = 'icons/obj/power.dmi'; + icon_state = "icell"; + maxcharge = 20000; + name = "slime core cell" + }, +/obj/item/weapon/cell/slime{ + description_info = "This 'cell' holds a max charge of 20k and self recharges over time."; + icon = 'icons/obj/power.dmi'; + icon_state = "icell"; + maxcharge = 20000; + name = "slime core cell" + }, +/obj/item/weapon/cell/slime{ + description_info = "This 'cell' holds a max charge of 20k and self recharges over time."; + icon = 'icons/obj/power.dmi'; + icon_state = "icell"; + maxcharge = 20000; + name = "slime core cell" + }, +/obj/item/weapon/cell/slime{ + description_info = "This 'cell' holds a max charge of 20k and self recharges over time."; + icon = 'icons/obj/power.dmi'; + icon_state = "icell"; + maxcharge = 20000; + name = "slime core cell" + }, +/obj/item/slime_extract/pink, +/obj/item/slime_extract/pink, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/vault) +"XY" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/bathroom1) +"XZ" = ( +/obj/machinery/light/flamp/noshade, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"Ya" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/alarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"Yb" = ( +/obj/machinery/light{ + dir = 8; + icon_state = "tube1" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"Yc" = ( +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"Yd" = ( +/obj/machinery/vending/assist, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"Ye" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/recharger, +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_x = 0; + pixel_y = 24 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"Yf" = ( +/obj/machinery/power/emitter/gyrotron/anchored{ + desc = "It is a heavy duty pulse laser emitter."; + dir = 8; + icon_state = "emitter-off"; + name = "pulse laser" + }, +/turf/space, +/turf/simulated/shuttle/plating/airless/carry, +/area/mothership/telecomms1) +"Yg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/treatment) +"Yh" = ( +/obj/machinery/bodyscanner{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/treatment) +"Yi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hydroponics) +"Yj" = ( +/obj/machinery/door/airlock/voidcraft/vertical{ + id_tag = "ship-dorm1-door"; + opacity = 1 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/dorm1) +"Yk" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/teleport/hub, +/turf/simulated/shuttle/floor/voidcraft, +/area/unknown/dorm1) +"Yl" = ( +/obj/structure/closet/crate/secure/weapon{ + req_one_access = list(108) + }, +/obj/item/weapon/storage/secure/briefcase/nsfw_pack_hybrid, +/obj/item/weapon/storage/secure/briefcase/nsfw_pack_hybrid_combat, +/obj/item/weapon/gun/energy/ionrifle/pistol, +/obj/item/weapon/gun/energy/ionrifle/pistol, +/obj/item/weapon/gun/energy/ionrifle, +/obj/item/weapon/gun/energy/ionrifle, +/obj/item/weapon/gun/energy/netgun, +/obj/item/weapon/gun/energy/xray, +/obj/item/weapon/gun/energy/xray, +/obj/item/weapon/gun/energy/gun/burst, +/obj/item/weapon/gun/energy/gun/burst, +/obj/item/weapon/gun/energy/sniperrifle, +/obj/item/weapon/gun/energy/sniperrifle, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"Ym" = ( +/obj/structure/fireaxecabinet{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/mothership/bridge) +"Yn" = ( +/obj/machinery/door/firedoor/glass, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/window/brigdoor/southleft{ + dir = 4; + id = "Cell M2"; + name = "Cell 2"; + req_access = list(2) + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 1; + icon_state = "pdoor0"; + id = "ship-sec-cell2"; + name = "Security Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor/tiled/dark, +/area/mothership/sechallway) +"Yo" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/storage/toolbox/syndicate/powertools, +/obj/item/device/multitool, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/eva) +"Yp" = ( +/obj/machinery/sleeper/survival_pod, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm3) +"Yq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/surgery) +"Yr" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/firealarm{ + dir = 2; + layer = 3.3; + pixel_x = 4; + pixel_y = 26 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/treatment) +"Ys" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/table/bench/steel, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"Yt" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/treatment) +"Yu" = ( +/obj/machinery/alarm{ + alarm_id = "pen_nine"; + breach_detection = 0; + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/machinery/light/small, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/bathroom2) +"Yv" = ( +/obj/item/clothing/suit/space/void/engineering/salvage, +/obj/item/clothing/head/helmet/space/void/engineering/salvage, +/obj/item/weapon/tank/oxygen/red, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/mask/breath, +/obj/machinery/light, +/obj/structure/table/rack/shelf/steel, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/eva) +"Yx" = ( +/turf/simulated/shuttle/wall/alien, +/area/unknown/dorm1) +"Yz" = ( +/obj/structure/closet/wardrobe/red, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/recharger/wallcharger{ + pixel_x = 3; + pixel_y = -29 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"YA" = ( +/obj/structure/cable/cyan{ + d1 = 0; + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + dir = 2; + name = "south bump"; + pixel_y = -28; + req_access = list(67) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/wood, +/area/mothership/dorm1) +"YB" = ( +/obj/machinery/door/airlock/engineeringatmos, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"YC" = ( +/obj/machinery/computer/secure_data{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/warden) +"YD" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/dorm6) "YE" = ( /obj/machinery/shieldwallgen, /turf/unsimulated/floor{ icon_state = "dark" }, /area/centcom/control) -"YM" = ( -/obj/machinery/telecomms/relay/preset/centcom/tether/sci_outpost, -/turf/unsimulated/floor{ - icon_state = "steel" +"YF" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" }, -/area/centcom/command) +/area/mothership/security) +"YG" = ( +/obj/effect/floor_decal/derelict/d2, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"YH" = ( +/obj/machinery/power/apc{ + cell_type = /obj/item/weapon/cell/super; + dir = 8; + name = "west bump"; + pixel_x = -28 + }, +/obj/structure/cable/cyan{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/morgue) +"YI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/telecomms1) +"YJ" = ( +/obj/structure/bed/chair/wood{ + icon_state = "wooden_chair"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/carpet/blue, +/area/mothership/breakroom) +"YK" = ( +/obj/machinery/computer/operating{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/surgery) +"YL" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 9 + }, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"YM" = ( +/obj/machinery/status_display{ + pixel_y = 29 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/eva) +"YN" = ( +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + dir = 2; + name = "south bump"; + pixel_y = -28; + req_access = list(67) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/wood, +/area/mothership/dorm6) +"YO" = ( +/obj/machinery/cryopod{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_x = 0; + pixel_y = -25 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/mothership/cryotube) +"YP" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/eva) +"YQ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hydroponics) +"YR" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/dorm5) "YS" = ( /obj/machinery/vending/assist, /turf/unsimulated/floor{ icon_state = "dark" }, /area/centcom/specops) +"YT" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/telecomms2) +"YU" = ( +/obj/item/weapon/bedsheet/captaindouble, +/obj/structure/bed/double/padded, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/button/remote/airlock{ + id = "ship-dorm5-door"; + name = "Dorm 5 Lock"; + pixel_x = 6; + pixel_y = -26; + specialfunctions = 4 + }, +/obj/structure/curtain/open/bed, +/turf/simulated/floor/wood, +/area/mothership/dorm5) +"YV" = ( +/obj/item/clothing/suit/space/void/security/alt, +/obj/item/clothing/head/helmet/space/void/security/alt, +/obj/item/weapon/tank/oxygen, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/mask/breath, +/obj/structure/table/rack/shelf/steel, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/eva) +"YW" = ( +/obj/structure/sink{ + dir = 4; + icon_state = "sink"; + pixel_x = 12; + pixel_y = 8 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/treatment) +"YX" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/rnd) +"YY" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/chemistry) +"YZ" = ( +/obj/structure/particle_accelerator/power_box{ + anchored = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/telecomms2) +"Zb" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/highsecurity{ + req_one_access = list(101) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/telecomms1) +"Zc" = ( +/turf/simulated/floor/tiled/white, +/area/mothership/kitchen) +"Zd" = ( +/obj/structure/prop/alien/computer{ + dir = 8 + }, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm2) +"Ze" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -23; + pixel_y = 0 + }, +/obj/structure/closet/crate/bin, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hydroponics) +"Zf" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/morgue) +"Zg" = ( +/obj/machinery/vending/security, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"Zh" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/processing) +"Zi" = ( +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, +/obj/machinery/atmospherics/pipe/simple/visible/supply, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"Zj" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/storage/briefcase/inflatable, +/obj/item/weapon/storage/briefcase/inflatable, +/obj/item/weapon/storage/briefcase/inflatable, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/eva) +"Zl" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/vault) +"Zm" = ( +/obj/structure/closet/secure_closet/personal, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm3) +"Zn" = ( +/obj/structure/prop/alien/computer{ + dir = 8 + }, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm4) +"Zo" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"Zp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/carpet/blue, +/area/mothership/breakroom) +"Zq" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 1; + icon_state = "pdoor0"; + id = "ship-sec-cell2"; + name = "Security Blast Doors"; + opacity = 0 + }, +/obj/structure/cable/cyan{ + d1 = 0; + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/mothership/sechallway) +"Zr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/cryotube) +"Zs" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/eva) +"Zt" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/cyan{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/mothership/surgery) +"Zu" = ( +/obj/structure/table/rack/shelf/steel, +/obj/item/weapon/storage/box/evidence, +/obj/item/weapon/storage/box/handcuffs{ + pixel_x = 6; + pixel_y = -2 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -23; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"Zv" = ( +/obj/structure/closet/radiation, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) "Zw" = ( /obj/structure/table/rack, /obj/item/weapon/gun/projectile/heavysniper, @@ -17148,6733 +26431,6945 @@ icon_state = "dark" }, /area/centcom/specops) -"ZC" = ( -/obj/effect/floor_decal/corner_steel_grid{ - dir = 6 +"Zx" = ( +/obj/structure/closet/wardrobe/robotics_black, +/obj/machinery/firealarm{ + dir = 1; + pixel_x = 0; + pixel_y = -25 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/rnd) +"Zy" = ( +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm3) +"Zz" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/item/device/perfect_tele_beacon/stationary{ + tele_name = "Mothership"; + tele_network = "centcom" + }, +/obj/machinery/alarm{ + alarm_id = "pen_nine"; + breach_detection = 0; + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/teleporter) +"ZA" = ( +/obj/structure/prop/alien/dispenser, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm2) +"ZB" = ( +/obj/machinery/status_display{ + pixel_y = -29 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"ZC" = ( +/obj/machinery/power/emitter/gyrotron/anchored{ + desc = "It is a heavy duty pulse laser emitter."; + dir = 8; + icon_state = "emitter-off"; + name = "pulse laser" + }, +/turf/space, +/turf/simulated/shuttle/plating/airless/carry, +/area/mothership/eva) +"ZD" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/telecomms1) +"ZE" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"ZF" = ( +/obj/item/modular_computer/console/preset/mercenary{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"ZG" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/dorm1) +"ZH" = ( +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"ZI" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_x = 0; + pixel_y = 28 + }, +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable/cyan{ + d1 = 0; + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/white, +/area/mothership/treatment) +"ZJ" = ( +/obj/effect/floor_decal/derelict/d8, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"ZK" = ( +/obj/structure/closet/secure_closet/CMO, +/turf/simulated/floor/tiled/white, +/area/mothership/medical) +"ZL" = ( +/obj/machinery/porta_turret, +/turf/simulated/floor/reinforced/airless{ + name = "outer hull" }, -/turf/simulated/floor/outdoors/grass/sif/virgo3b, /area/space) +"ZM" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/processing) +"ZN" = ( +/obj/item/device/perfect_tele_beacon/stationary{ + tele_name = "CentCom"; + tele_network = "centcom" + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"ZP" = ( +/obj/structure/closet/crate/bin, +/turf/simulated/floor/wood, +/area/mothership/breakroom) +"ZQ" = ( +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/turf/unsimulated/floor/steel, +/area/centcom/living) +"ZR" = ( +/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) +"ZS" = ( +/obj/machinery/teleport/station, +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm4) +"ZT" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/telecomms2) +"ZU" = ( +/obj/structure/shuttle/engine/heater, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/reinforced/airless, +/area/mothership/engineering) +"ZW" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/holodeck) +"ZX" = ( +/obj/structure/bed/chair/wood{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/carpet/blue, +/area/mothership/breakroom) +"ZY" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/chemistry) +"ZZ" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) (1,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF "} (2,1,1) = {" -aa -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 -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 -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 -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 -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF "} (3,1,1) = {" -aa -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 -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 -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 -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 -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF "} (4,1,1) = {" -aa -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 -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 -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 -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 -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF "} (5,1,1) = {" -aa -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 -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 -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 -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 -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF "} (6,1,1) = {" -aa -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 -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 -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 -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 -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF "} (7,1,1) = {" -aa -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 -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 -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 -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 -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +UE +cJ +UE +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF "} (8,1,1) = {" -aa -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 -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 -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 -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 -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +ZL +XS +MJ +PZ +MJ +XS +ZL +XS +XS +XS +XS +XS +ZL +XS +PD +Ln +PD +XS +ZL +XS +XS +XS +XS +XS +ZL +XS +Ve +Jc +Ve +XS +ZL +MV +Qf +Qf +Qf +UE +NJ +UE +ZL +UE +Yf +UE +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF "} (9,1,1) = {" -aa -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 -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 -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 -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 -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +MJ +MJ +MJ +MJ +MJ +MJ +MJ +MJ +MJ +Lw +Ix +Ix +Ix +Ix +Lw +Lw +PD +PD +PD +PD +Lp +Lp +Wp +Wp +Wp +Lp +Lp +Ve +Ve +Ve +Ve +Ve +Ve +Ve +FT +EW +UL +Kl +Wq +Kn +UE +UE +UE +UE +Kn +ZL +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF "} (10,1,1) = {" -aa -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 -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 -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 -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 -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +MJ +Xv +VG +MJ +Tl +Sq +YK +Wn +MJ +OS +Qy +KG +HE +Nj +Ls +Lw +oN +Nr +Os +Wc +Lp +Ed +jt +ZK +Dy +Eu +Lp +Jo +Xm +Lg +Eh +Hb +Gr +Ve +Jm +Ic +lE +WU +Ug +Qu +Rr +Qn +Oi +Ou +Xq +iJ +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF "} (11,1,1) = {" -aa -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 -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 -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 -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 -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +MJ +Wt +GO +MJ +Ey +OV +XG +iR +FU +Gt +PT +LT +LT +LZ +Ek +MG +SI +WA +EM +QB +Lp +Xt +NI +Xt +Ns +Tb +Lp +NK +YX +Ss +Ty +Vu +gz +Ve +Jm +Ic +lE +WU +WX +NL +Ti +Qn +Oi +Ou +Xq +iJ +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF "} (12,1,1) = {" -aa -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 -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 -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 -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 -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +Sh +QL +Sh +OF +OF +OF +QG +Rj +WB +Xc +Yq +PR +VL +Zt +Wd +gw +Fv +MD +MD +Yg +MD +If +TT +RL +Np +TT +LI +iK +Rx +iK +MA +iK +PW +Xx +Rl +Xx +Xx +Oh +HT +NA +DM +Gy +Sg +WU +DR +NL +Nu +Qn +Oi +Ou +Xq +iJ +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF "} (13,1,1) = {" -aa -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 -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 -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 -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 -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +ZL +XS +QU +XK +XK +gX +ZC +Sh +Gw +Sh +ZL +VR +nW +MJ +MJ +MJ +ZY +ZY +ZY +ZY +ZY +TP +Yr +WY +Yh +LT +NW +LT +MG +IF +WT +Gc +Gi +Lp +VM +Xt +IB +NQ +JR +Lp +ST +Hb +DP +MC +Dv +Oa +OM +Dq +XD +Ko +WU +TQ +NL +Oq +Qn +Oi +Ou +Xq +iJ +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF "} (14,1,1) = {" -aa -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 -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 -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 -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 -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +OF +OF +OF +OF +OF +OF +OF +OF +OF +ZL +Qh +Jq +Jq +Jq +Qh +gX +Sf +Ge +Nw +Sf +Sh +Zs +Nv +Zs +Sh +VR +Er +Fe +Ml +Xs +ZY +OP +DK +MW +JN +ZY +ZI +WY +Sm +LT +MB +LT +Lw +Nb +Fm +Gc +Vt +Lp +Fq +Xt +Ly +NQ +Ec +Lp +LQ +Hb +MI +WW +Dv +Oa +Rm +VC +XD +Jy +WU +QP +QC +Vg +Qn +Oi +Ou +Xq +iJ +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF "} (15,1,1) = {" -aa -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 -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 -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 -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 -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +OF +OF +OF +OF +OF +OF +OF +OF +IT +IT +Qh +OR +OR +OR +RZ +gX +KP +Ga +Um +Dn +Sh +PL +WE +YV +Sh +XY +Qa +Fe +lm +Mv +ZY +MO +YY +SX +UX +RA +Qc +WY +LT +LT +LT +Hv +MG +Md +Fb +Gc +En +Lp +Pp +Xt +Rp +NQ +Pm +Lp +Uu +Hb +Hb +Hb +Dv +UR +Ve +OC +XD +Rs +WU +ZD +No +KR +XI +XI +XI +XI +XI +XI +XI +Vj +HC +HC +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF "} (16,1,1) = {" -aa -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 -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 -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 -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 -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +OF +OF +OF +OF +OF +OF +OF +OF +FH +Lu +EJ +OR +OR +OR +GX +gX +Vd +Jv +CC +LE +Sh +Kh +iM +Yv +Sh +PE +DW +Fe +DQ +YA +ZY +NY +Gh +Ms +FX +JA +Ff +hP +Sk +HB +Yt +QS +WD +XJ +bN +Pj +XJ +KS +Wf +HZ +TZ +Ks +To +Op +LY +Hb +Xu +Ke +Dv +Zx +Ve +TJ +Jx +MN +WU +ln +Kp +UP +ll +ll +ll +QO +QX +Xd +Ua +VI +LA +OU +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF "} (17,1,1) = {" -aa -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 -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 -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 -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 -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +OF +OF +OF +OF +OF +OF +OF +OF +Qh +IT +Qh +Xg +OR +OR +Ni +gX +XH +TN +CC +Uw +Sh +nO +Kf +Nk +Sh +JH +nW +ZG +Fe +Yj +TP +ZY +ZY +Eg +ZY +TP +Vs +Ph +Lw +Xe +Li +YW +MG +GN +Oz +WP +Uj +Lp +SR +Do +Lp +Ld +Ui +Lp +Ve +NE +Ve +MV +Mk +MV +MV +Uz +CD +fP +LG +Zb +YI +SV +Ul +Mm +VV +cT +Sl +Yd +GP +Hz +HC +Hz +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF "} (18,1,1) = {" -aa -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 -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 -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 -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 -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +OF +OF +OF +OF +OF +OF +OF +OF +HQ +IT +OR +OR +OR +OR +Lo +gX +Uw +TN +CC +Uw +Sh +Zs +GS +Zs +Sh +Sw +OQ +Yb +QE +Sw +QE +RS +QE +QE +QE +Nf +TR +NF +Lw +Lw +Lw +Lw +Lw +Jg +Hr +Jg +Zf +Zf +Lp +Lp +Lp +Sw +QE +Nf +QE +QE +QE +RS +Xz +Yb +QE +QK +QK +nk +Qo +Sw +UG +HC +XW +GW +OG +Jh +HI +GU +cL +Rf +ZU +Mj +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF "} (19,1,1) = {" -aa -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 -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 -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 -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 -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +OF +OF +OF +OF +OF +OF +OF +OF +Qh +Qh +Lh +OR +OR +OR +SE +gX +Lj +TN +CC +Uw +Sh +Wr +HJ +TS +Sh +Hg +ZE +ZE +ZE +Xw +Hm +Wx +ZE +Un +ZE +Nm +ph +Et +Fc +Lv +Mn +Zf +Ol +YH +Vx +ro +Uq +Zf +VE +YU +YR +Pb +ZE +Nm +ZE +ZE +IP +Im +Ob +ZE +ZE +ZE +On +Lk +US +ZZ +UH +KD +Rn +Hw +Jr +VQ +DG +GU +cL +Rf +ZU +Mj +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF "} (20,1,1) = {" -aa -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 -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 -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 -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 -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +OF +OF +OF +OF +OF +OF +OF +OF +ZL +LR +OR +RB +OR +SU +Lz +gX +Uw +TN +CC +Uw +Sh +Yo +HJ +FM +Sh +NB +Yc +Fx +Hi +Hi +Hi +Zl +Zl +OA +Zl +Ux +QE +Sw +Fc +Gd +gi +Zf +Fk +HF +HF +HF +My +Zf +Hc +by +YR +Sw +QE +Da +KH +KH +Da +Ry +Da +KH +KH +Da +NB +Yc +Zr +jq +NP +jq +jq +jq +DH +La +Uv +GU +cL +Rf +ZU +Mj +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF "} (21,1,1) = {" -aa -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 -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 -ab -ab -ab -ab -ab -RN -ZC -ZC -ZC -ZC -ZC -ZC -ZC -ZC -ZC -ZC -ZC -ZC -ZC -ZC -ZC -ZC -Hs -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 -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +OF +OF +OF +OF +OF +OF +OF +IT +IT +Qh +Pc +Zp +Mu +Gn +Ho +QU +OX +GD +GT +QU +Zs +XR +HJ +Zj +Sh +Sw +QE +Hi +Qg +Oo +MX +Zl +UU +Tt +XX +Zl +QE +Sw +Fc +jo +Vw +Zf +QA +QA +QA +QA +QA +Zf +Wo +TH +YR +Sw +QE +KH +Xo +Fg +Dr +XM +Kj +Fg +Ym +KH +Sw +FE +VT +Vo +Ut +Jd +Fr +jq +KN +Th +Ot +GU +cL +Rf +ZU +Mj +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF "} (22,1,1) = {" -aa -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 -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 -ab -ab -ab -ab -ab -DR -mQ -mQ -mQ -mQ -mQ -mQ -mQ -mQ -mQ -mQ -mQ -mQ -mQ -mQ -mQ -mQ -Ei -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 -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +OF +OF +OF +OF +OF +OF +OF +LR +HO +NG +Mu +Oy +ZX +CG +HD +JO +Od +Fs +CC +Ze +Zs +YM +HJ +Lb +Zs +Sw +HW +Hi +ae +QY +SY +Zl +XL +Tt +Oe +Zl +Sr +Sw +DI +IW +Fc +Zf +Zf +Zf +Zf +Zf +Zf +Zf +YR +Ij +FZ +Sw +HW +KH +Jk +GI +Xb +Mf +Mf +Mf +KF +KH +Sw +Fi +VT +RP +LO +Wy +XF +jq +Wu +Dz +Gk +GU +cL +Rf +ZU +Mj +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF "} (23,1,1) = {" -aa -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 -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 -ab -ab -ab -ab -ab -DR -mQ +OF +OF +OF +OF +OF +OF +OF +LR +HO +HP +Mu +XC gx -gX -gX -gX -hY -gX -iE +XC +Rk +QU +YQ jk -gX -gX -gX -gX -gX -li -mQ -Ei -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 -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +Ds +NM +jp +ag +KA +Ps +jp +ME +DE +SK +Lr +Ma +FN +Zl +SZ +Tt +VZ +Zl +PN +Id +Nm +Ox +ZE +ZE +ZE +ZE +TY +ZE +ZE +ZE +ZE +Uc +Nm +Zo +PN +KH +Eb +Kj +Kc +Xj +Fu +Ft +Xj +KH +Sw +Ng +VT +Na +Sn +hY +Mb +jq +KT +Gv +JT +OB +Lc +HC +XS +ZL +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF "} (24,1,1) = {" -aa -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 -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 -ab -ab -ab -ab -ab -DR -mQ -gy -gY -gY -gY -gY -gY -iF -jl -jv -jx -jx -jx -jx -lj -mQ -Ei -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 -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +OF +OF +OF +OF +OF +OF +OF +LR +HO +HP +Mu +XC +XC +XC +Mh +QU +Yi +Qq +XO +VN +FC +YP +Wv +JP +FC +UB +FD +NT +PA +MK +SC +Zl +FR +HR +Jz +Zl +PN +Sw +Yc +Sw +iL +Wa +QE +QE +QW +QE +QE +Wa +iL +Sw +Yc +Sw +PN +KH +Eb +Kj +Kc +iA +DV +EG +iA +KH +Sw +UZ +VT +FB +LC +hY +YO +jq +Qj +NS +Wk +DF +LP +Px +IM +ZL +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF "} (25,1,1) = {" -aa -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 -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 -ab -ab -ab -ab -ab -DR -mQ -gy -gY -gY -gY -gY -gY -iG -jm -jw -jx -jy -jy -jx -lj -mQ -Ei -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 -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +OF +OF +OF +OF +OF +OF +OF +LR +HO +Mi +Mu +Gf +YJ +JW +QN +Mc +JS +CZ +iS +Ha +Zs +Qp +HJ +PH +Zs +Sw +HW +Hi +Ep +QY +Zz +Zl +Fa +Tt +EU +Zl +Sr +Sw +SA +PF +Ex +Hd +Hd +Hd +Hd +Hd +Hd +Hd +Kk +TA +YD +Sw +HW +KH +Jk +GI +EA +GY +GY +GY +Qx +KH +Sw +JU +VT +XV +IN +HV +GM +jq +Qj +JE +Wh +GU +cL +Rf +ZU +Mj +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF "} (26,1,1) = {" -aa -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 -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 -ab -ab -ab -ab -ab -DR -mQ -gy -gY -gY -gZ -gY -gY +OF +OF +OF +OF +OF +OF +OF +IT +IT +Qh +Pc +Zp +Mu +Gn +Rv +Sf +PQ +NX +VH +XN +Zs +Te +HJ +Zj +Sh +Sw +ED +Hi +Tv iH -jn -jx -jJ -jx -jx -jx -lj -mQ -Ei -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 -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +Uk +Zl +RG +EB +Lx +Zl +QE +Sw +Ex +lF +UD +Hd +Nq +DX +Hd +Vl +DX +Hd +MM +YN +Kk +Sw +QE +KH +Xo +Em +WM +TK +Kj +Em +KI +KH +Sw +FE +VT +Vo +PB +HH +GR +jq +Iw +Us +Oj +GU +cL +Rf +ZU +Mj +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF "} (27,1,1) = {" -aa -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 -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 -ab -ab -ab -ab -ab -DR -mQ -gy -gY -gY -gZ -gY -gY -iI -jo -jx -jx -jx -jx -jM +OF +OF +OF +OF +OF +OF +OF +OF +ZL +LR +OR +UW +OR +RQ +ML +Ki +Gp +Ib +gA +Gl +Sh +Yo +HJ +FM +Sh +Sw +QE +Fx +Hi +Hi +Hi +Zl +Zl +OA +Zl +Ux +Yc +NB +Ex +Hk +HN +Hd +IQ +Xf +Hd +Hy +Xf +Hd +Go +Wj +Kk +NB +Yc +Da +KH +KH +Da +Pl +Da +KH +KH +Da +Sw +Fi +Zr +jq +Qw +jq +jq +jq +KB +EO lj -mQ -Ei -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -rn -rs -rs -rs -rs -rs -tA -rs -rs -rs -rs -rs -rs -tA -rs -rs -rs -rs -rs -rn -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +GU +cL +Rf +ZU +Mj +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF "} (28,1,1) = {" -aa -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 -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 -ab -ab -ab -ab -ab -DR -mQ -gz -gZ -gY -gY -gY -gY -iJ -jp -jx -jy -jx -jx -jx -lk -mQ -Ei -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ro -rC -rC -rC -sV -rC -rC -rC -rC -rC -rC -rC -rC -rC -rC -sV -rC -rC -rC -ro -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +OF +OF +OF +OF +OF +OF +OF +OF +Qh +Qh +So +OR +OR +WI +Fh +Ki +Hp +Ib +no +Tn +Sh +Wr +HJ +TS +Sh +Hg +ZE +Nm +ZE +LL +ZE +TY +Ya +Xh +ZE +ZE +ZE +Zo +Ex +Fd +Ej +Hd +DN +DX +Hd +Is +DX +Hd +VX +MU +Kk +Tu +Je +ZE +ZE +ZE +ZE +TM +ZE +OY +ZE +Nm +HL +Ne +Kq +OY +KX +YB +QH +Zi +OJ +Gb +IR +GU +cL +Rf +ZU +Mj +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF "} (29,1,1) = {" -aa -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 -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 -ab -ab -ab -ab -ab -DR -mQ -gy -gY -gY -gY -gY -gY -iK -jq -jx -jx -jx -jx -jx -lj -mQ -Ei -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ro -rD -rD -si -sj -sj -tB -si -sj -uP -uP -sj -si -tB -wf -wf -si -rD -rD -ro -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +OF +OF +OF +OF +OF +OF +OF +OF +HQ +IT +Sx +OR +OR +OR +OR +Uy +Zc +Ib +no +OW +Sh +Zs +GS +Zs +Sh +Sw +ON +Ew +QE +Sw +QE +Wa +QE +QE +QE +iL +QE +ZB +Hd +Hd +Hd +Hz +UY +OK +Hd +Zq +Yn +Hz +Hd +Hd +Hd +TR +Xz +iL +QE +QE +QE +Wa +iL +Sw +QE +Yc +QE +Sw +Qo +Sw +UG +HC +Ye +IS +nn +Ua +Zv +GU +cL +Rf +ZU +Mj +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF "} (30,1,1) = {" -aa -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 -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 -ab -ab -ab -ab -ab -DR -mQ -gy -gY -gY -gY -gY -gY -iL -jr -jy -jx -jx -jx -jx -lj -mQ -Ei -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ro -rE -si -sB -sW -tl -sD -ua -sX -tl -sE -vb -vk -sD -tl -wC -sB -si -rE -ro -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +OF +OF +OF +OF +OF +OF +OF +OF +Qh +IT +Qh +Xg +OR +OR +PS +Ki +Wb +Ib +no +PO +Sh +nO +Qv +Nk +Sh +GC +Ro +UM +UM +Or +Dt +YF +YF +YF +YF +YF +Jf +EY +NC +DX +DX +Pe +PU +DX +FF +PU +DX +DX +DX +DX +Ri +XQ +Jb +Ri +TX +TX +TX +TX +Ri +EP +ZW +Ia +ZW +JX +Vk +DA +Vc +Vj +Kr +SQ +iN +Ua +Ua +VD +TB +Hz +HC +Hz +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF "} (31,1,1) = {" -aa -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 -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 -ab -ab -ab -ab -ab -DR -mQ -gy -gY -gY -gY -gY -gY +OF +OF +OF +OF +OF +OF +OF +OF +FH +VJ +EJ +OR +OR +OR +Mr +Ki +MT +Ib +no +SW +Sh +Kh iM -js -jx -jx -jM -jx -jy -ll -mQ -Ei -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ro -rD -sj -sC -sX -tl -sD -sE -um -tl -sE -sX -tl -sD -sD -sD -wZ -sj -rD -ro -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +Yv +Sh +Uh +VY +UM +SO +Pa +YF +XU +JG +Zu +Qd +cR +Sb +Ov +OL +Rq +El +IK +FP +EF +bj +Qm +Rq +DY +El +Rq +Of +ZH +Lm +ID +RI +Ta +Fl +NO +Du +Up +TX +Tq +Rg +PM +Om +ZT +Rz +UP +Vh +li +ZF +KC +Ra +Tk +Ua +KW +Xn +OU +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF "} (32,1,1) = {" -aa -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 -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 -ab -ab -ab -ab -ab -DR -mQ +OF +OF +OF +OF +OF +OF +OF +OF +IT +IT +Qh +OR +OR +OR +ZP +Ki +MZ +PG +cK +Xr +Sh +PL +We +YV +Sh +VO +Yu +UM +Nz +Kz +YF +TV +FO +Ji +Qd gy -gY -gZ -gY -hZ -gY -iN -jt -jx -jx -jx -jx -jx -lj -mQ -Ei -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ro -rD -sj -sD -sD -sD -sD -sD -sD -sD -sD -sD -sD -sD -sE -sE -tl -sj -rD -ro -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +Sb +GZ +OH +ZM +ZM +Kx +ZM +ZM +Il +Ow +Ow +NV +Ow +Ow +Ri +Gs +SN +Ii +Ii +Ii +Ii +Ii +Ii +JZ +TX +gj +Nh +PI +Om +FA +EK +RX +XI +XI +XI +XI +XI +XI +XI +SV +HC +HC +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF "} (33,1,1) = {" -aa -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 -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 -ab -ab -ab -ab -ab -DR -mQ +OF +OF +OF +OF +OF +OF +OF +OF +OF +ZL +Qh +gB +gB +gB +Qh +Ki +Sf +TO +NU +Sf +Sh +Zs +Nv +Zs +Sh +WN +aV +UM +Tg +Iy +YF +Gx +FO +Sb +Sb gy -gY -gY -gY -gY -gY -iO -ju -jx -jy -jx -jx -jx -lj -mQ -Ei -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ro -rD -sj -sD -sD -sD -sD -sD -sD -sD -sD -sD -sD -sD -sE -sE -xa -sj -rD -ro -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +Sb +UV +ZM +ES +GB +Dw +Jt +Zh +Ow +FS +Jl +WF +Tz +Hh +TX +RC +UQ +Po +IX +JV +Pr +Ub +Jp +EV +TX +XT +XT +XT +Om +Tr +YT +Wz +Ig +Qt +YZ +IO +UF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF "} (34,1,1) = {" -aa -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 -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 -ab -ab -ab -ab -ab -DR -mQ -gy -gY -gY -gY -gZ -gY -iF -ju -jx -jx -jx -jx -jM -lj -mQ -Ei -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ro -rD -sj -sE -sX -tl -sD -sE -sX -tl -sE -sX -tl -sD -sD -sD -sD -sj -rD -ro -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +ZL +XS +Sf +OE +OE +Ki +XB +Sh +Di +Sh +ZL +WN +Ro +YF +YF +YF +YF +Ys +Ue +Vp +Sb +Qz +Sb +Yz +OH +LN +UT +EE +UT +PK +Il +FV +Mp +LJ +Mp +Fz +Ri +Iv +UQ +SJ +Pz +TF +Sd +Vz +Yl +IY +TX +XT +XT +XT +Om +IG +Gg +GV +Ig +Qt +YZ +IO +UF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF "} (35,1,1) = {" -aa -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 -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 -ab -ab -ab -ab -ab -DR -mQ -gA -ha -gY -gY -gZ -iz -iP -hb -ha -jx -jx -jx -iz -lm -mQ -Ei -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ro -rE -si -sB -sY -tl -sD -ub -un -tl -sE -vc -vl -sD -wg -wD -sB -si -rE -ro -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +Sh +QL +Sh +OF +OF +OF +YF +lk +KV +YF +JM +Td +Vp +Sb +Dm +Sb +Fn +MQ +VK +KO +lG +cS +KO +WR +RT +DZ +FW +GF +Mp +Gu +Ii +Ud +Uo +Hl +Ik +Xl +OT +IV +Lf +TX +XT +XT +XT +Om +Dp +Gg +Eo +Ig +Qt +YZ +IO +UF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF "} (36,1,1) = {" -aa -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 -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 -ab -ab -ab -ab -ab -DR -mQ -gB -hb -hu -hO -hu -iA -nm -nm -jz -hu -jN -hu -iP -ln -mQ -Ei -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ro -rD -rD -si -sj -sj -tC -si -sj -uP -uP -sj -si -tC -wf -wf -si -rD -rD -ro -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +YF +Zg +QI +Qs +Gz +QJ +Gz +Gz +iE +Gz +Pu +OH +NR +UT +Nn +RU +UK +Il +JL +Mp +EC +TE +YC +Ri +XP +Ii +Ii +Ii +Ii +Ii +Ii +Ii +QF +TX +XT +XT +XT +Om +Pf +Gg +Su +Ig +Qt +YZ +IO +UF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF "} (37,1,1) = {" -aa -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 -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 -ab -ab -ab -ab -ab -DR -mQ -mQ -mQ -mQ -mQ -mQ -mQ -nm -nm -mQ -mQ -mQ -mQ -mQ -mQ -mQ -Ei -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ro -rF -rF -rF -rF -rF -rF -rF -rF -rF -rF -rF -rF -rF -rF -rF -rF -rF -rF -ro -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +YF +Ws +PC +YF +FK +Vn +UA +MP +Ll +Sb +SG +ZM +HG +Hu +LM +IA +EQ +Ow +Uf +Mp +HA +Mp +kP +TX +It +bi +NN +Wg +TL +Xk +KE +DT +IE +TX +XT +XT +XT +Om +IJ +Ky +KU +Ig +Qt +YZ +IO +UF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF "} (38,1,1) = {" -aa -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 -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 -ab -ab -ab -ab -ab -Uh -Lg -Lg -Lg -mQ -nm -nm -nO -nm -nm -mQ -NI -mQ -mQ -mQ -mQ -mQ -mQ -mQ -mQ -mQ -mQ -mQ -mQ -ph -ph -ph -mQ -rp -rG -rG -rG -rG -rG -rG -rG -rG -rG -rG -rG -rG -rG -rG -rG -rG -rG -rG -rp -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +YF +YF +YF +YF +YF +YF +Dt +PV +PV +PV +YF +ZM +ZM +ZM +ZM +ZM +ZM +Ow +Il +JD +JD +JD +Ow +TX +TX +TX +TX +TX +TX +TX +TX +TX +TX +TX +XT +XT +XT +MF +JJ +KZ +Hj +Hj +Hj +Hj +KZ +ZL +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF "} (39,1,1) = {" -aa -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 -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -mR -Lh -Lh -mR -nm -nm -mQ -mQ -mQ -nm -nm -iR -nm -nm -nm -mQ -nk -nm -nO -nm -nm -nm -nm -oN -rq -rH -rH -rH -rH -rH -rH -rH -rH -rH -rH -rH -rH -rH -rH -rH -rH -rH -rH -rs -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +ZL +XS +YF +Jw +YF +XS +ZL +XS +XS +XS +XS +XS +ZL +XS +ZM +LV +Ow +XS +ZL +XS +XS +XS +XS +XS +ZL +XS +TX +Rd +TX +XS +ZL +Ri +SB +SB +SB +Hj +OZ +Hj +ZL +Hj +Ja +Hj +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF "} (40,1,1) = {" -aa -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 -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -mR -Lh -Lh -mR -iR -nm -nm -nm -iR -nm -nm -nm -nm -nm -nm -mR -nl -nl -mR -nl -nl -nl -nl -nl -rr -rH -rH -rH -rH -rH -rH -rH -rH -rH -rH -rH -rH -rH -rH -rH -rH -rH -rH -rs -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +Hj +II +Hj +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF "} (41,1,1) = {" -aa -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 -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -mQ -nm -nm -nO -iS -iQ -nm -nm -nm -nm -kP -nm -nm -nm -nm -mR -nl -nl -mR -nl -nl -nl -nl -nl -rr -rH -rH -rH -rH -rH -rH -uc -cP -dk -uZ -cP -uc -rH -rH -rH -rH -rH -rH -rs -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF "} (42,1,1) = {" -aa -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 -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -mQ -nn -nn -mQ -mQ -mQ -mQ -mQ -mQ -nm -nm -iQ -nm -iR -nm -mQ -nm -nm -nO -nm -nm -nm -nm -nm -rs -rI -sk -sF -sF -sF -rI -ud -uo -uQ -uQ -uo -ud -rI -sF -sF -sF -sk -rI -rs -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF "} (43,1,1) = {" -aa -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 -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -mQ -no -no -mQ -ab -ab -ab -ab -mQ -mQ -mQ -mQ -mQ -mQ -mQ -mQ -nn -nn -mQ -nm -nm -mQ -nn -nn -rs -rJ -rJ -rJ -rJ -rJ -rJ -ud -dk -dk -dk -dk -ud -rJ -rJ -rJ -rJ -rJ -rJ -rs -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF "} (44,1,1) = {" -aa -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 -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 -ab -ab -ab -ab -ab -ac -ac -ac -ac -mQ -mQ -mQ -mQ -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -mQ -no -no -mQ -QB -QB -mQ -no -no -rs -ab -ab -ab -ab -ab -ab -ud -dk -dk -dk -dk -ud -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF "} (45,1,1) = {" -aa -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 -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 -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -mQ -mQ -mQ -mQ -mQ -mQ -mQ -mQ -mQ -rs -ab -ab -ab -ab -ab -ab -ud -dk -dk -dk -dk -ud -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 -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ab -ab -ab -ab -aa +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF "} (46,1,1) = {" -aa -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 -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 -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ud -dk -dk -dk -dk -ud -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ac -ac -ac -ac -ab -ab -ab -aa +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF "} (47,1,1) = {" aa -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ud -dk -dk -dk -dk -ud -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa aa "} (48,1,1) = {" aa -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab ac ac ac @@ -23886,14 +33381,6 @@ ac ac ac ac -ei -ei -ei -ei -ei -ei -ei -ei ac ac ac @@ -23904,49 +33391,101 @@ ac ac ac ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ud -dk -dk -dk -dk -ud -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac ac ac ac @@ -23973,69 +33512,6 @@ aa "} (49,1,1) = {" aa -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ei -ei -ei -ei -ei -ei -ei -ei -gk -gk -gk -gk -gk -ia -ei ac ac ac @@ -24047,47 +33523,110 @@ ac ac ac ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ud -dk -dk -dk -dk -ud -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac ac ac ac @@ -24117,69 +33656,6 @@ aa aa ac ac -ab -ab -ab -ac -ac -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ei -eq -eq -fa -fa -ei -ei -ei -gl -gl -gl -gl -gl -gl -ei -ei -ei ac ac ac @@ -24190,42 +33666,105 @@ ac ac ac ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ud -dk -dk -dk -dk -ud -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac ac ac ac @@ -24266,62 +33805,6 @@ ac ac ac ac -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ei -er -er -er -ft -ei -fN -fU -gm -gm -gm -gm -gm -gm -iB -iT -ei ac ac ac @@ -24336,36 +33819,92 @@ ac ac ac ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ud -do -dk -dk -dk -ud -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac ac ac ac @@ -24414,56 +33953,6 @@ ac ac ac ac -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 -ab -ab -ab -ac -ac -ac -ac -ac -ei -er -er -er -fu -ei -fN -fU -gm -gD -gm -gm -gD -gm -iB -iT -ei ac ac ac @@ -24483,31 +33972,81 @@ ac ac ac ac -ab -ab -ab -ab -ab -ab -ud -up -dk -dk -uS -ud -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac ac ac ac @@ -24559,29 +34098,6 @@ ac ac ac ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab ac ac ac @@ -24589,64 +34105,87 @@ ac ac ac ac -ei -er -er -er -fu -ei -fN -fU -gm -gm -hc -gm -gm -gm -iB -iT -ei -ac -jK -jK -jK -jK -jK -jK -jK -ac -ac -ac -jK -jK -jK -jK -jK -jK -jK ac ac ac ac ac -ab -ab -ud -uq -dk -dk -uS -ud -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac ac ac ac @@ -24689,6 +34228,1007 @@ ac ac ac ac +Hq +Xp +Hq +Xp +Xp +Xp +Xp +Xp +Xp +Hq +Xp +Xp +Hq +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +ac +ac +ac +ac +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +TD +RR +TD +RR +RR +RR +RR +RR +RR +TD +RR +RR +TD +ac +ac +ac +ac +ac +ac +aa +"} +(55,1,1) = {" +aa +ac +ac +ac +ac +ac +ac +Xp +Ts +Hq +UJ +mR +DU +Zn +WC +WC +Hq +DL +Es +Xp +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ei +ei +ei +ei +ei +ei +ei +ei +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ry +vK +wq +wq +xp +xN +vM +yn +ry +ac +ac +ac +ac +ry +yn +vM +xN +vK +wq +wq +xp +ry +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +RR +LW +TD +JQ +Km +DJ +Zd +Kb +Kb +TD +GJ +iG +RR +ac +ac +ac +ac +ac +ac +aa +"} +(56,1,1) = {" +aa +ac +ac +ac +ac +ac +ac +Xp +Mg +Nt +DL +Mg +JF +Mg +Mg +DL +Nt +DL +ZS +Xp +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ei +ei +ei +ei +ei +ei +ei +ei +gk +gk +gk +gk +gk +ia +ei +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ry +vL +vM +vM +vM +vM +vM +yo +ry +cP +cP +cP +cP +ry +vL +vM +vM +vM +vM +vM +yo +ry +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +RR +VF +Vy +GJ +VF +Pt +VF +VF +GJ +Vy +GJ +MS +RR +ac +ac +ac +ac +ac +ac +aa +"} +(57,1,1) = {" +aa +ac +ac +ac +ac +ac +ac +Xp +Wi +Hq +Qk +Mg +Mg +Mg +Mg +LX +Hq +DL +RV +Xp +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ei +eq +eq +fa +fa +ei +ei +ei +gl +gl +gl +gl +gl +gl +ei +ei +ei +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ry +vM +vM +vM +vM +vM +vM +vM +vu +dk +dk +dk +dk +vu +vM +vM +vM +vM +vM +vM +vM +ry +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +RR +WZ +TD +Kv +VF +VF +VF +VF +Vb +TD +GJ +Pv +RR +ac +ac +ac +ac +ac +ac +aa +"} +(58,1,1) = {" +aa +ac +ac +ac +ac +ac +ac +Xp +Pw +Xp +ZR +DL +GK +Nl +EN +Ok +Xp +DL +JY +Xp +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ei +er +er +er +ft +ei +fN +fU +gm +gm +gm +gm +gm +gm +iB +iT +ei +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ry +vM +wr +vM +wr +vM +wr +vM +ry +do +dk +dk +dk +ry +vM +wr +vM +wr +vM +wr +vM +ry +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +RR +Pq +RR +KL +GJ +Tf +ZA +DS +Bx +RR +GJ +Xy +RR +ac +ac +ac +ac +ac +ac +aa +"} +(59,1,1) = {" +aa +ac +ac +ac +ac +ac +ac +Hq +Xp +Hq +Xp +Xp +Xp +Xp +Xp +Xp +Hq +Xp +Xp +Hq +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ei +er +er +er +fu +ei +fN +fU +gm +gD +gm +gm +gD +gm +iB +iT +ei +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ry +vN +ry +wM +ry +xO +ry +yp +ry +up +dk +dk +uS +ry +vN +ry +wM +ry +xO +ry +yp +ry +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +TD +RR +TD +RR +RR +RR +RR +RR +RR +TD +RR +RR +TD +ac +ac +ac +ac +ac +ac +aa +"} +(60,1,1) = {" +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ei +er +er +er +fu +ei +fN +fU +gm +gm +hc +gm +gm +gm +iB +iT +ei +ac +jK +jK +jK +jK +jK +jK +jK +ac +ac +ac +jK +jK +jK +jK +jK +jK +jK +yq +ry +vO +ry +vO +ry +vO +ry +uq +dk +dk +uS +ry +vO +ry +vO +ry +vO +ry +yq +ry +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +"} +(61,1,1) = {" +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac ac ac ac @@ -24702,28 +35242,10 @@ ac ac ac ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab ac ac ac ac -ab ac ac ac @@ -24766,25 +35288,36 @@ pi pO qr jK -ac -ac -ac -ac -ac -ab -ab -ud +ry +ry +ry +ry +ry +ry +ry +ry ur dk dk uS -ud -ab -ab -ab -ab -ab -ab +ry +ry +ry +ry +ry +ry +ry +ry +ry +ac +ac +ac +ac +ac +ac +ac +ac +ac ac ac ac @@ -24823,7 +35356,7 @@ ac ac aa "} -(55,1,1) = {" +(62,1,1) = {" aa ac ac @@ -24844,23 +35377,12 @@ ac ac ac ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab +ac +ac +ac +ac +ac +ac ac ac ac @@ -24963,9 +35485,20 @@ ac ac ac ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac aa "} -(56,1,1) = {" +(63,1,1) = {" aa ac ac @@ -24992,17 +35525,6 @@ ac ac ac ac -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac ac ac ac @@ -25105,9 +35627,20 @@ ac ac ac ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac aa "} -(57,1,1) = {" +(64,1,1) = {" aa ac ac @@ -25134,17 +35667,6 @@ ac ac ac ac -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac ac ac ac @@ -25247,9 +35769,20 @@ ac ac ac ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac aa "} -(58,1,1) = {" +(65,1,1) = {" aa ac ac @@ -25289,17 +35822,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac ei eG fc @@ -25389,9 +35911,20 @@ ac ac ac ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac aa "} -(59,1,1) = {" +(66,1,1) = {" aa ac ac @@ -25399,30 +35932,19 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac +Vv +RM +Vv +RM +RM +RM +RM +RM +RM +Vv +RM +RM +Vv ac ac ac @@ -25523,8 +36045,19 @@ ac ac ac ac -ac -ac +KK +Yx +KK +Yx +Yx +Yx +Yx +Yx +Yx +KK +Yx +Yx +KK ac ac ac @@ -25533,7 +36066,7 @@ ac ac aa "} -(60,1,1) = {" +(67,1,1) = {" aa ac ac @@ -25541,30 +36074,19 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac +RM +RW +Vv +Sz +Yp +gh +WH +Zm +Zm +Vv +Zy +Rb +RM ac ac ac @@ -25665,8 +36187,19 @@ ac ac ac ac -ac -ac +Yx +Kt +KK +Pk +Vr +WO +RK +uc +uc +KK +QR +Yk +Yx ac ac ac @@ -25675,7 +36208,7 @@ ac ac aa "} -(61,1,1) = {" +(68,1,1) = {" aa ac ac @@ -25683,30 +36216,19 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac +RM +Rh +QT +Zy +Rh +SF +Rh +Rh +Zy +QT +Zy +ND +RM ac ac ac @@ -25807,8 +36329,19 @@ ac ac ac ac -ac -ac +Yx +Tm +DD +QR +Tm +Qe +Tm +Tm +QR +DD +QR +OO +Yx ac ac ac @@ -25817,7 +36350,7 @@ ac ac aa "} -(62,1,1) = {" +(69,1,1) = {" aa ac ac @@ -25825,30 +36358,19 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac +RM +Pn +Vv +iI +Rh +Rh +Rh +Rh +jn +Vv +Zy +Fy +RM ac ac ac @@ -25896,7 +36418,7 @@ mx mS np jK -nW +Iu kv pp kv @@ -25949,8 +36471,19 @@ ac ac ac ac -ac -ac +Yx +RH +KK +SS +Tm +Tm +Tm +Tm +HS +KK +QR +Io +Yx ac ac ac @@ -25959,7 +36492,7 @@ ac ac aa "} -(63,1,1) = {" +(70,1,1) = {" aa ac ac @@ -25967,30 +36500,19 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac +RM +Ee +RM +Sa +Zy +Js +JK +Rw +RN +RM +Zy +VP +RM ac ac ac @@ -26091,8 +36613,19 @@ ac ac ac ac -ac -ac +Yx +PX +Yx +Jj +QR +VB +Ei +QD +TI +Yx +QR +EL +Yx ac ac ac @@ -26101,7 +36634,7 @@ ac ac aa "} -(64,1,1) = {" +(71,1,1) = {" aa ac ac @@ -26109,30 +36642,19 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac +Vv +RM +Vv +RM +RM +RM +RM +RM +RM +Vv +RM +RM +Vv ac ac ac @@ -26233,8 +36755,19 @@ ac ac ac ac -ac -ac +KK +Yx +KK +Yx +Yx +Yx +Yx +Yx +Yx +KK +Yx +Yx +KK ac ac ac @@ -26243,7 +36776,7 @@ ac ac aa "} -(65,1,1) = {" +(72,1,1) = {" aa ac ac @@ -26279,17 +36812,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac cP dk dk @@ -26383,9 +36905,20 @@ ac ac ac ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac aa "} -(66,1,1) = {" +(73,1,1) = {" aa ac ac @@ -26421,17 +36954,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac cP dk dk @@ -26525,9 +37047,20 @@ ac ac ac ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac aa "} -(67,1,1) = {" +(74,1,1) = {" aa ac ac @@ -26563,17 +37096,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac cP do dk @@ -26667,9 +37189,20 @@ ac ac ac ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac aa "} -(68,1,1) = {" +(75,1,1) = {" aa ac ac @@ -26705,17 +37238,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac cP dk dk @@ -26809,9 +37331,20 @@ ac ac ac ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac aa "} -(69,1,1) = {" +(76,1,1) = {" aa ac ac @@ -26847,17 +37380,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac cP dk dk @@ -26951,9 +37473,20 @@ ac ac ac ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac aa "} -(70,1,1) = {" +(77,1,1) = {" aa ac ac @@ -26989,17 +37522,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac cP dk dk @@ -27093,9 +37615,20 @@ ac ac ac ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac aa "} -(71,1,1) = {" +(78,1,1) = {" aa ac ac @@ -27131,17 +37664,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac cP dk dk @@ -27223,21 +37745,32 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac +rn +rs +rs +rs +rs +rs +tA +rs +rs +rs +rs +rs +rs +tA +rs +rs +rs +rs +rs +rn ac ac ac aa "} -(72,1,1) = {" +(79,1,1) = {" aa ac ac @@ -27273,17 +37806,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac cP dk dk @@ -27365,21 +37887,32 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac +He +rC +rC +rC +sV +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +sV +rC +rC +rC +He ac ac ac aa "} -(73,1,1) = {" +(80,1,1) = {" aa ac ac @@ -27415,17 +37948,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac cP dk dk @@ -27507,21 +38029,32 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac +He +rD +rD +si +sj +sj +tB +si +sj +uP +uP +sj +si +tB +wf +wf +si +rD +rD +He ac ac ac aa "} -(74,1,1) = {" +(81,1,1) = {" aa ac ac @@ -27557,17 +38090,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac cP dk dk @@ -27649,21 +38171,32 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac +He +rE +si +sB +sW +tl +sD +ua +sX +tl +sE +vb +vk +sD +tl +wC +sB +si +rE +He ac ac ac aa "} -(75,1,1) = {" +(82,1,1) = {" aa ac ac @@ -27699,17 +38232,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac cP dk dk @@ -27791,21 +38313,32 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac +He +rD +sj +sC +sX +tl +sD +sE +um +tl +sE +sX +tl +sD +sD +sD +wZ +sj +rD +He ac ac ac aa "} -(76,1,1) = {" +(83,1,1) = {" aa ac ac @@ -27841,17 +38374,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac cP dk dk @@ -27933,21 +38455,32 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac +He +rD +sj +sD +sD +sD +sD +sD +sD +sD +sD +sD +sD +sD +sE +sE +tl +sj +rD +He ac ac ac aa "} -(77,1,1) = {" +(84,1,1) = {" aa ac ac @@ -27983,17 +38516,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac cP dk dk @@ -28075,21 +38597,32 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac +He +rD +sj +sD +sD +sD +sD +sD +sD +sD +sD +sD +sD +sD +sE +sE +xa +sj +rD +He ac ac ac aa "} -(78,1,1) = {" +(85,1,1) = {" aa ac ac @@ -28125,17 +38658,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac cP do dk @@ -28217,21 +38739,32 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac +He +rD +sj +sE +sX +tl +sD +sE +sX +tl +sE +sX +tl +sD +sD +sD +sD +sj +rD +He ac ac ac aa "} -(79,1,1) = {" +(86,1,1) = {" aa ac ac @@ -28267,17 +38800,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac cP dk dk @@ -28359,21 +38881,32 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac +He +rE +si +sB +sY +tl +sD +ub +un +tl +sE +vc +vl +sD +wg +wD +sB +si +rE +He ac ac ac aa "} -(80,1,1) = {" +(87,1,1) = {" aa ac ac @@ -28408,17 +38941,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac cP cP dk @@ -28501,21 +39023,32 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac +He +rD +rD +si +sj +sj +tC +si +sj +uP +uP +sj +si +tC +wf +wf +si +rD +rD +He ac ac ac aa "} -(81,1,1) = {" +(88,1,1) = {" aa ac ac @@ -28535,17 +39068,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac ah ah ah @@ -28640,24 +39162,35 @@ ac ac ac ac -ry -ry -ry -ry -ry -DA -ac -ac -ac ac ac ac +He +rF +rF +rF +rF +rF +rF +rF +rF +rF +rF +rF +rF +rF +rF +rF +rF +rF +rF +He ac ac ac aa "} -(82,1,1) = {" +(89,1,1) = {" aa ac ac @@ -28677,17 +39210,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac ah HU bP @@ -28782,24 +39304,35 @@ ac ac ac ac -ry -Da -Dn -Ds -Dx -DA -ac -ac -ac ac ac ac +rp +rG +rG +rG +rG +rG +rG +rG +rG +rG +rG +rG +rG +rG +rG +rG +rG +rG +rG +rp ac ac ac aa "} -(83,1,1) = {" +(90,1,1) = {" aa ac ac @@ -28819,17 +39352,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac ah Hf bP @@ -28924,24 +39446,35 @@ ac ac ac ac -ry -ry -ry -Dt -Ds -DA -ac -ac -ac ac ac ac +rs +rH +rH +rH +rH +rH +rH +rH +rH +rH +rH +rH +rH +rH +rH +rH +rH +rH +rH +rs ac ac ac aa "} -(84,1,1) = {" +(91,1,1) = {" aa ac ac @@ -28961,17 +39494,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac ah ah ah @@ -29066,24 +39588,35 @@ ac ac ac ac -ry -Da -Do -Ds -Ds -DA -ac -ac -ac ac ac ac +rq +rH +rH +rH +rH +rH +rH +rH +rH +rH +rH +rH +rH +rH +rH +rH +rH +rH +rH +rs ac ac ac aa "} -(85,1,1) = {" +(92,1,1) = {" aa ac ac @@ -29103,17 +39636,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac ah Zw bP @@ -29197,35 +39719,46 @@ vG vG As vq +uJ +uJ +uJ +uJ +uJ +uJ +uJ +uJ +uJ +AD ac ac ac ac -uJ -uJ -uJ -uJ -uJ -uJ -uJ -uJ -uJ -uJ -uJ -Dy -DA -ac -ac -ac -ac -ac -ac +rs +rH +rH +rH +rH +rH +rH +rs +rs +rH +uZ +rs +rs +rH +rH +rH +rH +rH +rH +rs ac ac ac aa "} -(86,1,1) = {" +(93,1,1) = {" aa ac ac @@ -29245,17 +39778,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac ah RJ bP @@ -29339,35 +39861,46 @@ vG vG At vq +Cl +uJ +Cl +uJ +Cl +uJ +Cl +uJ +Cl AD AD AD AD -uJ -Cl -uJ -Cl -uJ -Cl -uJ -Cl -uJ -Cl -uJ -Ds -DA -ac -ac -ac -ac -ac -ac +AD +AD +rI +sk +sF +sF +sF +rI +rJ +uo +uQ +uQ +uo +rJ +rI +sF +sF +sF +sk +rI +rs ac ac ac aa "} -(87,1,1) = {" +(94,1,1) = {" aa ac ac @@ -29387,17 +39920,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac ah ah ah @@ -29481,35 +40003,46 @@ vt vq vq vq +Cm +uJ +Cm +uJ +Cm +uJ +Cm +uJ +Cm +AD AM Bh AN AM -uJ -Cm -uJ -Cm -uJ -Cm -uJ -Cm -uJ -Cm -uJ -Ds -DA -ac -ac -ac -ac -ac -ac +AD +rJ +rJ +rJ +rJ +rJ +rJ +rs +dk +dk +dk +dk +rs +rs +rs +rs +rs +rs +rs +rs ac ac ac aa "} -(88,1,1) = {" +(95,1,1) = {" aa ac ac @@ -29529,17 +40062,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac ah Og bP @@ -29622,24 +40144,35 @@ dk dk dk dk -AC -AN -Bi -Bi -AN +dk +Cn +Cn +Cn +KM +Cn +Cn +Cn +Cn +ZQ Cb -Cn -Cn -Cn -Cn -Cn -Cn -Cn -Cn -Dp -Du -Ds -DA +AN +Bi +Bi +AN +AC +dk +dk +dk +dk +dk +dk +dk +dk +dk +dk +dk +cP +ac ac ac ac @@ -29651,7 +40184,7 @@ ac ac aa "} -(89,1,1) = {" +(96,1,1) = {" aa ac ac @@ -29671,17 +40204,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac ah EI bP @@ -29764,24 +40286,35 @@ dk dk dk dk -AC -AN -Bi -Bi -AN +dk +uF +uF +uF +uF +uF +uF +uF +uF +uF Cb -uF -uF -uF -uF -uF -uF -uF -uF -Dq -uJ -ry -DA +AN +Bi +Bi +AN +AC +dk +dk +dk +dk +dk +dk +dk +dk +dk +dk +dk +cP +ac ac ac ac @@ -29793,7 +40326,7 @@ ac ac aa "} -(90,1,1) = {" +(97,1,1) = {" aa ac ac @@ -29813,17 +40346,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac ah ah ah @@ -29906,24 +40428,35 @@ dk dk dk dk -AC -AN -Bi -Bi -AN +dk +Co +Co +Co +Co +Co +Co +Co +Co +GQ Cb -Co -Co -Co -Co -Co -Co -Co -Co -Dr -Dv -Ds -DA +AN +Bi +Bi +AN +AC +dk +dk +dk +dk +dk +dk +dk +dk +dk +dk +dk +cP +ac ac ac ac @@ -29935,7 +40468,7 @@ ac ac aa "} -(91,1,1) = {" +(98,1,1) = {" aa ac ac @@ -29955,17 +40488,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac ah bz bP @@ -30048,24 +40570,35 @@ vt vt vq vq +vq +Cm +uJ +Cm +uJ +Cm +uJ +Cm +uJ +Cm AD AO AO AO AO AD -Cm -uJ -Cm -uJ -Cm -uJ -Cm -uJ -Cm -uJ -Ds -DA +cP +cP +cP +cP +cP +cP +cP +mQ +nm +HX +mQ +cP +ac ac ac ac @@ -30077,7 +40610,7 @@ ac ac aa "} -(92,1,1) = {" +(99,1,1) = {" aa ac ac @@ -30097,17 +40630,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac ah HY bP @@ -30190,24 +40712,35 @@ vG vG vG vI +vq +Cl +uJ +Cl +uJ +Cl +uJ +Cl +uJ +Cl AD AM Bi Bi AM AD -Cl -uJ -Cl -uJ -Cl -uJ -Cl -uJ -Cl -uJ -Ds -DA +ac +ac +ac +ac +ac +ac +ac +mQ +nm +nm +mQ +ac +ac ac ac ac @@ -30219,7 +40752,7 @@ ac ac aa "} -(93,1,1) = {" +(100,1,1) = {" aa ac ac @@ -30239,17 +40772,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac ah ah ah @@ -30332,24 +40854,35 @@ wL zM zM xY +vq +uJ +uJ +uJ +uJ +uJ +uJ +uJ +uJ +uJ AD AP Bj Bt AP AD -uJ -uJ -uJ -uJ -uJ -uJ -uJ -uJ -uJ -uJ -Dy -DA +ac +ac +ac +ac +ac +ac +ac +mQ +nm +nm +mQ +ac +ac ac ac ac @@ -30361,7 +40894,7 @@ ac ac aa "} -(94,1,1) = {" +(101,1,1) = {" aa ac ac @@ -30381,17 +40914,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac ah aH aX @@ -30474,6 +40996,16 @@ wL zM zM xY +vq +ac +ac +ac +ac +ac +ac +ac +ac +ac AD AQ Bk @@ -30486,12 +41018,13 @@ ac ac ac ac -ry -Da -Do -Ds -Ds -DA +ac +mQ +nm +nm +mQ +ac +ac ac ac ac @@ -30503,7 +41036,7 @@ ac ac aa "} -(95,1,1) = {" +(102,1,1) = {" aa ac ac @@ -30523,17 +41056,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac ah aI aX @@ -30616,6 +41138,16 @@ vG vG vG vG +vq +ac +ac +ac +ac +ac +ac +ac +ac +ac AD AR AX @@ -30628,12 +41160,13 @@ ac ac ac ac -ry -ry -ry -Dw -Ds -DA +ac +mQ +nm +Rt +mQ +ac +ac ac ac ac @@ -30645,7 +41178,7 @@ ac ac aa "} -(96,1,1) = {" +(103,1,1) = {" aa ac ac @@ -30665,17 +41198,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac ah aJ aX @@ -30758,6 +41280,16 @@ vG vG vG vG +vq +ac +ac +ac +ac +ac +ac +ac +ac +ac AD AS Bl @@ -30770,12 +41302,13 @@ ac ac ac ac -ry -Da -Dn -Ds -Dz -DA +ac +mQ +nm +nm +mQ +ac +ac ac ac ac @@ -30787,7 +41320,7 @@ ac ac aa "} -(97,1,1) = {" +(104,1,1) = {" aa ac ac @@ -30807,17 +41340,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac ah Ea aX @@ -30900,6 +41422,16 @@ wL zM zM xY +vq +ac +ac +ac +ac +ac +ac +ac +ac +ac AD AT AD @@ -30912,12 +41444,13 @@ ac ac ac ac -ry -ry -ry -ry -ry -DA +ac +mQ +nm +nm +mQ +ac +ac ac ac ac @@ -30929,7 +41462,7 @@ ac ac aa "} -(98,1,1) = {" +(105,1,1) = {" aa ac ac @@ -30949,17 +41482,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac ah VU aX @@ -31042,6 +41564,16 @@ wL zM zM xY +vq +ac +ac +ac +ac +ac +ac +ac +ac +ac AD AU Bm @@ -31055,9 +41587,10 @@ ac ac ac ac -ac -ac -ac +mQ +nm +nm +mQ ac ac ac @@ -31071,7 +41604,7 @@ ac ac aa "} -(99,1,1) = {" +(106,1,1) = {" aa ac ac @@ -31091,17 +41624,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac ah aM aX @@ -31184,6 +41706,16 @@ vG vG vG vG +vq +ac +ac +ac +ac +ac +ac +ac +ac +ac AD AV AX @@ -31197,9 +41729,10 @@ ac ac ac ac -ac -ac -ac +mQ +nm +nm +mQ ac ac ac @@ -31213,7 +41746,7 @@ ac ac aa "} -(100,1,1) = {" +(107,1,1) = {" aa ac ac @@ -31233,17 +41766,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac ah aN aX @@ -31326,36 +41848,47 @@ vG vG vG vD +vq +ac +ac +ac +ac +AD +AD +AD +AD +AD AD AW AX AX BP -AD -AD -AD -AD -AD -AD -AD -AD -AD -AD -ac -ac -ac -ac -ac -ac -ac -ac -ac +mQ +mQ +mQ +Pi +Pi +Pi +Pi +Pi +mQ +nm +Ql +mQ +Pi +Pi +Pi +Pi +Pi +mQ +mQ +mQ ac ac ac aa "} -(101,1,1) = {" +(108,1,1) = {" aa ac ac @@ -31375,17 +41908,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac ah bl aX @@ -31468,36 +41990,47 @@ vG vG vG Aq -AD -AX -Bl -Bx -BQ +vq +ac +ac +ac +ac AD Cp AX AX AX +AT AX -AX -AX -AX -AD -ac -ac -ac -ac -ac -ac -ac -ac -ac +gC +Kd +BQ +mQ +XZ +Fw +UN +UN +UN +Ju +UN +PJ +nm +nm +Nd +UN +UN +UN +UN +UN +IZ +XZ +mQ ac ac ac aa "} -(102,1,1) = {" +(109,1,1) = {" aa ac ac @@ -31517,17 +42050,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac ah Oc aX @@ -31558,7 +42080,7 @@ em gs gO gO -gO +RO hU ho ho @@ -31610,11 +42132,11 @@ vq vt vt vt -AD -AT -AD -AD -AD +vq +cP +cP +cP +cP AD AT AD @@ -31625,21 +42147,32 @@ AD AD AT AD -ac -ac -ac -ac -ac -ac -ac -ac -ac +mQ +nm +ju +gY +gY +gY +gY +gY +iF +nm +nm +jl +jv +jx +jx +jx +jx +iF +nm +mQ ac ac ac aa "} -(103,1,1) = {" +(110,1,1) = {" aa ac ac @@ -31659,17 +42192,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac ah ah ah @@ -31700,7 +42222,7 @@ em dm gP gP -hx +gP ho id iD @@ -31767,21 +42289,32 @@ CH CU AX AD -ac -ac -ac -ac -ac -ac -ac -ac -ac +mQ +nm +ju +gY +gY +gY +gY +gY +iF +OI +Ku +ju +jw +jx +jy +jy +jx +iF +nm +mQ ac ac ac aa "} -(104,1,1) = {" +(111,1,1) = {" aa ac ac @@ -31802,17 +42335,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac ah ap aG @@ -31820,7 +42342,7 @@ aZ aG bH ah -aX +Sc aX aX ah @@ -31909,21 +42431,32 @@ CI AX Db AD -ac -ac -ac -ac -ac -ac -ac -ac -ac +mQ +nm +ju +gY +gY +gZ +gY +gY +iF +Sj +YG +ju +jx +jJ +jx +jx +jx +iF +nm +mQ ac ac ac aa "} -(105,1,1) = {" +(112,1,1) = {" aa ac ac @@ -31944,17 +42477,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac ah aq aG @@ -32051,21 +42573,32 @@ CJ CV AX AD -ac -ac -ac -ac -ac -ac -ac -ac -ac +mQ +nm +ju +gY +gY +gZ +gY +gY +iF +Sv +Tp +ju +jx +jx +jx +jx +jM +iF +nm +mQ ac ac ac aa "} -(106,1,1) = {" +(113,1,1) = {" aa ac ac @@ -32086,17 +42619,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac ah ar aG @@ -32193,21 +42715,32 @@ nK nK Dc nK -ac -ac -ac -ac -ac -ac -ac -ac -ac +mQ +nm +Ru +gZ +gY +gY +gY +gY +iF +QZ +TC +ju +jx +jy +jx +jx +jx +YL +nm +mQ ac ac ac aa "} -(107,1,1) = {" +(114,1,1) = {" aa ac ac @@ -32228,17 +42761,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac ah as aG @@ -32335,21 +42857,32 @@ CK CW oX nK -ac -ac -ac -ac -ac -ac -ac -ac -ac +mQ +nm +ju +gY +gY +gY +gY +gY +iF +Ht +Ev +ju +jx +jx +jx +jx +jx +iF +nm +mQ ac ac ac aa "} -(108,1,1) = {" +(115,1,1) = {" aa ac ac @@ -32370,17 +42903,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac ah au aG @@ -32477,21 +42999,32 @@ CL oX Dd nK -ac -ac -ac -ac -ac -ac -ac -ac -ac +mQ +nm +ju +gY +gY +gY +gY +gY +iF +Si +Fp +ju +jy +jx +jx +jx +jx +iF +nm +mQ ac ac ac aa "} -(109,1,1) = {" +(116,1,1) = {" aa ac ac @@ -32512,17 +43045,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac ah at aG @@ -32619,21 +43141,32 @@ CM CX De nK -ac -ac -ac -ac -ac -ac -ac -ac -ac +mQ +nm +ju +gY +gY +gY +gY +gY +iF +KY +Ur +ju +jx +jx +jM +jx +jy +iO +nm +mQ ac ac ac aa "} -(110,1,1) = {" +(117,1,1) = {" aa ac ac @@ -32648,17 +43181,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac ah ah ah @@ -32761,21 +43283,32 @@ CN CY De nK -ac -ac -ac -ac -ac -ac -ac -ac -ac +mQ +nm +ju +gY +gZ +gY +hZ +gY +iF +Vi +ZJ +ju +jx +jx +jx +jx +jx +iF +nm +mQ ac ac ac aa "} -(111,1,1) = {" +(118,1,1) = {" aa ac ac @@ -32790,23 +43323,12 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac ah -ae -ag -ag -ag -aV +Iq +PY +PY +PY +Dx ah av aG @@ -32903,21 +43425,32 @@ CO CX De nK -ac -ac -ac -ac -ac -ac -ac -ac -ac +mQ +nm +ju +gY +gY +gY +gY +gY +iO +nm +nm +ju +jx +jy +jx +jx +jx +iF +nm +mQ ac ac ac aa "} -(112,1,1) = {" +(119,1,1) = {" aa ac ac @@ -32932,17 +43465,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac ah af ai @@ -33045,21 +43567,32 @@ CP oX De nK -ac -ac -ac -ac -ac -ac -ac -ac -ac +mQ +nm +ju +gY +gY +gY +gZ +gY +iF +nm +nm +ju +jx +jx +jx +jx +jM +iF +nm +mQ ac ac ac aa "} -(113,1,1) = {" +(120,1,1) = {" aa ac ac @@ -33074,17 +43607,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac ah af aj @@ -33187,21 +43709,32 @@ CQ oX Df nK -ac -ac -ac -ac -ac -ac -ac -ac -ac +mQ +nm +hb +ha +gY +gY +gZ +iz +iP +nm +nm +hb +ha +jx +jx +jx +iz +iP +nm +mQ ac ac ac aa "} -(114,1,1) = {" +(121,1,1) = {" aa ac ac @@ -33216,17 +43749,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac ah af ak @@ -33329,21 +43851,32 @@ CR oX Dg nK -ac -ac -ac -ac -ac -ac -ac -ac -ac +mQ +XZ +nm +hb +hu +hO +hu +iP +XZ +nm +nm +XZ +hb +hu +jN +hu +iP +nm +XZ +mQ ac ac ac aa "} -(115,1,1) = {" +(122,1,1) = {" aa ac ac @@ -33358,17 +43891,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac ah af al @@ -33471,21 +43993,32 @@ CS oX Dg nK -ac -ac -ac -ac -ac -ac -ac -ac -ac +mQ +mQ +mQ +mQ +mQ +mQ +mQ +mQ +mQ +mQ +mQ +mQ +mQ +mQ +mQ +mQ +mQ +mQ +mQ +mQ ac ac ac aa "} -(116,1,1) = {" +(123,1,1) = {" aa ac ac @@ -33500,17 +44033,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac ah af al @@ -33625,9 +44147,20 @@ ac ac ac ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac aa "} -(117,1,1) = {" +(124,1,1) = {" aa ac ac @@ -33642,17 +44175,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac ah af al @@ -33752,9 +44274,20 @@ uJ uJ nK nK -CZ nK nK +nK +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac ac ac ac @@ -33769,7 +44302,7 @@ ac ac aa "} -(118,1,1) = {" +(125,1,1) = {" aa ac ac @@ -33784,17 +44317,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac ah af al @@ -33891,12 +44413,23 @@ ho BU ho ac -nK -CC -CE -CE -Di -nK +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac ac ac ac @@ -33911,7 +44444,7 @@ ac ac aa "} -(119,1,1) = {" +(126,1,1) = {" aa ac ac @@ -33926,17 +44459,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac ah af am @@ -34033,12 +44555,23 @@ ho Cq ho ac -nK -CD -CE -CE -Dj -nK +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac ac ac ac @@ -34053,7 +44586,7 @@ ac ac aa "} -(120,1,1) = {" +(127,1,1) = {" aa ac ac @@ -34068,17 +44601,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac ah af an @@ -34175,12 +44697,23 @@ BW BW ho ac -nK -CE -CE -CE -Dk -nK +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac ac ac ac @@ -34195,7 +44728,7 @@ ac ac aa "} -(121,1,1) = {" +(128,1,1) = {" aa ac ac @@ -34210,17 +44743,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac ah af ao @@ -34317,12 +44839,23 @@ BW Cr ho ac -nK -CF -CE -CE -Dl -nK +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac ac ac ac @@ -34337,7 +44870,7 @@ ac ac aa "} -(122,1,1) = {" +(129,1,1) = {" aa ac ac @@ -34352,17 +44885,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac ah ah af @@ -34459,12 +44981,23 @@ BW BW ho ac -nK -CG -CE -CE -Dm -nK +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac ac ac ac @@ -34479,7 +45012,7 @@ ac ac aa "} -(123,1,1) = {" +(130,1,1) = {" aa ac ac @@ -34494,17 +45027,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac ah aX aX @@ -34601,12 +45123,23 @@ BW Cs ho ac -nK -nK -nK -CZ -nK -nK +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac ac ac ac @@ -34621,7 +45154,7 @@ ac ac aa "} -(124,1,1) = {" +(131,1,1) = {" aa ac ac @@ -34636,17 +45169,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac ah aX aX @@ -34743,12 +45265,23 @@ Cg ho ho ac -nK -JW -CE -CE -JB -nK +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac ac ac ac @@ -34763,7 +45296,7 @@ ac ac aa "} -(125,1,1) = {" +(132,1,1) = {" aa ac ac @@ -34778,17 +45311,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac ah aX aX @@ -34885,12 +45407,23 @@ Ch Ct ho ac -nK -Xi -CE -CE -Hv -nK +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac ac ac ac @@ -34905,7 +45438,7 @@ ac ac aa "} -(126,1,1) = {" +(133,1,1) = {" aa ac ac @@ -34920,17 +45453,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac ah ah ah @@ -35027,12 +45549,23 @@ Ch BW ho ac -nK -Lb -CE -CE -Sp -nK +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac ac ac ac @@ -35047,7 +45580,7 @@ ac ac aa "} -(127,1,1) = {" +(134,1,1) = {" aa ac ac @@ -35073,17 +45606,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac ah bU bS @@ -35169,12 +45691,23 @@ Ch Ct ho ac -nK -CE -CE -CE -YM -nK +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac ac ac ac @@ -35189,7 +45722,7 @@ ac ac aa "} -(128,1,1) = {" +(135,1,1) = {" aa ac ac @@ -35215,17 +45748,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac ah bV bS @@ -35311,12 +45833,23 @@ Ch BW ho ac -nK -HL -CE -CE -Rx -nK +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac ac ac ac @@ -35331,7 +45864,7 @@ ac ac aa "} -(129,1,1) = {" +(136,1,1) = {" aa ac ac @@ -35357,17 +45890,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac ah bW cb @@ -35377,7 +45899,7 @@ co ah cF aG -aG +ZN dm dU eh @@ -35453,989 +45975,6 @@ Ch Ct ho ac -nK -nK -nK -nK -nK -nK -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -"} -(130,1,1) = {" -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -hX -hX -hX -hX -hX -hX -hX -hX -hX -hX -hX -hX -hX -hX -hX -hX -hX -hX -hX -hX -hX -hX -hX -hX -hX -hX -hX -hX -hX -hX -hX -uO -uO -uO -uO -hX -hX -hX -hX -hX -hX -hX -hX -hX -hX -hX -hX -hX -hX -hX -hX -hX -hX -hX -hX -hX -hX -hX -hX -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -"} -(131,1,1) = {" -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -"} -(132,1,1) = {" -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -"} -(133,1,1) = {" -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -"} -(134,1,1) = {" -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -"} -(135,1,1) = {" -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -"} -(136,1,1) = {" -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac ac ac ac @@ -36493,90 +46032,90 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +dn +dn +dn +dn +dn +dn +dn +dn +dn +dn +dn +dn +dn +dn +dn +hX +hX +hX +hX +hX +hX +hX +hX +hX +hX +hX +hX +hX +hX +hX +hX +hX +hX +hX +hX +hX +hX +hX +hX +hX +hX +hX +hX +hX +hX +hX +uO +uO +uO +uO +hX +hX +hX +hX +hX +hX +hX +hX +hX +hX +hX +hX +hX +hX +hX +hX +hX +hX +hX +hX +hX +hX +hX +hX ac ac ac diff --git a/maps/tether/tether_areas2.dm b/maps/tether/tether_areas2.dm index ebe14a2817..30e28ebd32 100644 --- a/maps/tether/tether_areas2.dm +++ b/maps/tether/tether_areas2.dm @@ -1036,6 +1036,138 @@ /area/bigship/teleporter name = "Bigship Teleporter Room" +//////// Mothership areas //////// +/area/mothership + requires_power = 1 + flags = RAD_SHIELDED + base_turf = /turf/space + icon_state = "blue-red2" + +/area/mothership/breakroom + name = "Warship - Breakroom" + +/area/mothership/hydroponics + name = "Warship - Hydroponics" + +/area/mothership/kitchen + name = "Warship - Kitchen" + +/area/mothership/eva + name = "Warship - EVA" + +/area/mothership/bathroom1 + name = "Warship - Bathroom 1" + +/area/mothership/bathroom2 + name = "Warship - Bathroom 2" + +/area/mothership/dorm1 + name = "Warship - Dorm 1" + +/area/mothership/dorm2 + name = "Warship - Dorm 2" + +/area/mothership/dorm3 + name = "Warship - Dorm 3" + +/area/mothership/dorm4 + name = "Warship - Dorm 4" + +/area/mothership/dorm5 + name = "Warship - Dorm 5" + +/area/mothership/dorm6 + name = "Warship - Dorm 6" + +/area/mothership/chemistry + name = "Warship - Chemistry" + +/area/mothership/surgery + name = "Warship - Surgery" + +/area/mothership/vault + name = "Warship - Vault" + flags = RAD_SHIELDED | BLUE_SHIELDED + +/area/mothership/teleporter + name = "Warship - Teleporter Room" + +/area/mothership/security + name = "Warship - Security Equipment" + +/area/mothership/treatment + name = "Warship - Treatment Center" + +/area/mothership/medical + name = "Warship - Medical Equipment" + +/area/mothership/resleeving + name = "Warship - Resleeving" + +/area/mothership/morgue + name = "Warship - Morgue" + +/area/mothership/rnd + name = "Warship - Research" + +/area/mothership/robotics + name = "Warship - Robotics" + +/area/mothership/sechallway + name = "Warship - Security Hallway" + +/area/mothership/processing + name = "Warship - Processing" + +/area/mothership/warden + name = "Warship - Warden" + +/area/mothership/armory + name = "Warship - Armory" + flags = RAD_SHIELDED | BLUE_SHIELDED + +/area/mothership/bridge + name = "Warship - Bridge" + +/area/mothership/holodeck + name = "Warship - Holodeck Controls" +/area/mothership/holodeck/holo + name = "Warship - Holodeck" + icon_state = "dk_yellow" + +/area/mothership/cryotube + name = "Warship - Cryo chamber" + +/area/mothership/engineering + name = "Warship - Engineering" + +/area/mothership/hallway + name = "Warship - Main Hallway" + +/area/mothership/telecomms1 + name = "Warship - Telecommunications Main" + +/area/mothership/telecomms2 + name = "Warship - Telecommunications Relay" + +//////// Abductor Areas //////// +/area/unknown + requires_power = 0 + flags = RAD_SHIELDED + icon_state = "red2" + +/area/unknown/dorm1 + name = "Unknown Dorm 1" + +/area/unknown/dorm2 + name = "Unknown Dorm 2" + +/area/unknown/dorm3 + name = "Unknown Dorm 3" + +/area/unknown/dorm4 + name = "Unknown Dorm 4" + //////// Small Cruiser Areas //////// /area/houseboat name = "Small Cruiser" diff --git a/maps/tether/tether_shuttle_defs.dm b/maps/tether/tether_shuttle_defs.dm index 925b7f8a0d..ed42f80e39 100644 --- a/maps/tether/tether_shuttle_defs.dm +++ b/maps/tether/tether_shuttle_defs.dm @@ -197,6 +197,7 @@ ////////////////////////////////////////////////////////////// // CC Lewdship shuttle +/* /datum/shuttle/ferry/cruiser_shuttle name = "Cruiser Shuttle" location = 1 @@ -205,4 +206,5 @@ area_station = /area/shuttle/cruiser/station docking_controller_tag = "cruiser_shuttle" dock_target_station = "d1a1_dock" - dock_target_offsite = "cruiser_shuttle_bay" \ No newline at end of file + dock_target_offsite = "cruiser_shuttle_bay" +*/ \ No newline at end of file diff --git a/maps/tether/tether_things.dm b/maps/tether/tether_things.dm index b0e05bdf68..fbe0a8d343 100644 --- a/maps/tether/tether_things.dm +++ b/maps/tether/tether_things.dm @@ -317,6 +317,10 @@ var/global/list/latejoin_tram = list() name = "dorm seven holodeck control" projection_area = /area/crew_quarters/sleep/Dorm_7/holo +/obj/machinery/computer/HolodeckControl/holodorm/warship + name = "warship holodeck control" + projection_area = /area/mothership/holodeck/holo + // Small Ship Holodeck /obj/machinery/computer/HolodeckControl/houseboat projection_area = /area/houseboat/holodeck_area diff --git a/vorestation.dme b/vorestation.dme index e66d3c843e..b3512e4b94 100644 --- a/vorestation.dme +++ b/vorestation.dme @@ -1012,6 +1012,7 @@ #include "code\game\objects\items\devices\traitordevices.dm" #include "code\game\objects\items\devices\transfer_valve.dm" #include "code\game\objects\items\devices\translator.dm" +#include "code\game\objects\items\devices\translocator_vr.dm" #include "code\game\objects\items\devices\tvcamera.dm" #include "code\game\objects\items\devices\uplink.dm" #include "code\game\objects\items\devices\uplink_random_lists.dm"