diff --git a/baystation12.dme b/baystation12.dme
index 2454d2a0b6359..d610ee075de2c 100644
--- a/baystation12.dme
+++ b/baystation12.dme
@@ -234,6 +234,7 @@
#include "code\controllers\subsystems\timer.dm"
#include "code\controllers\subsystems\turf_fire.dm"
#include "code\controllers\subsystems\typing.dm"
+#include "code\controllers\subsystems\virtual_reality.dm"
#include "code\controllers\subsystems\vote.dm"
#include "code\controllers\subsystems\weather.dm"
#include "code\controllers\subsystems\weather_atoms.dm"
@@ -316,6 +317,7 @@
#include "code\datums\extensions\penetration.dm"
#include "code\datums\extensions\state_machine.dm"
#include "code\datums\extensions\support_lattice.dm"
+#include "code\datums\extensions\virtual_surrogate.dm"
#include "code\datums\extensions\appearance\appearance.dm"
#include "code\datums\extensions\appearance\base_icon_state.dm"
#include "code\datums\extensions\appearance\cardborg.dm"
@@ -935,6 +937,7 @@
#include "code\game\machinery\vending\wallmed2.dm"
#include "code\game\machinery\vending\weeb.dm"
#include "code\game\machinery\vending\wizard.dm"
+#include "code\game\machinery\vr\vr_pod.dm"
#include "code\game\objects\alien_props.dm"
#include "code\game\objects\buckling.dm"
#include "code\game\objects\empulse.dm"
@@ -974,6 +977,7 @@
#include "code\game\objects\effects\step_triggers.dm"
#include "code\game\objects\effects\temporaray.dm"
#include "code\game\objects\effects\temporary_effect.dm"
+#include "code\game\objects\effects\virtual_reality.dm"
#include "code\game\objects\effects\chem\chemsmoke.dm"
#include "code\game\objects\effects\chem\foam.dm"
#include "code\game\objects\effects\chem\water.dm"
@@ -1195,6 +1199,7 @@
#include "code\game\objects\items\weapons\implants\implants\tracking.dm"
#include "code\game\objects\items\weapons\implants\implants\translator.dm"
#include "code\game\objects\items\weapons\implants\implants\uplink.dm"
+#include "code\game\objects\items\weapons\implants\implants\virtual_reality.dm"
#include "code\game\objects\items\weapons\implants\mobspawner\mobspawner.dm"
#include "code\game\objects\items\weapons\implants\mobspawner\spider.dm"
#include "code\game\objects\items\weapons\material\ashtray.dm"
@@ -2612,6 +2617,7 @@
#include "code\modules\modular_computers\file_system\programs\generic\reports.dm"
#include "code\modules\modular_computers\file_system\programs\generic\scanner.dm"
#include "code\modules\modular_computers\file_system\programs\generic\supply.dm"
+#include "code\modules\modular_computers\file_system\programs\generic\vr_control.dm"
#include "code\modules\modular_computers\file_system\programs\generic\wordprocessor.dm"
#include "code\modules\modular_computers\file_system\programs\medical\suit_sensors.dm"
#include "code\modules\modular_computers\file_system\programs\research\ai_restorer.dm"
diff --git a/code/__defines/subsystem-priority.dm b/code/__defines/subsystem-priority.dm
index a04769b43b6f5..f0802819628e6 100644
--- a/code/__defines/subsystem-priority.dm
+++ b/code/__defines/subsystem-priority.dm
@@ -16,6 +16,7 @@
#define SS_PRIORITY_MACHINERY 95 // Machinery + powernet ticks.
#define SS_PRIORITY_AIR 80 // ZAS processing.
#define SS_PRIORITY_THROWING 75 // Throwing calculation and constant checks
+#define SS_PRIORITY_VR 75 // Virtual reality mobs and their logic.
#define SS_PRIORITY_CHEMISTRY 60 // Multi-tick chemical reactions.
#define SS_PRIORITY_LIGHTING 50 // Queued lighting engine updates.
#define SS_PRIORITY_SPACEDRIFT 45 // Drifting things
diff --git a/code/_global_vars/lists/locations.dm b/code/_global_vars/lists/locations.dm
index 1af7b15eed663..c8ccb10f64aa8 100644
--- a/code/_global_vars/lists/locations.dm
+++ b/code/_global_vars/lists/locations.dm
@@ -16,3 +16,5 @@ GLOBAL_LIST_EMPTY(prisonsecuritywarp) // Prison security goes to these.
GLOBAL_LIST_EMPTY(prisonwarped) // List of players already warped.
GLOBAL_LIST_EMPTY(awaydestinations) // Away missions. A list of landmarks that the warpgate can take you to.
+
+GLOBAL_LIST_EMPTY(vr_spawns) // A list of all ACTIVE vr spawn markers. Added to and removed from dynamically when templates are activated
diff --git a/code/controllers/subsystems/virtual_reality.dm b/code/controllers/subsystems/virtual_reality.dm
new file mode 100644
index 0000000000000..7d9f9a265fede
--- /dev/null
+++ b/code/controllers/subsystems/virtual_reality.dm
@@ -0,0 +1,280 @@
+GLOBAL_LIST_AS(active_vr_areas , list())
+GLOBAL_LIST_AS(vr_areas, list(
+ "Plaza" = /area/virtual_reality/plaza,
+ "Courtroom" = /area/virtual_reality/courtroom,
+ "Meeting Hall" = /area/virtual_reality/meeting_hall,
+ "Theatre" = /area/virtual_reality/theatre,
+ "Cafe" = /area/virtual_reality/cafe,
+ "Temple" = /area/virtual_reality/temple,
+ "Boxing Ring" = /area/virtual_reality/boxing_ring,
+ "Empty Court" = /area/virtual_reality/empty_court,
+ "Volleyball Court" = /area/virtual_reality/volleyball_court,
+ "Basketball Court" = /area/virtual_reality/basketball_court,
+ "Thunderdome" = /area/virtual_reality/thunderdome,
+ "Beach" = /area/virtual_reality/beach,
+ "Snowy Field" = /area/virtual_reality/snowfield,
+ "Picnic Area" = /area/virtual_reality/picnic_area,
+ "Desert" = /area/virtual_reality/desert,
+ "Space" = /area/virtual_reality/space,
+ "Infirmary" = /area/virtual_reality/infirmary
+))
+GLOBAL_LIST_AS(emagged_vr_areas, list(
+ "Shady Room" = /area/virtual_reality/shady_room
+))
+
+
+/// Keeps tabs on every client currently in VR, as well as every occupant and very virtual mob.
+/// If an occupant is no longer valid in VR (i.e. pod depowered), it will yank them out and put them into their original mob.
+SUBSYSTEM_DEF(virtual_reality)
+ name = "VR"
+ priority = SS_PRIORITY_VR
+ init_order = SS_INIT_DEFAULT
+ wait = 0.5 SECONDS
+
+ var/list/virtual_mobs_to_occupants = list() // Associative list of /mob/living => /mob/living. Each virtual mob is tied to its occupant.
+ var/list/virtual_occupants_to_mobs = list() // Reverse of previous list, in case one is missing but not the other.
+ var/list/virtual_clients = list() // Associative list of /client => /mob/living. Each client is linked to its virtual mob.
+ var/list/was_warned = list() // A list of clients that have already received the disclaimer message when entering VR.
+ var/list/simulated_objects = list() // A list of all objects created inside of VR, for easy cleanup.
+
+/datum/controller/subsystem/virtual_reality/Initialize(start_timeofday)
+ GLOB.active_vr_areas["Zone 1"] = locate(/area/virtual_reality/zone1)
+ GLOB.active_vr_areas["Zone 2"] = locate(/area/virtual_reality/zone2)
+ GLOB.active_vr_areas["Zone 3"] = locate(/area/virtual_reality/zone3)
+ GLOB.vr_spawns["Zone 1"] = list()
+ GLOB.vr_spawns["Zone 2"] = list()
+ GLOB.vr_spawns["Zone 3"] = list()
+ . = ..()
+
+/datum/controller/subsystem/virtual_reality/fire(resumed = FALSE)
+ for (var/mob/living/L in virtual_occupants_to_mobs)
+ if (!check_vr(L))
+ remove_virtual_mob(L, TRUE)
+ for (var/mob/living/L in virtual_mobs_to_occupants)
+ if (!L.client) // Remove clientless virtual mobs, but NOT occupants - they're already clientless since their mind gets transferred
+ remove_virtual_mob(L)
+ listclearnulls(virtual_clients)
+
+/// Checks whether or not the provided occupant can remain inside of VR. Returns TRUE or FALSE.
+/datum/controller/subsystem/virtual_reality/proc/check_vr(mob/living/user)
+ if ((user.getBrainLoss() >= 25)) // Boot out mobs with moderate brain damage
+ return FALSE
+ if (ishuman(user))
+ var/mob/living/carbon/human/H = user
+ if (H.shock_stage >= 15) // Boot out humans in high pain
+ return FALSE
+ if (user.isSynthetic()) // And also boot out synthetics with low charge
+ if (ishuman(user))
+ var/mob/living/carbon/human/H = user
+ var/obj/item/organ/internal/cell/C = H.internal_organs_by_name[BP_CELL]
+ if(istype(C) && C.percent() <= 25)
+ return FALSE
+ var/is_valid = FALSE
+ var/obj/machinery/vr_pod/pod = user.loc
+ if (istype(pod)) // Check for a usable VR pod
+ is_valid = pod.operable()
+ else // Finally, check for a VR implant, but only if nothing else is active
+ is_valid = !!locate(/obj/item/implant/virtual_reality) in user
+ return is_valid
+
+/// Creates a virtual mob for the provided occupant. Humans will take appearance based on client prefs.
+/// Returns the instance of the mob that was created.
+/datum/controller/subsystem/virtual_reality/proc/create_virtual_mob(mob/living/new_occupant, mob_type, location, silent = FALSE)
+ var/mob/living/simulated_mob = new mob_type(location)
+ if (ishuman(simulated_mob) && ishuman(new_occupant)) // Copy human appearance for the new mob
+ var/mob/living/carbon/human/H = simulated_mob
+ new_occupant.client.prefs.copy_to(simulated_mob)
+ H.set_nutrition(400)
+ H.set_hydration(400)
+ H.job = new_occupant.job
+ H.apply_job_equipment()
+
+ for (var/obj/item/I in H)
+ if (istype(I, /obj/item/underwear))
+ I.canremove = FALSE
+ I.verbs -= /obj/item/underwear/verb/RemoveSocks
+
+ log_and_message_admins("entered VR as [simulated_mob] (assigned role: [new_occupant.mind.assigned_role]).", new_occupant)
+
+ var/datum/extension/virtual_surrogate/VM = get_or_create_extension(simulated_mob, /datum/extension/virtual_surrogate)
+ VM.set_mob(simulated_mob, src)
+
+ virtual_occupants_to_mobs[new_occupant] = simulated_mob
+ virtual_mobs_to_occupants[simulated_mob] = new_occupant
+ virtual_clients[new_occupant.client] = simulated_mob
+
+ new_occupant.mind.transfer_to(simulated_mob)
+
+ if (!silent)
+ var/dat = ""
+ dat += SPAN_NOTICE(SPAN_BOLD(FONT_LARGE("-=-=-=-
You have entered VR!
")))
+ if (!locate(simulated_mob.client) in was_warned)
+ dat += SPAN_NOTICE("You are now controlling a virtual body in a virtual environment.
")
+ dat += SPAN_NOTICE("Your normal body can be found where you entered VR, hopefully secure from outside influence.
")
+ dat += SPAN_NOTICE("You won't be able to see or hear anything around your normal body, but if your pod loses power or is forced open, you'll be returned.")
+ dat += SPAN_NOTICE("
From an in-character perspective, everything done here is simulated, and will have no direct impact on the round.
")
+ dat += SPAN_NOTICE("Of course, you're still beholden to the server's rules, and you're expected to follow them! Don't beat someone to death without asking.
")
+ dat += SPAN_NOTICE("If you die in this form, you'll be forced back to your body. You can also use the \[Exit-VR\] verb at any time, which you can find in the VR tab.
")
+ dat += SPAN_NOTICE(SPAN_BOLD(FONT_LARGE("-=-=-=-")))
+ to_chat(simulated_mob, dat)
+ playsound(simulated_mob.loc, 'sound/machines/boop1.ogg', 50)
+ simulated_mob.languages = new_occupant.languages.Copy()
+ simulated_mob.default_language = new_occupant.default_language
+ simulated_mob.lastarea = null
+ return simulated_mob
+
+/// Removes a mob from VR. Accepts both occupants and virtual mobs as a first argument.
+/// Returns TRUE if the removal succeeded.
+/datum/controller/subsystem/virtual_reality/proc/remove_virtual_mob(mob/living/removed_mob, sudden = FALSE, easter_egg_chance = 1, silent = FALSE)
+ var/mob/living/occ_mob
+ var/mob/living/vir_mob
+
+ if (virtual_occupants_to_mobs[removed_mob])
+ occ_mob = removed_mob
+ vir_mob = virtual_occupants_to_mobs[removed_mob]
+ else if (virtual_mobs_to_occupants[removed_mob])
+ occ_mob = virtual_mobs_to_occupants[removed_mob]
+ vir_mob = removed_mob
+
+ if (!vir_mob)
+ return FALSE
+
+ var/client/C = virtual_clients[vir_mob.client]
+
+ virtual_occupants_to_mobs[occ_mob] = null
+ virtual_occupants_to_mobs -= occ_mob
+ virtual_mobs_to_occupants[vir_mob] = null
+ virtual_mobs_to_occupants -= vir_mob
+ virtual_clients -= C
+
+ if (!silent)
+ var/dat = ""
+ dat += SPAN_NOTICE(SPAN_BOLD(FONT_LARGE("-=-=-=-
You have left VR!
")))
+ if (!(vir_mob.client in was_warned))
+ was_warned += vir_mob.client
+ dat += SPAN_NOTICE("You have exited virtual reality and returned to your normal body.
")
+ dat += SPAN_NOTICE("Everything that happened in VR was simulated, but it did happen. In-character, you remember all the events that transpired inside.
")
+ dat += SPAN_NOTICE("Now that you've been in and out of VR, you won't see these messages again this round.
")
+ dat += SPAN_NOTICE(SPAN_BOLD(FONT_LARGE("-=-=-=-")))
+ to_chat(vir_mob, dat)
+
+ if (!sudden)
+ vir_mob.visible_message(SPAN_NOTICE("\The [vir_mob] visibly pixelates, and then fades away."))
+ to_chat(vir_mob, SPAN_NOTICE("Your view blurs and distorts for a moment, and you feel weightless. And then, you're back in reality."))
+ else
+ vir_mob.visible_message(SPAN_WARNING("\The [vir_mob] suddenly distorts and pops out of existence."))
+ to_chat(vir_mob, SPAN_DANGER(FONT_LARGE("You're abruptly dragged back to reality!")))
+
+ if (occ_mob) // Occupier mob might have been destroyed somehow, in which case we just kill the virtual one
+ vir_mob.mind.transfer_to(occ_mob)
+ if (prob(easter_egg_chance))
+ to_chat(occ_mob, SPAN_WARNING("Just like the simulations...!"))
+ var/list/vr_buffs = occ_mob.fetch_buffs_of_type(/datum/skill_buff/virtual_reality)
+ if (vr_buffs.len)
+ for (var/datum/skill_buff/virtual_reality/VRB in vr_buffs)
+ VRB.remove()
+ occ_mob.lastarea = vir_mob.lastarea
+ QDEL_NULL(vir_mob)
+ return TRUE
+
+/// Returns the virtual mob representing the provided mob, if it has any.
+/datum/controller/subsystem/virtual_reality/proc/get_surrogate_for(mob/living/L)
+ var/mob/M = virtual_occupants_to_mobs[L]
+ if (!istype(M))
+ return
+ return M
+
+/// Inverse of get_surrogate_for - returns the occupant mob that's controlling a virtual mob.
+/datum/controller/subsystem/virtual_reality/proc/get_occupant_for(mob/living/L)
+ var/mob/M = virtual_mobs_to_occupants[L]
+ if (!istype(M))
+ return
+ return M
+
+/// Gets a list of all turfs that are valid VR entry points at call time.
+/datum/controller/subsystem/virtual_reality/proc/get_vr_spawns(zone)
+ . = list()
+ for (var/obj/effect/vr_spawn/L in GLOB.vr_spawns[zone])
+ var/turf/T = get_turf(L)
+ . += T
+
+/// Returns TRUE if a mob can enter VR, and FALSE if it can't.
+/datum/controller/subsystem/virtual_reality/proc/can_enter_vr(mob/living/target)
+ var/mob/living/carbon/human/H = target // we typecast immediately, but the typecast var is only used after sanity checks
+ if (target.isSynthetic())
+ if (ishuman(target))
+ var/obj/item/organ/internal/cell/C = H.internal_organs_by_name[BP_CELL]
+ if(istype(C) && C.percent() <= 25) // if a human has low charge, intercept
+ return FALSE
+ if (ishuman(target))
+ if (H.shock_stage > 15) // if a human is in severe pain, intercept
+ return FALSE
+ return target.getBrainLoss() < 25 // otherwise, check for moderate brain damage
+
+/datum/controller/subsystem/virtual_reality/proc/load_template(datum/nano_module/program/vr_control/vr_program, user, zone, template_area)
+ if (!zone)
+ to_chat(user, SPAN_WARNING("No VR zone selected. Cannot load template."))
+ return TRUE
+
+ var/area/zone_area = GLOB.active_vr_areas[zone]
+ if (!zone_area)
+ to_chat(user, SPAN_WARNING("The system could not find the specified VR zone: [zone]"))
+ return TRUE
+
+ var/list/the_matrix = SSvirtual_reality.virtual_occupants_to_mobs
+ var/P = GLOB.vr_areas[template_area]
+ var/area/A = locate(P)
+ if (!A)
+ P = GLOB.emagged_vr_areas[template_area]
+ A = locate(P)
+ if (!A) // if we still don't have our area after checking for emagged ones, throw an error
+ to_chat(user, SPAN_WARNING("The system could not find the specified template: [template_area]"))
+ return TRUE
+ if (zone_area == A)
+ return TRUE
+ if (the_matrix.len)
+ if (alert(user, "Switching the VR area will eject [the_matrix.len] users from the simulation. Continue?", "Change Area", "Yes", "No") != "Yes")
+ return TRUE
+ log_and_message_admins("changed the VR area to [A.name], ejecting [the_matrix.len] occupants.", user)
+ else
+ log_and_message_admins("changed the VR area to [A.name].", user)
+
+ var/loaded_normally = TRUE
+ if (!vr_program.emagged || prob(75))
+ for (var/atom/SO in simulated_objects[zone]) // Clear the entire previous template before we place another one
+ if (length(SO.contents))
+ for (var/atom/sub_SO in SO.contents)
+ qdel(sub_SO)
+ qdel(SO)
+ for (var/turf/T in zone_area)
+ if (!istype(T, /turf/unsimulated/floor/plating))
+ T.ChangeTurf(/turf/unsimulated/floor/plating)
+ else // we're emagged, just fuck our shit up a quarter of the time
+ loaded_normally = FALSE
+ var/atom/comp_holder = vr_program.program.computer.holder
+ comp_holder.audible_message(SPAN_DANGER("\The [comp_holder] buzzes oddly!"))
+ to_chat(user, SPAN_WARNING("updatevr.dm:[rand(10000, 20000)]:warning: Previous loaded template did not fully unload. Virtual space may be affected."))
+ playsound(vr_program.program.computer.holder, 'sound/machines/buzz-sigh.ogg', 50)
+
+ var/list/mobs_in_zone = mobs_in_area(zone_area)
+ for (var/mob/living/L in SSvirtual_reality.virtual_occupants_to_mobs)
+ if (L in mobs_in_zone)
+ to_chat(L, SPAN_DANGER(FONT_LARGE("ALERT: Loaded VR template reconfiguring. Terminating connection.")))
+ SSvirtual_reality.remove_virtual_mob(L, TRUE)
+
+ // in this way, we use the selected area as a template. we copy all of its contents to the actual area,
+ // allowing users to "reset" the template by refreshing it
+ var/area/active_area = zone_area
+ simulated_objects[zone] = A.copy_contents_to(active_area)
+ active_area.forced_ambience = A.forced_ambience
+ active_area.dynamic_lighting = A.dynamic_lighting
+ active_area.sound_env = A.sound_env
+ GLOB.vr_spawns[zone] = list()
+ for (var/obj/effect/vr_spawn/V in active_area)
+ GLOB.vr_spawns[zone] += V
+
+ to_chat(user, SPAN_NOTICE("Successfully loaded new area: [A.name]!"))
+ if (loaded_normally)
+ playsound(vr_program.program.computer.holder, 'sound/machines/ping.ogg', 50)
+ vr_program.area_cooldown = world.time + 30 SECONDS
+ return TRUE
diff --git a/code/datums/extensions/virtual_surrogate.dm b/code/datums/extensions/virtual_surrogate.dm
new file mode 100644
index 0000000000000..9ff1f94a99613
--- /dev/null
+++ b/code/datums/extensions/virtual_surrogate.dm
@@ -0,0 +1,84 @@
+// Attached to surrogate mobs that are being controlled by a living occupant in VR.
+// Virtual mobs can return to their occupant at any time, and vanish on death.
+// This file also includes VR-related verbs.
+// This extension has a lot of custom logic. Gibbing and brainmobs are disabled on virtual mobs, for instance.
+/datum/extension/virtual_surrogate
+ base_type = /datum/extension/virtual_surrogate
+ expected_type = /mob
+
+ var/mob/living/virtual_mob
+ var/mob/living/real_mob
+
+/datum/extension/virtual_surrogate/Destroy()
+ GLOB.death_event.unregister(virtual_mob, SSvirtual_reality, /datum/controller/subsystem/virtual_reality/proc/remove_virtual_mob)
+ GLOB.death_event.unregister(real_mob, SSvirtual_reality, /datum/controller/subsystem/virtual_reality/proc/remove_virtual_mob)
+ GLOB.destroyed_event.unregister(virtual_mob, SSvirtual_reality, /datum/controller/subsystem/virtual_reality/proc/remove_virtual_mob)
+ GLOB.destroyed_event.unregister(real_mob, SSvirtual_reality, /datum/controller/subsystem/virtual_reality/proc/remove_virtual_mob)
+ . = ..()
+
+/datum/extension/virtual_surrogate/proc/set_mob(mob/living/new_mob)
+ real_mob = new_mob
+ virtual_mob = holder
+ new_mob.verbs += /mob/living/proc/exit_vr_mob
+ new_mob.verbs += /mob/living/proc/clear_reagents_vr
+ new_mob.verbs += /mob/living/proc/rejuvenate_self_vr
+ new_mob.verbs += /mob/living/proc/toggle_max_skills_vr
+ GLOB.death_event.register(virtual_mob, SSvirtual_reality, /datum/controller/subsystem/virtual_reality/proc/remove_virtual_mob, virtual_mob)
+ GLOB.death_event.register(real_mob, SSvirtual_reality, /datum/controller/subsystem/virtual_reality/proc/remove_virtual_mob, real_mob)
+ GLOB.destroyed_event.register(virtual_mob, SSvirtual_reality, /datum/controller/subsystem/virtual_reality/proc/remove_virtual_mob, real_mob)
+ GLOB.destroyed_event.register(real_mob, SSvirtual_reality, /datum/controller/subsystem/virtual_reality/proc/remove_virtual_mob, real_mob)
+
+/// VR verbs. Being completely virtual, people controlling VR mobs can do a bunch of stuff.
+/mob/living/proc/exit_vr_mob()
+ set name = "\[Exit VR\]"
+ set desc = "Exits your virtual mob, and returns to your normal body."
+ set category = "VR"
+ set src = usr
+
+ SSvirtual_reality.remove_virtual_mob(src)
+
+/mob/living/proc/clear_reagents_vr()
+ set name = "Clear Reagents"
+ set desc = "Removes any reagents in your stomach and bloodstream."
+ set category = "VR"
+ set src = usr
+
+ if (reagents)
+ to_chat(usr, SPAN_NOTICE("You clear your virtual body of reagents."))
+ reagents.clear_reagents()
+
+/mob/living/proc/rejuvenate_self_vr()
+ set name = "Rejuvenate"
+ set desc = "Fully undoes any kind of damage on your body, as well as clearing reagents and stuns."
+ set category = "VR"
+ set src = usr
+
+ rejuvenate()
+ if (ishuman(src))
+ var/mob/living/carbon/human/H = src
+ usr.client.prefs.copy_to(H) // Redo hair, augments, and limbs after rejuvenating
+ H.set_nutrition(400)
+ H.set_hydration(400)
+ to_chat(usr, SPAN_NOTICE("You fully rejuvenate your virtual body."))
+
+/datum/skill_buff/virtual_reality
+ limit = 1
+
+/mob/living/proc/toggle_max_skills_vr()
+ set name = "Toggle Max Skills"
+ set desc = "Become a master in all skills. Useful for allowing you to compare your own skills to a fully-learned professional's."
+ set category = "VR"
+ set src = usr
+
+ var/mob/living/user = usr
+ var/list/vr_buffs = user.fetch_buffs_of_type(/datum/skill_buff/virtual_reality)
+ if (vr_buffs.len)
+ for (var/datum/skill_buff/virtual_reality/VRB in vr_buffs)
+ VRB.remove()
+ to_chat(user, SPAN_NOTICE("You fall back to your own skills, remembering your own knowledge and training."))
+ else
+ var/list/buffs = list()
+ for (var/singleton/hierarchy/skill/S in GLOB.skills)
+ buffs[S.type] = SKILL_MAX
+ user.buff_skill(buffs, buff_type = /datum/skill_buff/virtual_reality)
+ to_chat(user, SPAN_NOTICE("You connect yourself to a database and augment your skills. Your virtual body is now a master in all skills."))
diff --git a/code/datums/security_state.dm b/code/datums/security_state.dm
index f4cd3472c327f..d1e2f32c572e8 100644
--- a/code/datums/security_state.dm
+++ b/code/datums/security_state.dm
@@ -124,6 +124,14 @@
for(var/thing in SSpsi.psi_dampeners)
var/obj/item/implant/psi_control/implant = thing
implant.update_functionality()
+
+ if (new_security_level.kick_vr_users) // wake the fuck up, samurai
+ for (var/mob/living/M in SSvirtual_reality.virtual_occupants_to_mobs)
+ var/turf/T = get_turf(M)
+ if (T.z in GLOB.using_map.contact_levels)
+ var/mob/living/surrogate = SSvirtual_reality.virtual_occupants_to_mobs[M]
+ to_chat(surrogate, SPAN_DANGER(FONT_LARGE("ALERT: VR is no longer safe to use. Connection terminated.")))
+ SSvirtual_reality.remove_virtual_mob(M, TRUE, silent = TRUE)
log_and_message_admins("has changed the security level from [previous_security_level.name] to [new_security_level.name].")
return TRUE
@@ -154,6 +162,8 @@
var/down_description
var/psionic_control_level = PSI_IMPLANT_WARN
+ var/kick_vr_users = FALSE
+
// Called when we're switching from a lower security level to this one.
/singleton/security_level/proc/switching_up_to()
return
diff --git a/code/datums/uplink/implants.dm b/code/datums/uplink/implants.dm
index fa8e08f5bd7ed..c38dc8ddd47a2 100644
--- a/code/datums/uplink/implants.dm
+++ b/code/datums/uplink/implants.dm
@@ -47,3 +47,11 @@
desc = "An implant that will materialize spiders from bluespace near the victim, every minute on average."
item_cost = 45
path = /obj/item/storage/box/syndie_kit/imp_spider
+
+/datum/uplink_item/item/implants/imp_vr
+ name = "VR Implant"
+ desc = "With this implant, you can remotely access the shared digital space maintained by VR pods, allowing you to enter VR at any time. \
+ NOTE: You will have absolutely no way of knowing what's happening to your body while you're in VR. Use carefully."
+ item_cost = 16
+ path = /obj/item/storage/box/syndie_kit/imp_virtual_reality
+ antag_roles = list(MODE_TRAITOR)
diff --git a/code/game/area/Space Station 13 areas.dm b/code/game/area/Space Station 13 areas.dm
index a7e9a8e50a87c..7c944d23748e6 100644
--- a/code/game/area/Space Station 13 areas.dm
+++ b/code/game/area/Space Station 13 areas.dm
@@ -233,6 +233,91 @@ NOTE: there are two lists of areas in the end of this file: centcom and station
icon_state = "syndie-elite"
req_access = list(access_syndicate)
+// VR (still used by code)
+
+/area/virtual_reality/zone1
+ name = "\improper Virtual Reality Zone 1"
+ icon_state = "vr_suites"
+ dynamic_lighting = FALSE
+ requires_power = FALSE
+ ambience = list()
+
+/area/virtual_reality/zone2
+ name = "\improper Virtual Reality Zone 2"
+ icon_state = "vr_suites"
+ dynamic_lighting = FALSE
+ requires_power = FALSE
+ ambience = list()
+
+/area/virtual_reality/zone3
+ name = "\improper Virtual Reality Zone 3"
+ icon_state = "vr_suites"
+ dynamic_lighting = FALSE
+ requires_power = FALSE
+ ambience = list()
+
+/area/virtual_reality/infirmary
+ name = "\improper Virtual Reality - Infirmary"
+ requires_power = FALSE
+ dynamic_lighting = FALSE
+
+/area/virtual_reality/shady_room
+ name = "\improper Virtual Reality - Shady Room"
+ dynamic_lighting = TRUE
+ forced_ambience = list('sound/ambience/maintambience.ogg')
+
+/area/virtual_reality/beach
+ name = "\improper Virtual Reality - Beach"
+ sound_env = PLAIN
+ forced_ambience = list('sound/music/europa/WildEncounters.ogg')
+
+/area/virtual_reality/plaza
+ name = "\improper Virtual Reality - Plaza"
+
+/area/virtual_reality/volleyball_court
+ name = "\improper Virtual Reality - Volleyball Court"
+
+/area/virtual_reality/desert
+ name = "\improper Virtual Reality - Desert"
+
+/area/virtual_reality/picnic_area
+ name = "\improper Virtual Reality - Picnic Area"
+
+/area/virtual_reality/theatre
+ name = "\improper Virtual Reality - Theatre"
+
+/area/virtual_reality/courtroom
+ name = "\improper Virtual Reality - Courtroom"
+
+/area/virtual_reality/empty_court
+ name = "\improper Virtual Reality - Empty Court"
+
+/area/virtual_reality/temple
+ name = "\improper Virtual Reality - Temple"
+
+/area/virtual_reality/cafe
+ name = "\improper Virtual Reality - Cafe"
+
+/area/virtual_reality/space
+ name = "\improper Virtual Reality - Space"
+
+/area/virtual_reality/snowfield
+ name = "\improper Virtual Reality - Snowfield"
+
+/area/virtual_reality/meeting_hall
+ name = "\improper Virtual Reality - Meeting Hall"
+
+/area/virtual_reality/basketball_court
+ name = "\improper Virtual Reality - Basketball Court"
+
+/area/virtual_reality/thunderdome
+ name = "\improper Virtual Reality - Thunderdome"
+ forced_ambience = list('sound/music/THUNDERDOME.ogg')
+
+/area/virtual_reality/boxing_ring
+ name = "\improper Virtual Reality - Boxing Ring"
+
+
////////////
//SHUTTLES//
////////////
diff --git a/code/game/machinery/vr/vr_pod.dm b/code/game/machinery/vr/vr_pod.dm
new file mode 100644
index 0000000000000..7741adfe72806
--- /dev/null
+++ b/code/game/machinery/vr/vr_pod.dm
@@ -0,0 +1,274 @@
+/obj/machinery/vr_pod
+ name = "\improper VR pod"
+ desc = "An advanced machine that simulates extremely lifelike environments and sensations. Useful for hands-on training as well as recreation."
+ icon = 'icons/obj/machines/medical/cryopod.dmi'
+ icon_state = "redpod0"
+ density = TRUE
+ anchored = TRUE
+ clicksound = 'sound/machines/pda_click.ogg'
+ clickvol = 30
+ base_type = /obj/machinery/vr_pod
+ construct_state = /singleton/machine_construction/default/panel_closed
+ idle_power_usage = 15
+ active_power_usage = 1 KILOWATTS
+
+ var/mob/living/carbon/human/occupant // The person using the pod.
+ var/hatch_locked // If TRUE, the occupant can't exit, and also can't be ejected.
+ var/antispam = 0 // Used to prevent message spam when trying to move out of a locked pod.
+ var/selected_zone
+
+/obj/machinery/vr_pod/Initialize()
+ . = ..()
+ if (prob(1))
+ desc = "Don't even think about it."
+
+/obj/machinery/vr_pod/Destroy()
+ if (occupant)
+ eject()
+ ..()
+
+/obj/machinery/vr_pod/attack_hand(mob/user)
+ if (SSvirtual_reality.virtual_mobs_to_occupants[user] == occupant)
+ unsimulate()
+ return
+ if (occupant != user)
+ if (user.a_intent == I_HURT && occupant != user)
+ user.visible_message(
+ SPAN_DANGER("\The [user] bangs on \the [src]'s glass!"),
+ SPAN_DANGER("You bang on \the [src]'s glass!")
+ )
+ user.do_attack_animation(src)
+ user.setClickCooldown(DEFAULT_ATTACK_COOLDOWN)
+ playsound(loc, 'sound/effects/glassknock.ogg', 80, TRUE)
+ var/mob/living/L = SSvirtual_reality.virtual_occupants_to_mobs[occupant]
+ if (L)
+ to_chat(L, SPAN_DANGER(FONT_LARGE("You hear loud thumping as someone bangs on the glass to your pod!")))
+ L.playsound_local(L.loc, 'sound/effects/glassknock.ogg', 80, TRUE)
+ return
+ if (user.a_intent == I_GRAB && occupant)
+ if (hatch_locked)
+ if (antispam <= world.time)
+ to_chat(user, SPAN_WARNING("\The [src]'s hatch is locked!"))
+ antispam = world.time + 5
+ return
+ user.visible_message(
+ SPAN_WARNING("\The [user] opens \the [src]'s hatch, ejecting \the [occupant]!"),
+ SPAN_WARNING("You eject \the [occupant] from \the [src].")
+ )
+ eject()
+ return
+ . = ..()
+
+/obj/machinery/vr_pod/use_tool(obj/item/I, mob/living/user)
+ if ((isCrowbar(I) || istype(I, /obj/item/natural_weapon)) && user.a_intent != I_HELP)
+ if (hatch_locked)
+ user.visible_message(
+ SPAN_WARNING("\The [user] starts prying open \the [src]'s hatch!"),
+ SPAN_DANGER("You start trying to pry open \the [src]...")
+ )
+ playsound(loc,'sound/machines/airlock_creaking.ogg', 75)
+ var/mob/living/L = SSvirtual_reality.virtual_occupants_to_mobs[occupant]
+ if (L)
+ to_chat(L, SPAN_DANGER(FONT_LARGE("You hear a loud groaning sound as something starts trying to force open your pod!")))
+ L.playsound_local(L.loc,'sound/machines/airlock_creaking.ogg', 75)
+ if (!do_after(user, 5 SECONDS, src))
+ return TRUE
+ user.visible_message(
+ SPAN_WARNING("\The [user] pries open \the [src]!"),
+ SPAN_DANGER("You force open \the [src], ejecting its occupant.")
+ )
+ playsound(loc, 'sound/items/Deconstruct.ogg', 75)
+ eject()
+ return TRUE
+ . = ..()
+
+/obj/machinery/vr_pod/examine(mob/user, distance)
+ . = ..()
+ if (occupant && distance <= 1)
+ to_chat(user, SPAN_NOTICE("You can see \the [occupant] inside..."))
+ user.examine(occupant)
+
+/obj/machinery/vr_pod/MouseDrop_T(mob/living/target, mob/living/user)
+ if (!CanMouseDrop(target, user))
+ return
+ if (!istype(target))
+ return
+ if (target.buckled)
+ to_chat(user, SPAN_WARNING("\The [target] is buckled to \the [target.buckled]!"))
+ return
+ if (panel_open)
+ to_chat(user, SPAN_WARNING("\The [src]'s maintenance panel is open!"))
+ return
+ if (occupant)
+ to_chat(user, SPAN_WARNING("\The [src] is occupied!"))
+ return
+ if (has_extension(user, /datum/extension/virtual_surrogate))
+ to_chat(user, SPAN_WARNING("[user == target ? "You are" : "\The [target] is"] already a virtual surrogate. That might result in a paradox."))
+ return
+ enter_pod(target, user)
+
+/obj/machinery/vr_pod/proc/enter_pod(mob/living/target, mob/living/user)
+ if (GET_FLAGS(stat, MACHINE_STAT_NOPOWER) || GET_FLAGS(stat, MACHINE_BROKEN_GENERIC))
+ return
+ if (user == target)
+ user.visible_message(
+ SPAN_NOTICE("\The [user] starts climbing into \the [src]."),
+ SPAN_NOTICE("You start climbing into \the [src].")
+ )
+ else
+ user.visible_message(
+ SPAN_NOTICE("\The [user] starts putting \the [target] into \the [src]."),
+ SPAN_NOTICE("You start putting \the [target] into \the [src].")
+ )
+ if (!do_after(user, 3 SECONDS, target))
+ return
+ if (occupant)
+ to_chat(user, SPAN_WARNING("Someone entered \the [src] before you[user == target ? "" : " finished"]!"))
+ return
+ if (!target.Adjacent(src))
+ return
+ set_occupant(target)
+ return TRUE
+
+/obj/machinery/vr_pod/proc/exit_pod(forced = FALSE)
+ if (!occupant)
+ return
+ if (hatch_locked && !forced)
+ to_chat(occupant, SPAN_WARNING("\The [src]'s hatch is locked!"))
+ return
+ if (occupant.client)
+ occupant.client.eye = occupant.client.mob
+ occupant.client.perspective = MOB_PERSPECTIVE
+ occupant.dropInto(loc)
+ if (!forced)
+ occupant.visible_message(
+ SPAN_NOTICE("\The [occupant] climbs out of \the [src]."),
+ SPAN_NOTICE("You exit \the [src].")
+ )
+ else
+ hatch_locked = FALSE
+ set_occupant(null)
+
+ for(var/obj/O in (contents - component_parts))
+ O.dropInto(loc)
+
+/obj/machinery/vr_pod/proc/eject()
+ if (SSvirtual_reality.virtual_occupants_to_mobs[occupant])
+ SSvirtual_reality.remove_virtual_mob(occupant, TRUE)
+ else
+ to_chat(occupant, SPAN_DANGER("You're forced out of your pod!"))
+ occupant.Weaken(3)
+ occupant.mod_confused(20)
+ exit_pod(TRUE)
+
+/obj/machinery/vr_pod/relaymove(mob/living/user)
+ ..()
+ exit_pod()
+
+/obj/machinery/vr_pod/proc/set_occupant(mob/living/new_occupant)
+ occupant = new_occupant
+ update_icon()
+ if (!new_occupant)
+ SetName(initial(name))
+ update_use_power(POWER_USE_IDLE)
+ playsound(loc, 'sound/machines/windowdoor.ogg', 50, TRUE)
+ return
+ to_chat(new_occupant, SPAN_NOTICE("\The [src] hisses shut, cutting off the outside world. A touchscreen menu appears on the glass above you. \
+ \nInteract with \the [src] from inside to configure it and begin a simulation."))
+ playsound(loc, 'sound/machines/windowdoor.ogg', 50, TRUE)
+ new_occupant.forceMove(src)
+ new_occupant.stop_pulling()
+ if (new_occupant.client)
+ new_occupant.client.perspective = EYE_PERSPECTIVE
+ new_occupant.client.eye = src
+ SetName("[name] ([new_occupant])")
+ update_use_power(POWER_USE_ACTIVE)
+
+/obj/machinery/vr_pod/proc/select_zone(zone_name)
+ if (!zone_name || !GLOB.active_vr_areas[zone_name])
+ to_chat(occupant, SPAN_WARNING("The system could not find the specified VR zone: [zone_name]"))
+ return FALSE
+ selected_zone = zone_name
+ to_chat(occupant, SPAN_NOTICE("Selected VR zone: [selected_zone]"))
+ return TRUE
+
+/obj/machinery/vr_pod/proc/simulate(mob_type, zone)
+ if (!zone)
+ to_chat(occupant, SPAN_WARNING("You must select a VR zone before starting a simulation."))
+ return
+ if (!SSvirtual_reality.can_enter_vr(occupant))
+ to_chat(occupant, SPAN_WARNING("\The [initial(name)] buzzes. It won't activate with your current vital signs."))
+ return
+ var/singleton/security_state/security_state = GET_SINGLETON(GLOB.using_map.security_state)
+ if (security_state.current_security_level.kick_vr_users)
+ to_chat(occupant, SPAN_WARNING("\The [initial(name)] refuses to activate during the ship's current alert level!"))
+ return
+ var/list/spawn_locs = SSvirtual_reality.get_vr_spawns(zone)
+ if (!spawn_locs.len)
+ to_chat(occupant, SPAN_WARNING("Your [initial(name)] blips as it fails to find a valid location to project you to."))
+ return
+ playsound(src, 'sound/machines/signal.ogg', 100)
+ var/mob/living/simulated_mob = SSvirtual_reality.create_virtual_mob(occupant, mob_type, pick(spawn_locs))
+ simulated_mob.visible_message(
+ SPAN_NOTICE("The world shimmers and distorts. There's a small *pop* as \the [simulated_mob] appears from nothing."),
+ SPAN_NOTICE("Your pod fills with light and sound. You feel weightless and disoriented. And then, suddenly, you're someone else!")
+ )
+ audible_message(SPAN_NOTICE("\The [src] emits a series of beeping and clicks as it shunts its occupant into virtual reality."))
+ return TRUE
+
+/obj/machinery/vr_pod/proc/unsimulate()
+ if (!occupant)
+ return
+ SSvirtual_reality.remove_virtual_mob(occupant)
+ audible_message(SPAN_NOTICE("\The [src] chimes as it drags its occupant back to the real world."))
+ playsound(src, 'sound/machines/chime.ogg', 100, FALSE)
+
+/obj/machinery/vr_pod/CanUseTopic(mob/user)
+ if(user != occupant && !SSvirtual_reality.virtual_occupants_to_mobs[user])
+ to_chat(user, SPAN_WARNING("You can only control \the [src] from the inside."))
+ return STATUS_CLOSE
+ . = ..()
+
+/obj/machinery/vr_pod/OnTopic(mob/user, href_list, datum/topic_state/state)
+ if (href_list["toggle_lock"])
+ hatch_locked = !hatch_locked
+ to_chat(user, SPAN_NOTICE("You [hatch_locked ? "" : "un"]lock \the [src]'s hatch."))
+ if (hatch_locked) // Can't support inline conditionals here due to needing explicit file references
+ playsound(loc, 'sound/machines/bolts_down.ogg', 50)
+ else
+ playsound(loc, 'sound/machines/bolts_up.ogg', 50)
+ . = TOPIC_REFRESH
+ else if (href_list["simulate"])
+ if (simulate(user.type, selected_zone))
+ selected_zone = null
+ close_browser(user, "window=vrpod")
+ . = TOPIC_HANDLED
+ else if (href_list["select_zone"])
+ selected_zone = href_list["select_zone"]
+ to_chat(user, SPAN_NOTICE("Selected VR zone: [selected_zone]"))
+ . = TOPIC_REFRESH
+
+ if (. == TOPIC_REFRESH)
+ interface_interact(user)
+
+/obj/machinery/vr_pod/interface_interact(mob/user)
+ var/dat = ""
+ dat += "[hatch_locked ? "Unlock" : "Lock"] Hatch
"
+ dat += "Selected VR Zone: [selected_zone ? selected_zone : "None"]
"
+ for (var/zone in GLOB.active_vr_areas)
+ dat += "[zone]
"
+ dat += "
"
+ dat += "Begin Simulation"
+
+ var/datum/browser/popup = new(usr, "vrpod", "[initial(name)]", 250, 200)
+ popup.set_content(dat)
+ popup.open()
+ return TRUE
+
+/obj/machinery/vr_pod/on_update_icon()
+ if(!occupant)
+ icon_state = "redpod0"
+ else if(GET_FLAGS(stat, MACHINE_BROKEN_GENERIC) || GET_FLAGS(stat, MACHINE_STAT_NOPOWER))
+ icon_state = "redpod2"
+ else
+ icon_state = "redpod1"
diff --git a/code/game/objects/effects/virtual_reality.dm b/code/game/objects/effects/virtual_reality.dm
new file mode 100644
index 0000000000000..916aa3acac4ed
--- /dev/null
+++ b/code/game/objects/effects/virtual_reality.dm
@@ -0,0 +1,11 @@
+// This file holds different objects used to facilitate the VR system.
+
+// Used to mark spawn locations for VR. unlike landmarks, these aren't deleted, and are kept after template copy to designate valid spawn locations
+/obj/effect/vr_spawn
+ name = "vr spawn"
+ icon = 'icons/effects/landmarks.dmi'
+ icon_state = "x2"
+ anchored = TRUE
+ unacidable = TRUE
+ //simulated = FALSE // keeping this for posterity - the area copy_contents_to proc doesn't copy unsimulated objects, so we need this as-is
+ invisibility = 101
diff --git a/code/game/objects/items/weapons/circuitboards/machinery/household.dm b/code/game/objects/items/weapons/circuitboards/machinery/household.dm
index 48b8c71a66c00..e9d76370d6814 100644
--- a/code/game/objects/items/weapons/circuitboards/machinery/household.dm
+++ b/code/game/objects/items/weapons/circuitboards/machinery/household.dm
@@ -100,3 +100,15 @@
/obj/item/stock_parts/keyboard = 1,
/obj/item/stock_parts/power/apc/buildable = 1
)
+
+/obj/item/stock_parts/circuitboard/vr_pod
+ name = "circuit board (VR pod)"
+ build_path = /obj/machinery/vr_pod
+ board_type = "machine"
+ origin_tech = list(TECH_DATA = 4, TECH_ENGINEERING = 2)
+ req_components = list(
+ /obj/item/stock_parts/capacitor = 2,
+ /obj/item/stock_parts/scanning_module/adv = 1,
+ /obj/item/stock_parts/manipulator = 2,
+ /obj/item/stack/cable_coil = 5
+ )
diff --git a/code/game/objects/items/weapons/implants/implants/virtual_reality.dm b/code/game/objects/items/weapons/implants/implants/virtual_reality.dm
new file mode 100644
index 0000000000000..8dac635fa2f7b
--- /dev/null
+++ b/code/game/objects/items/weapons/implants/implants/virtual_reality.dm
@@ -0,0 +1,66 @@
+/obj/item/implant/virtual_reality
+ name = "\improper VR implant"
+ desc = "Allows remote access to VR, anywhere, anytime."
+ origin_tech = list(TECH_MATERIAL = 2, TECH_BIO = 2, TECH_DATA = 3)
+ var/activation_emote
+
+/obj/item/implant/virtual_reality/get_data()
+ return {"
+ Implant Specifications:
+ Name: Ward-Takahashi VR Dual-Link Implant
+ Life: One year.
+ Important Notes: Reroutes brain stimuli into a virtual surrogate.
+
+ Implant Details: Allows remote access to the virtual space shared by VR pods. With this implant, you don't need to enter a pod to actually access VR.
+ Function: On activation, creates a virtual surrogate in exactly the same way as a VR pod. Your normal body will immediately collapse and be rendered unconscious, so make sure you're laying down or somewhere safe!
+ Special Features: Like a VR pod, the implant will fully block all external stimuli. Unlike a VR pod, you won't be dragged back to reality if you're moved or your pod malfunctions. You will have no way of knowing what's happening to your biological body without exiting VR."}
+
+/obj/item/implant/virtual_reality/trigger(emote, mob/source)
+ if (emote == activation_emote)
+ activate()
+
+/obj/item/implant/virtual_reality/activate()
+ if (!SSvirtual_reality.can_enter_vr(imp_in))
+ to_chat(imp_in, SPAN_WARNING("Your implant blips inside of your head as its safety mechanisms prevent you from activating it."))
+ return
+ var/singleton/security_state/security_state = GET_SINGLETON(GLOB.using_map.security_state)
+ if (security_state.current_security_level.kick_vr_users)
+ to_chat(imp_in, SPAN_WARNING("Your implant refuses to activate. Wherever the VR space is hosted, it's gone to high alert and disabled connection."))
+ return
+ var/list/spawn_locs = SSvirtual_reality.get_vr_spawns()
+ if (!spawn_locs.len)
+ to_chat(imp_in, SPAN_WARNING("You briefly go lightheaded but then return to normal as your implant fails to find a spot to send you."))
+ return
+ imp_in.visible_message(
+ SPAN_WARNING("\The [imp_in] abruptly stiffens and goes unresponsive."),
+ SPAN_NOTICE("Your awareness rapidly shifts as your VR implant activates.")
+ )
+ SSvirtual_reality.create_virtual_mob(imp_in, imp_in.type, pick(spawn_locs))
+
+/obj/item/implant/virtual_reality/emp_act(severity)
+ var/mob/living/carbon/human/C = imp_in
+ if (istype(C) && C.can_feel_pain())
+ C.custom_pain("Your head suddenly reverberates with agony!", 200)
+ C.playsound_local(C.loc, 'sound/misc/interference.ogg', 100)
+ C.Weaken(4)
+ var/mob/living/carbon/human/virtual_mob = SSvirtual_reality.virtual_occupants_to_mobs[imp_in]
+ if (istype(virtual_mob) && virtual_mob.can_feel_pain())
+ virtual_mob.custom_pain("Your head suddenly reverberates with agony!", 200)
+ virtual_mob.playsound_local(virtual_mob.loc, 'sound/misc/interference.ogg', 100)
+ virtual_mob.Weaken(4)
+ . = ..()
+
+/obj/item/implant/virtual_reality/implanted(mob/source)
+ activation_emote = input("Choose activation emote:") in list("blink", "blink_r", "eyebrow", "chuckle", "twitch_v", "frown", "nod", "blush", "giggle", "grin", "groan", "shrug", "smile", "pale", "sniff", "whimper", "wink")
+ if (source.mind)
+ source.StoreMemory("Your VR implant can be activated by using the [activation_emote] emote, say *[activation_emote] to attempt to activate.", /singleton/memory_options/system)
+ to_chat(source, "The VR implant can be activated by using the [activation_emote] emote, say *[activation_emote] to attempt to activate.")
+ return TRUE
+
+/obj/item/implanter/virtual_reality
+ name = "implanter-VR"
+ imp = /obj/item/implant/virtual_reality
+
+/obj/item/implantcase/virtual_reality
+ name = "glass case - 'VR'"
+ imp = /obj/item/implant/virtual_reality
diff --git a/code/game/objects/items/weapons/storage/uplink_kits.dm b/code/game/objects/items/weapons/storage/uplink_kits.dm
index 63a4b82a1a659..6ebfe0f99883a 100644
--- a/code/game/objects/items/weapons/storage/uplink_kits.dm
+++ b/code/game/objects/items/weapons/storage/uplink_kits.dm
@@ -54,6 +54,9 @@
/obj/item/material/coin/challenge/syndie = 5
)
+/obj/item/storage/box/syndie_kit/imp_virtual_reality
+ startswith = list(/obj/item/implanter/virtual_reality)
+
// Space suit uplink kit
/obj/item/storage/backpack/satchel/syndie_kit/space
//name = "\improper EVA gear pack"
diff --git a/code/modules/codex/entries/machinery.dm b/code/modules/codex/entries/machinery.dm
index 513f6a1a92fdb..91d4153e35b9d 100644
--- a/code/modules/codex/entries/machinery.dm
+++ b/code/modules/codex/entries/machinery.dm
@@ -24,3 +24,19 @@
/datum/codex_entry/drone_pad
associated_paths = list(/obj/machinery/drone_pad)
mechanics_text = "This machine serves as a delivery point for payloads. Each additional pad in a network can handle an additional delivery. Use a multitool to set the network."
+
+/datum/codex_entry/vr
+ associated_paths = list(/obj/machinery/vr_pod)
+ mechanics_text = "VR pods are full-body beds that can send a user into virtual reality. While in VR, you'll effectively control a different person inside a virtual space, bringing along none of your belongings and being unable to see or hear around your normal self.
\
+ \
+ VR affords a great deal of freedom. Several new verbs, found in the VR tab, allow you to do things such as heal your virtual body, as well as maxing out all of your skills. It's an ideal place to test out and learn new things before you do them in person. You'll be able to interact with anyone else that's using VR in the same area, as well.
\
+ \
+ When you exit VR, you'll drop all the items your digital body had so that they aren't removed from the simulation. You'll be forced out if your pod is opened or if your virtual body dies. Obviously, dying in real life will cancel your VR session.
"
+
+ lore_text = "VR tech really took off after the 21st century, but simulating entire detailed worlds takes a lot of processing power and is mostly a novelty. It's possible in some places - usually tourist destinations - but nothing of the sort in this humble little pod. Simulated environments are an excellent place for hands-on training and experience without risking danger in the real world, and are especially useful for learning delicate procedures like surgery without any risk of collateral damage.
\
+ \
+ This design is manufactured by Ward-Takahashi. It's unassuming on the outside and inside, but it works by physically intercepting and altering the stimuli your brain receives to effectively shift your entire perception into that of your virtual body, making it feel like you're really there. This is also why you're incapable of seeing, hearing, or feeling anything from your normal body when you're in VR - with a few exceptions.
"
+
+ antag_text = "If you're looking for a place for a covert meeting or discussion where nobody can spy on you without having to make themselves known, a VR room might be just the thing you need.
\
+ \
+ Under normal circumstances, the pod's design provides a complete separation between the stimuli of the an occupant and their virtual self. However, settings exist to allow partial or full mirroring of some things. This is usually used to help ease people into using VR, but with the right tools, you could do other things with it. Like hurting people.
"
diff --git a/code/modules/holodeck/HolodeckObjects.dm b/code/modules/holodeck/HolodeckObjects.dm
index c81ea3d58dda4..7f664537a0d81 100644
--- a/code/modules/holodeck/HolodeckObjects.dm
+++ b/code/modules/holodeck/HolodeckObjects.dm
@@ -38,6 +38,13 @@
icon_state = "steel"
initial_flooring = /singleton/flooring/tiling
+/turf/simulated/floor/holofloor/tiled/white
+ name = "holo deck"
+ desc = "Get it?"
+ icon = 'icons/turf/flooring/tiles.dmi'
+ icon_state = "white"
+ initial_flooring = /singleton/flooring/tiling/white
+
/turf/simulated/floor/holofloor/tiled/dark
name = "dark floor"
icon_state = "dark"
@@ -437,3 +444,39 @@
/mob/living/simple_animal/hostile/carp/holodeck/death()
..(null, "fades away!", "You have been destroyed.")
qdel(src)
+
+/obj/machinery/button/medical_dummy_creator
+ name = "Medical Patience Creator"
+ desc = "Press to create a fully simulated human patient for medical training purposes."
+ var/list/patients = list()
+ var/maximum_patients = 5
+
+/obj/machinery/button/medical_dummy_creator/activate(mob/living/user)
+ . = ..()
+ if (length(patients) >= maximum_patients)
+ to_chat(user, SPAN_WARNING("Maximum number of simulated patients reached. Please remove an existing patient before creating a new one."))
+ return
+
+ var/mob/living/carbon/human/medical_dummy = new(loc)
+ patients += medical_dummy
+ GLOB.destroyed_event.register(medical_dummy, src, PROC_REF(remove_patient))
+ visible_message(SPAN_NOTICE("A generic, starkly naked human materializes out of nothing!"))
+
+/obj/machinery/button/medical_dummy_creator/proc/remove_patient(mob/living/carbon/human/target)
+ patients -= target
+ GLOB.destroyed_event.unregister(target, src)
+
+/obj/machinery/button/medical_dummy_disintigrator
+ name = "Medical Patience Disintegrator"
+ desc = "Press to delete a non-sentient simulated human."
+
+/obj/machinery/button/medical_dummy_disintigrator/activate(mob/living/user)
+ . = ..()
+
+ var/mob/living/carbon/human/medical_dummy = locate(/mob/living/carbon/human) in loc
+ if (medical_dummy.client)
+ to_chat(user, SPAN_WARNING("You cannot delete a user controlled avatar!"))
+ playsound(user, 'sound/machines/buzz-two.ogg', 50, 1)
+ return
+ visible_message(SPAN_DANGER("\The [medical_dummy] dissapears in a momentarily blip."))
+ qdel(medical_dummy)
diff --git a/code/modules/mob/living/carbon/carbon.dm b/code/modules/mob/living/carbon/carbon.dm
index fb12e64465cd1..5949b4c2b5056 100644
--- a/code/modules/mob/living/carbon/carbon.dm
+++ b/code/modules/mob/living/carbon/carbon.dm
@@ -235,8 +235,12 @@
var/mob/living/carbon/human/H = src
if(istype(H)) show_ssd = H.species.show_ssd
if(show_ssd && ssd_check())
+ var/mob/living/surrogate = SSvirtual_reality.virtual_occupants_to_mobs[H]
M.visible_message(SPAN_NOTICE("[M] shakes [src] trying to wake [P.him] up!"), \
- SPAN_NOTICE("You shake [src], but they do not respond... Maybe they have S.S.D?"))
+ SPAN_NOTICE("You shake [src], but they do not respond... [surrogate ? "" : " Maybe they have S.S.D?"]"))
+ if (surrogate)
+ to_chat(surrogate, SPAN_NOTICE(FONT_LARGE("Someone is shaking your body!")))
+ surrogate.playsound_local(surrogate.loc, 'sound/weapons/thudswoosh.ogg', 50, TRUE)
else if(lying || sleeping || player_triggered_sleeping)
player_triggered_sleeping = 0
AdjustSleeping(-5)
diff --git a/code/modules/mob/living/carbon/human/death.dm b/code/modules/mob/living/carbon/human/death.dm
index a6d6fe3b79745..0e934ab8f487e 100644
--- a/code/modules/mob/living/carbon/human/death.dm
+++ b/code/modules/mob/living/carbon/human/death.dm
@@ -1,4 +1,7 @@
/mob/living/carbon/human/gib()
+ if (has_extension(src, /datum/extension/virtual_surrogate)) // Virtual mobs don't gib
+ return death()
+
for(var/obj/item/organ/I in internal_organs)
I.removed()
if(!QDELETED(I) && isturf(loc))
diff --git a/code/modules/mob/living/carbon/human/examine.dm b/code/modules/mob/living/carbon/human/examine.dm
index 0dd9e42a0d35d..75862847dc57f 100644
--- a/code/modules/mob/living/carbon/human/examine.dm
+++ b/code/modules/mob/living/carbon/human/examine.dm
@@ -185,13 +185,13 @@
var/ssd_msg = species.get_ssd(src)
if(ssd_msg && (!should_have_organ(BP_BRAIN) || has_brain()) && stat != DEAD)
- if(!key)
- msg += SPAN_DEBUG("[P.He] [P.is] [ssd_msg]. [P.He] won't be recovering any time soon. (Ghosted)") + "\n"
- else if(!client)
- msg += SPAN_DEBUG("[P.He] [P.is] [ssd_msg]. (Disconnected)") + "\n"
-
- if (admin_paralyzed)
- msg += SPAN_DEBUG("OOC: [P.He] [P.has] been paralyzed by staff. Please avoid interacting with [P.him] unless cleared to do so by staff.") + "\n"
+ if (!SSvirtual_reality.virtual_occupants_to_mobs[src]) // We are not in VR
+ if(!key)
+ msg += SPAN_DEBUG("[P.He] [P.is] [ssd_msg]. [P.He] won't be recovering any time soon. (Ghosted)") + "\n"
+ else if(!client)
+ msg += SPAN_DEBUG("[P.He] [P.is] [ssd_msg]. (Disconnected)") + "\n"
+ else // We are in VR - intercept the SSD message and replace it with something else
+ msg += SPAN_NOTICE(SPAN_ITALIC("[P.He] [P.is] [species.get_vr(src)].\n"))
var/obj/item/organ/external/head/H = organs_by_name[BP_HEAD]
if(istype(H) && H.forehead_graffiti && H.graffiti_style)
diff --git a/code/modules/mob/mob_helpers.dm b/code/modules/mob/mob_helpers.dm
index 6d37bd32fd368..be3d81e471306 100644
--- a/code/modules/mob/mob_helpers.dm
+++ b/code/modules/mob/mob_helpers.dm
@@ -696,3 +696,29 @@ var/global/list/intents = list(I_HELP,I_DISARM,I_GRAB,I_HURT)
result[2] = ainvis
return result
+
+/mob/living/carbon/human/proc/apply_job_equipment()
+ var/datum/job/role = SSjobs.get_by_title(job)
+ var/list/spawn_in_storage
+
+ var/alt_title = null
+ if(mind)
+ alt_title = mind.role_alt_title
+
+ delete_inventory(TRUE)
+
+ for (var/obj/item/organ/internal/augment/custom_augment in contents)
+ custom_augment.removed(src)
+ qdel(custom_augment)
+
+ role.equip(src, mind ? mind.role_alt_title : "", char_branch, char_rank)
+ spawn_in_storage = SSjobs.equip_custom_loadout(src, role)
+
+ var/mob/other_mob = role.handle_variant_join(src, alt_title)
+ if(other_mob)
+ role.post_equip_rank(other_mob, alt_title)
+ return other_mob
+
+ if (spawn_in_storage)
+ for(var/datum/gear/G in spawn_in_storage)
+ G.spawn_in_storage_or_drop(src, client.prefs.Gear()[G.display_name])
diff --git a/code/modules/mob/new_player/new_player.dm b/code/modules/mob/new_player/new_player.dm
index bf48df39d1825..3264cad422120 100644
--- a/code/modules/mob/new_player/new_player.dm
+++ b/code/modules/mob/new_player/new_player.dm
@@ -160,9 +160,10 @@
new_player_panel()
if(href_list["observe"])
- if(GAME_STATE < RUNLEVEL_LOBBY)
- to_chat(src, SPAN_WARNING("Please wait for server initialization to complete..."))
- return
+ if (GAME_STATE < RUNLEVEL_LOBBY)
+ if (!client.holder)
+ to_chat(src, SPAN_WARNING("Please wait for server initialization to complete..."))
+ return
if(!config.respawn_delay || client.holder || alert(src,"Are you sure you wish to observe? You will have to wait [config.respawn_delay] minute\s before being able to respawn!","Player Setup","Yes","No") == "Yes")
if(!client) return 1
diff --git a/code/modules/mob/skills/README_skills.txt b/code/modules/mob/skills/README_skills.txt
index cf68dab4a035c..009637cb61053 100644
--- a/code/modules/mob/skills/README_skills.txt
+++ b/code/modules/mob/skills/README_skills.txt
@@ -1,8 +1,8 @@
User's Guide to Skills
1. How does the skill system work, and what are the relevant objects?
- Every skill is defined via a /decl/hierarchy/skill/skill_category/skill_name in skill.dm.
- These are initialized once and /decl/hierarchy/skill is stored in decls_repository. The actual skill instances are stored in GLOB.skills (this is a list).
+ Every skill is defined via a /singleton/hierarchy/skill/skill_category/skill_name in skill.dm.
+ These are initialized once and /singleton/hierarchy/skill is stored in decls_repository. The actual skill instances are stored in GLOB.skills (this is a list).
Every mob has a variable mob.skillset of type datum/skillset (or a subtype of that).
The skillset contains all of the skill information for that mob, along with various procs for obtaining or manipulating it.
Using those procs, you will be able to extract skill values from the mob. These should be positive integers between SKILL_MIN and SKILL_MAX.
@@ -29,11 +29,11 @@ User's Guide to Skills
4. What determines what skill options are available in player setup? How can you change them?
Skill setup works largely on a per-job basis, with some per-species and branch modifiers.
- For each job, a minimum value can be assigned to any skill. To do this, add an entry of /decl/hierarchy/skill/skill_category/skill_name = min_value to that job datums's min_skill variable (this is a list).
+ For each job, a minimum value can be assigned to any skill. To do this, add an entry of /singleton/hierarchy/skill/skill_category/skill_name = min_value to that job datums's min_skill variable (this is a list).
This minimum value is given for free to the player, and does not use up allocation points.
For each job, a maximum value can also be assigned. Add a similar entry to the max_skills list.
For each job, a base number of free points can be assigned. This is given in the job datum's skill_points variable (should be a number).
- Free point bonuses/penalties can be specified, for each species, as a function of a player's selected age.
+ Free point bonuses/penalties can be specified, for each species, as a function of a player's selected age.
This can be done by overwriting species datum's skills_from_age proc, which takes in the age and returns an integer (positive or negative) which will be added to all jobs' available skill points.
Free point bonuses/penalties can be specified, for each species, as a function of the job.
To do this, add the entry /datum/job/my_job = points_to_add to the species datum's job_skill_buffs variable (this is a list). Then points_to_add (positive or negative) will be added to that job's available skill points.
@@ -51,4 +51,4 @@ User's Guide to Skills
If you are antaging/unantaging someone via the traitor panel, this will usually change their skills.
To make sure they have the correct skills (as in their prefs), you should check that the role (top item) is correct, in addition to their antag status.
If you need to change their skill values directly, you can use VV on mob/skillset, in particular changing the values of the entries in skill_list.
- There is a show skills admin verb, that displays skill values of any human mob (pick from list) in a similar way to the player Show Own Skills verb.
\ No newline at end of file
+ There is a show skills admin verb, that displays skill values of any human mob (pick from list) in a similar way to the player Show Own Skills verb.
diff --git a/code/modules/modular_computers/computers/subtypes/preset_console.dm b/code/modules/modular_computers/computers/subtypes/preset_console.dm
index 864e519ef2594..77dcdfffcd885 100644
--- a/code/modules/modular_computers/computers/subtypes/preset_console.dm
+++ b/code/modules/modular_computers/computers/subtypes/preset_console.dm
@@ -234,3 +234,9 @@
/datum/computer_file/program/ship/sensors/spacer
)
autorun_program = /datum/computer_file/program/ship/sensors/spacer
+
+/obj/machinery/computer/modular/preset/vr_control
+ default_software = list(
+ /datum/computer_file/program/vr_control
+ )
+ autorun_program = /datum/computer_file/program/vr_control
diff --git a/code/modules/modular_computers/file_system/programs/generic/vr_control.dm b/code/modules/modular_computers/file_system/programs/generic/vr_control.dm
new file mode 100644
index 0000000000000..daa9625178ab6
--- /dev/null
+++ b/code/modules/modular_computers/file_system/programs/generic/vr_control.dm
@@ -0,0 +1,110 @@
+#define VRCONTROL_HOME 1
+
+/datum/computer_file/program/vr_control
+ filename = "vrcontrol"
+ filedesc = "VR Control"
+ program_icon_state = "generic"
+ program_menu_icon = "image"
+ extended_desc = "Maintains the active digital space used by VR pods and VR implants. Can be used to monitor occupants, change the area, or send a message to everyone inside VR."
+ size = 32
+ available_on_ntnet = FALSE
+ usage_flags = PROGRAM_CONSOLE | PROGRAM_LAPTOP | PROGRAM_TELESCREEN
+ nanomodule_path = /datum/nano_module/program/vr_control
+
+/datum/computer_file/program/vr_control/process_tick()
+ ..()
+ var/datum/nano_module/program/vr_control/VRC = NM
+ if(istype(VRC))
+ VRC.emagged = computer.emagged()
+
+/datum/nano_module/program/vr_control
+ name = "VR Control"
+ var/prog_state = VRCONTROL_HOME
+ var/emagged
+ var/area_cooldown = 0
+ var/list/simulated_objects = list()
+ var/selected_zone
+
+/datum/nano_module/program/vr_control/Topic(href, href_list)
+ if(..())
+ return TRUE
+
+ if (href_list["msg_all_occupants"])
+ var/our_msg = sanitize(input(usr, "Enter a message to send to all connected users.", "Message All") as null|text)
+ if (!our_msg)
+ return TRUE
+ for (var/mob/living/L in SSvirtual_reality.virtual_mobs_to_occupants)
+ to_chat(L, SPAN_NOTICE(FONT_LARGE("You hear a voice coming through speakers all around: \"[our_msg]\"")))
+ to_chat(usr, SPAN_NOTICE("Message sent to all VR users: \"[our_msg]\""))
+ return TRUE
+
+ if (href_list["msg_occupant"])
+ var/mob/living/L = locate(href_list["msg_occupant"]) in SSvirtual_reality.virtual_mobs_to_occupants
+ if (!L)
+ to_chat(usr, SPAN_WARNING("The system could not find the specified user: [href_list["msg_occupant"]]"))
+ return TRUE
+ var/our_msg = sanitize(input(usr, "Enter a message to send to [L].", "Message User") as null|text)
+ if (!our_msg)
+ return TRUE
+ to_chat(L, SPAN_NOTICE(FONT_LARGE("A holographic message appears in front of you: \"[our_msg]\"")))
+ to_chat(usr, SPAN_NOTICE("Message sent to [L]: \"[our_msg]\""))
+ return TRUE
+
+ if (href_list["load_template"])
+ spawn(0)
+ SSvirtual_reality.load_template(src, usr, selected_zone, href_list["load_template"])
+ if (href_list["select_zone"])
+ selected_zone = href_list["select_zone"]
+ if (!selected_zone || !GLOB.active_vr_areas[selected_zone])
+ selected_zone = null
+ to_chat(usr, SPAN_WARNING("The system could not find the specified VR zone: [href_list["select_zone"]]"))
+ return TRUE
+ to_chat(usr, SPAN_NOTICE("Selected VR zone: [selected_zone]"))
+ return TRUE
+
+/datum/nano_module/program/vr_control/ui_interact(mob/user, ui_key = "main", datum/nanoui/ui = null, force_open = 1, state = GLOB.default_state)
+ var/list/data = host.initial_data()
+
+ data["on_cooldown"] = area_cooldown > world.time
+ data["occupants"] = list()
+ for (var/mob/living/L in SSvirtual_reality.virtual_occupants_to_mobs)
+ var/mob/living/virtual = SSvirtual_reality.get_surrogate_for(L)
+ var/list/occupant_info = list()
+ occupant_info["name"] = "[L.real_name] - [virtual.mind.assigned_role]"
+ occupant_info["mob_ref"] = "\ref[virtual]"
+
+ data["occupants"] += list(occupant_info)
+
+ data["active_templates"] = list()
+ for (var/zone in GLOB.active_vr_areas)
+ var/list/template_data = list()
+ template_data["name"] = zone
+ var/area/active_area = GLOB.active_vr_areas[zone]
+ template_data["template"] = active_area.name
+ template_data["selected"] = selected_zone
+ template_data["zone"] = zone
+ data["active_templates"] += list(template_data)
+ data["templates"] = list()
+ for (var/V in GLOB.vr_areas)
+ var/list/template_data = list()
+ template_data["name"] = V
+
+ data["templates"] += list(template_data)
+
+ if (emagged)
+ data["emag_templates"] = list()
+ for (var/V in GLOB.emagged_vr_areas)
+ var/list/template_data = list()
+ template_data["name"] = V
+
+ data["emag_templates"] += list(template_data)
+
+ ui = SSnano.try_update_ui(user, src, ui_key, ui, data, force_open)
+ if (!ui)
+ ui = new(user, src, ui_key, "vr_control.tmpl", name, 450, 600, state = state)
+ ui.auto_update_layout = TRUE
+ ui.set_auto_update(1)
+ ui.set_initial_data(data)
+ ui.open()
+
+#undef VRCONTROL_HOME
diff --git a/code/modules/modular_computers/ntos/components.dm b/code/modules/modular_computers/ntos/components.dm
index 51405d3491257..de5aecbd7a20c 100644
--- a/code/modules/modular_computers/ntos/components.dm
+++ b/code/modules/modular_computers/ntos/components.dm
@@ -50,7 +50,11 @@
if(!on) // No signal if the computer isn't on.
return 0
- if (isAdminLevel(get_z(holder)))
+ var/z_level = get_z(holder)
+ if (isAdminLevel(z_level))
+ return 3
+
+ if (z_level in GLOB.using_map.vr_levels)
return 3
if(isnull(ntnet_status))
diff --git a/code/modules/organs/internal/brain.dm b/code/modules/organs/internal/brain.dm
index 6cc77a0d93852..be05bb5fba4b7 100644
--- a/code/modules/organs/internal/brain.dm
+++ b/code/modules/organs/internal/brain.dm
@@ -96,7 +96,13 @@
if(borer)
borer.detatch() //Should remove borer if the brain is removed - RR
- transfer_identity(owner)
+ if (!has_extension(owner, /datum/extension/virtual_surrogate)) // do digital brains dream of electric sheep?
+ transfer_identity(owner)
+ else
+ owner.death()
+ ..()
+ qdel(src)
+ return
..()
@@ -127,6 +133,8 @@
/obj/item/organ/internal/brain/proc/handle_severe_brain_damage()
set waitfor = FALSE
healed_threshold = 0
+ if (owner && has_extension(owner, /datum/extension/virtual_surrogate)) // Virtual mobs don't get memory loss from brain damage
+ return
to_chat(owner, SPAN_NOTICE(FONT_GIANT("Where am I...?")))
sleep(5 SECONDS)
if (!owner || owner.is_real_dead() || (status & ORGAN_DEAD))
diff --git a/code/modules/research/designs/designs_implant.dm b/code/modules/research/designs/designs_implant.dm
index 1837a7a799b46..26807d3d5f36d 100644
--- a/code/modules/research/designs/designs_implant.dm
+++ b/code/modules/research/designs/designs_implant.dm
@@ -52,4 +52,11 @@
id = "implant_explosive"
req_tech = list(TECH_MATERIAL = 2, TECH_BIO = 3, TECH_ESOTERIC = 4)
build_path = /obj/item/implantcase/explosive
- sort_string = "MFAAG"
\ No newline at end of file
+ sort_string = "MFAAG"
+
+/datum/design/item/implant/virtual_reality
+ name = "virtual reality"
+ id = "implant_virtual_reality"
+ req_tech = list(TECH_MATERIAL = 2, TECH_BIO = 3, TECH_DATA = 4)
+ build_path = /obj/item/implantcase/virtual_reality
+ sort_string = "MFAAH"
diff --git a/code/modules/species/species.dm b/code/modules/species/species.dm
index 3fbf03c8a572d..2b121a99ca641 100644
--- a/code/modules/species/species.dm
+++ b/code/modules/species/species.dm
@@ -74,6 +74,7 @@ GLOBAL_LIST_EMPTY(mob_ref_to_species_name)
var/strength = STR_MEDIUM
var/show_ssd = "fast asleep"
var/show_coma = "completely comatose"
+ var/show_vr = "apparently unaware of their surroundings, only responding to stimuli that you can't see"
var/short_sighted // Permanent weldervision.
var/light_sensitive // Ditto, but requires sunglasses to fix
var/blood_volume = SPECIES_BLOOD_DEFAULT // Initial blood volume.
diff --git a/code/modules/species/species_getters.dm b/code/modules/species/species_getters.dm
index 85b4650756742..744b2a124b505 100644
--- a/code/modules/species/species_getters.dm
+++ b/code/modules/species/species_getters.dm
@@ -52,6 +52,9 @@
else
return ((H && H.isSynthetic()) ? "displaying a blue screen on their monitor indicating total system failure" : show_coma)
+/singleton/species/proc/get_vr(mob/living/carbon/human/H)
+ return ((H && H.isSynthetic()) ? "flashing a 'system occupied' glyph on their monitor" : show_vr)
+
/singleton/species/proc/get_blood_colour(mob/living/carbon/human/H)
return ((H && H.isSynthetic()) ? SYNTH_BLOOD_COLOUR : blood_color)
diff --git a/code/procs/announce.dm b/code/procs/announce.dm
index 573637e3cda44..82cf0d1383d79 100644
--- a/code/procs/announce.dm
+++ b/code/procs/announce.dm
@@ -40,8 +40,14 @@ var/global/datum/announcement/minor/minor_announcement = new(new_sound = 'sound/
message_title = sanitizeSafe(message_title)
var/msg = FormMessage(message, message_title)
+
for(var/mob/M in GLOB.player_list)
- if(M.client && (get_z(M) in (zlevels | GLOB.using_map.admin_levels)) && !istype(M,/mob/new_player) && !isdeaf(M))
+ var/matching_z = (M.z in (zlevels | GLOB.using_map.admin_levels))
+ var/mob/living/virtual = SSvirtual_reality.virtual_mobs_to_occupants[M] // mirror announcements to VR users on the receiving Z's
+ if (virtual && !matching_z)
+ var/turf/T = get_turf(virtual)
+ matching_z = (T.z in (zlevels | GLOB.using_map.admin_levels))
+ if((matching_z) && !istype(M,/mob/new_player) && !isdeaf(M))
to_chat(M, msg)
if(message_sound && M.client.get_preference_value(/datum/client_preference/play_announcement_sfx) == GLOB.PREF_YES)
sound_to(M, message_sound)
diff --git a/html/changelog.html b/html/changelog.html
index a0c09fa1a6dba..09ae41f543ccf 100644
--- a/html/changelog.html
+++ b/html/changelog.html
@@ -56,6 +56,16 @@
-->
+
18 February 2026
+
LordNest updated:
+
+ - Added distinct Unathi and Skrell stomach organ icons.
+
+
Spookerton updated:
+
+ - Clients with roles can observe before the game is ready.
+
+
15 February 2026
Banditoz updated:
@@ -380,79 +390,6 @@ Spookerton updated:
- Stars don't crash the sensors console anymore
- Rat attack! (rats bite for 3 instead of 0)
-
-
24 December 2025
-
Banditoz updated:
-
- - Fixed being unable to fax other departments.
-
-
-
22 December 2025
-
updated:
-
- - SMES units now correctly cap their input and output wattage when parts are removed.
-
-
Cakey updated:
-
- - The Skrell scout ship now has missile pods.
-
-
KatTheFox updated:
-
- - pAI no longer use you/yours pronouns
- - added a verb to trigger action buttons (the things at the top left of the screen, like the magboots or welding mask toggles)
- - The Petrov's external shutters can now be closed from its hallway.
- - The microphone made to understand Unathi and Skrell now understands Yeosa, not just Sinta
- - Added a utility blade augment, smaller and less combat-effective than armblades, for actual utility use. Works for plant sampling!
- - You can no longer drag augment items (among other things) out of the hand they're installed in to your other hand
-
-
Spookerton updated:
-
- - Fixed a case where stars could have zero scale, making solars act oddly
-
-
-
21 December 2025
-
KatTheFox updated:
-
- - sulphuric acid dispensers will no longer cause invisible walls
-
-
-
20 December 2025
-
KatTheFox updated:
-
- - added wigs, ported from SierraBay
-
-
-
18 December 2025
-
KatTheFox updated:
-
- - IC grabbers now drop items instead of early-returning when unfiltered
- - IC adjacent locators now have a second input pin that filters by movable objects when enabled, to be more in line with how they are intended to be used. the original functionality is preserved by just setting this pin to false
- - the augment arc welder's cell can now be removed with an empty hand, so you don't need to carry a screwdriver around
- - roboticists can now access medical records
-
-
PsiOmegaDelta updated:
-
- - Updates Torch's NanoUI maps
-
-
sowelipililimute updated:
-
- - The seed storage UI now has more legible styling and will no longer reset its scroll position when you dispense a seed, as well as staying up to date when someone else interacts with it
- - NanoUIs now automatically attempt to keep the scroll position after they update
-
-
-
17 December 2025
-
Banditoz updated:
-
- - You can now operate on your right hand using your left.
- - Admin faxes have been reworked! You can choose multiple destinations, and stamping is configured while writing the fax.
- - Replying to faxes is now stamped by default.
-
-
XanderDox updated:
-
- - Adds two Grand Stratagem holy book variants, a stone Markesheli Cup of Knowledge, a golden Grand Stratagem ring, and a golden Fruitful Lights ring.
- - Adds sprites for two Grand Stratagem holy book variants, a stone Markesheli Cup of Knowledge, a golden Grand Stratagem ring, and a golden Fruitful Lights ring, courtesy of Slimek.
- - Adds sprites for seal ring stamps for the Grand Stratagem ring and Fruitful Lights ring modelled on other seal ring stamps.
-
GoonStation 13 Development Team
diff --git a/html/changelogs/.all_changelog.yml b/html/changelogs/.all_changelog.yml
index 4045c5eabac8d..8d70458cdf925 100644
--- a/html/changelogs/.all_changelog.yml
+++ b/html/changelogs/.all_changelog.yml
@@ -24708,3 +24708,8 @@ DO NOT EDIT THIS FILE BY HAND! AUTOMATICALLY GENERATED BY ss13_genchangelog.py.
- tweak: 'More fake NanoUI for: Evolution Tree, Spellbook, Newscaster, Suit Cycler,
Cryo Oversight and Destination Tagger'
- bugfix: Fixed input text for ATMs
+2026-02-18:
+ LordNest:
+ - imageadd: Added distinct Unathi and Skrell stomach organ icons.
+ Spookerton:
+ - admin: Clients with roles can observe before the game is ready.
diff --git a/icons/mob/human_races/species/skrell/organs.dmi b/icons/mob/human_races/species/skrell/organs.dmi
index 11774a8afb7f1..707b21756d3c2 100644
Binary files a/icons/mob/human_races/species/skrell/organs.dmi and b/icons/mob/human_races/species/skrell/organs.dmi differ
diff --git a/icons/mob/human_races/species/unathi/organs.dmi b/icons/mob/human_races/species/unathi/organs.dmi
index f5a0299d4ea1c..727e6de4a7a83 100644
Binary files a/icons/mob/human_races/species/unathi/organs.dmi and b/icons/mob/human_races/species/unathi/organs.dmi differ
diff --git a/maps/mapsystem/maps.dm b/maps/mapsystem/maps.dm
index 51a1856e1fc9e..d76ea3715fd34 100644
--- a/maps/mapsystem/maps.dm
+++ b/maps/mapsystem/maps.dm
@@ -33,6 +33,7 @@ var/global/const/MAP_HAS_RANK = 2 //Rank system, also togglable
var/list/sealed_levels = list() // Z-levels that don't allow random transit at edge
var/list/empty_levels = null // Empty Z-levels that may be used for various things (currently used by bluespace jump)
var/list/escape_levels = list() // Z-levels that when a player is in, are considered to have 'escaped' after evacuations.
+ var/list/vr_levels = list() // Z-levels used for VR simulations.
var/list/map_levels // Z-levels available to various consoles, such as the crew monitor. Defaults to station_levels if unset.
diff --git a/maps/torch/torch.dm b/maps/torch/torch.dm
index 0158baf95a4b7..c91f5976c8069 100644
--- a/maps/torch/torch.dm
+++ b/maps/torch/torch.dm
@@ -167,6 +167,7 @@
#include "torch6_bridge.dmm"
#include "z1_admin.dmm"
#include "z2_transit.dmm"
+ #include "z3_virtualreality.dmm"
#include "../away/empty.dmm"
#include "../away/mining/mining.dm"
diff --git a/maps/torch/torch3_deck3 - Copy.dmm b/maps/torch/torch3_deck3 - Copy.dmm
new file mode 100644
index 0000000000000..e2e44efe6217e
--- /dev/null
+++ b/maps/torch/torch3_deck3 - Copy.dmm
@@ -0,0 +1,61596 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"aa" = (
+/turf/space,
+/area/space)
+"ab" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/obj/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/substation/thirddeck)
+"ad" = (
+/turf/simulated/wall/r_wall/hull,
+/area/vacant/brig)
+"ae" = (
+/turf/simulated/floor/tiled,
+/area/vacant/brig)
+"af" = (
+/obj/machinery/computer/arcade,
+/turf/simulated/floor/tiled/monotile,
+/area/vacant/brig)
+"ag" = (
+/turf/simulated/floor/plating,
+/area/vacant/brig)
+"ah" = (
+/obj/structure/table/standard,
+/obj/random/junk,
+/turf/simulated/floor/tiled/monotile,
+/area/vacant/brig)
+"ai" = (
+/obj/structure/table/standard,
+/turf/simulated/floor/tiled/monotile,
+/area/vacant/brig)
+"aj" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/closet/secure_closet/hydroponics_torch,
+/obj/machinery/light_switch{
+ pixel_y = 24
+ },
+/obj/floor_decal/corner/green/mono,
+/obj/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/monotile,
+/area/hydroponics/storage)
+"ak" = (
+/obj/random/junk,
+/turf/simulated/floor/tiled,
+/area/vacant/brig)
+"al" = (
+/obj/random/trash,
+/turf/simulated/floor/tiled,
+/area/vacant/brig)
+"am" = (
+/obj/machinery/shieldwallgen{
+ anchored = 1
+ },
+/turf/simulated/floor/plating,
+/area/vacant/brig)
+"an" = (
+/obj/random/junk,
+/obj/structure/railing/mapped{
+ dir = 1;
+ icon_state = "railing0-1"
+ },
+/obj/structure/railing/mapped{
+ dir = 8;
+ icon_state = "railing0-1"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/foreport)
+"ao" = (
+/obj/structure/grille/broken,
+/turf/simulated/floor/plating,
+/area/vacant/brig)
+"ap" = (
+/obj/structure/bed/chair/comfy/black{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/vacant/brig)
+"aq" = (
+/obj/effect/landmark{
+ name = "xeno_spawn";
+ pixel_x = -1
+ },
+/turf/simulated/floor/tiled,
+/area/vacant/brig)
+"ar" = (
+/obj/effect/decal/cleanable/vomit,
+/turf/simulated/floor/tiled,
+/area/vacant/brig)
+"as" = (
+/obj/structure/hygiene/toilet{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/vacant/brig)
+"at" = (
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/vacant/brig)
+"au" = (
+/obj/structure/wall_frame,
+/obj/structure/grille,
+/turf/simulated/floor/plating,
+/area/vacant/brig)
+"av" = (
+/obj/wallframe_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/vacant/brig)
+"aw" = (
+/obj/structure/bed,
+/turf/simulated/floor/plating,
+/area/vacant/brig)
+"ax" = (
+/obj/floor_decal/corner/red{
+ dir = 1;
+ icon_state = "corner_white"
+ },
+/obj/machinery/constructable_frame/computerframe,
+/turf/simulated/floor/tiled,
+/area/vacant/brig)
+"ay" = (
+/obj/floor_decal/corner/red{
+ dir = 1;
+ icon_state = "corner_white"
+ },
+/obj/structure/table/steel_reinforced,
+/turf/simulated/floor/tiled,
+/area/vacant/brig)
+"az" = (
+/obj/structure/door_assembly,
+/turf/simulated/floor/tiled,
+/area/vacant/brig)
+"aA" = (
+/obj/structure/table/steel_reinforced,
+/turf/simulated/floor/tiled,
+/area/vacant/brig)
+"aB" = (
+/obj/structure/closet{
+ name = "Prisoner's Locker"
+ },
+/turf/simulated/floor/plating,
+/area/vacant/brig)
+"aC" = (
+/obj/structure/reagent_dispensers/peppertank{
+ pixel_y = -32
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/vacant/brig)
+"aD" = (
+/obj/machinery/portable_atmospherics/hydroponics,
+/turf/simulated/floor/tiled/monotile,
+/area/vacant/brig)
+"aE" = (
+/obj/machinery/door/airlock/security{
+ name = "Old Brig"
+ },
+/turf/simulated/floor/tiled,
+/area/vacant/brig)
+"aF" = (
+/obj/random/obstruction,
+/turf/simulated/floor/plating,
+/area/vacant/brig)
+"aG" = (
+/obj/floor_decal/industrial/warning{
+ dir = 9
+ },
+/obj/structure/closet/secure_closet/brig,
+/turf/simulated/floor/tiled,
+/area/vacant/brig)
+"aH" = (
+/obj/floor_decal/industrial/warning{
+ dir = 5
+ },
+/obj/machinery/portable_atmospherics/canister/sleeping_agent,
+/turf/simulated/floor/tiled,
+/area/vacant/brig)
+"aI" = (
+/turf/simulated/floor/reinforced/airless,
+/area/space)
+"aJ" = (
+/obj/floor_decal/industrial/warning{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/vacant/brig)
+"aK" = (
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled,
+/area/vacant/brig)
+"aL" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/plating,
+/area/vacant/brig)
+"aM" = (
+/turf/simulated/wall/r_wall/prepainted,
+/area/tcommsat/chamber)
+"aN" = (
+/turf/simulated/wall/r_wall/prepainted,
+/area/tcommsat/storage)
+"aO" = (
+/turf/simulated/wall/r_wall/hull,
+/area/maintenance/thirddeck/forestarboard)
+"aP" = (
+/turf/simulated/wall/r_wall/hull,
+/area/hydroponics/storage)
+"aQ" = (
+/turf/simulated/wall/r_wall/hull,
+/area/maintenance/thirddeck/starboard)
+"aR" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/structure/sign/deck/third{
+ pixel_y = 32
+ },
+/obj/machinery/camera/network/third_deck{
+ c_tag = "Third Deck Hallway - Head"
+ },
+/obj/floor_decal/corner/green{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/center)
+"aS" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/security{
+ name = "Old Brig"
+ },
+/turf/simulated/floor/tiled,
+/area/vacant/brig)
+"aT" = (
+/turf/simulated/wall/r_wall/hull,
+/area/maintenance/thirddeck/aftstarboard)
+"aU" = (
+/turf/simulated/wall/r_wall/hull,
+/area/space)
+"aV" = (
+/obj/structure/lattice,
+/obj/structure/grille,
+/turf/space,
+/area/space)
+"aW" = (
+/turf/simulated/wall/r_wall/hull,
+/area/hydroponics)
+"aX" = (
+/obj/random/torchcloset,
+/obj/random/maintenance/solgov,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/starboard)
+"aY" = (
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/starboard)
+"aZ" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/starboard)
+"ba" = (
+/obj/structure/table/rack,
+/obj/random/maintenance/solgov,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/starboard)
+"bb" = (
+/obj/structure/lattice,
+/turf/space,
+/area/space)
+"bc" = (
+/obj/machinery/camera/network/third_deck{
+ c_tag = "Third Deck Hallway - Ladders"
+ },
+/obj/floor_decal/corner/yellow{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/aft)
+"bd" = (
+/turf/simulated/wall/r_wall/hull,
+/area/thruster/d3starboard)
+"be" = (
+/obj/wallframe_spawn/reinforced/hull,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id_tag = "hydroponics_shutters";
+ name = "Blast Shields";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/hydroponics)
+"bf" = (
+/obj/floor_decal/corner/yellow{
+ dir = 9
+ },
+/obj/structure/ladder/up,
+/turf/simulated/floor/tiled/steel_grid,
+/area/hallway/primary/thirddeck/aft)
+"bg" = (
+/obj/structure/sign/directions/bridge{
+ dir = 1;
+ pixel_x = 0;
+ pixel_y = 12;
+ pixel_z = 0
+ },
+/turf/simulated/wall/prepainted,
+/area/storage/tools)
+"bh" = (
+/obj/structure/bed/roller,
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_x = 0;
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/starboard)
+"bi" = (
+/obj/structure/table/steel,
+/obj/item/device/multitool,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tcommsat/chamber)
+"bj" = (
+/obj/structure/table/steel,
+/obj/item/paper_bin,
+/obj/item/folder/yellow,
+/obj/item/pen/blue{
+ pixel_x = -3;
+ pixel_y = 2
+ },
+/obj/structure/cable/cyan{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc/super/critical{
+ dir = 1;
+ is_critical = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tcommsat/chamber)
+"bk" = (
+/turf/simulated/wall/prepainted,
+/area/tcommsat/storage)
+"bl" = (
+/obj/item/stock_parts/subspace/amplifier,
+/obj/item/stock_parts/subspace/amplifier,
+/obj/item/stock_parts/subspace/amplifier,
+/obj/structure/table/rack,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/tcommsat/storage)
+"bm" = (
+/obj/item/stock_parts/subspace/ansible,
+/obj/item/stock_parts/subspace/ansible,
+/obj/item/stock_parts/subspace/ansible,
+/obj/structure/table/rack,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 2;
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/tcommsat/storage)
+"bn" = (
+/obj/item/stock_parts/subspace/crystal,
+/obj/item/stock_parts/subspace/crystal,
+/obj/item/stock_parts/subspace/crystal,
+/obj/structure/table/rack,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/alarm{
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/tcommsat/storage)
+"bo" = (
+/obj/item/stock_parts/subspace/filter,
+/obj/item/stock_parts/subspace/filter,
+/obj/item/stock_parts/subspace/filter,
+/obj/item/stock_parts/subspace/filter,
+/obj/item/stock_parts/subspace/filter,
+/obj/structure/table/rack,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/tcommsat/storage)
+"bp" = (
+/obj/random/torchcloset,
+/obj/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/forestarboard)
+"bq" = (
+/obj/machinery/constructable_frame/computerframe,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/forestarboard)
+"br" = (
+/obj/machinery/space_heater,
+/obj/structure/largecrate,
+/obj/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/forestarboard)
+"bs" = (
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/forestarboard)
+"bt" = (
+/obj/machinery/atmospherics/binary/pump/on,
+/obj/structure/railing/mapped{
+ dir = 8;
+ icon_state = "railing0-1"
+ },
+/turf/simulated/floor/plating,
+/area/command/disperser)
+"bu" = (
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/forestarboard)
+"bv" = (
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -23;
+ pixel_y = 0
+ },
+/obj/machinery/light/small,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/starboard)
+"bw" = (
+/obj/floor_decal/corner/green/mono,
+/obj/machinery/vending/hydronutrients/generic,
+/turf/simulated/floor/tiled/monotile,
+/area/hydroponics/storage)
+"bx" = (
+/obj/machinery/seed_storage/garden,
+/obj/floor_decal/corner/green/mono,
+/obj/machinery/camera/network/third_deck{
+ c_tag = "Hydroponics - Storage"
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hydroponics/storage)
+"by" = (
+/obj/machinery/firealarm{
+ dir = 2;
+ pixel_y = 24
+ },
+/obj/structure/closet/secure_closet/hydroponics_torch,
+/obj/floor_decal/corner/green/mono,
+/obj/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/monotile,
+/area/hydroponics/storage)
+"bz" = (
+/obj/structure/closet/crate,
+/obj/item/stock_parts/circuitboard/batteryrack,
+/obj/item/stock_parts/circuitboard/batteryrack,
+/obj/item/stock_parts/circuitboard/smes,
+/obj/item/stock_parts/circuitboard/smes,
+/obj/item/stock_parts/smes_coil/super_io,
+/obj/item/stock_parts/smes_coil/super_io,
+/obj/item/stock_parts/smes_coil/super_capacity,
+/obj/item/stock_parts/smes_coil/super_capacity,
+/obj/item/stock_parts/smes_coil,
+/obj/item/stock_parts/smes_coil,
+/obj/machinery/camera/network/engineering{
+ c_tag = "Engineering - Hard Storage";
+ dir = 4
+ },
+/obj/floor_decal/corner/yellow/mono,
+/obj/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark/monotile,
+/area/engineering/hardstorage)
+"bA" = (
+/turf/simulated/wall/prepainted,
+/area/hydroponics)
+"bB" = (
+/obj/item/stool/padded,
+/turf/simulated/floor/lino,
+/area/crew_quarters/bar)
+"bC" = (
+/obj/structure/table/standard,
+/obj/item/material/hatchet,
+/obj/item/material/minihoe,
+/obj/floor_decal/corner/green{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"bD" = (
+/obj/machinery/alarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/portable_atmospherics/hydroponics,
+/obj/floor_decal/corner/green/mono,
+/obj/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled/monotile,
+/area/hydroponics)
+"bE" = (
+/obj/random/obstruction,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/starboard)
+"bF" = (
+/obj/random/junk,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/starboard)
+"bG" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/starboard)
+"bH" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/railing/mapped{
+ dir = 4;
+ icon_state = "railing0-1"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/starboard)
+"bI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/starboard)
+"bJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/starboard)
+"bK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/maintenance,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/thirddeck/aftstarboard)
+"bL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/aftstarboard)
+"bM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/aftstarboard)
+"bN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/aftstarboard)
+"bO" = (
+/obj/machinery/computer/air_control{
+ dir = 2;
+ frequency = 1441;
+ input_tag = "d3so2_in";
+ name = "Oxygen Supply Control";
+ output_tag = "d3so2_out";
+ sensor_name = "Oxygen Supply Tank";
+ sensor_tag = "d3so2_sensor"
+ },
+/obj/floor_decal/industrial/outline/blue,
+/obj/machinery/alarm{
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/thruster/d3starboard)
+"bP" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/obj/machinery/light_switch{
+ pixel_x = -24;
+ pixel_y = 24
+ },
+/turf/simulated/floor/lino,
+/area/crew_quarters/bar)
+"bQ" = (
+/turf/simulated/floor/tiled/dark,
+/area/tcommsat/chamber)
+"bR" = (
+/obj/machinery/telecomms/processor/preset_two,
+/obj/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/bluegrid,
+/area/tcommsat/chamber)
+"bS" = (
+/obj/machinery/telecomms/bus/preset_two,
+/obj/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/bluegrid,
+/area/tcommsat/chamber)
+"bT" = (
+/obj/structure/cable/cyan{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = 21
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tcommsat/chamber)
+"bU" = (
+/obj/item/stock_parts/subspace/analyzer,
+/obj/item/stock_parts/subspace/analyzer,
+/obj/item/stock_parts/subspace/analyzer,
+/obj/structure/table/rack,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/tcommsat/storage)
+"bV" = (
+/obj/effect/landmark{
+ name = "xeno_spawn";
+ pixel_x = -1
+ },
+/turf/simulated/floor/tiled,
+/area/tcommsat/storage)
+"bW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/tcommsat/storage)
+"bX" = (
+/obj/item/stock_parts/subspace/transmitter,
+/obj/item/stock_parts/subspace/transmitter,
+/obj/structure/table/rack,
+/obj/item/stock_parts/computer/hard_drive/portable,
+/obj/item/stock_parts/computer/hard_drive/portable,
+/turf/simulated/floor/tiled/monotile,
+/area/tcommsat/storage)
+"bY" = (
+/obj/random/junk,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/forestarboard)
+"bZ" = (
+/obj/structure/table/steel,
+/obj/random/maintenance/solgov,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/forestarboard)
+"ca" = (
+/turf/simulated/wall/prepainted,
+/area/hydroponics/storage)
+"cb" = (
+/obj/floor_decal/corner/green{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled,
+/area/hydroponics/storage)
+"cc" = (
+/turf/simulated/floor/tiled,
+/area/hydroponics/storage)
+"cd" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/floor_decal/corner/green{
+ dir = 6
+ },
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/tiled,
+/area/hydroponics/storage)
+"ce" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/structure/closet/crate/hydroponics/beekeeping,
+/obj/item/screwdriver,
+/obj/floor_decal/corner/green{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hydroponics)
+"cf" = (
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"cg" = (
+/obj/floor_decal/corner/yellow/half{
+ dir = 1;
+ icon_state = "bordercolorhalf"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/aft)
+"ch" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"ci" = (
+/obj/machinery/button/blast_door{
+ desc = "A remote control-switch for shutters.";
+ id_tag = "hydroponics_shutters";
+ name = "Window Shutters";
+ pixel_x = 26;
+ pixel_y = 6
+ },
+/obj/machinery/portable_atmospherics/hydroponics,
+/obj/floor_decal/corner/green/mono,
+/obj/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled/monotile,
+/area/hydroponics)
+"cj" = (
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/starboard)
+"ck" = (
+/obj/structure/railing/mapped,
+/turf/simulated/open,
+/area/maintenance/thirddeck/starboard)
+"cl" = (
+/turf/simulated/wall/prepainted,
+/area/maintenance/thirddeck/starboard)
+"cm" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/firedoor,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/thirddeck/starboard)
+"cn" = (
+/obj/machinery/door/airlock/civilian{
+ locked = 1;
+ name = "Old Mess"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/vacant/mess)
+"co" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/aftstarboard)
+"cp" = (
+/obj/machinery/alarm{
+ dir = 1;
+ icon_state = "alarm0";
+ pixel_y = -22
+ },
+/obj/random/trash,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/aftstarboard)
+"cq" = (
+/obj/structure/railing/mapped{
+ dir = 1;
+ icon_state = "railing0-1"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/aftstarboard)
+"cr" = (
+/obj/machinery/power/apc{
+ dir = 2;
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/structure/cable/green,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/aftstarboard)
+"cs" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/airlock/civilian{
+ name = "Galley"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/crew_quarters/galley)
+"ct" = (
+/obj/machinery/door/airlock/command{
+ autoset_access = 0;
+ name = "Officer's Mess";
+ req_access = newlist()
+ },
+/obj/floor_decal/corner/blue/diagonal{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/mess)
+"cu" = (
+/obj/machinery/atmospherics/unary/engine{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/thruster/d3starboard)
+"cv" = (
+/obj/structure/lattice,
+/turf/simulated/wall/r_wall/hull,
+/area/maintenance/thirddeck/aftstarboard)
+"cw" = (
+/obj/floor_decal/corner/green/half{
+ dir = 1;
+ icon_state = "bordercolorhalf"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/aft)
+"cx" = (
+/obj/machinery/telecomms/bus/preset_one,
+/obj/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/bluegrid,
+/area/tcommsat/chamber)
+"cy" = (
+/obj/machinery/telecomms/processor/preset_one,
+/obj/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/bluegrid,
+/area/tcommsat/chamber)
+"cz" = (
+/obj/structure/cable/cyan{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tcommsat/chamber)
+"cA" = (
+/obj/item/stock_parts/micro_laser,
+/obj/item/stock_parts/manipulator,
+/obj/item/stock_parts/manipulator,
+/obj/item/stock_parts/manipulator,
+/obj/item/stock_parts/manipulator,
+/obj/item/stock_parts/capacitor,
+/obj/item/stock_parts/micro_laser/high,
+/obj/item/stock_parts/micro_laser/high,
+/obj/item/stock_parts/micro_laser/high,
+/obj/item/stock_parts/micro_laser/high,
+/obj/structure/table/rack,
+/obj/item/device/radio/intercom{
+ dir = 4;
+ pixel_x = -21
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/tcommsat/storage)
+"cB" = (
+/turf/simulated/floor/tiled,
+/area/tcommsat/storage)
+"cC" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/tcommsat/storage)
+"cD" = (
+/obj/structure/table/rack,
+/obj/random/maintenance/solgov,
+/obj/random/technology_scanner,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/forestarboard)
+"cE" = (
+/obj/structure/table/rack,
+/obj/random/maintenance/solgov,
+/obj/random/tank,
+/obj/random/maintenance/solgov,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/forestarboard)
+"cF" = (
+/obj/structure/table/rack,
+/obj/random/maintenance/solgov,
+/obj/random/maintenance/solgov,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/forestarboard)
+"cG" = (
+/turf/simulated/wall/prepainted,
+/area/maintenance/thirddeck/forestarboard)
+"cH" = (
+/obj/machinery/portable_atmospherics/powered/pump/filled,
+/obj/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/forestarboard)
+"cI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/forestarboard)
+"cJ" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/thirddeck/forestarboard)
+"cK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/forestarboard)
+"cL" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/door/airlock/maintenance{
+ name = "Hydroponics Storage Maintenance"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/hydroponics/storage)
+"cM" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/floor_decal/corner/green{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/honey_extractor,
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -23;
+ pixel_y = 0
+ },
+/turf/simulated/floor/tiled,
+/area/hydroponics/storage)
+"cN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hydroponics/storage)
+"cO" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/floor_decal/corner/green{
+ dir = 6
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled,
+/area/hydroponics/storage)
+"cP" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/airlock/glass/civilian{
+ name = "Hydroponics Storage"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/hydroponics)
+"cQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/floor_decal/corner/green{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hydroponics)
+"cR" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/hologram/holopad,
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"cS" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/catwalk_plated,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/plating,
+/area/hallway/primary/thirddeck/center)
+"cT" = (
+/obj/floor_decal/corner/blue/diagonal{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/item/stool/bar/padded,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/mess)
+"cU" = (
+/obj/structure/table/standard,
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/bar)
+"cV" = (
+/obj/floor_decal/corner/green{
+ dir = 10;
+ icon_state = "corner_white"
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/thirddeck/center)
+"cW" = (
+/obj/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/engineering/hardstorage)
+"cX" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"cY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/floor_decal/corner/green{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"cZ" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/door/airlock/maintenance{
+ name = "Hydroponics Maintenance"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/hydroponics)
+"da" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/starboard)
+"db" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/starboard)
+"dc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/catwalk,
+/obj/floor_decal/industrial/warning{
+ dir = 8;
+ icon_state = "warning"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/starboard)
+"dd" = (
+/turf/simulated/floor/tiled,
+/area/maintenance/thirddeck/starboard)
+"de" = (
+/obj/item/beach_ball,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/starboard)
+"df" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/starboard)
+"dg" = (
+/obj/machinery/space_heater,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/starboard)
+"dh" = (
+/obj/floor_decal/corner/blue/diagonal{
+ dir = 4
+ },
+/obj/machinery/vending/sovietsoda,
+/turf/simulated/floor/tiled/dark,
+/area/vacant/mess)
+"di" = (
+/obj/floor_decal/corner/blue/diagonal{
+ dir = 4
+ },
+/obj/machinery/computer/arcade/orion_trail,
+/turf/simulated/floor/tiled/dark,
+/area/vacant/mess)
+"dj" = (
+/obj/floor_decal/corner/blue/diagonal{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/vacant/mess)
+"dk" = (
+/obj/structure/closet/secure_closet/freezer/fridge,
+/obj/floor_decal/industrial/outline/yellow,
+/obj/item/reagent_containers/food/condiment/enzyme,
+/turf/simulated/floor/tiled/freezer,
+/area/crew_quarters/galleybackroom)
+"dl" = (
+/turf/simulated/wall/prepainted,
+/area/maintenance/substation/thirddeck)
+"dm" = (
+/obj/structure/sign/warning/high_voltage,
+/turf/simulated/wall/prepainted,
+/area/maintenance/substation/thirddeck)
+"dn" = (
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/aftstarboard)
+"do" = (
+/obj/structure/closet/emcloset,
+/obj/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/port)
+"dp" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/structure/cable/cyan{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/cyan{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled/dark/monotile,
+/area/tcommsat/chamber)
+"dq" = (
+/obj/structure/table/rack,
+/obj/item/stock_parts/subspace/treatment,
+/obj/item/stock_parts/subspace/treatment,
+/obj/item/stock_parts/subspace/treatment,
+/turf/simulated/floor/tiled/monotile,
+/area/tcommsat/storage)
+"dr" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/engineering/hardstorage)
+"ds" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/obj/machinery/door/window/brigdoor/southleft{
+ dir = 8;
+ name = "suit storage"
+ },
+/obj/item/rig/eva/equipped,
+/obj/item/rig/eva/equipped,
+/obj/structure/table/rack{
+ dir = 8
+ },
+/obj/machinery/light/small{
+ dir = 4;
+ icon_state = "bulb1"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/engineering/hardstorage)
+"dt" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/tcommsat/storage)
+"du" = (
+/obj/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/random_multi/single_item/runtime,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/galley)
+"dv" = (
+/turf/simulated/wall/prepainted,
+/area/engineering/atmos/aux)
+"dw" = (
+/obj/random/obstruction,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/forestarboard)
+"dx" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/forestarboard)
+"dy" = (
+/turf/simulated/wall/prepainted,
+/area/crew_quarters/galleybackroom)
+"dz" = (
+/obj/structure/railing/mapped{
+ dir = 1;
+ icon_state = "railing0-1"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/blue{
+ dir = 5;
+ icon_state = "intact"
+ },
+/obj/random/trash,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/command/disperser)
+"dA" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/blast/shutters{
+ dir = 2;
+ id_tag = "kitchen";
+ name = "Kitchen Shutters"
+ },
+/obj/effect/wallframe_spawn/no_grille,
+/turf/simulated/floor/plating,
+/area/hydroponics/storage)
+"dB" = (
+/obj/floor_decal/corner/green{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/center)
+"dC" = (
+/obj/floor_decal/corner/green{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/center)
+"dD" = (
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/starboard)
+"dE" = (
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ dir = 4;
+ icon_state = "shutter0";
+ id_tag = "hab_checkpoint_shutters";
+ name = "Hangar Deck Checkpoint Shutters";
+ opacity = 0
+ },
+/obj/structure/table/steel_reinforced,
+/obj/machinery/door/window/brigdoor/eastleft{
+ name = "Checkpoint Desk"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/dark/monotile,
+/area/security/habcheck)
+"dF" = (
+/obj/floor_decal/corner/blue/diagonal{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/mess)
+"dG" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/item/reagent_containers/glass/bucket,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/camera/network/third_deck{
+ c_tag = "Hydroponics - Fore";
+ dir = 1
+ },
+/obj/floor_decal/corner/green{
+ dir = 1;
+ icon_state = "corner_white"
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hydroponics)
+"dH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/seed_storage/garden,
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"dI" = (
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/starboard)
+"dK" = (
+/obj/machinery/door/airlock/civilian{
+ name = "Head"
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/crew_quarters/head)
+"dM" = (
+/obj/machinery/suit_storage_unit/atmos/alt/sol,
+/obj/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/engineering/hardstorage)
+"dN" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/camera/network/third_deck{
+ c_tag = "Hydroponics - Aft";
+ dir = 1
+ },
+/obj/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"dO" = (
+/obj/machinery/field_generator,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/starboard)
+"dP" = (
+/obj/machinery/light,
+/obj/floor_decal/corner/green{
+ dir = 10;
+ icon_state = "corner_white"
+ },
+/obj/machinery/power/apc{
+ dir = 2;
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/structure/cable/green,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/center)
+"dQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/catwalk,
+/obj/floor_decal/industrial/warning/corner{
+ dir = 1;
+ icon_state = "warningcorner"
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 25;
+ pixel_y = 0;
+ req_access = list(list("ACCESS_ENGINE_EQUIP","ACCESS_ATMOS"))
+ },
+/obj/floor_decal/industrial/warning{
+ dir = 8;
+ icon_state = "warning"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/starboard)
+"dR" = (
+/obj/structure/closet/athletic_mixed,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/starboard)
+"dS" = (
+/obj/machinery/washing_machine,
+/turf/simulated/floor/tiled,
+/area/maintenance/thirddeck/starboard)
+"dT" = (
+/obj/machinery/alarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/obj/machinery/portable_atmospherics/powered/scrubber,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/starboard)
+"dU" = (
+/obj/floor_decal/corner/blue/diagonal{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/cobweb,
+/obj/structure/table/steel,
+/obj/item/storage/box/condimentbottles,
+/turf/simulated/floor/tiled/dark,
+/area/vacant/mess)
+"dV" = (
+/obj/floor_decal/corner/blue/diagonal{
+ dir = 4
+ },
+/obj/structure/bed/chair/comfy/brown{
+ dir = 8
+ },
+/obj/decal/cleanable/dirt,
+/turf/simulated/floor/tiled/dark,
+/area/vacant/mess)
+"dW" = (
+/obj/decal/cleanable/dirt,
+/obj/random_multi/single_item/poppy,
+/turf/simulated/floor/plating,
+/area/vacant/mess)
+"dX" = (
+/obj/decal/cleanable/dirt,
+/obj/item/frame/apc,
+/turf/simulated/floor/plating,
+/area/vacant/mess)
+"dY" = (
+/obj/floor_decal/corner/blue/diagonal{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/item/stool/bar/padded,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/mess)
+"dZ" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/aftstarboard)
+"ea" = (
+/obj/machinery/door/firedoor,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/engineering{
+ name = "Third Deck Substation"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/maintenance/substation/thirddeck)
+"eb" = (
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/power/sensor{
+ name = "Powernet Sensor - Third Deck Subgrid";
+ name_tag = "Third Deck Subgrid"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/substation/thirddeck)
+"ec" = (
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/power/smes/buildable/preset/torch/substation{
+ RCon_tag = "Substation - Third Deck"
+ },
+/obj/item/device/radio/intercom{
+ pixel_y = 23
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/thirddeck)
+"ed" = (
+/obj/machinery/power/breakerbox/activated{
+ RCon_tag = "Third Deck Substation Bypass"
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/thirddeck)
+"ee" = (
+/obj/machinery/atmospherics/pipe/simple/visible/fuel{
+ dir = 6
+ },
+/obj/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/thruster/d3starboard)
+"ef" = (
+/obj/random/maintenance/solgov,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/aftstarboard)
+"eg" = (
+/obj/random/torchcloset,
+/obj/item/storage/box/lights/mixed,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/aftstarboard)
+"eh" = (
+/obj/machinery/telecomms/broadcaster/preset_right,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/bluegrid,
+/area/tcommsat/chamber)
+"ei" = (
+/obj/structure/table/rack,
+/obj/item/stock_parts/circuitboard/telecomms/processor,
+/obj/item/stock_parts/circuitboard/telecomms/processor,
+/obj/item/stock_parts/circuitboard/telecomms/receiver,
+/obj/item/stock_parts/circuitboard/telecomms/server,
+/obj/item/stock_parts/circuitboard/telecomms/server,
+/obj/item/stock_parts/circuitboard/telecomms/bus,
+/obj/item/stock_parts/circuitboard/telecomms/bus,
+/obj/item/stock_parts/circuitboard/telecomms/broadcaster,
+/turf/simulated/floor/tiled,
+/area/tcommsat/storage)
+"ej" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled/dark/monotile,
+/area/tcommsat/chamber)
+"ek" = (
+/obj/machinery/telecomms/server/presets/science,
+/obj/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/bluegrid,
+/area/tcommsat/chamber)
+"el" = (
+/obj/machinery/telecomms/server/presets/supply,
+/obj/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/bluegrid,
+/area/tcommsat/chamber)
+"em" = (
+/obj/machinery/telecomms/server/presets/medical,
+/obj/floor_decal/industrial/outline/grey,
+/obj/structure/cable/cyan{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/bluegrid,
+/area/tcommsat/chamber)
+"en" = (
+/turf/simulated/wall/prepainted,
+/area/tcommsat/computer)
+"eo" = (
+/obj/machinery/door/airlock/highsecurity{
+ name = "Telecoms Storage"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/tcommsat/computer)
+"ep" = (
+/turf/simulated/wall/r_wall/prepainted,
+/area/tcommsat/computer)
+"eq" = (
+/obj/structure/grille,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/forestarboard)
+"er" = (
+/obj/machinery/atmospherics/unary/tank/air,
+/obj/floor_decal/industrial/outline/blue,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/atmos/aux)
+"es" = (
+/obj/structure/table/rack,
+/obj/random/maintenance/solgov,
+/obj/random/maintenance/solgov,
+/obj/random/maintenance/solgov,
+/obj/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/forestarboard)
+"et" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_x = 0;
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/floor_decal/industrial/outline/yellow,
+/obj/structure/closet/secure_closet/freezer/meat,
+/obj/item/reagent_containers/food/condiment/barbecue,
+/turf/simulated/floor/tiled/freezer,
+/area/crew_quarters/galleybackroom)
+"eu" = (
+/obj/machinery/icecream_vat,
+/turf/simulated/floor/tiled/freezer,
+/area/crew_quarters/galleybackroom)
+"ev" = (
+/turf/simulated/wall/prepainted,
+/area/crew_quarters/galley)
+"ew" = (
+/obj/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/galley)
+"ex" = (
+/obj/floor_decal/industrial/warning/corner{
+ dir = 8;
+ icon_state = "warningcorner"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/engineering/hardstorage)
+"ey" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/blast/shutters{
+ dir = 2;
+ id_tag = "kitchen";
+ name = "Kitchen Shutters"
+ },
+/obj/effect/wallframe_spawn/no_grille,
+/turf/simulated/floor/plating,
+/area/crew_quarters/galley)
+"ez" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/hatch/maintenance,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/hallway/primary/thirddeck/fore)
+"eA" = (
+/obj/random/trash,
+/turf/simulated/floor/tiled/monotile,
+/area/vacant/brig)
+"eB" = (
+/obj/machinery/light{
+ dir = 1;
+ icon_state = "tube1"
+ },
+/obj/structure/table/rack,
+/obj/item/towel/random,
+/obj/item/towel/random,
+/obj/item/towel/random,
+/obj/machinery/firealarm{
+ pixel_y = 21
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/crew_quarters/head)
+"eC" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/airlock/glass/civilian{
+ name = "Hydroponics Bay"
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/hydroponics)
+"eD" = (
+/obj/machinery/vending/lavatory,
+/turf/simulated/floor/tiled/freezer,
+/area/crew_quarters/head)
+"eE" = (
+/obj/machinery/door/unpowered/simple/plastic/open,
+/turf/simulated/floor/tiled/freezer,
+/area/crew_quarters/head)
+"eF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/thirddeck/starboard)
+"eG" = (
+/obj/floor_decal/corner/blue/diagonal{
+ dir = 4
+ },
+/obj/item/device/radio/intercom/entertainment{
+ dir = 8;
+ pixel_x = 22
+ },
+/obj/machinery/vending/snix{
+ dir = 4;
+ icon_state = "snix"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/vacant/mess)
+"eH" = (
+/obj/machinery/door/airlock/maintenance,
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/thirddeck/foreport)
+"eI" = (
+/turf/simulated/wall/prepainted,
+/area/engineering/hardstorage)
+"eJ" = (
+/obj/machinery/alarm{
+ dir = 4;
+ icon_state = "alarm0";
+ pixel_x = -22;
+ pixel_y = 0
+ },
+/obj/floor_decal/industrial/warning/corner{
+ dir = 4;
+ icon_state = "warningcorner"
+ },
+/obj/structure/catwalk,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/thirddeck)
+"eK" = (
+/obj/machinery/power/terminal{
+ dir = 1;
+ icon_state = "term"
+ },
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/substation/thirddeck)
+"eL" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/machinery/disposal,
+/obj/machinery/newscaster{
+ pixel_x = -32
+ },
+/obj/floor_decal/industrial/hatch/yellow,
+/obj/machinery/camera/network/third_deck{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/gym)
+"eM" = (
+/obj/machinery/door/firedoor,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/engineering{
+ name = "Utility Up"
+ },
+/obj/floor_decal/industrial/warning/corner{
+ dir = 1;
+ icon_state = "warningcorner"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/maintenance/substation/thirddeck)
+"eN" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/aftstarboard)
+"eO" = (
+/obj/machinery/atmospherics/pipe/simple/visible/fuel{
+ dir = 6
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/thruster/d3starboard)
+"eP" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/binary/pump/high_power/on{
+ dir = 4;
+ target_pressure = 15000
+ },
+/turf/simulated/floor/plating,
+/area/thruster/d3starboard)
+"eQ" = (
+/obj/structure/table/standard,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ dir = 4;
+ pixel_x = -21
+ },
+/obj/item/reagent_containers/glass/rag,
+/obj/item/reagent_containers/spray/cleaner,
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/bar)
+"eR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/fuel{
+ dir = 10
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/aftstarboard)
+"eS" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tcommsat/chamber)
+"eT" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/catwalk_plated/dark,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/tcommsat/chamber)
+"eU" = (
+/obj/machinery/telecomms/server/presets/engineering,
+/turf/simulated/floor/bluegrid,
+/area/tcommsat/chamber)
+"eV" = (
+/obj/machinery/telecomms/server/presets/security,
+/obj/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/bluegrid,
+/area/tcommsat/chamber)
+"eW" = (
+/obj/machinery/telecomms/server/presets/service,
+/obj/floor_decal/industrial/outline/grey,
+/obj/structure/cable/cyan{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/bluegrid,
+/area/tcommsat/chamber)
+"eX" = (
+/obj/wallframe_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/tcommsat/computer)
+"eY" = (
+/obj/structure/cable/cyan{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/power/smes/buildable/preset/on_full{
+ RCon_tag = "Substation - Telecommunications"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tcommsat/computer)
+"eZ" = (
+/obj/machinery/power/terminal{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tcommsat/computer)
+"fa" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/dark,
+/area/tcommsat/computer)
+"fb" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/closet/toolcloset,
+/turf/simulated/floor/tiled/dark/monotile,
+/area/tcommsat/computer)
+"fc" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/cyan{
+ dir = 8;
+ icon_state = "map"
+ },
+/obj/floor_decal/industrial/warning{
+ dir = 1;
+ icon_state = "warning"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/engineering/atmos/aux)
+"fd" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/cyan,
+/obj/floor_decal/industrial/warning{
+ dir = 1;
+ icon_state = "warning"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/engineering/atmos/aux)
+"fe" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ dir = 9;
+ icon_state = "intact"
+ },
+/obj/floor_decal/industrial/warning{
+ dir = 1;
+ icon_state = "warning"
+ },
+/obj/machinery/portable_atmospherics/canister/empty,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/atmos/aux)
+"ff" = (
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/thirddeck/forestarboard)
+"fg" = (
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -23;
+ pixel_y = 0
+ },
+/obj/structure/railing/mapped{
+ dir = 4;
+ icon_state = "railing0-1"
+ },
+/obj/structure/railing/mapped{
+ dir = 1;
+ icon_state = "railing0-1"
+ },
+/obj/random_multi/single_item/poppy,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/forestarboard)
+"fh" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/random/trash,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/forestarboard)
+"fi" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/railing/mapped{
+ dir = 8;
+ icon_state = "railing0-1"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/forestarboard)
+"fj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/forestarboard)
+"fk" = (
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled/dark/monotile,
+/area/tcommsat/chamber)
+"fl" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/civilian{
+ name = "Head"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/crew_quarters/head)
+"fm" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white/monotile,
+/area/crew_quarters/sleep/cryo)
+"fn" = (
+/obj/machinery/door/airlock/engineering{
+ name = "Engineering Hard Storage"
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled/dark/monotile,
+/area/engineering/hardstorage)
+"fo" = (
+/obj/item/storage/mirror{
+ pixel_y = 32
+ },
+/obj/structure/hygiene/sink{
+ dir = 1;
+ pixel_y = 16
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/crew_quarters/head)
+"fp" = (
+/obj/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/galley)
+"fq" = (
+/obj/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/machinery/cooker/grill,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/closet/shipping_wall/filled{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/galley)
+"fr" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/engineering/hardstorage)
+"fs" = (
+/obj/floor_decal/corner/lime{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/aft)
+"ft" = (
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/structure/closet/secure_closet/bar_torch,
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/bar)
+"fv" = (
+/obj/structure/table/marble,
+/obj/machinery/microwave{
+ pixel_x = -3;
+ pixel_y = 6
+ },
+/obj/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/galley)
+"fw" = (
+/obj/structure/table/marble,
+/obj/machinery/reagentgrinder/juicer,
+/obj/item/reagent_containers/glass/beaker/large,
+/obj/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/galley)
+"fy" = (
+/obj/structure/table/marble,
+/obj/item/reagent_containers/food/condiment/enzyme,
+/obj/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/galley)
+"fz" = (
+/obj/structure/sign/poster,
+/turf/simulated/wall/prepainted,
+/area/crew_quarters/head)
+"fA" = (
+/obj/floor_decal/corner/blue{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/command/disperser)
+"fB" = (
+/turf/simulated/wall/prepainted,
+/area/crew_quarters/mess)
+"fC" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1;
+ icon_state = "map-scrubbers"
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/thirddeck/fore)
+"fD" = (
+/obj/item/storage/secure/safe{
+ pixel_x = 32;
+ pixel_y = 0
+ },
+/obj/structure/closet/secure_closet/personal/empty,
+/turf/simulated/floor/tiled/freezer,
+/area/crew_quarters/head)
+"fE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/floor_decal/industrial/warning{
+ dir = 8;
+ icon_state = "warning"
+ },
+/obj/structure/catwalk,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/starboard)
+"fF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/starboard)
+"fG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/alarm{
+ dir = 1;
+ icon_state = "alarm0";
+ pixel_y = -22
+ },
+/obj/structure/catwalk,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/starboard)
+"fH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9;
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/starboard)
+"fJ" = (
+/turf/simulated/floor/wood/walnut,
+/area/crew_quarters/observation)
+"fK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/starboard)
+"fL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/alarm{
+ dir = 1;
+ icon_state = "alarm0";
+ pixel_y = -22
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/starboard)
+"fM" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/starboard)
+"fN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9;
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/starboard)
+"fO" = (
+/obj/floor_decal/corner/blue/diagonal{
+ dir = 4
+ },
+/obj/structure/table/marble,
+/turf/simulated/floor/tiled/dark,
+/area/vacant/mess)
+"fP" = (
+/obj/floor_decal/corner/red/diagonal,
+/obj/decal/cleanable/dirt,
+/obj/random/junk,
+/turf/simulated/floor/tiled/dark,
+/area/vacant/mess)
+"fQ" = (
+/obj/structure/table,
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/vacant/mess)
+"fR" = (
+/obj/floor_decal/corner/red/diagonal,
+/obj/structure/closet/cabinet,
+/turf/simulated/floor/tiled/dark,
+/area/vacant/mess)
+"fS" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/door/airlock/civilian{
+ name = "Head"
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled/freezer,
+/area/crew_quarters/sleep/cryo)
+"fT" = (
+/obj/structure/table/rack,
+/obj/random/maintenance/solgov,
+/obj/random/maintenance/solgov,
+/obj/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/foreport)
+"fU" = (
+/obj/structure/table/steel,
+/obj/random/maintenance/solgov,
+/obj/random/maintenance/solgov,
+/turf/simulated/floor/tiled,
+/area/maintenance/thirddeck/starboard)
+"fV" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/crew_quarters/head)
+"fW" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/crew_quarters/head)
+"fX" = (
+/obj/structure/cable{
+ d1 = 16;
+ d2 = 0;
+ icon_state = "16-0";
+ pixel_y = 0
+ },
+/obj/floor_decal/industrial/warning/full,
+/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{
+ color = "#ff0000";
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/zpipe/up/supply{
+ color = "#0000ff";
+ dir = 1
+ },
+/obj/structure/cable,
+/obj/structure/railing/mapped{
+ dir = 1;
+ icon_state = "railing0-1"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/aftstarboard)
+"fY" = (
+/obj/machinery/atmospherics/pipe/simple/visible/fuel{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/thruster/d3starboard)
+"fZ" = (
+/obj/floor_decal/industrial/hatch/yellow,
+/obj/structure/ladder/up,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/aftstarboard)
+"ga" = (
+/obj/machinery/telecomms/hub/preset,
+/obj/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/bluegrid,
+/area/tcommsat/chamber)
+"gb" = (
+/obj/machinery/bluespacerelay,
+/obj/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/bluegrid,
+/area/tcommsat/chamber)
+"gc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/catwalk_plated/dark,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/tcommsat/chamber)
+"gd" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/catwalk_plated/dark,
+/turf/simulated/floor/plating,
+/area/tcommsat/chamber)
+"ge" = (
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/light_switch{
+ pixel_x = 22;
+ pixel_y = -22
+ },
+/turf/simulated/floor/tiled,
+/area/tcommsat/storage)
+"gf" = (
+/obj/machinery/door/airlock/hatch{
+ name = "Telecoms Server Access";
+ secured_wires = 1
+ },
+/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/tcommsat/computer)
+"gg" = (
+/obj/machinery/light,
+/obj/structure/cable/cyan{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tcommsat/computer)
+"gh" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_y = -32
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tcommsat/computer)
+"gi" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tcommsat/computer)
+"gj" = (
+/obj/machinery/alarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/obj/structure/table/rack,
+/obj/item/clothing/suit/storage/hooded/wintercoat/engineering,
+/obj/item/clothing/suit/storage/hooded/wintercoat/dais{
+ pixel_y = 12
+ },
+/turf/simulated/floor/tiled/dark/monotile,
+/area/tcommsat/computer)
+"gk" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/cyan{
+ dir = 8;
+ icon_state = "map"
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/engineering/atmos/aux)
+"gl" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 8
+ },
+/obj/floor_decal/industrial/outline/yellow,
+/obj/machinery/portable_atmospherics/powered/pump/filled,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/atmos/aux)
+"gm" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 4
+ },
+/obj/floor_decal/industrial/outline/yellow,
+/obj/machinery/portable_atmospherics/powered/scrubber,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/atmos/aux)
+"gn" = (
+/obj/machinery/atmospherics/pipe/simple/visible/red{
+ dir = 10;
+ icon_state = "intact"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/engineering/atmos/aux)
+"go" = (
+/obj/machinery/atmospherics/unary/freezer,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/atmos/aux)
+"gp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/forestarboard)
+"gq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green,
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/teleporter/thirddeck)
+"gr" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/light,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/crew_quarters/head)
+"gs" = (
+/turf/simulated/floor/tiled/freezer,
+/area/crew_quarters/galleybackroom)
+"gt" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/port)
+"gu" = (
+/obj/structure/largecrate,
+/obj/random/maintenance/solgov,
+/obj/random/maintenance/solgov,
+/obj/random/maintenance/solgov,
+/obj/random/maintenance/solgov,
+/obj/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/foreport)
+"gv" = (
+/obj/floor_decal/corner/blue/diagonal{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/mess)
+"gw" = (
+/obj/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/galley)
+"gx" = (
+/obj/structure/lattice,
+/obj/structure/disposalpipe/down{
+ dir = 8
+ },
+/turf/simulated/open,
+/area/maintenance/thirddeck/aftport)
+"gy" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/floor_decal/corner/blue/diagonal{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/mess)
+"gz" = (
+/obj/floor_decal/corner/blue/diagonal{
+ dir = 4
+ },
+/obj/structure/disposalpipe/junction,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/mess)
+"gA" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/maintenance{
+ name = "Mess Hall Maintenance"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/crew_quarters/mess)
+"gB" = (
+/obj/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/forestarboard)
+"gC" = (
+/obj/structure/disposalpipe/up{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/starboard)
+"gD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/floor_decal/industrial/warning{
+ dir = 8;
+ icon_state = "warning"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/starboard)
+"gE" = (
+/obj/effect/shuttle_landmark/ninja/deck4{
+ name = "3rd Deck, Aft"
+ },
+/turf/space,
+/area/space)
+"gF" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9;
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/catwalk_plated,
+/turf/simulated/floor/plating,
+/area/hallway/primary/thirddeck/fore)
+"gG" = (
+/obj/effect/decal/cleanable/flour,
+/turf/simulated/floor/plating,
+/area/vacant/mess)
+"gH" = (
+/obj/effect/landmark{
+ name = "xeno_spawn";
+ pixel_x = -1
+ },
+/turf/simulated/floor/plating,
+/area/vacant/mess)
+"gI" = (
+/obj/floor_decal/corner/red/diagonal,
+/obj/effect/decal/cleanable/flour,
+/turf/simulated/floor/tiled/dark,
+/area/vacant/mess)
+"gJ" = (
+/obj/structure/closet/secure_closet/freezer/fridge,
+/obj/random/single/cola,
+/obj/random/single/cola,
+/obj/random/single/cola,
+/obj/random/single/cola,
+/obj/random/single/cola,
+/obj/decal/cleanable/dirt,
+/obj/floor_decal/corner/red/diagonal,
+/turf/simulated/floor/tiled/dark,
+/area/vacant/mess)
+"gK" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/crew_quarters/head)
+"gL" = (
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/hygiene/drain,
+/turf/simulated/floor/tiled/freezer,
+/area/crew_quarters/head)
+"gM" = (
+/obj/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/foreport)
+"gO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/freezer,
+/area/crew_quarters/head)
+"gP" = (
+/obj/floor_decal/techfloor{
+ dir = 4;
+ icon_state = "techfloor_edges"
+ },
+/obj/item/modular_computer/telescreen/preset/engineering{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/engineering/hardstorage)
+"gQ" = (
+/obj/structure/railing/mapped{
+ dir = 1;
+ icon_state = "railing0-1"
+ },
+/obj/structure/railing/mapped{
+ dir = 8;
+ icon_state = "railing0-1"
+ },
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/foreport)
+"gR" = (
+/obj/structure/table/rack{
+ dir = 8
+ },
+/obj/item/device/suit_cooling_unit,
+/obj/item/device/suit_cooling_unit,
+/obj/floor_decal/corner/yellow/half{
+ dir = 8;
+ icon_state = "bordercolorhalf"
+ },
+/obj/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark/monotile,
+/area/engineering/hardstorage)
+"gS" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/structure/railing/mapped{
+ dir = 8;
+ icon_state = "railing0-1"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/command/disperser)
+"gT" = (
+/obj/structure/railing/mapped{
+ dir = 1;
+ icon_state = "railing0-1"
+ },
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/foreport)
+"gU" = (
+/obj/machinery/door/firedoor,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/thirddeck/aft)
+"gV" = (
+/obj/machinery/atmospherics/pipe/simple/visible/fuel{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/light_switch{
+ pixel_x = -24;
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/thruster/d3starboard)
+"gW" = (
+/obj/machinery/atmospherics/pipe/simple/visible/fuel{
+ dir = 4
+ },
+/obj/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/thruster/d3starboard)
+"gX" = (
+/obj/floor_decal/industrial/hatch/yellow,
+/obj/structure/ladder,
+/obj/structure/catwalk,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/aftstarboard)
+"gY" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tcommsat/chamber)
+"gZ" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/catwalk_plated/dark,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/tcommsat/chamber)
+"ha" = (
+/obj/machinery/telecomms/server/presets/common,
+/obj/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/bluegrid,
+/area/tcommsat/chamber)
+"hb" = (
+/obj/machinery/telecomms/server/presets/command,
+/obj/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/bluegrid,
+/area/tcommsat/chamber)
+"hc" = (
+/obj/floor_decal/industrial/outline/grey,
+/obj/machinery/telecomms/server/presets/exploration,
+/turf/simulated/floor/bluegrid,
+/area/tcommsat/chamber)
+"hd" = (
+/obj/floor_decal/industrial/warning,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/camera/network/command{
+ c_tag = "Telecommunications - Server Entry";
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tcommsat/computer)
+"he" = (
+/obj/floor_decal/industrial/warning/corner{
+ dir = 8;
+ icon_state = "warningcorner"
+ },
+/obj/structure/window/reinforced,
+/obj/structure/table/steel,
+/obj/machinery/cell_charger,
+/obj/item/storage/lunchbox/dais{
+ pixel_x = 6;
+ pixel_y = 6
+ },
+/turf/simulated/floor/tiled/dark/monotile,
+/area/tcommsat/computer)
+"hf" = (
+/obj/machinery/alarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/forestarboard)
+"hg" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/cyan{
+ dir = 8;
+ icon_state = "map"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/engineering/atmos/aux)
+"hh" = (
+/obj/machinery/atmospherics/pipe/manifold4w/visible/red,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/engineering/atmos/aux)
+"hi" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/red{
+ dir = 4;
+ icon_state = "map"
+ },
+/obj/structure/railing/mapped{
+ dir = 8;
+ icon_state = "railing0-1"
+ },
+/obj/structure/railing/mapped{
+ dir = 1;
+ icon_state = "railing0-1"
+ },
+/obj/structure/closet/hydrant{
+ pixel_x = 32
+ },
+/turf/simulated/floor/plating,
+/area/engineering/atmos/aux)
+"hj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/crew_quarters/head)
+"hk" = (
+/obj/machinery/alarm{
+ dir = 1;
+ icon_state = "alarm0";
+ pixel_y = -22
+ },
+/obj/machinery/camera/network/engineering{
+ c_tag = "Substation - Third Deck";
+ dir = 1
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/substation/thirddeck)
+"hl" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/seed_extractor,
+/turf/simulated/floor/tiled,
+/area/hydroponics/storage)
+"hm" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/freezer,
+/area/crew_quarters/galleybackroom)
+"hn" = (
+/obj/machinery/light_switch{
+ pixel_x = 24;
+ pixel_y = 28
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/crew_quarters/galleybackroom)
+"ho" = (
+/obj/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ dir = 4;
+ pixel_x = -21
+ },
+/obj/machinery/cooker/oven,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/galley)
+"hp" = (
+/obj/machinery/light/small,
+/obj/item/storage/secure/safe{
+ pixel_x = 32;
+ pixel_y = 0
+ },
+/obj/structure/closet/secure_closet/personal/empty,
+/turf/simulated/floor/tiled/freezer,
+/area/crew_quarters/head)
+"hq" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_x = 0;
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/newscaster{
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/office)
+"hr" = (
+/obj/structure/table/marble,
+/obj/item/material/kitchen/rollingpin,
+/obj/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/galley)
+"hs" = (
+/obj/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/floor_decal/industrial/warning/corner{
+ dir = 4;
+ icon_state = "warningcorner"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/galley)
+"ht" = (
+/obj/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/floor_decal/industrial/warning{
+ dir = 1;
+ icon_state = "warning"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/galley)
+"hu" = (
+/obj/floor_decal/corner/blue/diagonal{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/media/jukebox{
+ pixel_y = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/mess)
+"hv" = (
+/obj/structure/railing/mapped{
+ dir = 1;
+ icon_state = "railing0-1"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/foreport)
+"hw" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/floor_decal/corner/blue/diagonal{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/mess)
+"hx" = (
+/obj/structure/fitness/weightlifter,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/gym)
+"hy" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/floor_decal/industrial/warning{
+ dir = 1;
+ icon_state = "warning"
+ },
+/obj/machinery/light,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/starboard)
+"hz" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/floor_decal/industrial/warning/corner{
+ dir = 1;
+ icon_state = "warningcorner"
+ },
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/starboard)
+"hA" = (
+/obj/structure/closet/firecloset,
+/turf/simulated/floor/wood/walnut,
+/area/crew_quarters/virtual_reality)
+"hB" = (
+/obj/floor_decal/corner/red/diagonal,
+/obj/structure/table/marble,
+/obj/machinery/chemical_dispenser/bar_soft/full,
+/turf/simulated/floor/tiled/dark,
+/area/vacant/mess)
+"hC" = (
+/obj/floor_decal/corner/red/diagonal,
+/obj/structure/table/marble,
+/turf/simulated/floor/tiled/dark,
+/area/vacant/mess)
+"hD" = (
+/obj/floor_decal/corner/red/diagonal,
+/obj/structure/table/marble,
+/obj/machinery/reagentgrinder/juicer,
+/obj/item/reagent_containers/glass/beaker/large,
+/turf/simulated/floor/tiled/dark,
+/area/vacant/mess)
+"hE" = (
+/obj/structure/table/marble,
+/obj/machinery/microwave,
+/turf/simulated/floor/plating,
+/area/vacant/mess)
+"hG" = (
+/obj/structure/catwalk,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/foreport)
+"hH" = (
+/obj/floor_decal/techfloor/corner,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/engineering/hardstorage)
+"hI" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/unary/vent_pump/tank{
+ dir = 2;
+ external_pressure_bound = 0;
+ external_pressure_bound_default = 0;
+ icon_state = "map_vent_in";
+ id_tag = "d3ph_out";
+ initialize_directions = 1;
+ internal_pressure_bound = 2000;
+ internal_pressure_bound_default = 2000;
+ pressure_checks = 2;
+ pressure_checks_default = 2;
+ pump_direction = 0;
+ use_power = 1
+ },
+/turf/simulated/floor/reinforced/hydrogen,
+/area/thruster/d3port)
+"hJ" = (
+/obj/structure/railing/mapped,
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan,
+/turf/simulated/open,
+/area/maintenance/thirddeck/port)
+"hK" = (
+/obj/structure/railing/mapped{
+ dir = 4;
+ icon_state = "railing0-1"
+ },
+/obj/structure/railing/mapped{
+ dir = 1;
+ icon_state = "railing0-1"
+ },
+/turf/simulated/open,
+/area/hallway/primary/thirddeck/fore)
+"hL" = (
+/turf/simulated/wall/walnut,
+/area/crew_quarters/head/sauna)
+"hM" = (
+/obj/floor_decal/industrial/warning/corner,
+/turf/simulated/floor/airless,
+/area/command/disperser)
+"hN" = (
+/obj/random/junk,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/aftport)
+"hO" = (
+/obj/machinery/atmospherics/pipe/simple/visible/fuel{
+ dir = 4
+ },
+/obj/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/thruster/d3starboard)
+"hP" = (
+/obj/structure/window/reinforced/polarized/full,
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/head/sauna)
+"hQ" = (
+/obj/machinery/telecomms/receiver/preset_right,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/bluegrid,
+/area/tcommsat/chamber)
+"hS" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/dark/monotile,
+/area/tcommsat/chamber)
+"hT" = (
+/obj/machinery/r_n_d/server/robotics,
+/obj/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/bluegrid,
+/area/tcommsat/chamber)
+"hU" = (
+/obj/floor_decal/industrial/outline/grey,
+/obj/machinery/message_server,
+/turf/simulated/floor/bluegrid,
+/area/tcommsat/chamber)
+"hV" = (
+/obj/machinery/r_n_d/server/core,
+/obj/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/bluegrid,
+/area/tcommsat/chamber)
+"hW" = (
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/wallframe_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/tcommsat/computer)
+"hX" = (
+/obj/machinery/computer/telecomms/monitor{
+ dir = 4;
+ icon_state = "computer";
+ network = "tcommsat"
+ },
+/turf/simulated/floor/lino,
+/area/tcommsat/computer)
+"hY" = (
+/obj/structure/table/steel,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/item/storage/toolbox/mechanical,
+/obj/item/stack/cable_coil{
+ pixel_x = 3;
+ pixel_y = -7
+ },
+/obj/random/smokes,
+/obj/item/reagent_containers/food/drinks/glass2/coffeecup/dais{
+ pixel_x = -6;
+ pixel_y = 12
+ },
+/turf/simulated/floor/lino,
+/area/tcommsat/computer)
+"hZ" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/lino,
+/area/tcommsat/computer)
+"ia" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/structure/reagent_dispensers/water_cooler{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/lino,
+/area/tcommsat/computer)
+"ib" = (
+/obj/machinery/portable_atmospherics/powered/scrubber,
+/obj/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/forestarboard)
+"ic" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/red{
+ dir = 4;
+ icon_state = "map"
+ },
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = 21
+ },
+/obj/structure/railing/mapped{
+ dir = 8;
+ icon_state = "railing0-1"
+ },
+/turf/simulated/floor/plating,
+/area/engineering/atmos/aux)
+"id" = (
+/obj/structure/railing/mapped,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/forestarboard)
+"ie" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/floor_decal/industrial/warning/corner,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/forestarboard)
+"if" = (
+/obj/structure/disposalpipe/up{
+ dir = 8
+ },
+/obj/floor_decal/industrial/warning/full,
+/obj/structure/railing/mapped{
+ dir = 8;
+ icon_state = "railing0-1"
+ },
+/obj/structure/railing/mapped{
+ dir = 4;
+ icon_state = "railing0-1"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/forestarboard)
+"ig" = (
+/obj/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/machinery/light_switch{
+ pixel_x = -22;
+ pixel_y = 26
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/galley)
+"ih" = (
+/obj/structure/closet/crate/freezer,
+/turf/simulated/floor/tiled/freezer,
+/area/crew_quarters/galleybackroom)
+"ii" = (
+/obj/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_y = -32
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/galley)
+"ij" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1;
+ icon_state = "map-scrubbers"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/crew_quarters/galleybackroom)
+"ik" = (
+/obj/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/galley)
+"il" = (
+/obj/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1;
+ icon_state = "map-scrubbers"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/galley)
+"im" = (
+/obj/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/galley)
+"in" = (
+/obj/item/stool/padded,
+/turf/simulated/floor/tiled/freezer,
+/area/crew_quarters/head)
+"ip" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/light,
+/obj/floor_decal/corner/green,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/fore)
+"iq" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 4
+ },
+/obj/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/floor_decal/industrial/hatch/blue,
+/turf/simulated/floor/tiled/techfloor,
+/area/thruster/d3port)
+"ir" = (
+/obj/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/galley)
+"is" = (
+/obj/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/galley)
+"it" = (
+/turf/simulated/floor/reinforced/hydrogen,
+/area/thruster/d3port)
+"iu" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/wallframe_spawn/no_grille,
+/turf/simulated/floor/plating,
+/area/crew_quarters/mess)
+"iv" = (
+/obj/structure/disposalpipe/segment,
+/obj/floor_decal/corner/blue/diagonal{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/mess)
+"iw" = (
+/obj/floor_decal/industrial/hatch/yellow,
+/obj/machinery/light,
+/obj/structure/ship_munition/disperser_charge/mining,
+/turf/simulated/floor/tiled/dark,
+/area/command/disperser)
+"ix" = (
+/obj/machinery/light,
+/turf/simulated/floor/airless,
+/area/command/disperser)
+"iy" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/window/northleft,
+/obj/machinery/door/window,
+/obj/structure/curtain/open/shower,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/wood/walnut,
+/area/crew_quarters/head/sauna)
+"iz" = (
+/obj/wallframe_spawn/reinforced/hull,
+/obj/machinery/door/blast/regular/open{
+ dir = 4;
+ icon_state = "pdoor0";
+ id_tag = "bsa-window";
+ name = "Observation Blast Door"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/blue{
+ dir = 4;
+ icon_state = "intact"
+ },
+/turf/simulated/floor/plating,
+/area/command/disperser)
+"iA" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/fuel{
+ dir = 8
+ },
+/obj/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/thruster/d3starboard)
+"iB" = (
+/obj/structure/hygiene/shower{
+ dir = 4;
+ icon_state = "shower";
+ pixel_x = 0;
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/crew_quarters/head)
+"iC" = (
+/obj/structure/table/woodentable/mahogany,
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/memorial)
+"iD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/crew_quarters/head)
+"iE" = (
+/obj/structure/bed/chair/comfy/black,
+/turf/simulated/floor/carpet,
+/area/crew_quarters/recreation)
+"iF" = (
+/obj/structure/closet/crate/freezer,
+/obj/item/reagent_containers/food/drinks/cans/speer,
+/obj/item/reagent_containers/food/drinks/cans/speer,
+/obj/item/reagent_containers/food/drinks/cans/speer,
+/obj/item/reagent_containers/food/drinks/cans/ale,
+/obj/item/reagent_containers/food/drinks/cans/ale,
+/obj/item/reagent_containers/food/drinks/cans/ale,
+/obj/item/reagent_containers/food/drinks/cans/artbru,
+/obj/item/reagent_containers/food/drinks/cans/waterbottle,
+/obj/item/reagent_containers/food/drinks/cans/waterbottle,
+/obj/item/reagent_containers/food/drinks/cans/waterbottle,
+/obj/item/reagent_containers/food/drinks/cans/waterbottle,
+/obj/machinery/firealarm{
+ pixel_y = 21
+ },
+/turf/simulated/floor/wood/walnut,
+/area/crew_quarters/head/sauna)
+"iG" = (
+/obj/structure/railing/mapped{
+ dir = 8;
+ icon_state = "railing0-1"
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/fuel{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/aftstarboard)
+"iH" = (
+/obj/structure/railing/mapped{
+ dir = 4;
+ icon_state = "railing0-1"
+ },
+/obj/machinery/atmospherics/valve/shutoff/fuel{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/aftstarboard)
+"iI" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/floor_decal/corner/green/half,
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/thirddeck/fore)
+"iJ" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/wallframe_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/tcommsat/computer)
+"iK" = (
+/obj/machinery/computer/telecomms/server{
+ dir = 4;
+ icon_state = "computer";
+ network = "tcommsat"
+ },
+/turf/simulated/floor/lino,
+/area/tcommsat/computer)
+"iL" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 8
+ },
+/turf/simulated/floor/lino,
+/area/tcommsat/computer)
+"iM" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/lino,
+/area/tcommsat/computer)
+"iN" = (
+/obj/machinery/camera/network/command{
+ c_tag = "Telecommunications - Control";
+ dir = 8
+ },
+/obj/machinery/computer/modular/preset/aislot/research{
+ dir = 8;
+ icon_state = "console"
+ },
+/turf/simulated/floor/lino,
+/area/tcommsat/computer)
+"iO" = (
+/obj/machinery/atmospherics/valve,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/engineering/atmos/aux)
+"iP" = (
+/obj/machinery/computer/atmos_alert,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/atmos/aux)
+"iQ" = (
+/obj/machinery/atmospherics/pipe/simple/visible/red{
+ dir = 9;
+ icon_state = "intact"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/engineering/atmos/aux)
+"iR" = (
+/obj/machinery/atmospherics/valve,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/structure/railing/mapped{
+ dir = 8;
+ icon_state = "railing0-1"
+ },
+/obj/structure/railing/mapped,
+/turf/simulated/floor/plating,
+/area/engineering/atmos/aux)
+"iS" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/forestarboard)
+"iT" = (
+/obj/structure/disposalpipe/down{
+ dir = 8
+ },
+/obj/structure/lattice,
+/obj/structure/railing/mapped,
+/obj/structure/railing/mapped{
+ dir = 8;
+ icon_state = "railing0-1"
+ },
+/obj/structure/railing/mapped{
+ dir = 4;
+ icon_state = "railing0-1"
+ },
+/turf/simulated/open,
+/area/maintenance/thirddeck/forestarboard)
+"iU" = (
+/obj/structure/closet/secure_closet/freezer/meat,
+/obj/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/freezer,
+/area/crew_quarters/galleybackroom)
+"iV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/item/stool/wood,
+/turf/simulated/floor/wood/walnut,
+/area/crew_quarters/head/sauna)
+"iW" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/machinery/chem_master/condimaster{
+ name = "CondiMaster Neo";
+ pixel_x = 0
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/crew_quarters/galleybackroom)
+"iX" = (
+/obj/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/structure/cable/green,
+/obj/machinery/power/apc{
+ dir = 2;
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/structure/hygiene/sink/kitchen{
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/galley)
+"iY" = (
+/obj/machinery/disposal,
+/obj/floor_decal/industrial/hatch/yellow,
+/obj/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/galley)
+"iZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/wood/walnut,
+/area/crew_quarters/head/sauna)
+"ja" = (
+/obj/structure/railing/mapped{
+ dir = 1;
+ icon_state = "railing0-1"
+ },
+/obj/structure/railing/mapped{
+ dir = 4;
+ icon_state = "railing0-1"
+ },
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/foreport)
+"jb" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/gym)
+"jc" = (
+/obj/floor_decal/corner/blue/diagonal{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/mess)
+"jd" = (
+/obj/floor_decal/corner/blue/diagonal{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/mess)
+"je" = (
+/obj/floor_decal/corner/green{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/aft)
+"jf" = (
+/obj/floor_decal/corner/blue/diagonal{
+ dir = 4
+ },
+/obj/machinery/camera/network/third_deck{
+ c_tag = "Mess Hall - Center"
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_x = 0;
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/structure/table/standard{
+ name = "plastic table frame"
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/obj/item/paper_bin,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/mess)
+"jg" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ dir = 4
+ },
+/turf/simulated/wall/r_wall/hull,
+/area/thruster/d3starboard)
+"jh" = (
+/obj/machinery/door/airlock/vault/bolted{
+ id_tag = "civsafedoor";
+ name = "Third Deck Safe Room"
+ },
+/obj/machinery/door/firedoor,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/crew_quarters/safe_room/thirddeck)
+"ji" = (
+/obj/floor_decal/corner/green/half,
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/thirddeck/aft)
+"jj" = (
+/obj/floor_decal/corner/blue/diagonal{
+ dir = 4
+ },
+/obj/machinery/vending/coffee{
+ dir = 1;
+ icon_state = "coffee"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/mess)
+"jk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/open,
+/area/maintenance/thirddeck/port)
+"jl" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/wood/walnut,
+/area/crew_quarters/head/sauna)
+"jm" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/camera/network/third_deck{
+ c_tag = "Third Deck - Ladders";
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/aft)
+"jn" = (
+/obj/floor_decal/corner/blue/diagonal{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/bed/chair{
+ dir = 8;
+ icon_state = "chair_preview"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/mess)
+"jo" = (
+/turf/simulated/floor/bluegrid,
+/area/tcommsat/chamber)
+"jp" = (
+/obj/machinery/button/windowtint{
+ pixel_x = 28
+ },
+/obj/machinery/alarm/warm{
+ alarm_frequency = 1439;
+ pixel_y = 24
+ },
+/obj/item/stool/wood,
+/obj/item/bikehorn/rubberducky,
+/turf/simulated/floor/wood/walnut,
+/area/crew_quarters/head/sauna)
+"jq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/engineering/hardstorage)
+"jr" = (
+/obj/machinery/floodlight,
+/obj/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/foreport)
+"js" = (
+/obj/structure/hygiene/shower{
+ dir = 4;
+ icon_state = "shower";
+ pixel_x = 0;
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/crew_quarters/head)
+"jt" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/door/airlock/maintenance,
+/obj/machinery/door/firedoor,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/thirddeck/port)
+"ju" = (
+/obj/machinery/light/small,
+/obj/item/stool/wood,
+/turf/simulated/floor/tiled/freezer,
+/area/crew_quarters/head)
+"jv" = (
+/obj/random/trash,
+/obj/structure/railing/mapped{
+ dir = 8;
+ icon_state = "railing0-1"
+ },
+/obj/structure/railing/mapped,
+/obj/machinery/atmospherics/valve/shutoff/supply,
+/obj/machinery/atmospherics/valve/shutoff/scrubbers,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/aftstarboard)
+"jw" = (
+/obj/structure/railing/mapped{
+ dir = 4;
+ icon_state = "railing0-1"
+ },
+/obj/structure/railing/mapped,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/aftstarboard)
+"jx" = (
+/obj/item/device/radio/intercom{
+ dir = 4;
+ pixel_x = -21
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tcommsat/chamber)
+"jy" = (
+/obj/machinery/telecomms/bus/preset_four,
+/obj/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/bluegrid,
+/area/tcommsat/chamber)
+"jz" = (
+/obj/machinery/telecomms/processor/preset_four,
+/obj/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/bluegrid,
+/area/tcommsat/chamber)
+"jA" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tcommsat/chamber)
+"jB" = (
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/wallframe_spawn/reinforced,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/tcommsat/computer)
+"jC" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/computer/message_monitor{
+ dir = 4;
+ icon_state = "computer"
+ },
+/turf/simulated/floor/lino,
+/area/tcommsat/computer)
+"jD" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/lino,
+/area/tcommsat/computer)
+"jE" = (
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/lino,
+/area/tcommsat/computer)
+"jF" = (
+/obj/structure/table/steel,
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/item/storage/box/cups,
+/obj/machinery/power/apc/hyper{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/turf/simulated/floor/lino,
+/area/tcommsat/computer)
+"jG" = (
+/obj/structure/ore_box,
+/obj/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/forestarboard)
+"jH" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ dir = 5;
+ icon_state = "intact"
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24;
+ pixel_y = 0
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/engineering/atmos/aux)
+"jI" = (
+/obj/machinery/atmospherics/pipe/simple/visible/universal{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/engineering/atmos/aux)
+"jJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/effect/landmark{
+ name = "xeno_spawn";
+ pixel_x = -1
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/engineering/atmos/aux)
+"jK" = (
+/obj/machinery/atmospherics/pipe/simple/visible/red{
+ dir = 9;
+ icon_state = "intact"
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/obj/structure/closet/secure_closet/atmos_torch,
+/obj/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/atmos/aux)
+"jL" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/floor_decal/industrial/warning/corner{
+ dir = 4;
+ icon_state = "warningcorner"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/forestarboard)
+"jM" = (
+/obj/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/forestarboard)
+"jN" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/floor_decal/industrial/outline/grey,
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/crew_quarters/safe_room/thirddeck)
+"jO" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/item/stool/wood,
+/turf/simulated/floor/wood/walnut,
+/area/crew_quarters/head/sauna)
+"jP" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/button/alternate/door/bolts{
+ id_tag = "civsafedoor";
+ name = "safe room door-control";
+ pixel_x = 32
+ },
+/obj/machinery/light_switch{
+ pixel_x = 24;
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/crew_quarters/safe_room/thirddeck)
+"jQ" = (
+/obj/catwalk_plated/dark,
+/turf/simulated/open,
+/area/security/habcheck)
+"jR" = (
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/crew_quarters/safe_room/thirddeck)
+"jS" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/crew_quarters/safe_room/thirddeck)
+"jT" = (
+/obj/machinery/vending/wallmed1{
+ dir = 8;
+ icon_state = "wallmed";
+ name = "Emergency NanoMed";
+ pixel_x = 28;
+ pixel_y = 0
+ },
+/obj/machinery/portable_atmospherics/hydroponics,
+/obj/floor_decal/corner/green/mono,
+/obj/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled/monotile,
+/area/hydroponics)
+"jU" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/foreport)
+"jV" = (
+/obj/floor_decal/corner/blue/diagonal{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/mess)
+"jW" = (
+/obj/floor_decal/corner/blue/diagonal{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/mess)
+"jX" = (
+/obj/floor_decal/corner/blue/diagonal{
+ dir = 4
+ },
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atm{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/mess)
+"jY" = (
+/obj/floor_decal/corner/blue/diagonal{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/mess)
+"jZ" = (
+/turf/simulated/wall/r_wall/hull,
+/area/maintenance/thirddeck/aftport)
+"ka" = (
+/obj/floor_decal/corner/blue/diagonal{
+ dir = 4
+ },
+/obj/structure/table/standard,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/mess)
+"kb" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/floor_decal/corner/blue/diagonal{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/mess)
+"kc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/biogenerator,
+/turf/simulated/floor/tiled,
+/area/hydroponics/storage)
+"kd" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/item/device/radio/intercom{
+ dir = 4;
+ pixel_x = -21
+ },
+/obj/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/obj/machinery/light/spot{
+ dir = 8
+ },
+/obj/structure/table/woodentable,
+/turf/simulated/floor/carpet/blue,
+/area/crew_quarters/virtual_reality)
+"ke" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on/sauna{
+ dir = 1;
+ icon_state = "map_scrubber_on"
+ },
+/turf/simulated/floor/wood/walnut,
+/area/crew_quarters/head/sauna)
+"kf" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/wood/walnut,
+/area/crew_quarters/head/sauna)
+"kg" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/wood/walnut,
+/area/crew_quarters/head/sauna)
+"kh" = (
+/obj/machinery/light/small{
+ dir = 4;
+ icon_state = "bulb1"
+ },
+/obj/item/stool/wood,
+/turf/simulated/floor/wood/walnut,
+/area/crew_quarters/head/sauna)
+"ki" = (
+/obj/machinery/light/small{
+ dir = 4;
+ pixel_y = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/engineering/hardstorage)
+"kj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/wall/r_wall/prepainted,
+/area/engineering/hardstorage)
+"kk" = (
+/obj/machinery/atmospherics/pipe/simple/visible/blue{
+ dir = 5
+ },
+/obj/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/thruster/d3port)
+"kl" = (
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/simple/visible/blue{
+ dir = 6
+ },
+/obj/wallframe_spawn/reinforced_phoron,
+/turf/simulated/floor/reinforced,
+/area/thruster/d3starboard)
+"km" = (
+/obj/item/stool/wood,
+/turf/simulated/floor/wood/walnut,
+/area/crew_quarters/head/sauna)
+"kn" = (
+/obj/machinery/light/spot{
+ dir = 1
+ },
+/obj/structure/table/woodentable,
+/obj/item/newspaper,
+/turf/simulated/floor/wood/walnut,
+/area/crew_quarters/virtual_reality)
+"ko" = (
+/obj/machinery/space_heater,
+/obj/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/port)
+"kp" = (
+/obj/structure/lattice,
+/turf/simulated/wall/r_wall/hull,
+/area/thruster/d3starboard)
+"kq" = (
+/obj/structure/table/rack,
+/obj/random/maintenance/solgov,
+/obj/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/port)
+"kr" = (
+/obj/machinery/door/airlock/external{
+ frequency = 1379;
+ id_tag = "bsa_ex";
+ locked = 1;
+ name = "Obstruction Field Disperser Maintenance External Airlock"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/command/disperser)
+"ks" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/crew_quarters/safe_room/thirddeck)
+"kt" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4;
+ external_pressure_bound = 202;
+ external_pressure_bound_default = 202
+ },
+/obj/machinery/space_heater{
+ set_temperature = 348.15
+ },
+/turf/simulated/floor/wood/walnut,
+/area/crew_quarters/head/sauna)
+"ku" = (
+/obj/structure/table/steel,
+/obj/item/cell/high,
+/obj/item/cell/high,
+/obj/item/cell/high,
+/turf/simulated/floor/tiled/dark,
+/area/tcommsat/chamber)
+"kv" = (
+/obj/machinery/telecomms/processor/preset_three,
+/obj/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/bluegrid,
+/area/tcommsat/chamber)
+"kw" = (
+/obj/machinery/telecomms/bus/preset_three,
+/obj/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/bluegrid,
+/area/tcommsat/chamber)
+"kx" = (
+/obj/machinery/light,
+/turf/simulated/floor/tiled/dark,
+/area/tcommsat/chamber)
+"ky" = (
+/obj/structure/cable/green,
+/obj/wallframe_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/tcommsat/computer)
+"kz" = (
+/obj/machinery/computer/rdservercontrol{
+ dir = 4;
+ icon_state = "computer"
+ },
+/turf/simulated/floor/lino,
+/area/tcommsat/computer)
+"kA" = (
+/obj/structure/table/steel,
+/obj/item/device/flashlight/lamp,
+/obj/random_multi/single_item/boombox,
+/turf/simulated/floor/lino,
+/area/tcommsat/computer)
+"kB" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/lino,
+/area/tcommsat/computer)
+"kC" = (
+/obj/structure/table/steel,
+/obj/structure/noticeboard{
+ pixel_x = 32
+ },
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/item/sticky_pad/random,
+/turf/simulated/floor/lino,
+/area/tcommsat/computer)
+"kD" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/structure/railing/mapped{
+ dir = 1;
+ icon_state = "railing0-1"
+ },
+/turf/simulated/floor/plating,
+/area/engineering/atmos/aux)
+"kE" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/railing/mapped{
+ dir = 4;
+ icon_state = "railing0-1"
+ },
+/obj/structure/railing/mapped{
+ dir = 1;
+ icon_state = "railing0-1"
+ },
+/turf/simulated/floor/plating,
+/area/engineering/atmos/aux)
+"kF" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/engineering/atmos/aux)
+"kG" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/engineering/atmos/aux)
+"kH" = (
+/obj/structure/closet/emcloset,
+/obj/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/atmos/aux)
+"kI" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/thirddeck/forestarboard)
+"kJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/forestarboard)
+"kL" = (
+/turf/simulated/wall/prepainted,
+/area/crew_quarters/bar)
+"kM" = (
+/obj/machinery/power/apc{
+ dir = 2;
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/structure/cable/green,
+/obj/machinery/atmospherics/binary/pump{
+ dir = 8;
+ in_use = 0
+ },
+/obj/item/reagent_containers/glass/bucket/wood,
+/obj/structure/hygiene/sink{
+ pixel_z = -14
+ },
+/turf/simulated/floor/wood/walnut,
+/area/crew_quarters/head/sauna)
+"kN" = (
+/obj/machinery/light/spot{
+ dir = 1
+ },
+/turf/simulated/floor/lino,
+/area/crew_quarters/bar)
+"kO" = (
+/turf/simulated/floor/lino,
+/area/crew_quarters/bar)
+"kP" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/floor_decal/techfloor{
+ dir = 1;
+ icon_state = "techfloor_edges"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/safe_room/thirddeck)
+"kQ" = (
+/obj/floor_decal/corner/blue/diagonal{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/mess)
+"kR" = (
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/structure/disposalpipe/sortjunction{
+ dir = 4;
+ name = "Chapel";
+ sort_type = "Chapel"
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/thirddeck/aft)
+"kS" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1;
+ level = 2
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 25;
+ pixel_y = 0
+ },
+/turf/simulated/floor/plating,
+/area/command/disperser)
+"kT" = (
+/obj/structure/sign/directions/bridge{
+ dir = 1;
+ pixel_y = 3;
+ pixel_z = 0
+ },
+/obj/structure/sign/directions/security{
+ dir = 8;
+ icon_state = "direction_sec";
+ pixel_y = -4;
+ pixel_z = 0
+ },
+/turf/simulated/wall/prepainted,
+/area/crew_quarters/bar)
+"kU" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 8
+ },
+/obj/machinery/portable_atmospherics/reagent_sublimator/sauna{
+ anchored = 1
+ },
+/turf/simulated/floor/wood/walnut,
+/area/crew_quarters/head/sauna)
+"kW" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/floor_decal/spline/fancy/wood{
+ dir = 10;
+ icon_state = "spline_fancy"
+ },
+/obj/machinery/recharger,
+/obj/structure/table/woodentable,
+/turf/simulated/floor/carpet/blue,
+/area/crew_quarters/virtual_reality)
+"kX" = (
+/obj/structure/railing/mapped{
+ dir = 8;
+ icon_state = "railing0-1"
+ },
+/obj/structure/railing/mapped,
+/obj/random/maintenance/solgov,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/foreport)
+"kY" = (
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/starboard)
+"kZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/wall/r_wall/prepainted,
+/area/engineering/hardstorage)
+"la" = (
+/obj/machinery/atmospherics/pipe/simple/visible/fuel{
+ dir = 4
+ },
+/obj/floor_decal/industrial/warning,
+/obj/machinery/atmospherics/binary/pump/on{
+ dir = 1;
+ target_pressure = 15000
+ },
+/obj/floor_decal/industrial/outline/orange,
+/turf/simulated/floor/tiled/techfloor,
+/area/thruster/d3port)
+"lb" = (
+/obj/structure/railing/mapped,
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/foreport)
+"lc" = (
+/obj/floor_decal/corner/green{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/aft)
+"ld" = (
+/turf/simulated/open,
+/area/crew_quarters/mess)
+"le" = (
+/obj/floor_decal/corner/green/half{
+ dir = 1;
+ icon_state = "bordercolorhalf"
+ },
+/obj/structure/noticeboard{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/thirddeck/center)
+"lf" = (
+/obj/structure/railing/mapped,
+/obj/random/junk,
+/obj/random/trash,
+/obj/random/tech_supply,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/foreport)
+"lg" = (
+/obj/structure/closet/crate/internals/fuel,
+/obj/floor_decal/industrial/outline/yellow,
+/obj/machinery/firealarm{
+ dir = 2;
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/engineering/hardstorage)
+"lh" = (
+/obj/structure/railing/mapped{
+ dir = 4;
+ icon_state = "railing0-1"
+ },
+/obj/structure/railing/mapped,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/foreport)
+"li" = (
+/obj/machinery/alarm{
+ dir = 1;
+ icon_state = "alarm0";
+ pixel_y = -22
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/foreport)
+"lj" = (
+/obj/machinery/door/airlock/civilian{
+ name = "Emergency Storage"
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/maintenance/thirddeck/aftstarboard)
+"lk" = (
+/obj/machinery/atmospherics/pipe/manifold4w/visible/fuel,
+/obj/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/thruster/d3starboard)
+"lm" = (
+/obj/machinery/disposal,
+/obj/floor_decal/industrial/hatch/yellow,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/machinery/newscaster{
+ pixel_y = -32
+ },
+/obj/item/device/radio/intercom{
+ dir = 4;
+ pixel_x = -21
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tcommsat/computer)
+"lo" = (
+/obj/structure/filingcabinet,
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/lino,
+/area/tcommsat/computer)
+"lp" = (
+/obj/structure/table/rack,
+/obj/random/maintenance/solgov,
+/obj/random/tool,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/forestarboard)
+"lq" = (
+/obj/structure/sign/warning/secure_area,
+/turf/simulated/wall/prepainted,
+/area/engineering/atmos/aux)
+"lr" = (
+/obj/machinery/door/airlock/atmos{
+ name = "Auxiliary Atmospherics";
+ secured_wires = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/engineering/atmos/aux)
+"ls" = (
+/obj/structure/iv_drip,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/forestarboard)
+"lt" = (
+/obj/floor_decal/industrial/hatch/yellow,
+/obj/structure/ladder/updown,
+/obj/structure/catwalk,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/forestarboard)
+"lu" = (
+/turf/unsimulated/mask,
+/area/hallway/primary/thirddeck/center)
+"lv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = 21
+ },
+/obj/floor_decal/techfloor{
+ dir = 5;
+ icon_state = "techfloor_edges"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/safe_room/thirddeck)
+"lw" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/obj/floor_decal/spline/fancy/wood/corner,
+/turf/simulated/floor/lino,
+/area/crew_quarters/bar)
+"lx" = (
+/obj/structure/hygiene/sink/kitchen{
+ pixel_y = 28
+ },
+/turf/simulated/floor/lino,
+/area/crew_quarters/bar)
+"ly" = (
+/obj/floor_decal/corner/blue/diagonal{
+ dir = 4
+ },
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/mess)
+"lz" = (
+/obj/floor_decal/corner/blue/diagonal{
+ dir = 4
+ },
+/obj/structure/table/standard,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/mess)
+"lA" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/table/standard,
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"lB" = (
+/obj/floor_decal/corner/blue/diagonal{
+ dir = 4
+ },
+/obj/structure/bed/chair,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/mess)
+"lC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/engineering/hardstorage)
+"lD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/floor_decal/industrial/outline/yellow,
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/safe_room/thirddeck)
+"lE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9;
+ pixel_y = 0
+ },
+/obj/floor_decal/techfloor{
+ dir = 4;
+ icon_state = "techfloor_edges"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/safe_room/thirddeck)
+"lF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/universal,
+/obj/floor_decal/corner_techfloor_grid{
+ dir = 8;
+ icon_state = "corner_techfloor_grid"
+ },
+/obj/floor_decal/techfloor/corner{
+ dir = 8;
+ icon_state = "techfloor_corners"
+ },
+/obj/item/device/radio/beacon,
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/safe_room/thirddeck)
+"lH" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ dir = 9;
+ icon_state = "intact"
+ },
+/obj/machinery/meter,
+/obj/wallframe_spawn/reinforced_phoron,
+/turf/simulated/floor/tiled/techfloor,
+/area/thruster/d3starboard)
+"lI" = (
+/obj/structure/lattice,
+/turf/simulated/floor/reinforced/hydrogen,
+/area/thruster/d3starboard)
+"lJ" = (
+/obj/floor_decal/corner/green{
+ dir = 5
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/aft)
+"lK" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/crew_quarters/safe_room/thirddeck)
+"lL" = (
+/obj/machinery/door/airlock/vault/bolted{
+ id_tag = "civsafedoorport";
+ name = "Third Deck Safe Room"
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/crew_quarters/safe_room/thirddeck)
+"lM" = (
+/obj/machinery/atmospherics/pipe/zpipe/up/fuel{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/floor_decal/industrial/warning/cee{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/aftport)
+"lN" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/structure/closet/crate,
+/obj/random/powercell,
+/obj/random/powercell,
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/obj/floor_decal/techfloor{
+ dir = 10;
+ icon_state = "techfloor_edges"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/safe_room/thirddeck)
+"lQ" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"lR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/catwalk_plated,
+/turf/simulated/floor/plating,
+/area/crew_quarters/cryolocker)
+"lT" = (
+/obj/floor_decal/industrial/outline/yellow,
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/aftstarboard)
+"lU" = (
+/obj/floor_decal/industrial/outline/yellow,
+/obj/machinery/portable_atmospherics/powered/scrubber,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/aftstarboard)
+"lV" = (
+/obj/floor_decal/corner/green/half{
+ dir = 1;
+ icon_state = "bordercolorhalf"
+ },
+/obj/structure/flora/pottedplant/orientaltree,
+/turf/simulated/floor/tiled/dark/monotile,
+/area/crew_quarters/observation)
+"lW" = (
+/obj/machinery/vending/hydronutrients/generic,
+/obj/floor_decal/corner/green/half{
+ dir = 1;
+ icon_state = "bordercolorhalf"
+ },
+/turf/simulated/floor/tiled/dark/monotile,
+/area/crew_quarters/observation)
+"lX" = (
+/obj/machinery/seed_storage/garden,
+/obj/floor_decal/corner/green/half{
+ dir = 1;
+ icon_state = "bordercolorhalf"
+ },
+/turf/simulated/floor/tiled/dark/monotile,
+/area/crew_quarters/observation)
+"lY" = (
+/obj/structure/table/standard,
+/obj/item/material/minihoe,
+/obj/item/material/hatchet,
+/obj/floor_decal/corner/green/half{
+ dir = 1;
+ icon_state = "bordercolorhalf"
+ },
+/obj/machinery/light/spot{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark/monotile,
+/area/crew_quarters/observation)
+"lZ" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/item/reagent_containers/glass/bucket,
+/obj/floor_decal/corner/green/half{
+ dir = 1;
+ icon_state = "bordercolorhalf"
+ },
+/turf/simulated/floor/tiled/dark/monotile,
+/area/crew_quarters/observation)
+"ma" = (
+/obj/structure/closet/crate/hydroponics/beekeeping,
+/obj/floor_decal/corner/green/half{
+ dir = 1;
+ icon_state = "bordercolorhalf"
+ },
+/turf/simulated/floor/tiled/dark/monotile,
+/area/crew_quarters/observation)
+"mc" = (
+/obj/floor_decal/corner/green/half{
+ dir = 1;
+ icon_state = "bordercolorhalf"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/alarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/dark/monotile,
+/area/crew_quarters/observation)
+"md" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/highsecurity{
+ name = "Telecommunications"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/tcommsat/computer)
+"me" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/forestarboard)
+"mf" = (
+/obj/floor_decal/industrial/warning/corner{
+ dir = 4;
+ icon_state = "warningcorner"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/forestarboard)
+"mg" = (
+/obj/floor_decal/industrial/warning{
+ dir = 1;
+ icon_state = "warning"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/forestarboard)
+"mh" = (
+/obj/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/forestarboard)
+"mi" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9;
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/forestarboard)
+"mj" = (
+/turf/simulated/wall/prepainted,
+/area/hallway/primary/thirddeck/fore)
+"mk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/airlock/hatch/maintenance,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/hallway/primary/thirddeck/fore)
+"ml" = (
+/obj/structure/table/standard,
+/obj/machinery/button/blast_door{
+ id_tag = "bar";
+ name = "Bar Shutters";
+ pixel_x = -24;
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/machinery/camera/network/third_deck{
+ c_tag = "Mess Hall - Bar";
+ dir = 4
+ },
+/obj/item/sticky_pad/random,
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/bar)
+"mm" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/obj/floor_decal/spline/fancy/wood{
+ dir = 4
+ },
+/turf/simulated/floor/lino,
+/area/crew_quarters/bar)
+"mn" = (
+/obj/floor_decal/spline/fancy/wood,
+/turf/simulated/floor/lino,
+/area/crew_quarters/bar)
+"mo" = (
+/obj/floor_decal/spline/fancy/wood/corner{
+ dir = 8
+ },
+/turf/simulated/floor/lino,
+/area/crew_quarters/bar)
+"mp" = (
+/obj/floor_decal/corner/blue/diagonal{
+ dir = 4
+ },
+/obj/structure/table/standard,
+/obj/random/single/cola,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/mess)
+"mq" = (
+/obj/floor_decal/corner/blue/diagonal{
+ dir = 4
+ },
+/obj/structure/table/standard{
+ name = "plastic table frame"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/mess)
+"mv" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/space)
+"mx" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/crew_quarters/virtual_reality_control)
+"my" = (
+/obj/structure/table/standard,
+/obj/item/paper{
+ desc = "";
+ info = "VR users cannot hear over the radio or loudspeakers. Please use the VR Control program to directly message occupants, or eject them from the pod. Thanks!";
+ name = "VR disclaimer"
+ },
+/obj/machinery/alarm{
+ pixel_y = 24
+ },
+/obj/machinery/camera/network/third_deck{
+ c_tag = "Holodeck Control";
+ dir = 8
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/crew_quarters/virtual_reality_control)
+"mB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/item/flame/candle/scented/incense{
+ pixel_x = -12;
+ pixel_y = 12
+ },
+/obj/floor_decal/corner/purple{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/memorial)
+"mE" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/aft)
+"mF" = (
+/obj/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/machinery/cooker/fryer,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/galley)
+"mG" = (
+/obj/structure/railing/mapped,
+/turf/simulated/open,
+/area/maintenance/thirddeck/aftstarboard)
+"mK" = (
+/obj/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/aftstarboard)
+"mL" = (
+/obj/structure/flora/ausbushes/ppflowers,
+/turf/simulated/floor/grass,
+/area/crew_quarters/observation)
+"mM" = (
+/obj/structure/flora/ausbushes/lavendergrass,
+/turf/simulated/floor/grass,
+/area/crew_quarters/observation)
+"mN" = (
+/obj/structure/flora/ausbushes/brflowers,
+/turf/simulated/floor/grass,
+/area/crew_quarters/observation)
+"mO" = (
+/obj/structure/flora/ausbushes/sparsegrass,
+/turf/simulated/floor/grass,
+/area/crew_quarters/observation)
+"mR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 26
+ },
+/turf/simulated/floor/grass,
+/area/crew_quarters/observation)
+"mS" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/structure/closet/emcloset,
+/obj/floor_decal/corner/paleblue/mono,
+/obj/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/thirddeck/fore)
+"mT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/floor_decal/corner/paleblue{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/fore)
+"mU" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/structure/sign/warning/secure_area{
+ pixel_y = 32
+ },
+/obj/floor_decal/corner/paleblue{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/fore)
+"mV" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/floor_decal/corner/paleblue/mono,
+/obj/structure/closet/hydrant{
+ pixel_y = 32
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/thirddeck/fore)
+"mW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/alarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/obj/structure/catwalk,
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/forestarboard)
+"mY" = (
+/obj/structure/sign/directions/bridge{
+ dir = 1;
+ pixel_x = -5;
+ pixel_y = 3;
+ pixel_z = 0
+ },
+/obj/structure/sign/directions/security{
+ dir = 1;
+ pixel_x = -4;
+ pixel_y = -5;
+ pixel_z = 0
+ },
+/turf/simulated/wall/prepainted,
+/area/hallway/primary/thirddeck/fore)
+"mZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/catwalk_plated,
+/turf/simulated/floor/plating,
+/area/hallway/primary/thirddeck/fore)
+"na" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/structure/closet/emcloset,
+/obj/floor_decal/corner/green/mono,
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/thirddeck/fore)
+"nb" = (
+/obj/item/storage/mirror{
+ icon_state = "mirror_broke";
+ pixel_y = 32
+ },
+/turf/simulated/floor/plating,
+/area/vacant/brig)
+"nc" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/floor_decal/spline/fancy/wood{
+ dir = 4
+ },
+/obj/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/turf/simulated/floor/lino,
+/area/crew_quarters/bar)
+"nd" = (
+/obj/structure/disposalpipe/trunk,
+/obj/machinery/disposal,
+/obj/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/bar)
+"ne" = (
+/obj/structure/table/standard,
+/obj/machinery/chemical_dispenser/bar_alc/full,
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/bar)
+"nf" = (
+/obj/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/turf/simulated/floor/lino,
+/area/crew_quarters/bar)
+"nh" = (
+/obj/floor_decal/corner/blue/diagonal{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/mess)
+"ni" = (
+/obj/floor_decal/corner/blue/diagonal{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/mess)
+"nj" = (
+/obj/floor_decal/corner/blue/diagonal{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/mess)
+"nk" = (
+/obj/floor_decal/corner/blue/diagonal{
+ dir = 4
+ },
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/mess)
+"nl" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/virtual_reality_control)
+"nm" = (
+/obj/structure/table/steel,
+/obj/random/maintenance/solgov,
+/obj/random/maintenance/solgov,
+/obj/random/tech_supply,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/starboard)
+"nn" = (
+/obj/effect/wallframe_spawn/no_grille,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/virtual_reality_control)
+"no" = (
+/obj/floor_decal/industrial/warning/corner{
+ dir = 1;
+ icon_state = "warningcorner"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/engineering/hardstorage)
+"np" = (
+/obj/floor_decal/corner/green/half,
+/obj/structure/flora/pottedplant/stoutbush,
+/turf/simulated/floor/tiled/dark/monotile,
+/area/crew_quarters/observation)
+"nq" = (
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_x = 0;
+ pixel_y = -24
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/substation/thirddeck)
+"nt" = (
+/obj/floor_decal/industrial/warning/corner,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/computer/modular/preset/vr_control{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/virtual_reality_control)
+"nu" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/storage/tools)
+"nw" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/machinery/button/blast_door{
+ id_tag = "d3fore_shutters";
+ name = "Garden Shutter Control";
+ pixel_x = -23;
+ pixel_y = -9
+ },
+/turf/simulated/floor/tiled/dark/monotile,
+/area/crew_quarters/observation)
+"nx" = (
+/obj/machinery/vending/cola{
+ dir = 1
+ },
+/turf/simulated/floor/wood/walnut,
+/area/crew_quarters/virtual_reality)
+"ny" = (
+/obj/floor_decal/industrial/hatch/yellow,
+/obj/structure/ladder,
+/obj/structure/catwalk,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/port)
+"nz" = (
+/obj/structure/railing/mapped{
+ dir = 4;
+ icon_state = "railing0-1"
+ },
+/obj/structure/railing/mapped{
+ dir = 1;
+ icon_state = "railing0-1"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/aftstarboard)
+"nA" = (
+/turf/simulated/wall/r_wall/prepainted,
+/area/engineering/hardstorage)
+"nB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/dark/monotile,
+/area/crew_quarters/observation)
+"nC" = (
+/turf/simulated/wall/prepainted,
+/area/vacant/mess)
+"nE" = (
+/obj/machinery/atmospherics/valve/digital{
+ dir = 4;
+ id_tag = "fuelmode"
+ },
+/obj/floor_decal/industrial/outline/red,
+/turf/simulated/floor/reinforced/oxygen,
+/area/thruster/d3port)
+"nG" = (
+/obj/floor_decal/industrial/outline/yellow,
+/obj/machinery/portable_atmospherics/powered/pump/filled,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/aftstarboard)
+"nI" = (
+/obj/structure/table/steel,
+/obj/structure/flora/pottedplant/small{
+ pixel_y = 13
+ },
+/obj/machinery/requests_console{
+ announcementConsole = 1;
+ department = "Security";
+ departmentType = 5;
+ pixel_y = -32
+ },
+/obj/floor_decal/corner/red{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/habcheck)
+"nJ" = (
+/obj/machinery/portable_atmospherics/hydroponics/soil,
+/turf/simulated/floor/grass,
+/area/crew_quarters/observation)
+"nL" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/grass,
+/area/crew_quarters/observation)
+"nN" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk,
+/turf/simulated/floor/wood/walnut,
+/area/crew_quarters/virtual_reality)
+"nO" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/hygiene/drain,
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"nP" = (
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/item/device/radio/intercom{
+ dir = 4;
+ pixel_x = -21
+ },
+/obj/floor_decal/corner/paleblue{
+ dir = 9;
+ icon_state = "corner_white"
+ },
+/obj/machinery/camera/network/third_deck{
+ c_tag = "Third Deck Hallway - Fore Starboard";
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/fore)
+"nQ" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/catwalk_plated,
+/turf/simulated/floor/plating,
+/area/hallway/primary/thirddeck/fore)
+"nR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 8
+ },
+/obj/catwalk_plated,
+/turf/simulated/floor/plating,
+/area/hallway/primary/thirddeck/fore)
+"nS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/floor_decal/corner/paleblue/half{
+ dir = 4;
+ icon_state = "bordercolorhalf"
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/thirddeck/fore)
+"nT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/door/airlock/hatch/maintenance,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/hallway/primary/thirddeck/fore)
+"nU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/forestarboard)
+"nV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9;
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/forestarboard)
+"nX" = (
+/turf/simulated/wall/r_wall/prepainted,
+/area/crew_quarters/virtual_reality_control)
+"nY" = (
+/obj/structure/table/gamblingtable,
+/obj/random/coin,
+/obj/item/pen,
+/obj/item/pen,
+/obj/item/pen/green,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/item/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/turf/simulated/floor/wood/walnut,
+/area/crew_quarters/recreation)
+"nZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/floor_decal/corner/green{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hydroponics)
+"oa" = (
+/obj/structure/stairs/west,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/fore)
+"ob" = (
+/obj/floor_decal/corner/green/half{
+ dir = 8;
+ icon_state = "bordercolorhalf"
+ },
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk,
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/thirddeck/fore)
+"oc" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/floor_decal/corner/green/half{
+ dir = 4;
+ icon_state = "bordercolorhalf"
+ },
+/obj/floor_decal/industrial/warning/corner{
+ dir = 8;
+ icon_state = "warningcorner"
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/thirddeck/fore)
+"od" = (
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/catwalk_plated,
+/turf/simulated/floor/plating,
+/area/hallway/primary/thirddeck/fore)
+"oe" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/floor_decal/corner/green{
+ dir = 6
+ },
+/obj/structure/sign/deck/third{
+ dir = 8;
+ icon_state = "deck-3";
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/fore)
+"og" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/floor_decal/spline/fancy/wood{
+ dir = 4
+ },
+/obj/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/turf/simulated/floor/lino,
+/area/crew_quarters/bar)
+"oh" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/table/standard,
+/obj/structure/reagent_dispensers/beerkeg,
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/bar)
+"oi" = (
+/obj/structure/table/standard,
+/obj/machinery/chemical_dispenser/bar_soft/full,
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/bar)
+"ok" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/virtual_reality_control)
+"ol" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/virtual_reality_control)
+"om" = (
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/crew_quarters/virtual_reality_control)
+"on" = (
+/obj/structure/dispenser/oxygen,
+/obj/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark/monotile,
+/area/engineering/hardstorage)
+"oo" = (
+/obj/machinery/suit_cycler/engineering/alt,
+/obj/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark/monotile,
+/area/engineering/hardstorage)
+"op" = (
+/obj/catwalk_plated,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/hallway/primary/thirddeck/aft)
+"or" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/port)
+"os" = (
+/obj/structure/railing/mapped{
+ dir = 8;
+ icon_state = "railing0-1"
+ },
+/obj/structure/railing/mapped,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/starboard)
+"ot" = (
+/obj/structure/closet/crate/medical,
+/obj/random/maintenance/solgov,
+/obj/random/maintenance/solgov,
+/obj/random/maintenance/solgov,
+/obj/random/maintenance/solgov,
+/obj/structure/grille/broken,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/foreport)
+"ov" = (
+/obj/floor_decal/corner/green{
+ dir = 10
+ },
+/obj/machinery/light,
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/aft)
+"ow" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/floor_decal/spline/fancy/wood,
+/obj/machinery/vr_pod{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/blue,
+/area/crew_quarters/virtual_reality)
+"oy" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/floor_decal/corner/red{
+ dir = 6;
+ icon_state = "corner_white"
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/fore)
+"oz" = (
+/obj/floor_decal/industrial/warning/corner{
+ dir = 4;
+ icon_state = "warningcorner"
+ },
+/obj/structure/sign/warning/moving_parts{
+ dir = 2;
+ pixel_y = 32
+ },
+/turf/simulated/floor/airless,
+/area/command/disperser)
+"oA" = (
+/obj/floor_decal/industrial/outline/yellow,
+/obj/structure/reagent_dispensers/fueltank,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/aftstarboard)
+"oB" = (
+/obj/wallframe_spawn/reinforced_phoron,
+/turf/simulated/floor/reinforced,
+/area/thruster/d3starboard)
+"oC" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/gym)
+"oH" = (
+/obj/structure/railing/mapped{
+ dir = 1;
+ icon_state = "railing0-1"
+ },
+/turf/simulated/open,
+/area/maintenance/thirddeck/starboard)
+"oJ" = (
+/obj/structure/flora/ausbushes/lavendergrass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/light/spot{
+ dir = 4
+ },
+/turf/simulated/floor/grass,
+/area/crew_quarters/observation)
+"oL" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/floor_decal/corner/paleblue{
+ dir = 9;
+ icon_state = "corner_white"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/fore)
+"oM" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/obj/catwalk_plated,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 25;
+ pixel_y = 0
+ },
+/turf/simulated/floor/plating,
+/area/hallway/primary/thirddeck/fore)
+"oO" = (
+/obj/structure/table/gamblingtable,
+/obj/item/dice/d20,
+/obj/item/dice/d12,
+/obj/item/dice/d4,
+/obj/item/dice/d8,
+/obj/random/drinkbottle,
+/turf/simulated/floor/wood/walnut,
+/area/crew_quarters/recreation)
+"oP" = (
+/obj/structure/reagent_dispensers/water_cooler,
+/turf/simulated/floor/wood/walnut,
+/area/crew_quarters/virtual_reality)
+"oT" = (
+/obj/structure/railing/mapped{
+ dir = 1;
+ icon_state = "railing0-1"
+ },
+/turf/simulated/open,
+/area/hallway/primary/thirddeck/fore)
+"oU" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/floor_decal/corner/green/half{
+ dir = 4;
+ icon_state = "bordercolorhalf"
+ },
+/obj/floor_decal/industrial/warning{
+ dir = 8;
+ icon_state = "warning"
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/thirddeck/fore)
+"oV" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/catwalk_plated,
+/turf/simulated/floor/plating,
+/area/hallway/primary/thirddeck/fore)
+"oW" = (
+/obj/machinery/camera/network/third_deck{
+ c_tag = "Third Deck Hallway - Stairwell";
+ dir = 8
+ },
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = 21
+ },
+/obj/floor_decal/corner/green{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/fore)
+"oX" = (
+/obj/structure/bed/chair/wood{
+ dir = 1
+ },
+/obj/floor_decal/corner/lime/mono,
+/obj/item/device/radio/intercom{
+ dir = 1;
+ pixel_y = -28
+ },
+/obj/machinery/light/spot,
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 5;
+ icon_state = "intact"
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/thirddeck/aft)
+"oY" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/floor_decal/spline/fancy/wood/corner{
+ dir = 1
+ },
+/obj/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/obj/machinery/light/spot,
+/turf/simulated/floor/lino,
+/area/crew_quarters/bar)
+"oZ" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/floor_decal/spline/fancy/wood{
+ dir = 1;
+ icon_state = "spline_fancy"
+ },
+/turf/simulated/floor/lino,
+/area/crew_quarters/bar)
+"pa" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/floor_decal/spline/fancy/wood{
+ dir = 1;
+ icon_state = "spline_fancy"
+ },
+/turf/simulated/floor/lino,
+/area/crew_quarters/bar)
+"pb" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/floor_decal/spline/fancy/wood/corner{
+ dir = 4
+ },
+/turf/simulated/floor/lino,
+/area/crew_quarters/bar)
+"pc" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/window/brigdoor/eastleft{
+ name = "Bar"
+ },
+/turf/simulated/floor/lino,
+/area/crew_quarters/bar)
+"pd" = (
+/obj/floor_decal/corner/blue/diagonal{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/sortjunction/flipped{
+ dir = 1;
+ name = "Bar";
+ sort_type = "Bar"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/mess)
+"pe" = (
+/obj/floor_decal/corner/blue/diagonal{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/mess)
+"pf" = (
+/obj/floor_decal/corner/blue/diagonal{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_x = 0;
+ pixel_y = -24
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/mess)
+"pg" = (
+/obj/floor_decal/corner/blue/diagonal{
+ dir = 4
+ },
+/obj/machinery/light/spot,
+/obj/structure/table/standard{
+ name = "plastic table frame"
+ },
+/obj/machinery/recharger,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/mess)
+"pi" = (
+/obj/floor_decal/corner/blue/diagonal{
+ dir = 4
+ },
+/obj/machinery/camera/network/third_deck{
+ c_tag = "Mess Hall - Port";
+ dir = 1
+ },
+/obj/machinery/computer/arcade,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/mess)
+"pj" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/item/device/radio/intercom{
+ dir = 4;
+ pixel_x = -21
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/virtual_reality_control)
+"pk" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/virtual_reality_control)
+"pm" = (
+/obj/machinery/light/small,
+/obj/floor_decal/corner/yellow/half,
+/turf/simulated/floor/tiled/dark,
+/area/engineering/hardstorage)
+"pn" = (
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ dir = 4;
+ icon_state = "shutter0";
+ id_tag = "hab_hallway_shutters";
+ name = "Habitation Deck Hallway Shutters";
+ opacity = 0
+ },
+/obj/floor_decal/corner/red/mono,
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/thirddeck/center)
+"pp" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/gym)
+"pq" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor,
+/obj/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/thirddeck/fore)
+"pr" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/catwalk_plated,
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/plating,
+/area/hallway/primary/thirddeck/center)
+"ps" = (
+/obj/machinery/atmospherics/pipe/simple/visible/fuel{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/thruster/d3port)
+"pt" = (
+/turf/simulated/wall/prepainted,
+/area/crew_quarters/virtual_reality_control)
+"pw" = (
+/obj/structure/railing/mapped{
+ dir = 8;
+ icon_state = "railing0-1"
+ },
+/obj/structure/railing/mapped{
+ dir = 1;
+ icon_state = "railing0-1"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/starboard)
+"py" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/airlock/glass/civilian{
+ name = "Computer Lab"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/crew_quarters/office)
+"pz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/effect/decal/cleanable/cobweb2,
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/aftstarboard)
+"pD" = (
+/obj/structure/flora/ausbushes/pointybush,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/grass,
+/area/crew_quarters/observation)
+"pE" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/wall/r_wall/hull,
+/area/hydroponics)
+"pF" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/floor_decal/corner/paleblue/half{
+ dir = 8;
+ icon_state = "bordercolorhalf"
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/thirddeck/fore)
+"pG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/thirddeck/fore)
+"pH" = (
+/obj/structure/flora/pottedplant/flower,
+/obj/item/device/radio/intercom/entertainment{
+ dir = 4;
+ pixel_x = -22
+ },
+/turf/simulated/floor/wood/walnut,
+/area/crew_quarters/recreation)
+"pI" = (
+/turf/simulated/wall/r_wall/hull,
+/area/thruster/d3port)
+"pJ" = (
+/obj/floor_decal/spline/fancy/wood,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/wood/walnut,
+/area/crew_quarters/recreation)
+"pK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/thirddeck/foreport)
+"pL" = (
+/obj/machinery/vending/games,
+/obj/floor_decal/spline/fancy/wood,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/wood/walnut,
+/area/crew_quarters/recreation)
+"pM" = (
+/obj/machinery/door/airlock/glass/civilian{
+ name = "Recreation"
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/crew_quarters/recreation)
+"pO" = (
+/turf/simulated/open,
+/area/hallway/primary/thirddeck/fore)
+"pP" = (
+/obj/machinery/light,
+/obj/floor_decal/industrial/warning{
+ dir = 8;
+ icon_state = "warning"
+ },
+/obj/floor_decal/corner/green/half{
+ dir = 4;
+ icon_state = "bordercolorhalf"
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/thirddeck/fore)
+"pR" = (
+/obj/machinery/computer/modular/preset/cardslot/command{
+ dir = 4;
+ icon_state = "console"
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/command/disperser)
+"pS" = (
+/obj/structure/sign/directions/evac{
+ dir = 2;
+ pixel_y = -4
+ },
+/obj/structure/sign/directions/engineering{
+ dir = 1;
+ pixel_y = 3;
+ pixel_z = 0
+ },
+/turf/simulated/wall/prepainted,
+/area/hallway/primary/thirddeck/center)
+"pT" = (
+/turf/simulated/floor/tiled/steel_ridged,
+/area/hallway/primary/thirddeck/center)
+"pU" = (
+/obj/structure/sign/directions/infirmary{
+ dir = 1;
+ pixel_y = -4;
+ pixel_z = 0
+ },
+/obj/structure/sign/directions/science{
+ dir = 1;
+ pixel_y = 3;
+ pixel_z = 0
+ },
+/turf/simulated/wall/prepainted,
+/area/hallway/primary/thirddeck/center)
+"pV" = (
+/obj/machinery/door/blast/shutters{
+ dir = 2;
+ id_tag = "bar";
+ name = "Bar Shutters"
+ },
+/obj/wallframe_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/crew_quarters/bar)
+"pW" = (
+/obj/structure/sign/double/barsign,
+/turf/simulated/wall/prepainted,
+/area/crew_quarters/bar)
+"pX" = (
+/obj/floor_decal/corner/blue/diagonal{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/airlock/glass/civilian{
+ name = "Mess Hall"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/mess)
+"pY" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/obj/effect/wallframe_spawn/no_grille,
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plating,
+/area/crew_quarters/mess)
+"pZ" = (
+/obj/floor_decal/corner/blue/diagonal{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass/civilian{
+ name = "Mess Hall"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/mess)
+"qb" = (
+/obj/effect/wallframe_spawn/no_grille,
+/turf/simulated/floor/plating,
+/area/crew_quarters/mess)
+"qc" = (
+/obj/machinery/door/airlock/multi_tile/glass/civilian{
+ name = "VR Control"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/crew_quarters/virtual_reality_control)
+"qd" = (
+/turf/simulated/wall/prepainted,
+/area/crew_quarters/virtual_reality)
+"qe" = (
+/obj/machinery/status_display,
+/turf/simulated/wall/prepainted,
+/area/crew_quarters/virtual_reality)
+"qh" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/railing/mapped,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/forestarboard)
+"qi" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/structure/railing/mapped,
+/obj/structure/railing/mapped{
+ dir = 8;
+ icon_state = "railing0-1"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/port)
+"ql" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan,
+/obj/machinery/meter,
+/obj/wallframe_spawn/reinforced_phoron,
+/turf/simulated/floor/tiled/techfloor,
+/area/thruster/d3starboard)
+"qn" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/gibber,
+/turf/simulated/floor/tiled/freezer,
+/area/crew_quarters/galleybackroom)
+"qp" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 4
+ },
+/obj/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/floor_decal/industrial/hatch/blue,
+/turf/simulated/floor/tiled/techfloor,
+/area/thruster/d3starboard)
+"qq" = (
+/obj/floor_decal/industrial/hatch/blue,
+/obj/machinery/light{
+ dir = 1;
+ icon_state = "tube1"
+ },
+/obj/structure/ship_munition/disperser_charge/emp,
+/turf/simulated/floor/tiled/dark,
+/area/command/disperser)
+"qr" = (
+/obj/structure/bed/chair/wood{
+ dir = 4
+ },
+/obj/floor_decal/corner/lime/three_quarters{
+ dir = 8
+ },
+/obj/machinery/alarm{
+ pixel_y = 24
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 6;
+ icon_state = "intact"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/aft)
+"qs" = (
+/obj/structure/table/woodentable,
+/obj/item/reagent_containers/food/drinks/glass2/coffeecup,
+/obj/floor_decal/corner/lime{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 9;
+ icon_state = "intact"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/aft)
+"qt" = (
+/obj/floor_decal/corner/lime/three_quarters{
+ dir = 1
+ },
+/obj/machinery/vending/cola{
+ dir = 8;
+ icon_state = "Cola_Machine"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/aft)
+"qu" = (
+/turf/simulated/floor/carpet,
+/area/crew_quarters/recreation)
+"qv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/aftstarboard)
+"qx" = (
+/obj/wallframe_spawn/reinforced,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 4;
+ icon_state = "pdoor0";
+ id_tag = "d3fore_shutters";
+ name = "Blast Shields";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/observation)
+"qC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/wood/walnut,
+/area/crew_quarters/observation)
+"qG" = (
+/obj/floor_decal/spline/fancy/wood{
+ dir = 4
+ },
+/turf/simulated/floor/wood/walnut,
+/area/crew_quarters/recreation)
+"qH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/recreation)
+"qI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/carpet,
+/area/crew_quarters/recreation)
+"qK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/floor_decal/spline/fancy/wood{
+ dir = 1;
+ icon_state = "spline_fancy"
+ },
+/obj/machinery/vr_pod{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/blue,
+/area/crew_quarters/virtual_reality)
+"qL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/catwalk_plated,
+/obj/structure/disposalpipe/junction{
+ dir = 4;
+ icon_state = "pipe-j2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/hallway/primary/thirddeck/fore)
+"qM" = (
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/valve/shutoff/fuel,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/aftport)
+"qN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/catwalk,
+/obj/floor_decal/industrial/warning{
+ dir = 4;
+ icon_state = "warning"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/port)
+"qP" = (
+/obj/floor_decal/corner/green/half{
+ dir = 1;
+ icon_state = "bordercolorhalf"
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/thirddeck/center)
+"qQ" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/floor_decal/corner/green{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/center)
+"qR" = (
+/obj/machinery/door/firedoor,
+/obj/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/thirddeck/center)
+"qS" = (
+/obj/structure/disposalpipe/segment,
+/obj/floor_decal/corner/green{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/center)
+"qU" = (
+/obj/machinery/camera/network/third_deck{
+ c_tag = "Third Deck Hallway - Cryogenic Storage"
+ },
+/obj/floor_decal/corner/green{
+ dir = 1;
+ icon_state = "corner_white"
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/center)
+"qV" = (
+/obj/machinery/atm{
+ pixel_y = 32
+ },
+/obj/floor_decal/corner/green{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/center)
+"qW" = (
+/obj/machinery/atmospherics/valve/digital{
+ dir = 4;
+ id_tag = "fuelmode"
+ },
+/obj/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/floor_decal/industrial/outline/red,
+/turf/simulated/floor/tiled/techfloor,
+/area/thruster/d3port)
+"qY" = (
+/obj/structure/table/steel,
+/obj/item/hand_labeler,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/foreport)
+"qZ" = (
+/obj/machinery/door/airlock/maintenance,
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/hallway/primary/thirddeck/aft)
+"ra" = (
+/obj/floor_decal/corner/yellow{
+ dir = 5;
+ icon_state = "corner_white"
+ },
+/obj/machinery/door/airlock/glass/civilian,
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/hallway/primary/thirddeck/aft)
+"rb" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/floor_decal/corner/red{
+ dir = 6;
+ icon_state = "corner_white"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/fore)
+"rc" = (
+/obj/floor_decal/corner/green{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/center)
+"re" = (
+/obj/floor_decal/corner/green/half,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/aft)
+"rf" = (
+/obj/floor_decal/corner/green{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/aft)
+"rh" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/machinery/atm{
+ pixel_y = 32
+ },
+/obj/floor_decal/corner/green{
+ dir = 1;
+ icon_state = "corner_white"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/aft)
+"ri" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/item/device/radio/intercom{
+ pixel_y = 23
+ },
+/obj/floor_decal/corner/green/half{
+ dir = 1;
+ icon_state = "bordercolorhalf"
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/thirddeck/aft)
+"rk" = (
+/obj/floor_decal/corner/yellow{
+ dir = 5;
+ icon_state = "corner_white"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/aft)
+"rl" = (
+/obj/machinery/alarm{
+ pixel_y = 24
+ },
+/obj/floor_decal/corner/yellow{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/aft)
+"rm" = (
+/obj/structure/table/marble,
+/obj/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/item/book/manual/chef_recipes,
+/obj/item/sticky_pad/random,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/galley)
+"ro" = (
+/obj/floor_decal/spline/fancy/wood{
+ dir = 6
+ },
+/obj/machinery/light/spot{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/blue,
+/area/crew_quarters/virtual_reality)
+"rp" = (
+/obj/machinery/door/firedoor,
+/obj/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/thirddeck/aft)
+"rr" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_x = 0;
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/floor_decal/corner/green{
+ dir = 1;
+ icon_state = "corner_white"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/aft)
+"rt" = (
+/obj/machinery/camera/network/third_deck{
+ c_tag = "Third Deck Hallway - Aft"
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/floor_decal/corner/green/half{
+ dir = 1;
+ icon_state = "bordercolorhalf"
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/thirddeck/aft)
+"ru" = (
+/obj/floor_decal/corner/green{
+ dir = 5
+ },
+/obj/machinery/atm{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/aft)
+"rv" = (
+/obj/machinery/camera/network/third_deck{
+ c_tag = "VR Suites - Front"
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -23;
+ pixel_y = 0
+ },
+/obj/floor_decal/spline/fancy/wood{
+ dir = 9
+ },
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/carpet/blue,
+/area/crew_quarters/virtual_reality)
+"rw" = (
+/obj/floor_decal/corner/green{
+ dir = 5
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/aft)
+"rx" = (
+/obj/floor_decal/industrial/hatch/yellow,
+/obj/machinery/door/firedoor,
+/obj/machinery/newscaster{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/thirddeck/aft)
+"rz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/starboard)
+"rA" = (
+/obj/structure/window/phoronreinforced{
+ dir = 8;
+ icon_state = "rwindow"
+ },
+/obj/structure/closet/crate,
+/obj/item/stack/material/phoron{
+ amount = 50
+ },
+/obj/item/stack/material/phoron{
+ amount = 50
+ },
+/obj/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/engineering/hardstorage)
+"rB" = (
+/obj/floor_decal/corner/lime/three_quarters{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/aft)
+"rC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/engineering/hardstorage)
+"rD" = (
+/obj/structure/lattice,
+/obj/structure/grille,
+/turf/simulated/wall/r_wall/hull,
+/area/space)
+"rE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor,
+/obj/structure/curtain/black,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/chapel/main)
+"rG" = (
+/obj/structure/sign/warning/nosmoking_1{
+ dir = 4;
+ icon_state = "nosmoking";
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled/dark,
+/area/command/disperser)
+"rH" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/starboard)
+"rI" = (
+/obj/structure/bed/chair/comfy/brown,
+/obj/machinery/firealarm{
+ dir = 2;
+ pixel_y = 24
+ },
+/turf/simulated/floor/wood/walnut,
+/area/crew_quarters/virtual_reality)
+"rK" = (
+/obj/structure/railing/mapped{
+ dir = 8;
+ icon_state = "railing0-1"
+ },
+/obj/random_multi/single_item/poppy,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/starboard)
+"rL" = (
+/obj/floor_decal/corner/blue/diagonal{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/mess)
+"rM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/floor_decal/corner/blue/diagonal{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/mess)
+"rP" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/wood/walnut,
+/area/crew_quarters/observation)
+"rQ" = (
+/obj/effect/wallframe_spawn/no_grille,
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/observation)
+"rR" = (
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable/green{
+ d1 = 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
+ },
+/obj/item/device/radio/beacon,
+/obj/floor_decal/corner/paleblue{
+ dir = 9;
+ icon_state = "corner_white"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/fore)
+"rS" = (
+/obj/structure/disposalpipe/segment,
+/obj/catwalk_plated,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/hallway/primary/thirddeck/fore)
+"rT" = (
+/obj/floor_decal/spline/fancy/wood{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/wood/walnut,
+/area/crew_quarters/recreation)
+"rU" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/recreation)
+"rY" = (
+/turf/simulated/wall/r_wall/prepainted,
+/area/crew_quarters/virtual_reality)
+"sc" = (
+/obj/floor_decal/corner/green/half{
+ dir = 1;
+ icon_state = "bordercolorhalf"
+ },
+/obj/structure/bed/chair,
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/thirddeck/fore)
+"se" = (
+/obj/floor_decal/corner/green/half{
+ dir = 1;
+ icon_state = "bordercolorhalf"
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_x = 0;
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/thirddeck/fore)
+"sf" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/hologram/holopad,
+/obj/floor_decal/industrial/outline/yellow,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/thirddeck/fore)
+"sg" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/fore)
+"sh" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/wallframe_spawn/no_grille,
+/turf/simulated/floor/plating,
+/area/hallway/primary/thirddeck/center)
+"si" = (
+/obj/machinery/air_sensor{
+ id_tag = "d3sh_sensor"
+ },
+/turf/simulated/floor/reinforced/hydrogen,
+/area/thruster/d3starboard)
+"sj" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/catwalk_plated,
+/turf/simulated/floor/plating,
+/area/hallway/primary/thirddeck/center)
+"sk" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/catwalk_plated,
+/turf/simulated/floor/plating,
+/area/hallway/primary/thirddeck/center)
+"sl" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ dir = 4;
+ icon_state = "shutter0";
+ id_tag = "hab_hallway_shutters";
+ name = "Habitation Deck Hallway Shutters";
+ opacity = 0
+ },
+/obj/floor_decal/corner/red/mono,
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/thirddeck/center)
+"sn" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/catwalk_plated,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/hallway/primary/thirddeck/center)
+"so" = (
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/item/device/radio/beacon,
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/hologram/holopad,
+/obj/catwalk_plated,
+/turf/simulated/floor/plating,
+/area/hallway/primary/thirddeck/center)
+"sp" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/sortjunction{
+ dir = 4;
+ name = "Cryogenic Storage";
+ sort_type = "Cryogenic Storage"
+ },
+/obj/catwalk_plated,
+/turf/simulated/floor/plating,
+/area/hallway/primary/thirddeck/center)
+"sr" = (
+/obj/machinery/door/firedoor,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/thirddeck/center)
+"su" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/thirddeck/aft)
+"sv" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/thirddeck/aft)
+"sw" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 4;
+ icon_state = "pipe-j2"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/catwalk_plated,
+/turf/simulated/floor/plating,
+/area/hallway/primary/thirddeck/aft)
+"sx" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/catwalk_plated,
+/turf/simulated/floor/plating,
+/area/hallway/primary/thirddeck/aft)
+"sy" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/thirddeck/aft)
+"sz" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/floor_decal/industrial/shutoff{
+ dir = 4
+ },
+/obj/machinery/atmospherics/valve/shutoff/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/valve/shutoff/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/thirddeck/aft)
+"sB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/wallframe_spawn/no_grille,
+/turf/simulated/floor/plating,
+/area/hallway/primary/thirddeck/aft)
+"sC" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/catwalk_plated,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/hallway/primary/thirddeck/aft)
+"sE" = (
+/obj/catwalk_plated,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/plating,
+/area/hallway/primary/thirddeck/aft)
+"sF" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/catwalk_plated,
+/turf/simulated/floor/plating,
+/area/hallway/primary/thirddeck/aft)
+"sG" = (
+/obj/catwalk_plated,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/plating,
+/area/hallway/primary/thirddeck/aft)
+"sH" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/lino,
+/area/crew_quarters/office)
+"sI" = (
+/obj/machinery/door/airlock/glass/civilian{
+ name = "Gym"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/crew_quarters/gym)
+"sJ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/catwalk_plated,
+/turf/simulated/floor/plating,
+/area/hallway/primary/thirddeck/aft)
+"sL" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/recreation)
+"sM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cryolocker)
+"sN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/catwalk_plated,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/plating,
+/area/hallway/primary/thirddeck/fore)
+"sP" = (
+/obj/structure/table/rack{
+ dir = 8
+ },
+/obj/item/storage/briefcase/inflatable{
+ pixel_x = 3;
+ pixel_y = 6
+ },
+/obj/item/storage/briefcase/inflatable{
+ pixel_x = 3;
+ pixel_y = 6
+ },
+/obj/item/storage/briefcase/inflatable{
+ pixel_x = 3;
+ pixel_y = 6
+ },
+/obj/item/storage/briefcase/inflatable{
+ pixel_x = 3;
+ pixel_y = 6
+ },
+/obj/item/inflatable_dispenser,
+/obj/item/grenade/chem_grenade/metalfoam,
+/obj/item/grenade/chem_grenade/metalfoam,
+/obj/item/grenade/chem_grenade/metalfoam,
+/obj/item/grenade/chem_grenade/metalfoam,
+/obj/item/grenade/chem_grenade/metalfoam,
+/obj/floor_decal/industrial/outline/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark/monotile,
+/area/engineering/hardstorage)
+"sQ" = (
+/obj/floor_decal/industrial/outline/grey,
+/obj/machinery/portable_atmospherics/powered/pump/filled,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/port)
+"sR" = (
+/obj/floor_decal/industrial/hatch/yellow,
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/thirddeck/aft)
+"sS" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/port)
+"sU" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1;
+ icon_state = "map-scrubbers"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/aft)
+"sW" = (
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/aft)
+"sX" = (
+/obj/floor_decal/corner/lime{
+ dir = 6
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/aft)
+"sZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/starboard)
+"td" = (
+/obj/machinery/atmospherics/binary/pump/high_power/on{
+ dir = 2
+ },
+/turf/simulated/wall/ocp_wall,
+/area/thruster/d3starboard)
+"te" = (
+/obj/structure/sign/warning/fire{
+ dir = 1
+ },
+/turf/simulated/wall/ocp_wall,
+/area/thruster/d3starboard)
+"tf" = (
+/obj/machinery/atmospherics/pipe/simple/visible/fuel,
+/obj/machinery/door/airlock/external,
+/obj/machinery/door/blast/regular{
+ dir = 1;
+ id_tag = "d3starboardnacelle";
+ implicit_material = null
+ },
+/turf/simulated/floor/reinforced,
+/area/thruster/d3starboard)
+"ti" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/floor_decal/spline/fancy/wood{
+ dir = 1;
+ icon_state = "spline_fancy"
+ },
+/obj/machinery/vr_pod{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/blue,
+/area/crew_quarters/virtual_reality)
+"tj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/wood/walnut,
+/area/crew_quarters/observation)
+"tk" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/maintenance,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/crew_quarters/virtual_reality)
+"tl" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/obj/catwalk_plated,
+/turf/simulated/floor/plating,
+/area/hallway/primary/thirddeck/fore)
+"tp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/fore)
+"ts" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/floor_decal/corner/paleblue{
+ dir = 9;
+ icon_state = "corner_white"
+ },
+/obj/machinery/camera/network/third_deck{
+ c_tag = "Third Deck Hallway - Fore Port";
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/fore)
+"tt" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass/civilian,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/hallway/primary/thirddeck/center)
+"tu" = (
+/obj/structure/table/rack,
+/obj/random/maintenance/solgov,
+/obj/random/maintenance/solgov,
+/obj/random/maintenance/solgov,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/starboard)
+"tv" = (
+/obj/floor_decal/corner/red{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/center)
+"tw" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/floor_decal/corner/red{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/center)
+"tx" = (
+/obj/machinery/camera/network/third_deck{
+ c_tag = "Third Deck Hallway - Lift";
+ dir = 1
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_x = 0;
+ pixel_y = -24
+ },
+/obj/floor_decal/corner/red{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/center)
+"ty" = (
+/obj/floor_decal/corner/blue{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/dark,
+/area/command/disperser)
+"tz" = (
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/port)
+"tA" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/aft)
+"tC" = (
+/obj/machinery/light,
+/obj/floor_decal/corner/green{
+ dir = 10;
+ icon_state = "corner_white"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/center)
+"tD" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/floor_decal/corner/green{
+ dir = 10;
+ icon_state = "corner_white"
+ },
+/obj/item/device/radio/intercom{
+ dir = 1;
+ pixel_y = -28
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/center)
+"tE" = (
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_x = 0;
+ pixel_y = -24
+ },
+/obj/floor_decal/corner/green/half,
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/thirddeck/center)
+"tF" = (
+/obj/machinery/alarm{
+ pixel_y = 24
+ },
+/obj/floor_decal/corner/green{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/center)
+"tG" = (
+/obj/floor_decal/techfloor{
+ dir = 1;
+ icon_state = "techfloor_edges"
+ },
+/obj/structure/bed/chair,
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/safe_room/thirddeck)
+"tH" = (
+/obj/floor_decal/corner/green/half,
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/thirddeck/center)
+"tI" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/machinery/computer/guestpass{
+ pixel_y = -32
+ },
+/obj/floor_decal/corner/green{
+ dir = 10;
+ icon_state = "corner_white"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/center)
+"tJ" = (
+/obj/machinery/atm{
+ pixel_y = -32
+ },
+/obj/floor_decal/corner/green{
+ dir = 10;
+ icon_state = "corner_white"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/center)
+"tK" = (
+/obj/structure/lattice,
+/turf/simulated/wall/r_wall/hull,
+/area/thruster/d3port)
+"tL" = (
+/obj/machinery/camera/network/third_deck{
+ c_tag = "Third Deck Hallway - Center";
+ dir = 1
+ },
+/obj/floor_decal/corner/green{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/center)
+"tN" = (
+/obj/structure/bed/chair/pew/left/mahogany,
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"tP" = (
+/obj/floor_decal/corner/red/half,
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/thirddeck/center)
+"tR" = (
+/obj/machinery/door/airlock/hatch/maintenance,
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/hallway/primary/thirddeck/fore)
+"tS" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/floor_decal/corner/green{
+ dir = 10
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_y = -32
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/aft)
+"tT" = (
+/obj/structure/closet/medical_wall/filled{
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/crew_quarters/gym)
+"tU" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/foreport)
+"tW" = (
+/obj/machinery/light,
+/obj/floor_decal/corner/green{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/aft)
+"tZ" = (
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/port)
+"ua" = (
+/obj/floor_decal/corner/green{
+ dir = 10
+ },
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/aft)
+"ub" = (
+/turf/simulated/wall/walnut,
+/area/vacant/cabin)
+"ud" = (
+/obj/machinery/light/spot,
+/turf/simulated/floor/wood/walnut,
+/area/crew_quarters/virtual_reality)
+"ue" = (
+/obj/floor_decal/corner/green/half,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/thirddeck/aft)
+"uf" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ dir = 5;
+ icon_state = "intact"
+ },
+/turf/simulated/floor/reinforced/oxygen,
+/area/thruster/d3port)
+"ug" = (
+/obj/structure/railing/mapped{
+ dir = 8;
+ icon_state = "railing0-1"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/port)
+"uh" = (
+/obj/machinery/suit_storage_unit/engineering/alt/sol,
+/obj/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/engineering/hardstorage)
+"ui" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/wall/r_wall/hull,
+/area/space)
+"uj" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/light_switch{
+ pixel_x = 22;
+ pixel_y = -22
+ },
+/turf/simulated/floor/lino,
+/area/tcommsat/computer)
+"uk" = (
+/obj/floor_decal/industrial/hatch/yellow,
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/thirddeck/aft)
+"ul" = (
+/obj/floor_decal/corner/lime{
+ dir = 10
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_x = 0;
+ pixel_y = -24
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/aft)
+"um" = (
+/obj/floor_decal/corner/lime{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/aft)
+"un" = (
+/turf/simulated/wall/r_wall/prepainted,
+/area/thruster/d3starboard)
+"uo" = (
+/obj/floor_decal/corner/lime/three_quarters{
+ dir = 4
+ },
+/obj/machinery/disposal,
+/obj/floor_decal/industrial/hatch/yellow,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/aft)
+"up" = (
+/obj/wallframe_spawn/reinforced,
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ dir = 4;
+ icon_state = "shutter0";
+ id_tag = "hab_checkpoint_shutters";
+ name = "Hangar Deck Checkpoint Shutters";
+ opacity = 0
+ },
+/obj/structure/cable/green,
+/turf/simulated/floor/plating,
+/area/security/habcheck)
+"uq" = (
+/obj/machinery/hologram/holopad,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"uv" = (
+/obj/structure/flora/ausbushes/pointybush,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/grass,
+/area/crew_quarters/observation)
+"ux" = (
+/obj/floor_decal/corner/lime{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/aft)
+"uz" = (
+/obj/structure/flora/pottedplant/large,
+/turf/simulated/floor/wood/walnut,
+/area/crew_quarters/recreation)
+"uA" = (
+/obj/floor_decal/industrial/warning/corner{
+ dir = 8;
+ icon_state = "warningcorner"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/airless,
+/area/command/disperser)
+"uB" = (
+/obj/machinery/computer/arcade,
+/obj/floor_decal/spline/fancy/wood{
+ dir = 1;
+ icon_state = "spline_fancy"
+ },
+/obj/machinery/light,
+/turf/simulated/floor/wood/walnut,
+/area/crew_quarters/recreation)
+"uC" = (
+/obj/machinery/computer/arcade,
+/obj/structure/window/reinforced{
+ dir = 8;
+ },
+/obj/floor_decal/spline/fancy/wood{
+ dir = 1;
+ icon_state = "spline_fancy"
+ },
+/turf/simulated/floor/wood/walnut,
+/area/crew_quarters/recreation)
+"uG" = (
+/obj/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/light_switch{
+ pixel_x = 26;
+ pixel_y = 26
+ },
+/turf/simulated/floor/wood/walnut,
+/area/crew_quarters/recreation)
+"uH" = (
+/obj/structure/bed/chair/comfy/black{
+ dir = 4;
+ icon_state = "comfychair_preview"
+ },
+/turf/simulated/floor/wood/walnut,
+/area/crew_quarters/recreation)
+"uI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/catwalk_plated,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/hallway/primary/thirddeck/fore)
+"uK" = (
+/obj/machinery/status_display,
+/turf/simulated/wall/prepainted,
+/area/security/habcheck)
+"uL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/airlock/hatch/maintenance,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/hallway/primary/thirddeck/center)
+"uM" = (
+/turf/simulated/wall/prepainted,
+/area/crew_quarters/sleep/bunk)
+"uN" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/airlock/security{
+ name = "Security Checkpoint";
+ secured_wires = 1
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/security/habcheck)
+"uO" = (
+/obj/effect/shuttle_landmark/torch/deck4/exploration_shuttle{
+ name = "3rd Deck, Fore Port"
+ },
+/turf/space,
+/area/space)
+"uQ" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass/civilian{
+ name = "Cryogenic Storage"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/crew_quarters/sleep/cryo)
+"uR" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/effect/wallframe_spawn/no_grille,
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plating,
+/area/crew_quarters/sleep/cryo)
+"uS" = (
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/door/airlock/glass/civilian{
+ name = "Cryogenic Storage"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/crew_quarters/sleep/cryo)
+"uT" = (
+/obj/machinery/status_display,
+/turf/simulated/wall/prepainted,
+/area/crew_quarters/sleep/cryo)
+"uU" = (
+/turf/simulated/wall/prepainted,
+/area/crew_quarters/head)
+"uV" = (
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/visible/fuel,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/aftport)
+"vc" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/aftstarboard)
+"vd" = (
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/starboard)
+"ve" = (
+/turf/simulated/wall/prepainted,
+/area/maintenance/thirddeck/aftstarboard)
+"vf" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{
+ dir = 4;
+ id_tag = "bsa_pump"
+ },
+/obj/machinery/airlock_sensor{
+ id_tag = "bsa_sensor";
+ pixel_x = -21;
+ pixel_y = -10
+ },
+/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
+ dir = 1;
+ id_tag = "bsa_airlock";
+ pixel_y = -21;
+ tag_airpump = "bsa_pump";
+ tag_chamber_sensor = "bsa_sensor";
+ tag_exterior_door = "bsa_ex";
+ tag_interior_door = "bsa_in"
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/command/disperser)
+"vg" = (
+/obj/effect/wallframe_spawn/no_grille,
+/turf/simulated/floor/plating,
+/area/crew_quarters/office)
+"vh" = (
+/turf/simulated/wall/prepainted,
+/area/crew_quarters/office)
+"vi" = (
+/obj/machinery/papershredder,
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 25;
+ pixel_y = 0
+ },
+/turf/simulated/floor/lino,
+/area/crew_quarters/office)
+"vj" = (
+/obj/machinery/atmospherics/unary/vent_pump/tank{
+ dir = 8;
+ external_pressure_bound = 0;
+ external_pressure_bound_default = 0;
+ icon_state = "map_vent_in";
+ id_tag = "d3po2_out";
+ initialize_directions = 1;
+ internal_pressure_bound = 4000;
+ internal_pressure_bound_default = 4000;
+ pressure_checks = 2;
+ pressure_checks_default = 2;
+ pump_direction = 0;
+ use_power = 1
+ },
+/turf/simulated/floor/reinforced/oxygen,
+/area/thruster/d3port)
+"vk" = (
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/port)
+"vm" = (
+/obj/machinery/door/airlock/chaplain{
+ name = "Chapel"
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/chapel/main)
+"vn" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/airlock/chaplain{
+ name = "Chapel"
+ },
+/obj/machinery/holosign/chapel{
+ id_tag = "chapel"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/chapel/main)
+"vo" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/memorial)
+"vt" = (
+/turf/simulated/wall/r_wall/hull,
+/area/crew_quarters/observation)
+"vu" = (
+/obj/structure/bed/chair/wood{
+ dir = 4
+ },
+/obj/floor_decal/corner/lime/three_quarters,
+/obj/item/device/radio/intercom/entertainment{
+ dir = 1;
+ pixel_y = -28
+ },
+/obj/machinery/camera/network/third_deck{
+ c_tag = "Third Deck Hallway - Observation Bubble";
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 5;
+ icon_state = "intact"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/aft)
+"vy" = (
+/obj/item/beach_ball,
+/turf/simulated/floor/grass,
+/area/crew_quarters/observation)
+"vD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/light/spot{
+ dir = 4
+ },
+/turf/simulated/floor/grass,
+/area/crew_quarters/observation)
+"vF" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/floor_decal/corner/paleblue{
+ dir = 9;
+ icon_state = "corner_white"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/fore)
+"vG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/catwalk_plated,
+/turf/simulated/floor/plating,
+/area/hallway/primary/thirddeck/fore)
+"vM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/foreport)
+"vN" = (
+/obj/structure/bed/padded,
+/obj/item/bedsheet,
+/obj/item/storage/secure/safe{
+ pixel_x = -22;
+ pixel_y = 0
+ },
+/obj/item/book/manual/sol_sop,
+/turf/simulated/floor/carpet,
+/area/crew_quarters/sleep/bunk)
+"vO" = (
+/obj/structure/curtain/open/bed,
+/turf/simulated/floor/carpet,
+/area/crew_quarters/sleep/bunk)
+"vP" = (
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/sleep/bunk)
+"vQ" = (
+/obj/structure/bed/padded,
+/obj/item/bedsheet,
+/obj/item/storage/secure/safe{
+ pixel_x = 32;
+ pixel_y = 0
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/sleep/bunk)
+"vR" = (
+/obj/machinery/light/spot{
+ dir = 8
+ },
+/obj/machinery/vending/snack{
+ dir = 4;
+ icon_state = "snack"
+ },
+/turf/simulated/floor/tiled/white/monotile,
+/area/crew_quarters/sleep/cryo)
+"vS" = (
+/obj/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/landmark{
+ name = "JoinLateCryo"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/sleep/cryo)
+"vT" = (
+/obj/machinery/cryopod,
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/sleep/cryo)
+"vU" = (
+/obj/machinery/cryopod{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/sleep/cryo)
+"vV" = (
+/obj/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/landmark{
+ name = "JoinLateCryo"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/sleep/cryo)
+"vW" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/sleep/cryo)
+"vY" = (
+/obj/structure/hygiene/toilet{
+ pixel_y = 8
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/item/taperoll/bog{
+ pixel_x = -12
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/crew_quarters/head)
+"vZ" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"wf" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/port)
+"wg" = (
+/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
+ },
+/obj/machinery/light_switch{
+ pixel_x = 22;
+ pixel_y = -22
+ },
+/obj/catwalk_plated/dark,
+/turf/simulated/floor/plating,
+/area/tcommsat/chamber)
+"wj" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/aft)
+"wk" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/aft)
+"wl" = (
+/turf/simulated/wall/prepainted,
+/area/hallway/primary/thirddeck/aft)
+"wm" = (
+/obj/machinery/air_sensor{
+ id_tag = "d3ph_sensor"
+ },
+/turf/simulated/floor/reinforced/hydrogen,
+/area/thruster/d3port)
+"wn" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"wp" = (
+/turf/simulated/floor/lino,
+/area/crew_quarters/office)
+"wq" = (
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/port)
+"wr" = (
+/obj/machinery/light_switch{
+ pixel_x = -6;
+ pixel_y = 24
+ },
+/obj/machinery/disposal,
+/obj/floor_decal/industrial/hatch/yellow,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/lino,
+/area/crew_quarters/office)
+"wt" = (
+/obj/machinery/light{
+ dir = 8;
+ icon_state = "tube1";
+ pixel_y = 0
+ },
+/obj/machinery/alarm{
+ pixel_y = 24
+ },
+/obj/machinery/disposal,
+/obj/floor_decal/industrial/hatch/yellow,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"wu" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"ww" = (
+/obj/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/table/marble,
+/obj/machinery/reagent_temperature/cooler,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/galley)
+"wy" = (
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/turf/simulated/floor/wood/walnut,
+/area/crew_quarters/recreation)
+"wz" = (
+/obj/machinery/computer/modular/preset/civilian,
+/turf/simulated/floor/carpet/purple,
+/area/chapel/office)
+"wA" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/flora/pottedplant/flower,
+/obj/machinery/alarm{
+ pixel_y = 24
+ },
+/turf/simulated/floor/carpet/purple,
+/area/chapel/office)
+"wB" = (
+/obj/machinery/firealarm{
+ dir = 2;
+ pixel_y = 24
+ },
+/obj/floor_decal/corner/green{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/aft)
+"wC" = (
+/obj/structure/kitchenspike,
+/turf/simulated/floor/tiled/freezer,
+/area/crew_quarters/galleybackroom)
+"wD" = (
+/turf/simulated/wall/prepainted,
+/area/hallway/primary/thirddeck/center)
+"wH" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/structure/flora/pottedplant/stoutbush,
+/obj/floor_decal/corner/purple/half{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark/monotile,
+/area/chapel/memorial)
+"wI" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/catwalk_plated,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/hallway/primary/thirddeck/fore)
+"wJ" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/floor_decal/industrial/hatch/yellow,
+/obj/item/device/radio/intercom{
+ pixel_y = 23
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/thirddeck/fore)
+"wK" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/structure/flora/pottedplant/stoutbush,
+/obj/floor_decal/corner/purple/half{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark/monotile,
+/area/chapel/memorial)
+"wL" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1;
+ icon_state = "map-scrubbers"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/catwalk_plated,
+/turf/simulated/floor/plating,
+/area/hallway/primary/thirddeck/fore)
+"wM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/catwalk_plated,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/hallway/primary/thirddeck/fore)
+"wN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/thirddeck/fore)
+"wO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atm{
+ pixel_y = 32
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/camera/network/third_deck{
+ c_tag = "Third Deck Hallway - Teleporter"
+ },
+/obj/catwalk_plated,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1;
+ icon_state = "map-scrubbers"
+ },
+/turf/simulated/floor/plating,
+/area/hallway/primary/thirddeck/fore)
+"wP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/catwalk_plated,
+/turf/simulated/floor/plating,
+/area/hallway/primary/thirddeck/fore)
+"wQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/catwalk_plated,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 2;
+ pixel_y = 24
+ },
+/turf/simulated/floor/plating,
+/area/hallway/primary/thirddeck/fore)
+"wR" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/floor_decal/industrial/warning/fulltile,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/hallway/primary/thirddeck/fore)
+"wS" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass/civilian{
+ name = "Observation"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/crew_quarters/observation)
+"wV" = (
+/obj/structure/sign/deck/third{
+ dir = 1;
+ pixel_y = -32
+ },
+/obj/floor_decal/corner/green{
+ dir = 10;
+ icon_state = "corner_white"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/center)
+"wW" = (
+/turf/simulated/wall/walnut,
+/area/crew_quarters/sleep/bunk)
+"wX" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = 21
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/sleep/bunk)
+"wY" = (
+/obj/machinery/camera/network/third_deck{
+ c_tag = "Cryogenic Storage - Fore Starboard";
+ dir = 4
+ },
+/obj/machinery/vending/cola{
+ dir = 4;
+ icon_state = "Cola_Machine"
+ },
+/turf/simulated/floor/tiled/white/monotile,
+/area/crew_quarters/sleep/cryo)
+"xb" = (
+/obj/wallframe_spawn/reinforced,
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ dir = 2;
+ icon_state = "shutter0";
+ id_tag = "hab_checkpoint_shutters";
+ name = "Hangar Deck Checkpoint Shutters";
+ opacity = 0
+ },
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/plating,
+/area/security/habcheck)
+"xf" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/floor_decal/corner/green,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/center)
+"xg" = (
+/obj/floor_decal/industrial/outline/grey,
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/port)
+"xi" = (
+/obj/wallframe_spawn/reinforced,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 4;
+ icon_state = "pdoor0";
+ id_tag = "d3aft_shutters";
+ name = "Blast Shields";
+ opacity = 0
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/hallway/primary/thirddeck/aft)
+"xk" = (
+/obj/floor_decal/industrial/outline/grey,
+/obj/structure/reagent_dispensers/fueltank,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/port)
+"xl" = (
+/obj/structure/ladder,
+/obj/floor_decal/corner/brown{
+ dir = 6
+ },
+/obj/structure/sign/deck/third{
+ dir = 8;
+ icon_state = "deck-3";
+ pixel_x = 32
+ },
+/obj/catwalk_plated,
+/turf/simulated/floor/tiled/steel_grid,
+/area/hallway/primary/thirddeck/aft)
+"xm" = (
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/port)
+"xn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/vending/hydronutrients/generic,
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"xo" = (
+/obj/structure/table/standard,
+/obj/item/material/bell,
+/turf/simulated/floor/lino,
+/area/crew_quarters/office)
+"xp" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 8
+ },
+/obj/machinery/light,
+/turf/simulated/floor/lino,
+/area/crew_quarters/office)
+"xr" = (
+/obj/structure/table/rack,
+/obj/random/maintenance/solgov,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/forestarboard)
+"xs" = (
+/obj/floor_decal/chapel{
+ dir = 1;
+ icon_state = "chapel"
+ },
+/obj/structure/bed/chair/pew/mahogany,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"xt" = (
+/obj/floor_decal/chapel{
+ dir = 4;
+ icon_state = "chapel"
+ },
+/obj/structure/bed/chair/pew/left/mahogany,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"xu" = (
+/obj/structure/table/standard,
+/obj/item/hand_labeler,
+/obj/item/stack/package_wrap/twenty_five,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/lino,
+/area/crew_quarters/office)
+"xv" = (
+/obj/floor_decal/techfloor{
+ dir = 4;
+ icon_state = "techfloor_edges"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/engineering/hardstorage)
+"xx" = (
+/obj/wallframe_spawn/reinforced/polarized/no_grille{
+ id = "chapoff_windows"
+ },
+/turf/simulated/floor/plating,
+/area/chapel/office)
+"xy" = (
+/turf/simulated/floor/carpet/purple,
+/area/chapel/office)
+"xz" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/floor_decal/corner/yellow/half{
+ dir = 1;
+ icon_state = "bordercolorhalf"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/dark,
+/area/engineering/hardstorage)
+"xC" = (
+/obj/item/modular_computer/telescreen/preset/generic{
+ pixel_y = 32
+ },
+/obj/structure/bed/chair/comfy/brown,
+/turf/simulated/floor/wood/walnut,
+/area/crew_quarters/virtual_reality)
+"xE" = (
+/obj/floor_decal/corner/green{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/center)
+"xF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/crew_quarters/gym)
+"xI" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/structure/closet/emcloset,
+/obj/floor_decal/corner/paleblue/mono,
+/obj/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/thirddeck/fore)
+"xJ" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/floor_decal/corner/paleblue{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9;
+ pixel_y = 0
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/fore)
+"xM" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/floor_decal/corner/paleblue{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/fore)
+"xN" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/floor_decal/corner/paleblue{
+ dir = 8
+ },
+/obj/machinery/alarm{
+ dir = 1;
+ icon_state = "alarm0";
+ pixel_y = -22
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/fore)
+"xO" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/lino,
+/area/crew_quarters/office)
+"xP" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/floor_decal/corner/paleblue{
+ dir = 10
+ },
+/obj/floor_decal/industrial/warning,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/fore)
+"xQ" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/floor_decal/corner/paleblue{
+ dir = 10
+ },
+/obj/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/fore)
+"xR" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/floor_decal/industrial/warning/fulltile,
+/turf/simulated/floor/tiled/steel_grid,
+/area/hallway/primary/thirddeck/fore)
+"xS" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/aft)
+"xT" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_x = 0;
+ pixel_y = -24
+ },
+/obj/floor_decal/corner/green{
+ dir = 10;
+ icon_state = "corner_white"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/fore)
+"xU" = (
+/obj/wallframe_spawn/reinforced,
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ dir = 4;
+ icon_state = "shutter0";
+ id_tag = "hab_checkpoint_shutters";
+ name = "Hangar Deck Checkpoint Shutters";
+ opacity = 0
+ },
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/plating,
+/area/security/habcheck)
+"xV" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/crew_quarters/safe_room/thirddeck)
+"xW" = (
+/obj/machinery/door/window/brigdoor{
+ color = "PURPLE";
+ dir = 8;
+ icon_state = "leftsecure"
+ },
+/obj/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/engineering/hardstorage)
+"xX" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/structure/closet/emcloset,
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -25
+ },
+/obj/floor_decal/corner/red/mono,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/fore)
+"xY" = (
+/obj/structure/bed/padded,
+/obj/item/bedsheet,
+/obj/item/storage/secure/safe{
+ pixel_x = -22;
+ pixel_y = 0
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/sleep/bunk)
+"xZ" = (
+/obj/structure/table/standard,
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/power/apc/super/critical{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/item/book/manual/solgov_law,
+/turf/simulated/floor/tiled/white/monotile,
+/area/crew_quarters/sleep/cryo)
+"ya" = (
+/obj/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/sleep/cryo)
+"yb" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/sleep/cryo)
+"yc" = (
+/obj/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/sleep/cryo)
+"yd" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/sleep/cryo)
+"ye" = (
+/obj/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/sleep/cryo)
+"yf" = (
+/obj/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/sleep/cryo)
+"yg" = (
+/obj/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/sleep/cryo)
+"yh" = (
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 25;
+ pixel_y = 0
+ },
+/turf/simulated/floor/wood/walnut,
+/area/crew_quarters/recreation)
+"yk" = (
+/obj/machinery/camera/network/third_deck{
+ c_tag = "Cryogenic Storage - Aft Starboard";
+ dir = 8
+ },
+/obj/structure/table/standard,
+/obj/item/storage/box/cups{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/storage/box/cups,
+/turf/simulated/floor/tiled/white/monotile,
+/area/crew_quarters/sleep/cryo)
+"yl" = (
+/obj/floor_decal/spline/fancy/wood{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/blue,
+/area/crew_quarters/virtual_reality)
+"yp" = (
+/obj/structure/ladder,
+/obj/floor_decal/corner/brown{
+ dir = 6
+ },
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = 21
+ },
+/obj/catwalk_plated,
+/turf/simulated/floor/tiled/steel_grid,
+/area/hallway/primary/thirddeck/aft)
+"yq" = (
+/obj/machinery/computer/modular/preset/civilian{
+ dir = 4;
+ icon_state = "console"
+ },
+/turf/simulated/floor/lino,
+/area/crew_quarters/office)
+"yr" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/memorial)
+"yt" = (
+/obj/machinery/light,
+/turf/simulated/floor/lino,
+/area/crew_quarters/office)
+"yu" = (
+/obj/structure/hygiene/drain/bath,
+/turf/simulated/floor/pool,
+/area/crew_quarters/observation)
+"yv" = (
+/obj/floor_decal/chapel{
+ dir = 8;
+ icon_state = "chapel"
+ },
+/obj/structure/bed/chair/pew/mahogany,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"yw" = (
+/obj/floor_decal/chapel,
+/obj/structure/bed/chair/pew/left/mahogany,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"yy" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/thirddeck/fore)
+"yz" = (
+/obj/floor_decal/spline/fancy/black{
+ dir = 5;
+ icon_state = "spline_fancy"
+ },
+/turf/simulated/floor/wood/maple,
+/area/chapel/main)
+"yB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/carpet/purple,
+/area/chapel/office)
+"yC" = (
+/obj/structure/table/woodentable/maple,
+/obj/item/paper_bin,
+/obj/item/pen,
+/turf/simulated/floor/carpet/purple,
+/area/chapel/office)
+"yD" = (
+/obj/machinery/suit_storage_unit/engineering/alt/sol,
+/obj/machinery/camera/network/engineering{
+ c_tag = "Engineering - EVA";
+ dir = 8
+ },
+/obj/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/engineering/hardstorage)
+"yG" = (
+/obj/floor_decal/corner/green/half,
+/obj/structure/table/standard,
+/obj/item/storage/box/glasses/pint,
+/obj/item/reagent_containers/food/drinks/glass2/carafe,
+/turf/simulated/floor/tiled/dark/monotile,
+/area/crew_quarters/observation)
+"yH" = (
+/turf/simulated/wall/prepainted,
+/area/crew_quarters/observation)
+"yI" = (
+/obj/floor_decal/corner/green/half,
+/obj/structure/table/standard,
+/obj/item/storage/box/cups,
+/turf/simulated/floor/tiled/dark/monotile,
+/area/crew_quarters/observation)
+"yL" = (
+/obj/machinery/power/apc{
+ dir = 2;
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/structure/cable/green,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/substation/thirddeck)
+"yN" = (
+/turf/simulated/wall/r_wall,
+/area/teleporter/thirddeck)
+"yO" = (
+/obj/machinery/door/blast/shutters{
+ dir = 2;
+ id_tag = "teleport3";
+ name = "Third Deck Teleporter Access Shutters"
+ },
+/obj/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/teleporter/thirddeck)
+"yP" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command{
+ name = "Third Deck Teleporter"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/teleporter/thirddeck)
+"yQ" = (
+/obj/machinery/portable_atmospherics/powered/scrubber,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/starboard)
+"yR" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/sleep/bunk)
+"yS" = (
+/obj/structure/table/standard,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/random/coin,
+/turf/simulated/floor/tiled/white/monotile,
+/area/crew_quarters/sleep/cryo)
+"yT" = (
+/obj/floor_decal/industrial/warning/corner,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/sleep/cryo)
+"yU" = (
+/obj/floor_decal/industrial/warning,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/sleep/cryo)
+"yV" = (
+/obj/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/sleep/cryo)
+"yW" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/obj/item/device/radio/beacon,
+/obj/effect/landmark{
+ name = "Observer-Start"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/sleep/cryo)
+"yX" = (
+/obj/floor_decal/industrial/warning/corner,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/sleep/cryo)
+"yY" = (
+/obj/floor_decal/industrial/warning,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/sleep/cryo)
+"yZ" = (
+/obj/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/sleep/cryo)
+"za" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/sleep/cryo)
+"ze" = (
+/obj/structure/railing/mapped{
+ dir = 8;
+ icon_state = "railing0-1"
+ },
+/turf/simulated/open,
+/area/maintenance/thirddeck/starboard)
+"zf" = (
+/obj/machinery/atmospherics/pipe/simple/visible/fuel{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/thruster/d3starboard)
+"zg" = (
+/obj/random_multi/single_item/runtime,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/portable_atmospherics/hydroponics,
+/obj/floor_decal/corner/green/mono,
+/obj/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled/monotile,
+/area/hydroponics)
+"zh" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 4;
+ icon_state = "map"
+ },
+/turf/simulated/floor/plating,
+/area/command/disperser)
+"zl" = (
+/obj/random_multi/single_item/skelestand/maint,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/foreport)
+"zo" = (
+/obj/floor_decal/corner/green{
+ dir = 8;
+ icon_state = "corner_white"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/center)
+"zq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/obj/catwalk_plated,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/hallway/primary/thirddeck/aft)
+"zr" = (
+/obj/machinery/light{
+ dir = 8;
+ icon_state = "tube1";
+ pixel_y = 0
+ },
+/obj/structure/bed/chair/pew/mahogany,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"zs" = (
+/obj/structure/bed/chair/pew/left/mahogany,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"zt" = (
+/obj/structure/catwalk,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/aftport)
+"zu" = (
+/obj/structure/bed/chair/pew/mahogany,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"zx" = (
+/obj/machinery/power/apc{
+ dir = 2;
+ name = "south bump";
+ operating = 1;
+ pixel_y = -28
+ },
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 4;
+ icon_state = "intact"
+ },
+/obj/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/structure/cable/green,
+/turf/simulated/floor/tiled/techfloor,
+/area/thruster/d3starboard)
+"zy" = (
+/turf/simulated/wall/r_wall/prepainted,
+/area/thruster/d3port)
+"zz" = (
+/obj/floor_decal/corner/green/half,
+/obj/structure/reagent_dispensers/water_cooler{
+ dir = 1;
+ icon_state = "water_cooler"
+ },
+/turf/simulated/floor/tiled/dark/monotile,
+/area/crew_quarters/observation)
+"zB" = (
+/obj/floor_decal/corner/green/half,
+/obj/structure/flora/pottedplant/stoutbush,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1;
+ level = 2
+ },
+/obj/structure/cable/green,
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/dark/monotile,
+/area/crew_quarters/observation)
+"zC" = (
+/obj/item/device/radio/intercom/entertainment{
+ dir = 8;
+ pixel_x = 22
+ },
+/obj/structure/bed/chair/comfy/black{
+ dir = 8
+ },
+/turf/simulated/floor/wood/walnut,
+/area/crew_quarters/recreation)
+"zE" = (
+/obj/structure/reagent_dispensers/fueltank,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/floor_decal/industrial/outline/yellow,
+/obj/item/device/radio/intercom{
+ pixel_y = 23
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/storage/tools)
+"zF" = (
+/obj/structure/railing/mapped{
+ dir = 1;
+ icon_state = "railing0-1"
+ },
+/obj/machinery/atmospherics/binary/pump{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/command/disperser)
+"zG" = (
+/turf/simulated/wall/r_wall/hull,
+/area/crew_quarters/cryolocker)
+"zH" = (
+/obj/machinery/computer/teleporter{
+ dir = 2;
+ icon_state = "computer"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/teleporter/thirddeck)
+"zI" = (
+/obj/machinery/teleport/station,
+/obj/machinery/button/blast_door{
+ id_tag = "teleport3";
+ name = "Third Deck Teleporter Access Shutter Control";
+ pixel_x = -6;
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/teleporter/thirddeck)
+"zJ" = (
+/obj/machinery/teleport/hub,
+/obj/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/teleporter/thirddeck)
+"zL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/teleporter/thirddeck)
+"zM" = (
+/obj/machinery/vr_pod{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/blue,
+/area/crew_quarters/virtual_reality)
+"zR" = (
+/obj/floor_decal/industrial/hatch/yellow,
+/obj/structure/ladder/updown,
+/obj/structure/catwalk,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/foreport)
+"zS" = (
+/turf/simulated/wall/prepainted,
+/area/maintenance/thirddeck/foreport)
+"zT" = (
+/obj/structure/bed/padded,
+/obj/item/bedsheet,
+/obj/item/storage/secure/safe{
+ pixel_x = 32;
+ pixel_y = 0
+ },
+/obj/random/plushie,
+/turf/simulated/floor/carpet,
+/area/crew_quarters/sleep/bunk)
+"zU" = (
+/obj/structure/table/standard,
+/obj/machinery/alarm{
+ dir = 4;
+ icon_state = "alarm0";
+ pixel_x = -22;
+ pixel_y = 0
+ },
+/obj/machinery/light/spot{
+ dir = 8
+ },
+/obj/machinery/recharger,
+/turf/simulated/floor/tiled/white/monotile,
+/area/crew_quarters/sleep/cryo)
+"zV" = (
+/obj/structure/closet/secure_closet/personal,
+/obj/machinery/light/spot{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = 21
+ },
+/obj/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/white/monotile,
+/area/crew_quarters/sleep/cryo)
+"zY" = (
+/obj/machinery/door/firedoor,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/airlock/glass/civilian{
+ name = "Auxiliary Tool Storage"
+ },
+/obj/floor_decal/techfloor/corner,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/storage/tools)
+"zZ" = (
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/thirddeck/port)
+"Ae" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/dark/monotile,
+/area/engineering/hardstorage)
+"Ag" = (
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"Aj" = (
+/obj/machinery/atmospherics/pipe/simple/visible/fuel{
+ dir = 9
+ },
+/obj/machinery/meter,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/thruster/d3starboard)
+"Al" = (
+/obj/machinery/atmospherics/binary/pump/high_power/on{
+ dir = 4;
+ target_pressure = 15000
+ },
+/obj/floor_decal/industrial/outline/orange,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/thruster/d3starboard)
+"Ap" = (
+/obj/floor_decal/spline/plain/red,
+/obj/structure/window/reinforced,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/gym)
+"Aq" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/floor_decal/corner/blue/diagonal{
+ dir = 4
+ },
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/mess)
+"Ar" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/engineering/hardstorage)
+"As" = (
+/obj/structure/table/marble,
+/obj/machinery/door/blast/shutters{
+ dir = 2;
+ id_tag = "kitchen";
+ name = "Kitchen Shutters"
+ },
+/obj/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/item/material/bell,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/galley)
+"At" = (
+/obj/floor_decal/techfloor{
+ dir = 1;
+ icon_state = "techfloor_edges"
+ },
+/obj/floor_decal/industrial/warning{
+ dir = 1;
+ icon_state = "warning"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/teleporter/thirddeck)
+"Au" = (
+/obj/machinery/bluespace_beacon,
+/obj/floor_decal/techfloor{
+ dir = 1;
+ icon_state = "techfloor_edges"
+ },
+/obj/floor_decal/industrial/warning{
+ dir = 1;
+ icon_state = "warning"
+ },
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/teleporter/thirddeck)
+"AA" = (
+/obj/floor_decal/corner/blue/diagonal{
+ dir = 4
+ },
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/mess)
+"AB" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/foreport)
+"AC" = (
+/obj/machinery/light/spot{
+ dir = 1
+ },
+/obj/floor_decal/corner/blue/diagonal{
+ dir = 4
+ },
+/obj/machinery/vending/cigarette,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/mess)
+"AD" = (
+/obj/structure/table/standard,
+/obj/machinery/computer/cryopod{
+ density = 0;
+ pixel_x = -32;
+ pixel_y = 0
+ },
+/obj/random/plushie,
+/turf/simulated/floor/tiled/white/monotile,
+/area/crew_quarters/sleep/cryo)
+"AE" = (
+/obj/structure/closet/secure_closet/personal,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 32
+ },
+/obj/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/white/monotile,
+/area/crew_quarters/sleep/cryo)
+"AG" = (
+/obj/structure/hygiene/shower{
+ dir = 8;
+ icon_state = "shower";
+ pixel_x = 0;
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/crew_quarters/head)
+"AH" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/wood/walnut,
+/area/crew_quarters/virtual_reality)
+"AI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/storage/tools)
+"AJ" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/fuel{
+ dir = 4
+ },
+/obj/machinery/air_sensor{
+ id_tag = "cChamber3s"
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/thruster/d3starboard)
+"AK" = (
+/obj/structure/table/rack{
+ dir = 8
+ },
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/floor_decal/industrial/outline/yellow,
+/obj/machinery/firealarm{
+ dir = 2;
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/storage/tools)
+"AL" = (
+/obj/floor_decal/industrial/outline/yellow,
+/obj/machinery/vending/assist,
+/turf/simulated/floor/tiled/monotile,
+/area/storage/tools)
+"AM" = (
+/obj/structure/closet/toolcloset,
+/obj/floor_decal/industrial/outline/yellow,
+/obj/machinery/camera/network/third_deck{
+ c_tag = "Third Deck - Auxillary Storage"
+ },
+/obj/machinery/alarm{
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/storage/tools)
+"AN" = (
+/turf/simulated/wall/prepainted,
+/area/storage/tools)
+"AP" = (
+/turf/simulated/floor/tiled/dark,
+/area/chapel/memorial)
+"AQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/floor_decal/corner/purple{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/memorial)
+"AR" = (
+/obj/catwalk_plated,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1;
+ icon_state = "map-scrubbers"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/hallway/primary/thirddeck/aft)
+"AS" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/memorial)
+"AV" = (
+/obj/floor_decal/spline/fancy/black{
+ dir = 9;
+ icon_state = "spline_fancy"
+ },
+/turf/simulated/floor/wood/maple,
+/area/chapel/main)
+"AW" = (
+/obj/floor_decal/spline/fancy/black{
+ dir = 1;
+ icon_state = "spline_fancy"
+ },
+/turf/simulated/floor/wood/maple,
+/area/chapel/main)
+"AX" = (
+/obj/item/device/radio/intercom{
+ dir = 4;
+ pixel_x = -21
+ },
+/obj/structure/closet/secure_closet/freezer/kitchen{
+ req_access = newlist()
+ },
+/obj/item/reagent_containers/food/snacks/mint,
+/turf/simulated/floor/tiled/freezer,
+/area/crew_quarters/galleybackroom)
+"Ba" = (
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/aftport)
+"Bb" = (
+/obj/floor_decal/industrial/warning,
+/obj/machinery/atmospherics/tvalve/mirrored/digital{
+ dir = 4;
+ id_tag = "fuelmode"
+ },
+/obj/floor_decal/industrial/outline/red,
+/turf/simulated/floor/tiled/techfloor,
+/area/thruster/d3port)
+"Bc" = (
+/turf/simulated/wall/prepainted,
+/area/maintenance/thirddeck/aftport)
+"Bd" = (
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/thirddeck/aftport)
+"Be" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden,
+/obj/random/trash,
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_x = 0;
+ pixel_y = -24
+ },
+/turf/simulated/floor/plating,
+/area/command/disperser)
+"Bg" = (
+/obj/floor_decal/corner/green{
+ dir = 5
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/aft)
+"Bi" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/teleporter/thirddeck)
+"Bj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/teleporter/thirddeck)
+"Bk" = (
+/obj/machinery/hologram/holopad,
+/obj/floor_decal/industrial/outline/yellow,
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = 22;
+ pixel_y = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/teleporter/thirddeck)
+"Bl" = (
+/obj/machinery/atmospherics/unary/outlet_injector{
+ dir = 1;
+ frequency = 1441;
+ icon_state = "map_injector";
+ id = "d3sh_in";
+ injecting = 0;
+ use_power = 1
+ },
+/turf/simulated/floor/reinforced/hydrogen,
+/area/thruster/d3starboard)
+"Bm" = (
+/turf/simulated/wall/r_wall/prepainted,
+/area/crew_quarters/safe_room/thirddeck)
+"Bn" = (
+/obj/structure/sign/warning/secure_area,
+/turf/simulated/wall/r_wall/prepainted,
+/area/crew_quarters/safe_room/thirddeck)
+"Bp" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/foreport)
+"Bq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/foreport)
+"Br" = (
+/obj/structure/railing/mapped,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/foreport)
+"Bs" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_x = 0;
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/tiled/dark/monotile,
+/area/crew_quarters/sleep/bunk)
+"Bt" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark/monotile,
+/area/crew_quarters/sleep/bunk)
+"Bu" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/dark/monotile,
+/area/crew_quarters/sleep/bunk)
+"Bv" = (
+/obj/machinery/newscaster{
+ pixel_x = -32
+ },
+/obj/machinery/computer/modular/preset/civilian{
+ dir = 4;
+ icon_state = "console"
+ },
+/turf/simulated/floor/tiled/white/monotile,
+/area/crew_quarters/sleep/cryo)
+"Bw" = (
+/obj/floor_decal/industrial/outline/yellow,
+/obj/machinery/uniform_vendor{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white/monotile,
+/area/crew_quarters/sleep/cryo)
+"By" = (
+/obj/structure/hygiene/shower{
+ dir = 8;
+ icon_state = "shower";
+ pixel_x = 0;
+ pixel_y = 0
+ },
+/obj/item/soap,
+/turf/simulated/floor/tiled/freezer,
+/area/crew_quarters/head)
+"Bz" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/monotile,
+/area/storage/tools)
+"BA" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled,
+/area/storage/tools)
+"BF" = (
+/obj/floor_decal/spline/fancy/black,
+/obj/item/device/radio/intercom/entertainment{
+ dir = 1;
+ pixel_y = -28
+ },
+/turf/simulated/floor/wood/maple,
+/area/chapel/main)
+"BH" = (
+/obj/machinery/firealarm{
+ pixel_y = 21
+ },
+/obj/structure/hygiene/shower{
+ dir = 4;
+ icon_state = "shower";
+ pixel_x = 0;
+ pixel_y = 0
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/crew_quarters/head)
+"BI" = (
+/turf/simulated/floor/wood/walnut,
+/area/crew_quarters/virtual_reality)
+"BK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/storage/tools)
+"BL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/storage/tools)
+"BN" = (
+/obj/structure/table/woodentable_reinforced/mahogany,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/wood/maple,
+/area/chapel/main)
+"BO" = (
+/obj/floor_decal/spline/fancy/black{
+ dir = 8;
+ icon_state = "spline_fancy"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/wood/maple,
+/area/chapel/main)
+"BP" = (
+/obj/structure/table/woodentable_reinforced/mahogany,
+/turf/simulated/floor/wood/maple,
+/area/chapel/main)
+"BQ" = (
+/obj/structure/bed/chair/wood/walnut,
+/turf/simulated/floor/tiled/dark/monotile,
+/area/crew_quarters/observation)
+"BR" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/office)
+"BS" = (
+/obj/structure/railing/mapped{
+ dir = 8;
+ icon_state = "railing0-1"
+ },
+/obj/structure/railing/mapped{
+ dir = 1;
+ icon_state = "railing0-1"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/port)
+"BT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/floor_decal/spline/fancy/wood{
+ dir = 1;
+ icon_state = "spline_fancy"
+ },
+/obj/machinery/vr_pod{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/blue,
+/area/crew_quarters/virtual_reality)
+"BU" = (
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -21;
+ pixel_y = 0
+ },
+/obj/structure/bed/chair/wood/maple,
+/turf/simulated/floor/carpet/purple,
+/area/chapel/office)
+"BV" = (
+/turf/simulated/wall/r_wall/hull,
+/area/maintenance/thirddeck/foreport)
+"BW" = (
+/obj/random/torchcloset,
+/obj/random/maintenance/solgov,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/foreport)
+"BX" = (
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/foreport)
+"BY" = (
+/obj/machinery/button/blast_door{
+ id_tag = "d3starboardnacelle";
+ name = "combustion chamber blast door control";
+ pixel_x = 0;
+ pixel_y = -24
+ },
+/obj/machinery/atmospherics/pipe/manifold/visible/fuel{
+ dir = 2
+ },
+/obj/floor_decal/industrial/warning,
+/turf/simulated/floor/tiled/techfloor,
+/area/thruster/d3starboard)
+"BZ" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/fuel{
+ dir = 4
+ },
+/obj/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/thruster/d3port)
+"Cb" = (
+/obj/machinery/newscaster{
+ pixel_y = 32
+ },
+/obj/catwalk_plated,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/hallway/primary/thirddeck/fore)
+"Cc" = (
+/obj/structure/table/standard,
+/turf/simulated/floor/tiled/dark,
+/area/teleporter/thirddeck)
+"Ce" = (
+/obj/machinery/camera/network/third_deck{
+ c_tag = "Third Deck - Teleporter";
+ dir = 1
+ },
+/obj/structure/table/standard,
+/turf/simulated/floor/tiled/dark,
+/area/teleporter/thirddeck)
+"Cf" = (
+/obj/structure/table/rack,
+/obj/random/tech_supply,
+/turf/simulated/floor/tiled/dark,
+/area/teleporter/thirddeck)
+"Cg" = (
+/obj/structure/closet/crate,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/random/tank,
+/turf/simulated/floor/tiled/dark,
+/area/teleporter/thirddeck)
+"Cj" = (
+/obj/machinery/light/spot{
+ dir = 4
+ },
+/obj/structure/reagent_dispensers/water_cooler{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white/monotile,
+/area/crew_quarters/sleep/cryo)
+"Ck" = (
+/obj/floor_decal/industrial/outline/grey,
+/obj/structure/reagent_dispensers/watertank,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/port)
+"Cm" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/maintenance{
+ name = "Bunk Room Maintenance"
+ },
+/turf/simulated/floor/tiled/dark/monotile,
+/area/crew_quarters/sleep/bunk)
+"Cn" = (
+/turf/simulated/floor/tiled/dark/monotile,
+/area/crew_quarters/sleep/bunk)
+"Co" = (
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/structure/undies_wardrobe,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/dark/monotile,
+/area/crew_quarters/sleep/bunk)
+"Cp" = (
+/obj/structure/closet/wardrobe/pjs,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/dark/monotile,
+/area/crew_quarters/sleep/bunk)
+"Cq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/civilian{
+ name = "Bunk Room"
+ },
+/turf/simulated/floor/tiled/dark/monotile,
+/area/crew_quarters/sleep/bunk)
+"Cr" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/white/monotile,
+/area/crew_quarters/sleep/cryo)
+"Cs" = (
+/obj/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/effect/landmark{
+ name = "JoinLateCryo"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/sleep/cryo)
+"Ct" = (
+/obj/structure/closet/secure_closet/personal,
+/obj/item/device/radio/intercom/entertainment{
+ dir = 8;
+ pixel_x = 22
+ },
+/obj/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/white/monotile,
+/area/crew_quarters/sleep/cryo)
+"Cu" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/wood/walnut,
+/area/crew_quarters/virtual_reality)
+"Cv" = (
+/obj/structure/table/steel,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/machinery/power/apc{
+ dir = 2;
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/structure/cable/green,
+/turf/simulated/floor/tiled/monotile,
+/area/storage/tools)
+"Cw" = (
+/obj/structure/table/steel,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/machinery/light,
+/obj/machinery/recharger/wallcharger{
+ dir = 1;
+ icon_state = "wrecharger0";
+ pixel_y = -22
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/storage/tools)
+"Cx" = (
+/obj/structure/table/steel,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/machinery/recharger/wallcharger{
+ dir = 1;
+ icon_state = "wrecharger0";
+ pixel_y = -22
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/storage/tools)
+"Cy" = (
+/obj/structure/table/steel,
+/obj/machinery/cell_charger,
+/obj/random/powercell,
+/obj/random/powercell,
+/obj/random/powercell,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/storage/tools)
+"CE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/port)
+"CF" = (
+/turf/simulated/wall/prepainted,
+/area/crew_quarters/recreation)
+"CH" = (
+/turf/simulated/floor/tiled/monotile,
+/area/maintenance/thirddeck/starboard)
+"CI" = (
+/obj/floor_decal/spline/fancy/black{
+ dir = 10;
+ icon_state = "spline_fancy"
+ },
+/turf/simulated/floor/wood/maple,
+/area/chapel/main)
+"CJ" = (
+/obj/machinery/light,
+/obj/floor_decal/spline/fancy/black,
+/turf/simulated/floor/wood/maple,
+/area/chapel/main)
+"CL" = (
+/obj/machinery/camera/network/third_deck{
+ c_tag = "Chapel";
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24;
+ pixel_y = 0
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"CM" = (
+/obj/structure/table/rack,
+/obj/random/maintenance/solgov,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/foreport)
+"CN" = (
+/obj/item/device/radio/intercom/locked/confessional{
+ dir = 8;
+ pixel_x = 22
+ },
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/machinery/light{
+ dir = 8;
+ icon_state = "tube1";
+ pixel_y = 0
+ },
+/obj/structure/table/woodentable/maple,
+/turf/simulated/floor/carpet/purple,
+/area/chapel/office)
+"CO" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/blast/shutters{
+ dir = 4;
+ id_tag = "kitchen";
+ name = "Kitchen Shutters"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/wallframe_spawn/no_grille,
+/turf/simulated/floor/plating,
+/area/crew_quarters/galley)
+"CQ" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/lino,
+/area/crew_quarters/office)
+"CS" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/space)
+"CT" = (
+/obj/random/trash,
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/aftstarboard)
+"CU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/aftport)
+"CX" = (
+/obj/structure/curtain/open/bed,
+/obj/floor_decal/techfloor{
+ dir = 8;
+ icon_state = "techfloor_edges"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/safe_room/thirddeck)
+"CY" = (
+/obj/structure/bed/padded,
+/obj/item/bedsheet/green,
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/safe_room/thirddeck)
+"CZ" = (
+/obj/machinery/disposal,
+/obj/floor_decal/industrial/hatch/yellow,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white/monotile,
+/area/crew_quarters/sleep/cryo)
+"Da" = (
+/obj/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/sleep/cryo)
+"Db" = (
+/obj/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/sleep/cryo)
+"Dc" = (
+/obj/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/sleep/cryo)
+"Dd" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/sleep/cryo)
+"De" = (
+/obj/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/sleep/cryo)
+"Df" = (
+/obj/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/sleep/cryo)
+"Dg" = (
+/obj/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/sleep/cryo)
+"Dh" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/structure/closet/secure_closet/personal,
+/obj/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/white/monotile,
+/area/crew_quarters/sleep/cryo)
+"Di" = (
+/obj/wallframe_spawn/reinforced,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 2;
+ icon_state = "pdoor0";
+ id_tag = "d3fore_shutters";
+ name = "Blast Shields";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/observation)
+"Dj" = (
+/obj/structure/railing/mapped,
+/obj/structure/railing/mapped{
+ dir = 4;
+ icon_state = "railing0-1"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/aftstarboard)
+"Dk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/firedoor,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/thirddeck/port)
+"Dm" = (
+/obj/floor_decal/spline/fancy/wood,
+/turf/simulated/floor/carpet/blue,
+/area/crew_quarters/virtual_reality)
+"Dn" = (
+/turf/simulated/wall/prepainted,
+/area/vacant/cabin)
+"Do" = (
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_x = 0;
+ pixel_y = 24
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/aftport)
+"Dp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/aftstarboard)
+"Dq" = (
+/obj/random/obstruction,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/aftport)
+"Dt" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_y = -32
+ },
+/obj/floor_decal/corner/green{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/center)
+"Du" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/chaplain{
+ name = "Chapel"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/chapel/memorial)
+"Dv" = (
+/obj/structure/table/steel,
+/obj/item/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/pen,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/port)
+"Dz" = (
+/obj/floor_decal/industrial/outline/grey,
+/obj/structure/reagent_dispensers/fueltank,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/starboard)
+"DA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/floor_decal/corner/purple{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/memorial)
+"DD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/port)
+"DE" = (
+/obj/floor_decal/spline/fancy/wood,
+/obj/structure/bed/chair/armchair/brown,
+/turf/simulated/floor/wood/walnut,
+/area/crew_quarters/recreation)
+"DF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/wall/prepainted,
+/area/command/disperser)
+"DI" = (
+/obj/structure/table/standard,
+/obj/item/reagent_containers/food/drinks/glass2/coffeecup/SCG,
+/obj/item/deck/cards,
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/safe_room/thirddeck)
+"DJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/catwalk_plated/dark,
+/turf/simulated/floor/plating,
+/area/command/disperser)
+"DK" = (
+/obj/random/firstaid,
+/obj/random/medical,
+/obj/random/medical,
+/obj/random/medical,
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1"
+ },
+/obj/structure/closet/medical_wall/filled{
+ pixel_x = 32
+ },
+/obj/floor_decal/techfloor{
+ dir = 4;
+ icon_state = "techfloor_edges"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/safe_room/thirddeck)
+"DL" = (
+/obj/floor_decal/industrial/outline/grey,
+/obj/machinery/portable_atmospherics/powered/scrubber,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/port)
+"DM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/command/disperser)
+"DN" = (
+/obj/structure/table/standard,
+/obj/item/device/paicard,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/machinery/requests_console{
+ department = "Cryogenic Storage";
+ pixel_x = -32;
+ pixel_y = 0
+ },
+/turf/simulated/floor/tiled/white/monotile,
+/area/crew_quarters/sleep/cryo)
+"DO" = (
+/obj/floor_decal/industrial/warning/corner,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/sleep/cryo)
+"DP" = (
+/obj/floor_decal/industrial/warning,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/sleep/cryo)
+"DQ" = (
+/obj/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/sleep/cryo)
+"DR" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/machinery/hologram/holopad,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/sleep/cryo)
+"DS" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/door/airlock/maintenance{
+ name = "Cryogenic Storage Maintenance"
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/white/monotile,
+/area/crew_quarters/sleep/cryo)
+"DT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/thirddeck/port)
+"DU" = (
+/obj/machinery/camera/network/command{
+ c_tag = "Fire Control - Storage";
+ dir = 4;
+ network = list("Command")
+ },
+/turf/simulated/floor/tiled/dark,
+/area/command/disperser)
+"DV" = (
+/obj/floor_decal/corner/lime{
+ dir = 8
+ },
+/obj/structure/bed/chair/comfy/lime,
+/obj/random/junk,
+/turf/simulated/floor/tiled,
+/area/vacant/cabin)
+"DW" = (
+/obj/floor_decal/corner/lime,
+/obj/effect/decal/cleanable/cobweb2,
+/turf/simulated/floor/tiled,
+/area/vacant/cabin)
+"DX" = (
+/obj/machinery/atmospherics/valve/digital{
+ dir = 4;
+ id_tag = "fuelmode"
+ },
+/obj/floor_decal/industrial/outline/red,
+/turf/simulated/floor/reinforced/oxygen,
+/area/thruster/d3starboard)
+"DZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/aftport)
+"Ea" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/fuel,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/aftstarboard)
+"Eb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/manifold/visible/fuel{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/aftport)
+"Ed" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/obj/floor_decal/industrial/warning/corner,
+/obj/machinery/atmospherics/pipe/simple/visible/fuel{
+ dir = 10
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/aftport)
+"Ee" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9;
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/structure/catwalk,
+/obj/machinery/alarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/floor_decal/industrial/warning,
+/obj/machinery/atmospherics/pipe/simple/visible/fuel,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/aftport)
+"Ef" = (
+/obj/structure/grille,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/foreport)
+"Eg" = (
+/obj/decal/cleanable/dirt,
+/obj/random/trash,
+/obj/structure/table/marble,
+/obj/item/material/kitchen/rollingpin,
+/obj/item/device/radio/intercom{
+ dir = 4;
+ pixel_x = -21
+ },
+/obj/random_multi/single_item/boombox,
+/turf/simulated/floor/plating,
+/area/vacant/mess)
+"Eh" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"Ej" = (
+/obj/machinery/door/morgue{
+ dir = 2;
+ name = "Confession Booth (Chaplain)"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/chapel/office)
+"Ek" = (
+/obj/floor_decal/corner/blue{
+ dir = 4
+ },
+/obj/structure/railing/mapped,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/command/disperser)
+"Em" = (
+/obj/structure/sign/directions/supply{
+ dir = 2;
+ pixel_y = -4;
+ pixel_z = 0
+ },
+/obj/structure/sign/directions/evac{
+ dir = 2;
+ pixel_y = 3
+ },
+/obj/effect/wallframe_spawn/no_grille,
+/turf/simulated/floor/plating,
+/area/hallway/primary/thirddeck/aft)
+"Ep" = (
+/obj/machinery/atmospherics/binary/pump/on{
+ dir = 2;
+ target_pressure = 200
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/floor_decal/techfloor{
+ dir = 8;
+ icon_state = "techfloor_edges"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/safe_room/thirddeck)
+"Eq" = (
+/obj/structure/railing/mapped{
+ dir = 8;
+ icon_state = "railing0-1"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/starboard)
+"Er" = (
+/obj/structure/closet,
+/obj/item/storage/candle_box,
+/obj/item/storage/candle_box/incense,
+/obj/item/flame/lighter/random,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/memorial)
+"Es" = (
+/obj/random/torchcloset,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/foreport)
+"Et" = (
+/obj/machinery/camera/network/third_deck{
+ c_tag = "Cryogenic Storage - Fore Port";
+ dir = 4
+ },
+/obj/machinery/vending/coffee{
+ dir = 4;
+ icon_state = "coffee"
+ },
+/turf/simulated/floor/tiled/white/monotile,
+/area/crew_quarters/sleep/cryo)
+"Ew" = (
+/obj/structure/closet/emcloset,
+/obj/floor_decal/industrial/outline/yellow,
+/obj/random_multi/single_item/boombox,
+/turf/simulated/floor/tiled/white/monotile,
+/area/crew_quarters/sleep/cryo)
+"Ex" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/port)
+"Ez" = (
+/turf/simulated/wall/prepainted,
+/area/maintenance/thirddeck/port)
+"EA" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/port)
+"EB" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/port)
+"EC" = (
+/obj/floor_decal/corner/lime{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/vacant/cabin)
+"ED" = (
+/turf/simulated/floor/plating,
+/area/vacant/cabin)
+"EE" = (
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/aftport)
+"EF" = (
+/obj/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/structure/railing/mapped{
+ dir = 8;
+ icon_state = "railing0-1"
+ },
+/obj/structure/railing/mapped{
+ dir = 1;
+ icon_state = "railing0-1"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/starboard)
+"EG" = (
+/obj/floor_decal/industrial/warning{
+ dir = 4;
+ icon_state = "warning"
+ },
+/obj/structure/railing/mapped{
+ dir = 8;
+ icon_state = "railing0-1"
+ },
+/obj/structure/railing/mapped{
+ dir = 1;
+ icon_state = "railing0-1"
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/fuel{
+ dir = 5
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/aftport)
+"EH" = (
+/obj/structure/lattice,
+/turf/simulated/wall/r_wall/hull,
+/area/maintenance/thirddeck/aftport)
+"EI" = (
+/obj/structure/reagent_dispensers/fueltank,
+/obj/effect/decal/cleanable/cobweb2,
+/obj/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/forestarboard)
+"EJ" = (
+/turf/simulated/wall/r_wall/hull,
+/area/tcommsat/storage)
+"EL" = (
+/obj/structure/railing/mapped{
+ dir = 1;
+ icon_state = "railing0-1"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/port)
+"EN" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 4
+ },
+/obj/machinery/portable_atmospherics/canister/air,
+/obj/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/crew_quarters/safe_room/thirddeck)
+"EO" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{
+ dir = 1;
+ icon_state = "map"
+ },
+/obj/structure/fireaxecabinet{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/crew_quarters/safe_room/thirddeck)
+"EP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 4;
+ icon_state = "intact"
+ },
+/obj/machinery/door/airlock/atmos{
+ name = "Safe Room Atmospherics"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/crew_quarters/safe_room/thirddeck)
+"EQ" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{
+ dir = 4
+ },
+/obj/floor_decal/techfloor{
+ dir = 8;
+ icon_state = "techfloor_edges"
+ },
+/obj/effect/landmark{
+ name = "xeno_spawn";
+ pixel_x = -1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/safe_room/thirddeck)
+"ES" = (
+/obj/random/trash,
+/obj/structure/catwalk,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/aftstarboard)
+"EU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/recreation)
+"EV" = (
+/obj/machinery/light/spot{
+ dir = 8
+ },
+/obj/structure/sign/ecplaque{
+ pixel_y = -30
+ },
+/obj/machinery/vending/cigarette{
+ dir = 4;
+ icon_state = "cigs"
+ },
+/turf/simulated/floor/tiled/white/monotile,
+/area/crew_quarters/sleep/cryo)
+"EW" = (
+/obj/machinery/cryopod{
+ dir = 4
+ },
+/obj/structure/sign/double/solgovflag/left{
+ pixel_y = -32
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/sleep/cryo)
+"EX" = (
+/obj/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/structure/sign/double/solgovflag/right{
+ pixel_y = -32
+ },
+/obj/effect/landmark{
+ name = "JoinLateCryo"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/sleep/cryo)
+"Fa" = (
+/obj/structure/catwalk,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/aftstarboard)
+"Fc" = (
+/obj/structure/railing/mapped{
+ dir = 1;
+ icon_state = "railing0-1"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/port)
+"Fd" = (
+/turf/simulated/wall/prepainted,
+/area/crew_quarters/sleep/cryo)
+"Fe" = (
+/obj/structure/ladder/updown,
+/obj/floor_decal/industrial/hatch/yellow,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/tiled,
+/area/maintenance/thirddeck/port)
+"Ff" = (
+/obj/machinery/door/airlock/maintenance{
+ autoset_access = 0;
+ name = "Cargo Storage Maintenance";
+ req_access = list("ACCESS_MAINT","ACCESS_CARGO")
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/maintenance/thirddeck/port)
+"Fg" = (
+/obj/item/frame/apc,
+/turf/simulated/floor/plating,
+/area/vacant/cabin)
+"Fh" = (
+/obj/floor_decal/corner/lime,
+/obj/random/trash,
+/turf/simulated/floor/tiled,
+/area/vacant/cabin)
+"Fi" = (
+/obj/structure/bed/chair/office/light{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/vacant/cabin)
+"Fj" = (
+/turf/simulated/floor/tiled/dark,
+/area/vacant/cabin)
+"Fk" = (
+/obj/random/junk,
+/turf/simulated/floor/tiled/dark,
+/area/vacant/cabin)
+"Fl" = (
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 25;
+ pixel_y = 0;
+ req_access = list(list("ACCESS_ENGINE_EQUIP","ACCESS_ATMOS"))
+ },
+/obj/structure/bed/chair/wood/maple{
+ dir = 1;
+ icon_state = "wooden_chair_preview"
+ },
+/turf/simulated/floor/carpet/purple,
+/area/chapel/main)
+"Fm" = (
+/obj/machinery/power/port_gen/pacman,
+/obj/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/aftport)
+"Fn" = (
+/obj/structure/table/woodentable/walnut,
+/obj/structure/flora/pottedplant/deskleaf,
+/turf/simulated/floor/tiled/dark/monotile,
+/area/crew_quarters/observation)
+"Fo" = (
+/obj/structure/ladder/up,
+/obj/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/aftport)
+"Fp" = (
+/obj/floor_decal/industrial/warning{
+ dir = 4;
+ icon_state = "warning"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/railing/mapped{
+ dir = 8;
+ icon_state = "railing0-1"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/aftport)
+"Fq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/airlock/civilian{
+ name = "Shower"
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/crew_quarters/head)
+"Fr" = (
+/obj/machinery/door/airlock/multi_tile/glass/civilian{
+ dir = 8;
+ name = "VR Suites"
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/crew_quarters/virtual_reality_control)
+"Fs" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/gym)
+"Ft" = (
+/obj/structure/bed/chair/wheelchair,
+/obj/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/foreport)
+"Fv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 9;
+ icon_state = "intact"
+ },
+/obj/structure/closet/emcloset,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/floor_decal/industrial/outline/grey,
+/obj/machinery/alarm{
+ dir = 1;
+ icon_state = "alarm0";
+ pixel_y = -22
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/crew_quarters/safe_room/thirddeck)
+"Fw" = (
+/obj/structure/table/marble,
+/obj/item/reagent_containers/food/condiment/small/saltshaker{
+ pixel_x = -3;
+ pixel_y = 0
+ },
+/obj/item/reagent_containers/food/condiment/small/peppermill{
+ pixel_x = 3
+ },
+/obj/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/galley)
+"Fx" = (
+/obj/effect/wallframe_spawn/no_grille,
+/turf/simulated/floor/plating,
+/area/crew_quarters/galley)
+"Fy" = (
+/obj/structure/table/rack,
+/obj/random/tech_supply,
+/obj/random/maintenance/solgov,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/forestarboard)
+"Fz" = (
+/obj/machinery/firealarm{
+ dir = 2;
+ pixel_y = 24
+ },
+/obj/machinery/disposal,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/floor_decal/corner/red{
+ dir = 5
+ },
+/obj/floor_decal/industrial/hatch/yellow,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/habcheck)
+"FC" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/civilian{
+ name = "Cryogenic Storage Wardrobe"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/crew_quarters/sleep/cryo)
+"FD" = (
+/obj/machinery/door/firedoor,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/airlock/maintenance{
+ name = "Cryogenic Storage Maintenance"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/sleep/cryo)
+"FE" = (
+/obj/floor_decal/corner/blue{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/dark,
+/area/command/disperser)
+"FG" = (
+/obj/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/button/blast_door{
+ id_tag = "kitchen";
+ name = "Kitchen Shutters";
+ pixel_y = -21
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/galley)
+"FH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -23;
+ pixel_y = 0
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/port)
+"FI" = (
+/obj/structure/bookcase,
+/obj/effect/decal/cleanable/cobweb,
+/turf/simulated/floor/tiled/dark,
+/area/vacant/cabin)
+"FJ" = (
+/obj/structure/bedsheetbin,
+/turf/simulated/floor/tiled/dark,
+/area/vacant/cabin)
+"FK" = (
+/obj/random/trash,
+/turf/simulated/floor/tiled/dark,
+/area/vacant/cabin)
+"FL" = (
+/obj/floor_decal/corner/lime,
+/turf/simulated/floor/tiled,
+/area/vacant/cabin)
+"FM" = (
+/obj/structure/table/steel,
+/obj/random/maintenance/solgov,
+/turf/simulated/floor/plating,
+/area/vacant/cabin)
+"FN" = (
+/obj/structure/table/steel,
+/turf/simulated/floor/tiled/dark,
+/area/vacant/cabin)
+"FO" = (
+/obj/machinery/power/rad_collector,
+/obj/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/aftport)
+"FQ" = (
+/obj/structure/flora/ausbushes/grassybush,
+/turf/simulated/floor/grass,
+/area/crew_quarters/observation)
+"FR" = (
+/obj/structure/window/phoronreinforced{
+ dir = 8;
+ icon_state = "rwindow"
+ },
+/obj/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/floor_decal/industrial/outline/yellow,
+/obj/machinery/power/emitter,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/engineering/hardstorage)
+"FS" = (
+/turf/simulated/wall/prepainted,
+/area/crew_quarters/cryolocker)
+"FT" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/machinery/light_switch{
+ pixel_x = 6;
+ pixel_y = -24
+ },
+/obj/floor_decal/corner/yellow/mono,
+/obj/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark/monotile,
+/area/engineering/hardstorage)
+"FU" = (
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plating,
+/area/command/disperser)
+"FV" = (
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_x = 0;
+ pixel_y = 24
+ },
+/obj/floor_decal/industrial/outline/yellow,
+/obj/structure/closet/secure_closet/crew,
+/obj/random/maintenance/solgov/clean,
+/obj/random/maintenance/solgov/clean,
+/obj/random/maintenance/solgov/clean,
+/turf/simulated/floor/tiled/monotile,
+/area/crew_quarters/cryolocker)
+"FW" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/floor_decal/industrial/outline/yellow,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/obj/structure/closet/secure_closet/crew,
+/turf/simulated/floor/tiled/monotile,
+/area/crew_quarters/cryolocker)
+"FY" = (
+/obj/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/machinery/vending/dinnerware,
+/obj/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/galley)
+"FZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/visible/fuel{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/aftport)
+"Ga" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Security Checkpoint Maintenance"
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled/dark/monotile,
+/area/security/habcheck)
+"Ge" = (
+/obj/structure/railing/mapped{
+ dir = 1;
+ icon_state = "railing0-1"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/port)
+"Gf" = (
+/obj/floor_decal/industrial/outline/grey,
+/obj/random/junk,
+/obj/random/junk,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/port)
+"Gh" = (
+/obj/floor_decal/industrial/outline/grey,
+/obj/machinery/camera/network/command{
+ c_tag = "Telecommunications - Server Room Starboard"
+ },
+/obj/machinery/power/smes/batteryrack,
+/obj/structure/cable/cyan{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/bluegrid,
+/area/tcommsat/chamber)
+"Gi" = (
+/obj/item/storage/secure/safe{
+ pixel_x = -22;
+ pixel_y = 0
+ },
+/obj/random_multi/single_item/poppy,
+/turf/simulated/floor/tiled/dark,
+/area/vacant/cabin)
+"Gj" = (
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/vacant/cabin)
+"Gk" = (
+/obj/item/frame/air_alarm,
+/turf/simulated/floor/tiled/dark,
+/area/vacant/cabin)
+"Gl" = (
+/obj/machinery/door/airlock{
+ name = "Cabin"
+ },
+/turf/simulated/floor/plating,
+/area/vacant/cabin)
+"Gm" = (
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/vacant/cabin)
+"Gn" = (
+/obj/structure/door_assembly,
+/turf/simulated/floor/tiled/dark,
+/area/vacant/cabin)
+"Go" = (
+/obj/effect/landmark{
+ name = "xeno_spawn";
+ pixel_x = -1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/vacant/cabin)
+"Gp" = (
+/obj/structure/undies_wardrobe,
+/turf/simulated/floor/tiled/dark,
+/area/vacant/cabin)
+"Gq" = (
+/obj/structure/reagent_dispensers/fueltank,
+/obj/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/aftport)
+"Gr" = (
+/obj/structure/disposalpipe/up{
+ dir = 4
+ },
+/obj/floor_decal/industrial/warning/cee{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/aftport)
+"Gs" = (
+/obj/structure/table/rack,
+/obj/random/maintenance/solgov,
+/obj/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/foreport)
+"Gt" = (
+/obj/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/landmark{
+ name = "JoinLateCryo"
+ },
+/obj/structure/closet/hydrant{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/sleep/cryo)
+"Gu" = (
+/obj/machinery/alarm{
+ dir = 1;
+ icon_state = "alarm0";
+ pixel_y = -22
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/foreport)
+"Gv" = (
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/thirddeck/foreport)
+"Gw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/foreport)
+"Gx" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/maintenance,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/crew_quarters/cryolocker)
+"Gy" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/catwalk_plated,
+/turf/simulated/floor/plating,
+/area/crew_quarters/cryolocker)
+"Gz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/obj/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/starboard)
+"GA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/catwalk_plated,
+/turf/simulated/floor/plating,
+/area/crew_quarters/cryolocker)
+"GB" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/civilian{
+ name = "Cryogenic Storage Wardrobe"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/crew_quarters/cryolocker)
+"GC" = (
+/obj/floor_decal/corner/green{
+ dir = 10
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/aft)
+"GD" = (
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/port)
+"GE" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Galley Maintenance"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/crew_quarters/galleybackroom)
+"GF" = (
+/obj/floor_decal/corner/lime/mono,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 10;
+ icon_state = "intact"
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/thirddeck/aft)
+"GI" = (
+/turf/simulated/floor/carpet,
+/area/vacant/cabin)
+"GJ" = (
+/obj/structure/bed/chair/comfy/beige{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/vacant/cabin)
+"GK" = (
+/obj/item/device/radio/intercom/entertainment{
+ dir = 1;
+ pixel_y = -28
+ },
+/obj/structure/table/steel,
+/obj/random/junk,
+/turf/simulated/floor/tiled/dark,
+/area/vacant/cabin)
+"GL" = (
+/obj/structure/closet/cabinet,
+/obj/random/maintenance/solgov,
+/turf/simulated/floor/plating,
+/area/vacant/cabin)
+"GN" = (
+/obj/structure/table/steel,
+/obj/machinery/microwave{
+ pixel_x = -3;
+ pixel_y = 6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/vacant/cabin)
+"GO" = (
+/obj/machinery/alarm{
+ dir = 1;
+ icon_state = "alarm0";
+ pixel_y = -22
+ },
+/turf/simulated/floor/plating,
+/area/vacant/cabin)
+"GP" = (
+/obj/structure/flora/pottedplant/dead,
+/turf/simulated/floor/tiled/dark,
+/area/vacant/cabin)
+"GQ" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/aftport)
+"GS" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/foreport)
+"GT" = (
+/obj/structure/reagent_dispensers/fueltank,
+/obj/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/foreport)
+"GU" = (
+/obj/effect/decal/cleanable/cobweb2,
+/obj/machinery/portable_atmospherics/canister/empty/oxygen,
+/obj/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/foreport)
+"GV" = (
+/obj/machinery/floodlight,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/foreport)
+"GW" = (
+/obj/machinery/alarm{
+ dir = 1;
+ icon_state = "alarm0";
+ pixel_y = -22
+ },
+/obj/structure/filingcabinet/chestdrawer,
+/obj/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/foreport)
+"GY" = (
+/obj/structure/hygiene/drain,
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"GZ" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cryolocker)
+"Hb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/floor_decal/spline/fancy/wood,
+/turf/simulated/floor/carpet/blue,
+/area/crew_quarters/virtual_reality)
+"Hc" = (
+/turf/simulated/open,
+/area/crew_quarters/sleep/cryo)
+"Hd" = (
+/obj/structure/railing/mapped{
+ dir = 8;
+ icon_state = "railing0-1"
+ },
+/obj/structure/railing/mapped{
+ dir = 1;
+ icon_state = "railing0-1"
+ },
+/obj/floor_decal/industrial/warning,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/port)
+"Hf" = (
+/turf/simulated/wall/r_wall/hull,
+/area/maintenance/thirddeck/port)
+"Hh" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/port)
+"Hi" = (
+/obj/structure/bed,
+/obj/structure/plushie/drone,
+/turf/simulated/floor/plating,
+/area/vacant/cabin)
+"Hj" = (
+/obj/structure/bed,
+/turf/simulated/floor/carpet,
+/area/vacant/cabin)
+"Hk" = (
+/obj/random/obstruction,
+/turf/simulated/floor/plating,
+/area/vacant/cabin)
+"Hl" = (
+/obj/machinery/portable_atmospherics/canister/empty/carbon_dioxide,
+/obj/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/foreport)
+"Hm" = (
+/obj/structure/bed/chair/comfy/brown{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/foreport)
+"Hn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/port)
+"Ho" = (
+/obj/structure/closet/secure_closet/personal,
+/obj/floor_decal/corner/lime{
+ dir = 10
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/monotile,
+/area/crew_quarters/cryolocker)
+"Hp" = (
+/obj/structure/closet/secure_closet/personal,
+/obj/floor_decal/corner/lime{
+ dir = 10
+ },
+/obj/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/monotile,
+/area/crew_quarters/cryolocker)
+"Hr" = (
+/obj/structure/sign/warning/hot_exhaust{
+ dir = 8;
+ icon_state = "fire"
+ },
+/turf/simulated/wall/r_wall/hull,
+/area/maintenance/thirddeck/aftstarboard)
+"Hu" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/storage/tools)
+"Hv" = (
+/obj/floor_decal/techfloor{
+ dir = 8;
+ icon_state = "techfloor_edges"
+ },
+/obj/item/device/radio/intercom/entertainment{
+ dir = 4;
+ pixel_x = -22
+ },
+/obj/structure/table/standard,
+/obj/item/modular_computer/laptop/preset/custom_loadout/cheap,
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/safe_room/thirddeck)
+"Hx" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/port)
+"Hy" = (
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/port)
+"Hz" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/maintenance,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/thirddeck/aftport)
+"HB" = (
+/obj/machinery/light/small{
+ dir = 4;
+ icon_state = "bulb1"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/railing/mapped{
+ dir = 1;
+ icon_state = "railing0-1"
+ },
+/turf/simulated/floor/plating,
+/area/command/disperser)
+"HD" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/port)
+"HE" = (
+/obj/random/torchcloset,
+/obj/random/maintenance/solgov,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/port)
+"HG" = (
+/obj/structure/largecrate,
+/obj/random/maintenance/solgov,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/port)
+"HH" = (
+/obj/wallframe_spawn/reinforced/hull,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/blast/regular/open{
+ dir = 4;
+ icon_state = "pdoor0";
+ id_tag = "bsa-window";
+ name = "Observation Blast Door"
+ },
+/turf/simulated/floor/plating,
+/area/command/disperser)
+"HI" = (
+/obj/structure/sign/warning/secure_area,
+/turf/simulated/wall/r_wall/hull,
+/area/command/disperser)
+"HJ" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/airlock/highsecurity{
+ icon_state = "closed";
+ locked = 0;
+ name = "Fire Control"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/command/disperser)
+"HK" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/airlock/highsecurity{
+ icon_state = "closed";
+ locked = 0;
+ name = "Fire Control"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/command/disperser)
+"HL" = (
+/obj/floor_decal/industrial/warning{
+ dir = 9
+ },
+/obj/machinery/camera/network/command{
+ c_tag = "Fire Control - Access"
+ },
+/turf/simulated/floor/plating,
+/area/command/disperser)
+"HM" = (
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/command/disperser)
+"HN" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plating,
+/area/command/disperser)
+"HO" = (
+/obj/floor_decal/industrial/warning{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/power/apc/hyper{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/turf/simulated/floor/plating,
+/area/command/disperser)
+"HP" = (
+/obj/floor_decal/industrial/warning{
+ dir = 10
+ },
+/obj/machinery/light/small,
+/turf/simulated/floor/plating,
+/area/command/disperser)
+"HQ" = (
+/obj/floor_decal/corner/blue{
+ dir = 5
+ },
+/obj/structure/railing/mapped,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/command/disperser)
+"HR" = (
+/obj/floor_decal/industrial/warning{
+ dir = 6
+ },
+/obj/machinery/light/small,
+/turf/simulated/floor/plating,
+/area/command/disperser)
+"HS" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/airlock/highsecurity{
+ icon_state = "closed";
+ locked = 0;
+ name = "Fire Control"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/command/disperser)
+"HT" = (
+/obj/structure/disposaloutlet,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/airless,
+/area/command/disperser)
+"HU" = (
+/obj/floor_decal/industrial/hatch/yellow,
+/obj/machinery/disposal/deliveryChute{
+ dir = 4
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark/monotile,
+/area/command/disperser)
+"HV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/catwalk_plated/dark,
+/turf/simulated/floor/plating,
+/area/command/disperser)
+"HW" = (
+/turf/simulated/wall/prepainted,
+/area/command/disperser)
+"HX" = (
+/obj/floor_decal/industrial/hatch/blue,
+/obj/structure/ship_munition/disperser_charge/emp,
+/turf/simulated/floor/tiled/dark,
+/area/command/disperser)
+"HZ" = (
+/obj/floor_decal/industrial/loading,
+/turf/simulated/floor/tiled/airless,
+/area/command/disperser)
+"Ia" = (
+/obj/wallframe_spawn/reinforced/hull,
+/obj/machinery/door/blast/regular/open{
+ dir = 4;
+ icon_state = "pdoor0";
+ id_tag = "bsa-window";
+ name = "Observation Blast Door"
+ },
+/turf/simulated/floor/plating,
+/area/command/disperser)
+"Ib" = (
+/obj/floor_decal/corner/blue{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = 22;
+ pixel_y = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/command/disperser)
+"Ic" = (
+/obj/machinery/light{
+ dir = 1;
+ icon_state = "tube1"
+ },
+/turf/simulated/floor/airless,
+/area/command/disperser)
+"Id" = (
+/obj/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/airless,
+/area/command/disperser)
+"Ie" = (
+/obj/structure/table/steel,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/command/disperser)
+"If" = (
+/obj/machinery/light/small{
+ dir = 4;
+ icon_state = "bulb1"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/command/disperser)
+"Ih" = (
+/obj/floor_decal/industrial/hatch/orange,
+/obj/structure/ship_munition/disperser_charge/fire,
+/turf/simulated/floor/tiled/dark,
+/area/command/disperser)
+"Ik" = (
+/obj/floor_decal/corner/green{
+ dir = 10
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/aft)
+"Im" = (
+/obj/machinery/shield_diffuser,
+/obj/machinery/door/blast/regular{
+ dir = 4;
+ id_tag = "bsa-core";
+ name = "OFD Blast Door"
+ },
+/turf/simulated/floor/airless,
+/area/command/disperser)
+"In" = (
+/obj/machinery/disperser/front{
+ dir = 8
+ },
+/turf/simulated/floor/airless,
+/area/command/disperser)
+"Io" = (
+/obj/machinery/disperser/middle{
+ dir = 8
+ },
+/turf/simulated/floor/airless,
+/area/command/disperser)
+"Ip" = (
+/obj/machinery/disperser/back{
+ dir = 8
+ },
+/turf/simulated/floor/airless,
+/area/command/disperser)
+"Iq" = (
+/obj/floor_decal/corner/green{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/fore)
+"Ir" = (
+/obj/machinery/camera/network/command{
+ c_tag = "Fire Control - Controls";
+ dir = 4
+ },
+/obj/machinery/computer/ship/disperser{
+ dir = 4;
+ icon_state = "computer"
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/command/disperser)
+"Is" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/catwalk_plated/dark,
+/turf/simulated/floor/plating,
+/area/command/disperser)
+"It" = (
+/obj/machinery/door/airlock/command{
+ name = "Obstruction Field Disperser Magazine";
+ secured_wires = 1
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/command/disperser)
+"Iu" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/floor_decal/spline/fancy/wood,
+/turf/simulated/floor/carpet/blue,
+/area/crew_quarters/virtual_reality)
+"Iv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/memorial)
+"Iw" = (
+/obj/floor_decal/industrial/hatch/red,
+/obj/structure/ship_munition/disperser_charge/explosive,
+/turf/simulated/floor/tiled/dark,
+/area/command/disperser)
+"Ix" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/item/stool/padded,
+/turf/simulated/floor/tiled/freezer,
+/area/crew_quarters/head)
+"Iy" = (
+/obj/structure/sign/warning/hot_exhaust{
+ dir = 1;
+ icon_state = "fire"
+ },
+/turf/simulated/wall/r_wall/hull,
+/area/command/disperser)
+"IA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4;
+ icon_state = "intact"
+ },
+/obj/structure/sign/warning/airlock{
+ dir = 1;
+ icon_state = "doors";
+ pixel_y = -32
+ },
+/obj/machinery/access_button{
+ command = "cycle_interior";
+ frequency = 1379;
+ master_tag = "bsa_airlock";
+ pixel_x = -20;
+ pixel_y = -20
+ },
+/turf/simulated/floor/plating,
+/area/command/disperser)
+"IB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4;
+ icon_state = "intact"
+ },
+/turf/simulated/floor/plating,
+/area/command/disperser)
+"ID" = (
+/obj/random_multi/single_item/punitelly,
+/turf/simulated/floor/tiled,
+/area/vacant/brig)
+"IE" = (
+/obj/random_multi/single_item/punitelly,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/starboard)
+"IH" = (
+/obj/structure/table/steel,
+/obj/random_multi/single_item/punitelly,
+/turf/simulated/floor/tiled/dark,
+/area/vacant/cabin)
+"II" = (
+/obj/random_multi/single_item/punitelly,
+/turf/simulated/floor/tiled/dark,
+/area/vacant/cabin)
+"IJ" = (
+/obj/random_multi/single_item/punitelly,
+/obj/structure/railing/mapped{
+ dir = 4;
+ icon_state = "railing0-1"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/aftport)
+"IK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/catwalk_plated/dark,
+/turf/simulated/floor/plating,
+/area/command/disperser)
+"IL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/structure/railing/mapped{
+ dir = 4;
+ icon_state = "railing0-1"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/forestarboard)
+"IM" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/forestarboard)
+"IN" = (
+/obj/random/junk,
+/obj/machinery/atmospherics/valve/shutoff/supply,
+/obj/structure/railing/mapped{
+ dir = 4;
+ icon_state = "railing0-1"
+ },
+/obj/machinery/atmospherics/valve/shutoff/scrubbers,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/forestarboard)
+"IO" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/forestarboard)
+"IP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/railing/mapped{
+ dir = 4;
+ icon_state = "railing0-1"
+ },
+/obj/structure/railing/mapped,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/forestarboard)
+"IQ" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/floor_decal/corner/paleblue/half,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/thirddeck/fore)
+"IR" = (
+/obj/machinery/door/airlock/freezer{
+ name = "Galley Cold Room"
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/crew_quarters/galleybackroom)
+"IS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/thirddeck/aftstarboard)
+"IU" = (
+/obj/machinery/atmospherics/pipe/simple/visible/blue{
+ dir = 4
+ },
+/turf/simulated/wall/r_wall/hull,
+/area/thruster/d3starboard)
+"IV" = (
+/obj/floor_decal/corner/yellow{
+ dir = 9
+ },
+/obj/structure/ladder/up,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/hallway/primary/thirddeck/aft)
+"IW" = (
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/aftstarboard)
+"IX" = (
+/obj/item/stool/padded,
+/obj/floor_decal/corner/green/half,
+/obj/machinery/button/blast_door{
+ id_tag = "d3fore_shutters";
+ name = "Garden Shutter Control";
+ pixel_x = -7;
+ pixel_y = -23
+ },
+/turf/simulated/floor/tiled/dark/monotile,
+/area/crew_quarters/observation)
+"IY" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/floor_decal/industrial/shutoff{
+ dir = 4
+ },
+/obj/machinery/atmospherics/valve/shutoff/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/valve/shutoff/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/thirddeck/center)
+"IZ" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/catwalk_plated,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/hallway/primary/thirddeck/center)
+"Ja" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/sortjunction{
+ dir = 4;
+ name = "Auxiliary Tool Storage";
+ sort_type = "Auxiliary Tool Storage"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/catwalk_plated,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/hallway/primary/thirddeck/aft)
+"Jb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/catwalk_plated,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/hallway/primary/thirddeck/aft)
+"Jc" = (
+/obj/floor_decal/corner/green,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/center)
+"Jd" = (
+/obj/floor_decal/corner/green{
+ dir = 10;
+ icon_state = "corner_white"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/center)
+"Je" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/aft)
+"Jg" = (
+/obj/structure/table/standard,
+/obj/machinery/recharger,
+/obj/item/wrench,
+/obj/machinery/light_switch{
+ pixel_x = 6;
+ pixel_y = -24
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/crew_quarters/gym)
+"Jh" = (
+/obj/machinery/atmospherics/pipe/simple/visible/fuel{
+ dir = 4
+ },
+/obj/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/thruster/d3starboard)
+"Ji" = (
+/obj/floor_decal/spline/fancy/wood{
+ dir = 5
+ },
+/obj/machinery/light/spot{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/blue,
+/area/crew_quarters/virtual_reality)
+"Jj" = (
+/obj/machinery/atmospherics/pipe/simple/visible/fuel{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/thruster/d3port)
+"Jk" = (
+/obj/floor_decal/industrial/warning,
+/obj/machinery/atmospherics/pipe/simple/visible/fuel{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/thruster/d3port)
+"Jm" = (
+/obj/machinery/atmospherics/tvalve/digital{
+ dir = 4;
+ id_tag = "fuelmode"
+ },
+/obj/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/floor_decal/industrial/outline/red,
+/turf/simulated/floor/tiled/techfloor,
+/area/thruster/d3starboard)
+"Jo" = (
+/obj/machinery/atmospherics/binary/passive_gate/on{
+ dir = 4;
+ max_pressure_setting = 35000;
+ regulate_mode = 2;
+ target_pressure = 35000;
+ use_power = 1
+ },
+/obj/floor_decal/industrial/outline/yellow,
+/obj/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/thruster/d3starboard)
+"Jp" = (
+/obj/machinery/atmospherics/pipe/manifold4w/visible/fuel,
+/obj/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/thruster/d3starboard)
+"Jq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/fuel{
+ dir = 5
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/aftstarboard)
+"Jr" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/fuel{
+ dir = 10
+ },
+/obj/structure/railing/mapped{
+ dir = 8;
+ icon_state = "railing0-1"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/aftstarboard)
+"Js" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/visible/fuel,
+/obj/structure/railing/mapped,
+/obj/structure/railing/mapped{
+ dir = 8;
+ icon_state = "railing0-1"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/aftstarboard)
+"Jt" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/fuel{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/aftstarboard)
+"Ju" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/fuel{
+ dir = 5
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/aftstarboard)
+"Jw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/visible/fuel,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/aftstarboard)
+"Jx" = (
+/obj/floor_decal/industrial/warning,
+/obj/machinery/atmospherics/binary/passive_gate/on{
+ dir = 4;
+ max_pressure_setting = 30000;
+ regulate_mode = 2;
+ target_pressure = 30000;
+ use_power = 1
+ },
+/obj/floor_decal/industrial/outline/yellow,
+/obj/machinery/light/small,
+/turf/simulated/floor/tiled/techfloor,
+/area/thruster/d3port)
+"Jy" = (
+/obj/machinery/atmospherics/pipe/simple/visible/fuel{
+ dir = 5
+ },
+/obj/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/thruster/d3starboard)
+"Jz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/fuel{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/aftstarboard)
+"JB" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/railing/mapped{
+ dir = 4;
+ icon_state = "railing0-1"
+ },
+/obj/structure/railing/mapped{
+ dir = 1;
+ icon_state = "railing0-1"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/aftstarboard)
+"JC" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/railing/mapped{
+ dir = 1;
+ icon_state = "railing0-1"
+ },
+/obj/structure/railing/mapped{
+ dir = 8;
+ icon_state = "railing0-1"
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/fuel,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/aftstarboard)
+"JD" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/visible/fuel{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/aftstarboard)
+"JE" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/visible/fuel,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/aftstarboard)
+"JF" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/fuel,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/aftstarboard)
+"JG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/visible/fuel,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/thirddeck/aftstarboard)
+"JI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/maintenance,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/hallway/primary/thirddeck/aft)
+"JK" = (
+/obj/floor_decal/corner/lime/mono,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 9;
+ icon_state = "intact"
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/thirddeck/aft)
+"JL" = (
+/obj/structure/railing/mapped{
+ dir = 1;
+ icon_state = "railing0-1"
+ },
+/turf/simulated/open,
+/area/maintenance/thirddeck/port)
+"JM" = (
+/obj/floor_decal/spline/fancy/wood,
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_x = 0;
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/wood/walnut,
+/area/crew_quarters/recreation)
+"JN" = (
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/foreport)
+"JO" = (
+/obj/catwalk_plated,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 1;
+ icon_state = "pipe-j2"
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/hallway/primary/thirddeck/aft)
+"JP" = (
+/obj/floor_decal/corner/lime{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/aft)
+"JR" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_x = 0;
+ pixel_y = -24
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/office)
+"JS" = (
+/obj/machinery/atmospherics/pipe/simple/visible/blue{
+ dir = 6
+ },
+/obj/floor_decal/industrial/warning,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/thruster/d3starboard)
+"JT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/fuel{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/aftport)
+"JU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/visible/fuel,
+/obj/structure/catwalk,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/aftport)
+"JV" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/port)
+"JX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/fuel{
+ dir = 6
+ },
+/obj/structure/catwalk,
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/aftport)
+"JY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/visible/fuel{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/thirddeck/aftport)
+"JZ" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/visible/fuel,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/thirddeck/aftport)
+"Kb" = (
+/obj/machinery/atmospherics/pipe/simple/visible/fuel,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/aftport)
+"Kc" = (
+/obj/structure/bed/chair/padded/red{
+ dir = 1;
+ icon_state = "chair_preview"
+ },
+/obj/floor_decal/corner/red/half{
+ dir = 8;
+ icon_state = "bordercolorhalf"
+ },
+/turf/simulated/floor/tiled/dark/monotile,
+/area/security/habcheck)
+"Kd" = (
+/obj/random/obstruction,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/foreport)
+"Ke" = (
+/obj/machinery/light_switch{
+ pixel_x = 28
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/memorial)
+"Kf" = (
+/obj/machinery/atmospherics/unary/engine{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/thruster/d3port)
+"Kg" = (
+/obj/machinery/atmospherics/pipe/simple/visible/fuel{
+ dir = 6
+ },
+/obj/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/thruster/d3port)
+"Kh" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/fuel{
+ dir = 8
+ },
+/obj/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/thruster/d3port)
+"Ki" = (
+/obj/machinery/alarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/fuel,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/aftport)
+"Kk" = (
+/obj/random/junk,
+/obj/machinery/atmospherics/pipe/simple/visible/fuel{
+ dir = 10
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/aftport)
+"Kl" = (
+/obj/machinery/atmospherics/pipe/simple/visible/fuel{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/aftport)
+"Km" = (
+/obj/machinery/atmospherics/pipe/simple/visible/blue{
+ dir = 4
+ },
+/turf/simulated/wall/r_wall/hull,
+/area/thruster/d3port)
+"Kn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/item/reagent_containers/syringe,
+/obj/machinery/light,
+/obj/structure/hygiene/sink/kitchen{
+ pixel_y = -32
+ },
+/obj/floor_decal/corner/green,
+/turf/simulated/floor/tiled/monotile,
+/area/hydroponics)
+"Ko" = (
+/obj/floor_decal/corner/blue/diagonal{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/table/standard,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/mess)
+"Kp" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_x = 0;
+ pixel_y = 24
+ },
+/obj/floor_decal/industrial/warning/corner{
+ dir = 1;
+ icon_state = "warningcorner"
+ },
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 4;
+ icon_state = "intact"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/thruster/d3port)
+"Kq" = (
+/obj/machinery/atmospherics/pipe/simple/visible/fuel{
+ dir = 10
+ },
+/obj/machinery/meter,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/thruster/d3port)
+"Kr" = (
+/obj/machinery/atmospherics/binary/pump/high_power/on{
+ dir = 4;
+ target_pressure = 15000
+ },
+/obj/floor_decal/industrial/outline/orange,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/thruster/d3port)
+"Ks" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/binary/pump/high_power/on{
+ dir = 4;
+ target_pressure = 15000
+ },
+/turf/simulated/floor/plating,
+/area/thruster/d3port)
+"Kt" = (
+/obj/floor_decal/corner/lime,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/aft)
+"Ku" = (
+/obj/machinery/atmospherics/pipe/simple/visible/fuel{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/thruster/d3port)
+"Kv" = (
+/obj/machinery/atmospherics/pipe/simple/visible/fuel{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/thruster/d3port)
+"Kw" = (
+/obj/machinery/atmospherics/pipe/simple/visible/fuel{
+ dir = 4
+ },
+/obj/floor_decal/industrial/warning/corner,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/thruster/d3port)
+"Kx" = (
+/obj/machinery/atmospherics/pipe/simple/visible/fuel{
+ dir = 4
+ },
+/obj/floor_decal/industrial/warning,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/light/small,
+/turf/simulated/floor/tiled/techfloor,
+/area/thruster/d3port)
+"Kz" = (
+/obj/machinery/atmospherics/pipe/manifold4w/visible/fuel,
+/obj/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/thruster/d3port)
+"KA" = (
+/obj/machinery/computer/air_control{
+ dir = 1;
+ frequency = 1441;
+ input_tag = "d3po2_in";
+ name = "Oxygen Supply Control";
+ output_tag = "d3po2_out";
+ sensor_name = "Oxygen Supply Tank";
+ sensor_tag = "d3po2_sensor"
+ },
+/obj/floor_decal/industrial/outline/blue,
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -25
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/thruster/d3port)
+"KB" = (
+/obj/machinery/power/terminal{
+ dir = 1;
+ icon_state = "term"
+ },
+/obj/machinery/pointdefense{
+ initial_id_tag = "torch_primary_pd"
+ },
+/obj/structure/cable/green,
+/turf/simulated/floor/reinforced/airless,
+/area/space)
+"KC" = (
+/turf/simulated/open,
+/area/maintenance/thirddeck/starboard)
+"KE" = (
+/obj/machinery/atmospherics/pipe/simple/visible/fuel{
+ dir = 5
+ },
+/obj/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/thruster/d3port)
+"KF" = (
+/obj/machinery/atmospherics/pipe/simple/visible/fuel{
+ dir = 4
+ },
+/obj/machinery/meter,
+/obj/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/thruster/d3starboard)
+"KG" = (
+/obj/machinery/atmospherics/binary/passive_gate/on{
+ dir = 4;
+ max_pressure_setting = 30000;
+ regulate_mode = 2;
+ target_pressure = 30000;
+ use_power = 1
+ },
+/obj/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/floor_decal/industrial/outline/yellow,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/thruster/d3starboard)
+"KH" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 4;
+ icon_state = "intact"
+ },
+/obj/floor_decal/industrial/warning,
+/turf/simulated/floor/tiled/techfloor,
+/area/thruster/d3starboard)
+"KI" = (
+/obj/structure/reagent_dispensers/fueltank,
+/obj/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/starboard)
+"KJ" = (
+/obj/machinery/atmospherics/omni/mixer{
+ set_flow_rate = 50;
+ tag_east = 1;
+ tag_east_con = 0.2;
+ tag_north = 1;
+ tag_north_con = 0.4;
+ tag_south = 2;
+ tag_south_con = null;
+ tag_west = 1;
+ tag_west_con = 0.4
+ },
+/obj/floor_decal/industrial/warning/full,
+/obj/floor_decal/industrial/outline/blue,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/thruster/d3starboard)
+"KK" = (
+/obj/machinery/atmospherics/binary/pump/high_power/on{
+ dir = 8;
+ max_pressure_setting = 15000;
+ target_pressure = 15000
+ },
+/obj/floor_decal/industrial/outline/orange,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/thruster/d3starboard)
+"KL" = (
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/simple/visible/fuel,
+/obj/floor_decal/industrial/warning,
+/turf/simulated/floor/tiled/techfloor,
+/area/thruster/d3starboard)
+"KM" = (
+/obj/floor_decal/industrial/warning,
+/turf/simulated/floor/tiled/techfloor,
+/area/thruster/d3starboard)
+"KN" = (
+/obj/machinery/atmospherics/pipe/simple/visible/fuel{
+ dir = 6
+ },
+/obj/floor_decal/industrial/warning,
+/obj/machinery/meter,
+/turf/simulated/floor/tiled/techfloor,
+/area/thruster/d3starboard)
+"KP" = (
+/turf/simulated/wall/ocp_wall,
+/area/thruster/d3starboard)
+"KR" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/space)
+"KS" = (
+/obj/structure/table/steel,
+/obj/machinery/button/blast_door{
+ desc = "A remote control-switch for shutters.";
+ id_tag = "hab_checkpoint_shutters";
+ name = "Checkpoint Window Shutters";
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/machinery/button/blast_door{
+ desc = "A remote control-switch for shutters.";
+ id_tag = "hab_hallway_shutters";
+ name = "Hallway Checkpoint Shutters";
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/obj/machinery/newscaster/security_unit{
+ pixel_y = -32
+ },
+/obj/floor_decal/corner/red/mono,
+/obj/machinery/light,
+/turf/simulated/floor/tiled/dark/monotile,
+/area/security/habcheck)
+"KT" = (
+/obj/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/thruster/d3starboard)
+"KV" = (
+/obj/machinery/atmospherics/unary/vent_pump/siphon/on/atmos{
+ dir = 4;
+ internal_pressure_bound = 35000;
+ internal_pressure_bound_default = 35000
+ },
+/obj/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/reinforced/airless,
+/area/thruster/d3starboard)
+"KW" = (
+/obj/structure/railing/mapped{
+ dir = 1;
+ icon_state = "railing0-1"
+ },
+/obj/random/trash,
+/obj/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/port)
+"KY" = (
+/obj/structure/bed/chair/comfy/brown,
+/turf/simulated/floor/wood/walnut,
+/area/crew_quarters/virtual_reality)
+"KZ" = (
+/obj/floor_decal/corner/green/half,
+/obj/structure/closet/athletic_mixed,
+/turf/simulated/floor/tiled/dark/monotile,
+/area/crew_quarters/observation)
+"La" = (
+/turf/simulated/wall/ocp_wall,
+/area/thruster/d3port)
+"Lb" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/blast/shutters{
+ dir = 4;
+ id_tag = "kitchen";
+ name = "Kitchen Shutters"
+ },
+/obj/effect/wallframe_spawn/no_grille,
+/turf/simulated/floor/plating,
+/area/crew_quarters/galley)
+"Lc" = (
+/obj/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/thruster/d3port)
+"Le" = (
+/obj/machinery/atmospherics/unary/vent_pump/siphon/on/atmos{
+ dir = 4;
+ internal_pressure_bound = 35000;
+ internal_pressure_bound_default = 35000
+ },
+/obj/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/reinforced/airless,
+/area/thruster/d3port)
+"Lh" = (
+/obj/structure/closet/emcloset,
+/obj/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/white/monotile,
+/area/crew_quarters/sleep/cryo)
+"Li" = (
+/obj/machinery/door/blast/regular{
+ dir = 1;
+ id_tag = "cChamber3pV";
+ name = "Chamber Vent"
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/thruster/d3port)
+"Lj" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/obj/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/thirddeck/aft)
+"Lk" = (
+/obj/structure/catwalk,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/port)
+"Ll" = (
+/obj/machinery/atmospherics/pipe/simple/visible/fuel,
+/obj/machinery/meter,
+/obj/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/thruster/d3port)
+"Lm" = (
+/obj/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/thruster/d3port)
+"Ln" = (
+/obj/machinery/atmospherics/pipe/simple/visible/fuel{
+ dir = 5
+ },
+/obj/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/meter,
+/turf/simulated/floor/tiled/techfloor,
+/area/thruster/d3port)
+"Lp" = (
+/obj/floor_decal/industrial/warning/corner{
+ dir = 1;
+ icon_state = "warningcorner"
+ },
+/obj/machinery/atmospherics/binary/passive_gate/on{
+ dir = 4;
+ max_pressure_setting = 35000;
+ regulate_mode = 2;
+ target_pressure = 35000;
+ use_power = 1
+ },
+/obj/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/techfloor,
+/area/thruster/d3port)
+"Lq" = (
+/obj/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 4;
+ icon_state = "intact"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/thruster/d3port)
+"Lr" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/aftport)
+"Ls" = (
+/obj/machinery/atmospherics/omni/mixer{
+ set_flow_rate = 50;
+ tag_east = 1;
+ tag_east_con = 0.2;
+ tag_north = 2;
+ tag_north_con = null;
+ tag_south = 1;
+ tag_south_con = 0.4;
+ tag_west = 1;
+ tag_west_con = 0.4
+ },
+/obj/floor_decal/industrial/warning/full,
+/obj/floor_decal/industrial/outline/blue,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/thruster/d3port)
+"Lt" = (
+/obj/machinery/atmospherics/binary/pump/high_power/on{
+ dir = 8;
+ max_pressure_setting = 15000;
+ target_pressure = 15000
+ },
+/obj/floor_decal/industrial/outline/orange,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/thruster/d3port)
+"Lu" = (
+/obj/floor_decal/industrial/warning,
+/obj/machinery/atmospherics/pipe/simple/visible/fuel{
+ dir = 4
+ },
+/obj/machinery/meter,
+/turf/simulated/floor/tiled/techfloor,
+/area/thruster/d3port)
+"Lw" = (
+/obj/effect/landmark{
+ name = "xeno_spawn";
+ pixel_x = -1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/catwalk_plated,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/plating,
+/area/hallway/primary/thirddeck/aft)
+"Lx" = (
+/obj/floor_decal/corner/blue/diagonal{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/mess)
+"Ly" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/floor_decal/corner/green/half,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/aft)
+"Lz" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/engineering{
+ name = "Engineering Hard Storage"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/engineering/hardstorage)
+"LA" = (
+/obj/structure/table/rack,
+/obj/random/maintenance/solgov,
+/obj/random/tech_supply,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/foreport)
+"LB" = (
+/obj/machinery/portable_atmospherics/powered/scrubber,
+/obj/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/foreport)
+"LC" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/floor_decal/corner/green{
+ dir = 8
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_y = -32
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/fore)
+"LE" = (
+/obj/machinery/computer/air_control{
+ dir = 2;
+ frequency = 1441;
+ input_info = null;
+ input_tag = "d3sh_in";
+ name = "Hydrogen Supply Control";
+ output_tag = "d3sh_out";
+ sensor_name = "Hydrogen Supply Tank";
+ sensor_tag = "d3sh_sensor"
+ },
+/obj/floor_decal/industrial/outline/orange,
+/turf/simulated/floor/tiled/techfloor,
+/area/thruster/d3starboard)
+"LF" = (
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/foreport)
+"LH" = (
+/obj/machinery/atmospherics/unary/vent_pump/tank{
+ dir = 8;
+ external_pressure_bound = 0;
+ external_pressure_bound_default = 0;
+ icon_state = "map_vent_in";
+ id_tag = "d3so2_out";
+ initialize_directions = 1;
+ internal_pressure_bound = 4000;
+ internal_pressure_bound_default = 4000;
+ pressure_checks = 2;
+ pressure_checks_default = 2;
+ pump_direction = 0;
+ use_power = 1
+ },
+/turf/simulated/floor/reinforced/oxygen,
+/area/thruster/d3starboard)
+"LI" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/office)
+"LK" = (
+/obj/floor_decal/industrial/outline/grey,
+/obj/machinery/computer/modular/preset/civilian{
+ dir = 8;
+ icon_state = "console"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/port)
+"LL" = (
+/obj/structure/table/standard{
+ name = "plastic table frame"
+ },
+/obj/item/lipstick/random{
+ pixel_x = 5;
+ pixel_y = 3
+ },
+/obj/item/device/flashlight/lamp/lava/red{
+ pixel_x = -5;
+ pixel_y = -8;
+ pixel_z = 14
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/crew_quarters/head)
+"LM" = (
+/obj/floor_decal/spline/fancy/black{
+ dir = 4;
+ icon_state = "spline_fancy"
+ },
+/turf/simulated/floor/wood/maple,
+/area/chapel/main)
+"LN" = (
+/obj/effect/shuttle_landmark/skipjack/deck4{
+ name = "3rd Deck, Aft Port"
+ },
+/turf/space,
+/area/space)
+"LO" = (
+/obj/machinery/sparker{
+ id_tag = "engines";
+ pixel_x = -24
+ },
+/obj/machinery/atmospherics/unary/vent_pump/siphon/on/atmos{
+ dir = 4;
+ internal_pressure_bound = 35000;
+ internal_pressure_bound_default = 35000
+ },
+/obj/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/reinforced/airless,
+/area/thruster/d3port)
+"LP" = (
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/space)
+"LQ" = (
+/obj/item/flame/candle{
+ pixel_x = 10;
+ pixel_y = 14
+ },
+/obj/item/flame/candle{
+ pixel_x = 13;
+ pixel_y = 5
+ },
+/obj/item/flame/candle{
+ pixel_x = 5;
+ pixel_y = 8
+ },
+/obj/item/flame/candle{
+ pixel_y = 11
+ },
+/obj/item/flame/candle{
+ pixel_x = -9;
+ pixel_y = 13
+ },
+/obj/item/flame/candle{
+ pixel_x = -5;
+ pixel_y = 4
+ },
+/obj/item/flame/candle{
+ pixel_x = -11;
+ pixel_y = 2
+ },
+/obj/item/flame/candle{
+ pixel_x = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/memorial)
+"LS" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1;
+ level = 2
+ },
+/turf/simulated/floor/wood/walnut,
+/area/crew_quarters/virtual_reality)
+"LT" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/aftstarboard)
+"LV" = (
+/obj/wallframe_spawn/reinforced,
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ dir = 2;
+ icon_state = "shutter0";
+ id_tag = "hab_checkpoint_shutters";
+ name = "Hangar Deck Checkpoint Shutters";
+ opacity = 0
+ },
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/plating,
+/area/security/habcheck)
+"LW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/foreport)
+"LX" = (
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_x = 0;
+ pixel_y = -24
+ },
+/turf/simulated/wall/prepainted,
+/area/crew_quarters/sleep/cryo)
+"LY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9;
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/foreport)
+"Ma" = (
+/obj/machinery/atmospherics/valve/shutoff/supply,
+/obj/structure/railing/mapped{
+ dir = 8;
+ icon_state = "railing0-1"
+ },
+/obj/structure/railing/mapped,
+/obj/machinery/atmospherics/valve/shutoff/scrubbers,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/foreport)
+"Mb" = (
+/obj/effect/shuttle_landmark/ert/deck4{
+ name = "3rd Deck, Starboard"
+ },
+/turf/space,
+/area/space)
+"Mf" = (
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/foreport)
+"Mg" = (
+/obj/machinery/atmospherics/pipe/simple/visible/fuel{
+ dir = 5
+ },
+/obj/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/thruster/d3port)
+"Mh" = (
+/obj/floor_decal/techfloor{
+ dir = 4;
+ icon_state = "techfloor_edges"
+ },
+/obj/item/device/radio/intercom{
+ dir = 1;
+ pixel_y = -28
+ },
+/obj/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/engineering/hardstorage)
+"Mi" = (
+/obj/floor_decal/corner/green,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/aft)
+"Mj" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"Mm" = (
+/obj/floor_decal/spline/fancy/wood{
+ dir = 1;
+ icon_state = "spline_fancy"
+ },
+/turf/simulated/floor/carpet/blue,
+/area/crew_quarters/virtual_reality)
+"Mn" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1;
+ icon_state = "map-scrubbers"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/floor_decal/corner/green{
+ dir = 10;
+ icon_state = "corner_white"
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hydroponics)
+"Mp" = (
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/forestarboard)
+"Mr" = (
+/obj/machinery/vr_pod{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/blue,
+/area/crew_quarters/virtual_reality)
+"Ms" = (
+/obj/floor_decal/corner/blue/diagonal{
+ dir = 4
+ },
+/obj/machinery/vending/hotfood,
+/obj/decal/cleanable/dirt,
+/turf/simulated/floor/tiled/dark,
+/area/vacant/mess)
+"Mt" = (
+/obj/machinery/atmospherics/unary/outlet_injector{
+ dir = 1;
+ injecting = 1;
+ use_power = 1
+ },
+/turf/simulated/floor/airless,
+/area/thruster/d3starboard)
+"Mu" = (
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/forestarboard)
+"Mv" = (
+/obj/structure/noticeboard{
+ pixel_y = 32
+ },
+/turf/simulated/wall/prepainted,
+/area/crew_quarters/galleybackroom)
+"Mx" = (
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"My" = (
+/obj/machinery/media/jukebox/old,
+/obj/floor_decal/spline/fancy/wood,
+/obj/item/device/radio/intercom{
+ pixel_y = 23
+ },
+/turf/simulated/floor/wood/walnut,
+/area/crew_quarters/recreation)
+"Mz" = (
+/obj/structure/disposalpipe/segment,
+/obj/floor_decal/corner/green{
+ dir = 10;
+ icon_state = "corner_white"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/center)
+"MB" = (
+/obj/structure/disposalpipe/segment,
+/obj/catwalk_plated,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/hallway/primary/thirddeck/fore)
+"MC" = (
+/obj/structure/table/marble,
+/obj/machinery/cooker/candy,
+/obj/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ icon_state = "alarm0";
+ pixel_x = -22;
+ pixel_y = 0
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/galley)
+"MD" = (
+/obj/structure/sign/directions/science{
+ dir = 1;
+ pixel_y = 3;
+ pixel_z = 0
+ },
+/obj/structure/sign/directions/infirmary{
+ dir = 1;
+ pixel_y = -4;
+ pixel_z = 0
+ },
+/turf/simulated/wall/prepainted,
+/area/hallway/primary/thirddeck/fore)
+"ME" = (
+/obj/machinery/door/airlock/external{
+ frequency = 1379;
+ id_tag = "bsa_in";
+ locked = 1;
+ name = "Obstruction Field Disperser Maintenance Internal Airlock"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4;
+ icon_state = "intact"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/command/disperser)
+"MG" = (
+/turf/simulated/floor/tiled/dark,
+/area/teleporter/thirddeck)
+"MI" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/starboard)
+"MJ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/railing/mapped,
+/obj/structure/railing/mapped{
+ dir = 8;
+ icon_state = "railing0-1"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/starboard)
+"ML" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/floor_decal/spline/fancy/wood,
+/obj/machinery/vr_pod{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/blue,
+/area/crew_quarters/virtual_reality)
+"MM" = (
+/turf/simulated/wall/r_wall/hull,
+/area/hallway/primary/thirddeck/aft)
+"MN" = (
+/obj/structure/sign/directions/security{
+ dir = 1;
+ pixel_y = 12;
+ pixel_z = 0
+ },
+/turf/simulated/wall/prepainted,
+/area/storage/tools)
+"MP" = (
+/obj/structure/table/woodentable,
+/obj/floor_decal/spline/fancy/wood,
+/obj/machinery/camera/network/third_deck{
+ c_tag = "Recreation Room"
+ },
+/turf/simulated/floor/wood/walnut,
+/area/crew_quarters/recreation)
+"MR" = (
+/obj/machinery/air_sensor{
+ id_tag = "d3po2_sensor"
+ },
+/turf/simulated/floor/reinforced/oxygen,
+/area/thruster/d3port)
+"MS" = (
+/obj/machinery/firealarm{
+ dir = 2;
+ pixel_y = 24
+ },
+/obj/floor_decal/corner/green{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/center)
+"MU" = (
+/obj/floor_decal/corner/yellow/half,
+/turf/simulated/floor/tiled/dark,
+/area/engineering/hardstorage)
+"MW" = (
+/obj/machinery/atmospherics/binary/passive_gate/on{
+ dir = 1;
+ regulate_mode = 1;
+ target_pressure = 35000;
+ use_power = 1
+ },
+/obj/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/techfloor,
+/area/thruster/d3port)
+"MX" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled/freezer,
+/area/crew_quarters/head)
+"MY" = (
+/obj/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/forestarboard)
+"MZ" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"Na" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/visible/fuel,
+/obj/structure/catwalk,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/aftstarboard)
+"Nb" = (
+/obj/effect/shuttle_landmark/merc/deck4{
+ name = "3rd Deck, Port"
+ },
+/turf/space,
+/area/space)
+"Nc" = (
+/obj/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/structure/railing/mapped{
+ dir = 8;
+ icon_state = "railing0-1"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/aftport)
+"Nd" = (
+/obj/structure/table/standard,
+/obj/item/device/radio/intercom{
+ dir = 4;
+ pixel_x = -21
+ },
+/obj/item/storage/box/cups{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/storage/box/cups,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/gym)
+"Ne" = (
+/obj/structure/lattice,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/open,
+/area/maintenance/thirddeck/aftport)
+"Nf" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/aft)
+"Ng" = (
+/obj/machinery/door/airlock/multi_tile/glass/civilian{
+ name = "VR Suites"
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/crew_quarters/virtual_reality)
+"Nj" = (
+/obj/floor_decal/industrial/outline/grey,
+/obj/machinery/portable_atmospherics/canister/empty/carbon_dioxide,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/port)
+"Nm" = (
+/obj/structure/table/woodentable/maple,
+/turf/simulated/floor/carpet/purple,
+/area/chapel/office)
+"Nn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/floor_decal/industrial/warning/fulltile,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/steel_grid,
+/area/hallway/primary/thirddeck/center)
+"Nq" = (
+/obj/structure/closet/crate/trashcart,
+/obj/random/junk,
+/obj/random/junk,
+/obj/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/aftport)
+"Ns" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/floor_decal/corner/red/half{
+ dir = 4;
+ icon_state = "bordercolorhalf"
+ },
+/obj/item/device/radio/intercom/department/security{
+ dir = 8;
+ icon_state = "intercom";
+ pixel_x = 21
+ },
+/turf/simulated/floor/tiled/dark/monotile,
+/area/security/habcheck)
+"Nt" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled/dark/monotile,
+/area/tcommsat/chamber)
+"Nu" = (
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/simple/visible/cyan,
+/obj/wallframe_spawn/reinforced_phoron,
+/turf/simulated/floor/reinforced,
+/area/thruster/d3port)
+"Nv" = (
+/turf/simulated/floor/carpet/blue,
+/area/crew_quarters/virtual_reality)
+"Nw" = (
+/obj/effect/wallframe_spawn/no_grille,
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plating,
+/area/crew_quarters/mess)
+"Nx" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/gym)
+"Ny" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/structure/table/rack,
+/obj/random/maintenance/solgov,
+/obj/random/maintenance/solgov,
+/obj/random/maintenance/solgov,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/port)
+"Nz" = (
+/obj/item/device/radio/intercom/locked/confessional{
+ pixel_x = 0;
+ pixel_y = 23
+ },
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1"
+ },
+/obj/structure/table/woodentable/maple,
+/turf/simulated/floor/carpet/purple,
+/area/chapel/main)
+"NA" = (
+/obj/floor_decal/industrial/warning/fulltile,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/hallway/primary/thirddeck/center)
+"NB" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/crew_quarters/gym)
+"NC" = (
+/obj/structure/cable/cyan{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/dark/monotile,
+/area/tcommsat/chamber)
+"ND" = (
+/obj/structure/sign/warning/server_room,
+/turf/simulated/wall/prepainted,
+/area/tcommsat/computer)
+"NE" = (
+/obj/floor_decal/corner/green{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/fore)
+"NF" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/civilian{
+ name = "Lounge"
+ },
+/turf/simulated/floor/tiled/white/monotile,
+/area/crew_quarters/sleep/cryo)
+"NH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/starboard)
+"NI" = (
+/obj/machinery/photocopier,
+/turf/simulated/floor/lino,
+/area/crew_quarters/office)
+"NJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/thirddeck/foreport)
+"NL" = (
+/obj/random/obstruction,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/thirddeck/foreport)
+"NM" = (
+/obj/machinery/media/jukebox/old,
+/obj/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/vacant/mess)
+"NN" = (
+/obj/floor_decal/spline/plain/red,
+/obj/structure/window/reinforced,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/gym)
+"NO" = (
+/obj/random_multi/single_item/punitelly,
+/obj/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/vacant/mess)
+"NV" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/foreport)
+"NW" = (
+/obj/floor_decal/corner/blue/diagonal{
+ dir = 4
+ },
+/obj/decal/cleanable/dirt,
+/obj/random/junk,
+/turf/simulated/floor/tiled/dark,
+/area/vacant/mess)
+"NY" = (
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/crew_quarters/safe_room/thirddeck)
+"NZ" = (
+/obj/machinery/door/morgue{
+ dir = 2;
+ name = "Confession Booth"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/chapel/main)
+"Oa" = (
+/obj/machinery/atmospherics/unary/outlet_injector{
+ frequency = 1447;
+ id = "fuelmode";
+ injecting = 1;
+ use_power = 1;
+ volume_rate = 4000
+ },
+/obj/floor_decal/industrial/outline/red,
+/turf/simulated/floor/reinforced/airless,
+/area/thruster/d3port)
+"Ob" = (
+/obj/effect/shuttle_landmark/torch/deck4/aquila{
+ name = "3rd Deck, Fore"
+ },
+/turf/space,
+/area/space)
+"Oc" = (
+/obj/machinery/vending/fitness{
+ dir = 4;
+ icon_state = "fitness"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/gym)
+"Od" = (
+/obj/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/structure/table/marble,
+/obj/machinery/reagent_temperature,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/galley)
+"Oe" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/smartfridge/drying_rack,
+/obj/floor_decal/corner/green/mono,
+/obj/item/device/radio/intercom{
+ dir = 4;
+ pixel_x = -21
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hydroponics/storage)
+"Of" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/floor_decal/spline/fancy/wood{
+ dir = 10;
+ icon_state = "spline_fancy"
+ },
+/turf/simulated/floor/carpet/blue,
+/area/crew_quarters/virtual_reality)
+"Og" = (
+/obj/structure/table/standard,
+/obj/item/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/pen/green,
+/obj/item/device/radio/intercom{
+ dir = 4;
+ pixel_x = -21
+ },
+/turf/simulated/floor/lino,
+/area/crew_quarters/office)
+"Oj" = (
+/obj/floor_decal/industrial/outline/grey,
+/obj/structure/table/steel,
+/obj/random/maintenance/solgov,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/port)
+"Ol" = (
+/obj/random_multi/single_item/runtime,
+/turf/simulated/floor/tiled/freezer,
+/area/crew_quarters/galleybackroom)
+"Om" = (
+/obj/machinery/computer/modular/preset/engineering{
+ dir = 8;
+ icon_state = "console"
+ },
+/obj/machinery/light/small{
+ dir = 4;
+ pixel_y = 0
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/foreport)
+"Op" = (
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"Oq" = (
+/obj/floor_decal/corner/green{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/aft)
+"Or" = (
+/obj/machinery/atmospherics/pipe/simple/visible/fuel,
+/turf/simulated/wall/r_wall/hull,
+/area/thruster/d3port)
+"Ot" = (
+/obj/structure/railing/mapped{
+ dir = 8;
+ icon_state = "railing0-1"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/starboard)
+"Ou" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/thirddeck/foreport)
+"Ov" = (
+/obj/machinery/atmospherics/valve/shutoff/supply{
+ dir = 4
+ },
+/obj/structure/railing/mapped,
+/obj/machinery/atmospherics/valve/shutoff/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/port)
+"Ow" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/command/disperser)
+"Ox" = (
+/obj/random_multi/single_item/poppy,
+/turf/simulated/floor/tiled/dark,
+/area/vacant/cabin)
+"Oy" = (
+/obj/floor_decal/corner/green{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"Oz" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/foreport)
+"OA" = (
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/aftstarboard)
+"OB" = (
+/obj/floor_decal/corner/blue/diagonal{
+ dir = 4
+ },
+/obj/structure/bookcase,
+/obj/item/book/manual/sol_sop,
+/obj/item/book/manual/solgov_law,
+/obj/item/book/manual/military_law,
+/obj/item/book/manual/nt_regs,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/mess)
+"OC" = (
+/obj/floor_decal/techfloor{
+ dir = 4;
+ icon_state = "techfloor_edges"
+ },
+/obj/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/teleporter/thirddeck)
+"OE" = (
+/obj/floor_decal/industrial/outline/grey,
+/obj/machinery/portable_atmospherics/powered/pump/filled,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/starboard)
+"OG" = (
+/obj/structure/bed/chair/office/comfy,
+/obj/machinery/button/windowtint{
+ id = "chapoff_windows";
+ pixel_x = 6;
+ pixel_y = 24
+ },
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = 22;
+ pixel_y = 4
+ },
+/turf/simulated/floor/carpet/purple,
+/area/chapel/office)
+"OH" = (
+/obj/machinery/atmospherics/pipe/simple/visible/fuel{
+ dir = 6
+ },
+/obj/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/thruster/d3starboard)
+"OI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/floor_decal/industrial/warning/fulltile,
+/turf/simulated/floor/tiled/steel_grid,
+/area/hallway/primary/thirddeck/center)
+"OK" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ dir = 4
+ },
+/turf/simulated/wall/r_wall/hull,
+/area/thruster/d3port)
+"OL" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 1;
+ icon_state = "officechair_preview"
+ },
+/turf/simulated/floor/carpet/purple,
+/area/chapel/office)
+"OM" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/dark/monotile,
+/area/tcommsat/chamber)
+"OO" = (
+/obj/machinery/alarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/obj/structure/table/steel,
+/obj/random/junk,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/port)
+"OP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/sleep/cryo)
+"OQ" = (
+/obj/machinery/computer/ship/navigation{
+ dir = 4;
+ icon_state = "computer"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/blue{
+ dir = 10;
+ icon_state = "intact"
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/command/disperser)
+"OS" = (
+/obj/machinery/atmospherics/binary/pump/on{
+ dir = 4;
+ target_pressure = 15000
+ },
+/obj/floor_decal/industrial/outline/orange,
+/turf/simulated/floor/tiled/techfloor,
+/area/thruster/d3port)
+"OT" = (
+/obj/machinery/portable_atmospherics/canister/phoron,
+/obj/floor_decal/industrial/outline/yellow,
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 25;
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/engineering/hardstorage)
+"OW" = (
+/obj/structure/sign/directions/engineering{
+ dir = 1;
+ pixel_y = 3;
+ pixel_z = 0
+ },
+/obj/structure/sign/directions/infirmary{
+ dir = 1;
+ pixel_y = -4;
+ pixel_z = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/wallframe_spawn/no_grille,
+/turf/simulated/floor/plating,
+/area/hallway/primary/thirddeck/aft)
+"OX" = (
+/obj/machinery/alarm{
+ dir = 4;
+ icon_state = "alarm0";
+ pixel_x = -22;
+ pixel_y = 0
+ },
+/obj/machinery/vending/boozeomat,
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/bar)
+"OY" = (
+/obj/floor_decal/corner/green{
+ dir = 10
+ },
+/obj/machinery/door/airlock/glass/civilian,
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/hallway/primary/thirddeck/aft)
+"OZ" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/door/airlock/maintenance{
+ name = "Lounge Maintenance"
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/maintenance/thirddeck/port)
+"Pa" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/crew_quarters/gym)
+"Pb" = (
+/obj/machinery/vending/snack{
+ dir = 1
+ },
+/turf/simulated/floor/wood/walnut,
+/area/crew_quarters/virtual_reality)
+"Pc" = (
+/obj/floor_decal/industrial/warning{
+ dir = 9
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/foreport)
+"Pd" = (
+/obj/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/railing/mapped,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/starboard)
+"Pg" = (
+/obj/structure/closet/secure_closet/chaplain,
+/turf/simulated/floor/carpet/purple,
+/area/chapel/office)
+"Pj" = (
+/obj/structure/railing/mapped{
+ dir = 8;
+ icon_state = "railing0-1"
+ },
+/turf/simulated/open,
+/area/maintenance/thirddeck/port)
+"Pl" = (
+/obj/floor_decal/industrial/warning/corner{
+ dir = 1;
+ icon_state = "warningcorner"
+ },
+/turf/simulated/floor/airless,
+/area/command/disperser)
+"Pn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/floor_decal/corner/green{
+ dir = 10;
+ icon_state = "corner_white"
+ },
+/obj/machinery/beehive,
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"Po" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/starboard)
+"Pp" = (
+/turf/simulated/floor/tiled/dark,
+/area/command/disperser)
+"Pq" = (
+/obj/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/visible/fuel,
+/turf/simulated/floor/tiled/techfloor,
+/area/thruster/d3port)
+"Pr" = (
+/obj/floor_decal/corner/yellow{
+ dir = 9
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -23;
+ pixel_y = 0
+ },
+/obj/structure/ladder/up,
+/turf/simulated/floor/tiled/steel_grid,
+/area/hallway/primary/thirddeck/aft)
+"Ps" = (
+/obj/floor_decal/techfloor,
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/safe_room/thirddeck)
+"Px" = (
+/obj/structure/catwalk,
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/foreport)
+"Pz" = (
+/obj/floor_decal/industrial/warning{
+ dir = 10
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/foreport)
+"PA" = (
+/obj/structure/sign/directions/science{
+ dir = 1;
+ pixel_x = 0;
+ pixel_y = 12;
+ pixel_z = 0
+ },
+/turf/simulated/wall/prepainted,
+/area/storage/tools)
+"PB" = (
+/obj/machinery/portable_atmospherics/powered/pump/filled,
+/obj/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/foreport)
+"PC" = (
+/obj/structure/lattice,
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/simple/visible/blue,
+/obj/wallframe_spawn/reinforced_phoron,
+/turf/simulated/floor/reinforced,
+/area/thruster/d3starboard)
+"PE" = (
+/obj/floor_decal/techfloor{
+ dir = 9;
+ icon_state = "techfloor_edges"
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -23;
+ pixel_y = 0
+ },
+/obj/structure/bed/chair,
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/safe_room/thirddeck)
+"PF" = (
+/obj/floor_decal/corner/blue/diagonal{
+ dir = 4
+ },
+/obj/structure/table/steel,
+/obj/item/board,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24;
+ pixel_y = 0
+ },
+/turf/simulated/floor/tiled/dark,
+/area/vacant/mess)
+"PG" = (
+/obj/floor_decal/spline/plain/red,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/gym)
+"PH" = (
+/obj/floor_decal/corner/green/half,
+/obj/structure/flora/pottedplant/minitree,
+/obj/machinery/light/spot,
+/turf/simulated/floor/tiled/dark/monotile,
+/area/crew_quarters/observation)
+"PI" = (
+/obj/structure/closet/chefcloset_torch,
+/turf/simulated/floor/tiled/freezer,
+/area/crew_quarters/galleybackroom)
+"PJ" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white/monotile,
+/area/crew_quarters/sleep/cryo)
+"PL" = (
+/obj/machinery/atmospherics/unary/vent_pump/siphon/on/atmos{
+ dir = 1;
+ internal_pressure_bound = 35000;
+ internal_pressure_bound_default = 35000
+ },
+/obj/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/reinforced/airless,
+/area/thruster/d3starboard)
+"PN" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 8
+ },
+/obj/floor_decal/industrial/hatch/orange,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_x = 0;
+ pixel_y = -24
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/thruster/d3starboard)
+"PO" = (
+/obj/floor_decal/corner/blue/diagonal{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/mess)
+"PP" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/starboard)
+"PQ" = (
+/obj/structure/table/rack{
+ dir = 8
+ },
+/obj/item/stack/material/glass/phoronrglass{
+ amount = 20
+ },
+/obj/item/stack/material/glass/phoronrglass{
+ amount = 20
+ },
+/obj/item/stack/material/titanium/ten,
+/obj/item/stack/material/titanium/ten,
+/obj/item/stack/material/titanium/ten,
+/obj/item/stack/material/titanium/ten,
+/obj/floor_decal/industrial/outline/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark/monotile,
+/area/engineering/hardstorage)
+"PT" = (
+/obj/floor_decal/corner/lime/three_quarters{
+ dir = 4
+ },
+/obj/machinery/vending/coffee{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/aft)
+"PU" = (
+/obj/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/blue,
+/area/crew_quarters/virtual_reality)
+"PV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/thirddeck/fore)
+"PW" = (
+/obj/machinery/atmospherics/pipe/simple/visible/fuel{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/hatch/maintenance,
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/thruster/d3starboard)
+"PX" = (
+/obj/floor_decal/corner/green/half{
+ dir = 1;
+ icon_state = "bordercolorhalf"
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/thirddeck/aft)
+"PY" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/fuel{
+ dir = 4
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/thruster/d3starboard)
+"PZ" = (
+/obj/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/obj/machinery/newscaster{
+ pixel_x = -32
+ },
+/obj/machinery/light_switch{
+ pixel_x = -24;
+ pixel_y = 24
+ },
+/turf/simulated/floor/carpet/blue,
+/area/crew_quarters/virtual_reality)
+"Qd" = (
+/obj/structure/reagent_dispensers/water_cooler{
+ dir = 4;
+ icon_state = "water_cooler"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/gym)
+"Qe" = (
+/obj/machinery/smartfridge,
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled,
+/area/hydroponics/storage)
+"Qf" = (
+/obj/structure/hygiene/faucet,
+/turf/simulated/floor/pool,
+/area/crew_quarters/observation)
+"Qi" = (
+/obj/machinery/atmospherics/binary/pump/high_power/on{
+ dir = 1
+ },
+/turf/simulated/wall/ocp_wall,
+/area/thruster/d3port)
+"Qj" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/command/disperser)
+"Qk" = (
+/obj/machinery/button/blast_door{
+ id_tag = "d3portnacelle";
+ name = "combustion chamber blast door control";
+ pixel_x = 0;
+ pixel_y = 24
+ },
+/obj/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/visible/fuel{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/thruster/d3port)
+"Qm" = (
+/obj/machinery/light/small{
+ dir = 4;
+ pixel_y = 8
+ },
+/obj/structure/railing/mapped{
+ dir = 8;
+ icon_state = "railing0-1"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/aftport)
+"Qn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/item/device/radio/intercom{
+ dir = 1;
+ pixel_y = -28
+ },
+/obj/structure/table/standard,
+/obj/machinery/reagentgrinder/juicer,
+/obj/item/reagent_containers/glass/beaker{
+ pixel_x = 5
+ },
+/obj/item/reagent_containers/glass/beaker{
+ pixel_x = 5
+ },
+/obj/floor_decal/corner/green{
+ dir = 10;
+ icon_state = "corner_white"
+ },
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"Qo" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/floor_decal/spline/fancy/wood{
+ dir = 1;
+ icon_state = "spline_fancy"
+ },
+/obj/machinery/vr_pod{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/blue,
+/area/crew_quarters/virtual_reality)
+"Qq" = (
+/turf/simulated/wall/r_wall/hull,
+/area/command/disperser)
+"Qr" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/fuel{
+ dir = 4
+ },
+/obj/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/thruster/d3starboard)
+"Qs" = (
+/obj/floor_decal/corner/green{
+ dir = 5
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/aft)
+"Qu" = (
+/obj/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/machinery/smartfridge/foods,
+/obj/machinery/door/blast/shutters{
+ dir = 2;
+ id_tag = "kitchen";
+ name = "Kitchen Shutters"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/galley)
+"Qv" = (
+/obj/machinery/computer/modular/preset/security,
+/obj/floor_decal/corner/red{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/habcheck)
+"Qx" = (
+/obj/machinery/computer/modular/preset/security,
+/obj/floor_decal/corner/red/mono,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/dark/monotile,
+/area/security/habcheck)
+"Qy" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/port)
+"Qz" = (
+/obj/machinery/alarm{
+ dir = 1;
+ icon_state = "alarm0";
+ pixel_y = -22
+ },
+/obj/random_multi/single_item/punitelly,
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/safe_room/thirddeck)
+"QC" = (
+/turf/simulated/floor/tiled/monotile,
+/area/vacant/brig)
+"QE" = (
+/obj/structure/table/rack,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/item/device/binoculars,
+/obj/floor_decal/corner/red{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/habcheck)
+"QF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/floor_decal/corner/green/half,
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/thirddeck/aft)
+"QH" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 8
+ },
+/turf/simulated/floor/lino,
+/area/crew_quarters/office)
+"QJ" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/fore)
+"QK" = (
+/obj/machinery/firealarm{
+ dir = 2;
+ pixel_y = 24
+ },
+/obj/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/engineering/hardstorage)
+"QL" = (
+/obj/floor_decal/industrial/hatch/yellow,
+/obj/structure/ship_munition/disperser_charge/mining,
+/turf/simulated/floor/tiled/dark,
+/area/command/disperser)
+"QM" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/obj/floor_decal/corner/green{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/center)
+"QQ" = (
+/obj/effect/wallframe_spawn/no_grille,
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plating,
+/area/crew_quarters/observation)
+"QR" = (
+/obj/machinery/door/airlock/glass/civilian{
+ name = "Recreation"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/crew_quarters/recreation)
+"QS" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/forestarboard)
+"QT" = (
+/obj/structure/table/rack,
+/obj/random/maintenance/solgov,
+/turf/simulated/floor/tiled/monotile,
+/area/maintenance/thirddeck/starboard)
+"QU" = (
+/obj/structure/railing/mapped{
+ dir = 4;
+ icon_state = "railing0-1"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/aftstarboard)
+"QV" = (
+/obj/floor_decal/spline/plain/red,
+/obj/structure/window/reinforced,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/gym)
+"QX" = (
+/obj/machinery/atmospherics/pipe/simple/visible/fuel,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/hatch/maintenance,
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/thruster/d3starboard)
+"QY" = (
+/obj/structure/railing/mapped,
+/obj/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/starboard)
+"QZ" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/visible/blue,
+/obj/machinery/meter,
+/obj/wallframe_spawn/reinforced_phoron,
+/turf/simulated/floor/reinforced,
+/area/thruster/d3port)
+"Ra" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/obj/floor_decal/industrial/warning,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/aftport)
+"Rd" = (
+/obj/machinery/power/apc{
+ dir = 2;
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/wood/walnut,
+/area/crew_quarters/virtual_reality)
+"Re" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/office)
+"Rf" = (
+/turf/simulated/floor/wood,
+/area/crew_quarters/gym)
+"Ri" = (
+/obj/structure/sign/warning/fire{
+ dir = 2
+ },
+/turf/simulated/wall/ocp_wall,
+/area/thruster/d3port)
+"Rl" = (
+/obj/floor_decal/industrial/hatch,
+/obj/structure/closet/crate{
+ name = "hermes crate"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/command/disperser)
+"Rm" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/chaplain{
+ name = "Chaplain's Office"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/chapel/office)
+"Rn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/light,
+/obj/structure/table/standard,
+/obj/floor_decal/corner/green{
+ dir = 10;
+ icon_state = "corner_white"
+ },
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"Ro" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/gym)
+"Rp" = (
+/obj/floor_decal/spline/fancy/wood{
+ dir = 4
+ },
+/obj/structure/sign/warning/nosmoking_1{
+ dir = 4;
+ pixel_x = 16
+ },
+/turf/simulated/floor/carpet/blue,
+/area/crew_quarters/virtual_reality)
+"Rq" = (
+/obj/machinery/status_display,
+/turf/simulated/wall/prepainted,
+/area/crew_quarters/galley)
+"Rr" = (
+/obj/structure/cable{
+ d1 = 32;
+ d2 = 1;
+ icon_state = "32-1"
+ },
+/obj/structure/railing/mapped{
+ dir = 1;
+ icon_state = "railing0-1"
+ },
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/visible/fuel{
+ dir = 9
+ },
+/turf/simulated/open,
+/area/maintenance/thirddeck/aftport)
+"Rs" = (
+/obj/structure/catwalk,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/aftstarboard)
+"Rv" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/machinery/meter,
+/obj/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/fuel,
+/turf/simulated/floor/tiled/techfloor,
+/area/thruster/d3port)
+"Ry" = (
+/obj/machinery/alarm/cold{
+ dir = 4;
+ icon_state = "alarm0";
+ pixel_x = -22
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/crew_quarters/galleybackroom)
+"RA" = (
+/obj/machinery/camera/network/third_deck{
+ c_tag = "Third Deck Saferoom"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/crew_quarters/safe_room/thirddeck)
+"RB" = (
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/starboard)
+"RC" = (
+/obj/floor_decal/corner/green{
+ dir = 10
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/aft)
+"RE" = (
+/obj/machinery/alarm{
+ pixel_y = 16
+ },
+/obj/structure/hygiene/shower{
+ dir = 8;
+ icon_state = "shower";
+ pixel_x = 0;
+ pixel_y = 0
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/crew_quarters/head)
+"RF" = (
+/obj/random/junk,
+/turf/simulated/floor/tiled,
+/area/maintenance/thirddeck/starboard)
+"RG" = (
+/turf/simulated/wall/prepainted,
+/area/chapel/main)
+"RH" = (
+/obj/machinery/atmospherics/pipe/simple/visible/fuel{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/hatch/maintenance,
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/thruster/d3port)
+"RI" = (
+/obj/machinery/atmospherics/pipe/simple/visible/fuel,
+/turf/simulated/wall/r_wall/hull,
+/area/thruster/d3starboard)
+"RM" = (
+/obj/machinery/atmospherics/valve/digital{
+ dir = 4;
+ id_tag = "fuelmode"
+ },
+/obj/floor_decal/industrial/warning,
+/obj/floor_decal/industrial/outline/red,
+/turf/simulated/floor/tiled/techfloor,
+/area/thruster/d3starboard)
+"RN" = (
+/obj/floor_decal/corner/blue/diagonal{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/mess)
+"RP" = (
+/obj/machinery/door/airlock/glass/civilian{
+ name = "Observation"
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/crew_quarters/observation)
+"RQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/thirddeck/center)
+"RR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/item/flame/candle/scented/incense{
+ pixel_x = 12;
+ pixel_y = 12
+ },
+/obj/floor_decal/corner/purple{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/memorial)
+"RS" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ dir = 10;
+ icon_state = "intact"
+ },
+/obj/machinery/meter,
+/obj/wallframe_spawn/reinforced_phoron,
+/turf/simulated/floor/reinforced,
+/area/thruster/d3port)
+"RT" = (
+/obj/structure/table/rack,
+/obj/random/maintenance/solgov,
+/obj/random/maintenance/solgov,
+/obj/random/maintenance/solgov,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/port)
+"RV" = (
+/obj/machinery/portable_atmospherics/powered/pump/filled,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/foreport)
+"RW" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/vending/fitness{
+ dir = 4;
+ icon_state = "fitness"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/gym)
+"Sb" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/fuel{
+ dir = 4
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/thruster/d3port)
+"Sf" = (
+/obj/structure/fitness/punchingbag,
+/turf/simulated/floor/wood,
+/area/crew_quarters/gym)
+"Sg" = (
+/obj/machinery/door/blast/regular{
+ dir = 1;
+ id_tag = "cChamber3sV";
+ name = "Chamber Vent"
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/thruster/d3starboard)
+"Sh" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/dark/monotile,
+/area/crew_quarters/observation)
+"Si" = (
+/obj/machinery/atmospherics/pipe/simple/visible/fuel,
+/obj/machinery/door/airlock/external,
+/obj/machinery/door/blast/regular{
+ dir = 1;
+ id_tag = "d3portnacelle"
+ },
+/turf/simulated/floor/reinforced,
+/area/thruster/d3port)
+"Sj" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/floor_decal/industrial/outline/yellow,
+/obj/item/device/radio/intercom{
+ dir = 4;
+ pixel_x = -21
+ },
+/obj/machinery/recharge_station,
+/turf/simulated/floor/tiled/monotile,
+/area/crew_quarters/cryolocker)
+"Sm" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9;
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green,
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/obj/floor_decal/corner/red/mono,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/light_switch{
+ pixel_x = -22;
+ pixel_y = 26
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/dark/monotile,
+/area/security/habcheck)
+"Sn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9;
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/closet/emcloset,
+/obj/floor_decal/corner/green{
+ dir = 10;
+ icon_state = "corner_white"
+ },
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"So" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9;
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/port)
+"Sp" = (
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/space)
+"Sq" = (
+/obj/structure/sign/hydrostorage{
+ dir = 4;
+ icon_state = "hydro"
+ },
+/turf/simulated/wall/prepainted,
+/area/hydroponics)
+"Ss" = (
+/obj/structure/railing/mapped{
+ dir = 8;
+ icon_state = "railing0-1"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/railing/mapped,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/starboard)
+"St" = (
+/obj/structure/railing/mapped,
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/zpipe/down/supply,
+/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers,
+/turf/simulated/open,
+/area/maintenance/thirddeck/aftstarboard)
+"Su" = (
+/obj/wallframe_spawn/reinforced,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 2;
+ icon_state = "pdoor0";
+ id_tag = "d3aft_shutters";
+ name = "Blast Shields";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/hallway/primary/thirddeck/aft)
+"Sv" = (
+/obj/floor_decal/corner/blue/diagonal{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/mess)
+"Sw" = (
+/obj/structure/sign/hydro,
+/turf/simulated/wall/prepainted,
+/area/hydroponics)
+"Sx" = (
+/obj/structure/table/rack,
+/obj/random/maintenance/solgov,
+/obj/random/maintenance/solgov,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/starboard)
+"Sy" = (
+/obj/machinery/atmospherics/unary/outlet_injector{
+ dir = 2;
+ frequency = 1441;
+ icon_state = "map_injector";
+ id = "d3ph_in";
+ use_power = 1
+ },
+/turf/simulated/floor/reinforced/hydrogen,
+/area/thruster/d3port)
+"SA" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/freezer,
+/area/crew_quarters/galleybackroom)
+"SC" = (
+/obj/structure/railing/mapped{
+ dir = 8;
+ icon_state = "railing0-1"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/forestarboard)
+"SD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/visible/fuel,
+/obj/machinery/door/firedoor,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/thirddeck/aftport)
+"SE" = (
+/obj/effect/wallframe_spawn/no_grille,
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plating,
+/area/hallway/primary/thirddeck/fore)
+"SH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/fuel{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/aftstarboard)
+"SI" = (
+/obj/structure/railing/mapped{
+ dir = 1;
+ icon_state = "railing0-1"
+ },
+/obj/machinery/atmospherics/pipe/zpipe/down/cyan{
+ dir = 1;
+ icon_state = "down"
+ },
+/obj/structure/lattice,
+/turf/simulated/open,
+/area/maintenance/thirddeck/port)
+"SJ" = (
+/obj/machinery/air_sensor{
+ id_tag = "d3so2_sensor"
+ },
+/turf/simulated/floor/reinforced/oxygen,
+/area/thruster/d3starboard)
+"SK" = (
+/obj/structure/sign/memorial,
+/obj/structure/sign/double/solgovflag/left{
+ pixel_x = -16;
+ pixel_y = 32
+ },
+/obj/structure/sign/double/solgovflag/right{
+ pixel_x = 16;
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/dark/monotile,
+/area/chapel/memorial)
+"SL" = (
+/obj/structure/table/rack{
+ dir = 8
+ },
+/obj/item/tank/emergency/oxygen/double,
+/obj/item/tank/emergency/oxygen/double,
+/obj/item/tank/emergency/oxygen/double,
+/obj/item/tank/emergency/oxygen/double,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/floor_decal/corner/yellow/half{
+ dir = 8;
+ icon_state = "bordercolorhalf"
+ },
+/obj/floor_decal/industrial/outline/yellow,
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -23;
+ pixel_y = 0
+ },
+/turf/simulated/floor/tiled/dark/monotile,
+/area/engineering/hardstorage)
+"SN" = (
+/obj/effect/wallframe_spawn/no_grille,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/crew_quarters/virtual_reality)
+"SO" = (
+/obj/machinery/power/terminal{
+ dir = 8
+ },
+/obj/machinery/pointdefense{
+ id_tag = null;
+ initial_id_tag = "torch_primary_pd"
+ },
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/space)
+"SP" = (
+/obj/structure/table/standard,
+/obj/machinery/fabricator/micro/bartender,
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/bar)
+"SS" = (
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/sortjunction/flipped{
+ dir = 1;
+ name = "Galley";
+ sort_type = "Galley"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/floor_decal/corner/blue/diagonal{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/mess)
+"ST" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9;
+ pixel_y = 0
+ },
+/obj/item/stack/material/plastic/ten,
+/turf/simulated/floor/tiled/freezer,
+/area/crew_quarters/galleybackroom)
+"SU" = (
+/obj/structure/fitness/weightlifter,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/gym)
+"SW" = (
+/obj/floor_decal/spline/fancy/black{
+ dir = 6;
+ icon_state = "spline_fancy"
+ },
+/turf/simulated/floor/wood/maple,
+/area/chapel/main)
+"SX" = (
+/obj/structure/table/steel,
+/obj/random/maintenance/solgov,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/foreport)
+"SY" = (
+/obj/floor_decal/industrial/outline/grey,
+/obj/machinery/computer/modular/preset/engineering{
+ dir = 4;
+ icon_state = "console"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/aftstarboard)
+"Tb" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/floor_decal/corner/blue/diagonal{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/mess)
+"Td" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/portable_atmospherics/hydroponics,
+/obj/floor_decal/corner/green/mono,
+/obj/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled/monotile,
+/area/hydroponics)
+"Te" = (
+/obj/structure/table/steel,
+/obj/machinery/recharger,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/foreport)
+"Tg" = (
+/obj/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/galley)
+"Th" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/wood/walnut,
+/area/crew_quarters/observation)
+"Ti" = (
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/crew_quarters/virtual_reality)
+"Tk" = (
+/obj/structure/railing/mapped{
+ dir = 4;
+ icon_state = "railing0-1"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/aftport)
+"Tl" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/floor_decal/spline/fancy/wood,
+/obj/machinery/vr_pod{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/blue,
+/area/crew_quarters/virtual_reality)
+"Tm" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/structure/table/standard,
+/obj/floor_decal/corner/green{
+ dir = 5
+ },
+/obj/floor_decal/corner/green{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"Tn" = (
+/obj/floor_decal/corner/lime{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/aft)
+"To" = (
+/obj/structure/lattice,
+/turf/simulated/wall/r_wall/hull,
+/area/space)
+"Tp" = (
+/obj/random/obstruction,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/foreport)
+"Tq" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/floor_decal/corner/paleblue{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/fore)
+"Tr" = (
+/obj/floor_decal/corner/red/diagonal,
+/turf/simulated/floor/tiled/dark,
+/area/vacant/mess)
+"Ts" = (
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/port)
+"Tt" = (
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_x = 0;
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/crew_quarters/head)
+"Tu" = (
+/obj/wallframe_spawn/reinforced,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 4;
+ icon_state = "pdoor0";
+ id_tag = "d3aft_shutters";
+ name = "Blast Shields";
+ opacity = 0
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/plating,
+/area/hallway/primary/thirddeck/aft)
+"Tv" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/lino,
+/area/crew_quarters/office)
+"Tw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/catwalk,
+/obj/floor_decal/industrial/warning/corner,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/port)
+"Tx" = (
+/obj/floor_decal/corner/blue/diagonal{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/mess)
+"TB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan,
+/obj/structure/catwalk,
+/turf/simulated/open,
+/area/maintenance/thirddeck/port)
+"TC" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/aft)
+"TE" = (
+/turf/simulated/wall/prepainted,
+/area/chapel/office)
+"TF" = (
+/obj/effect/wallframe_spawn/no_grille,
+/turf/simulated/floor/plating,
+/area/crew_quarters/virtual_reality)
+"TG" = (
+/obj/machinery/atmospherics/unary/outlet_injector{
+ dir = 2;
+ frequency = 1441;
+ id = "d3so2_in";
+ injecting = 1;
+ use_power = 1
+ },
+/turf/simulated/floor/reinforced/oxygen,
+/area/thruster/d3starboard)
+"TH" = (
+/obj/structure/table/marble,
+/obj/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/machinery/fabricator/micro{
+ pixel_x = 8
+ },
+/obj/machinery/door/blast/shutters{
+ dir = 2;
+ id_tag = "kitchen";
+ name = "Kitchen Shutters"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/galley)
+"TJ" = (
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/forestarboard)
+"TL" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/camera/network/third_deck{
+ c_tag = "Computer Lab";
+ dir = 1
+ },
+/turf/simulated/floor/lino,
+/area/crew_quarters/office)
+"TN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ pixel_y = 24
+ },
+/obj/structure/railing/mapped,
+/obj/structure/railing/mapped{
+ dir = 4;
+ icon_state = "railing0-1"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/port)
+"TO" = (
+/obj/machinery/door/airlock/hatch/maintenance,
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/hallway/primary/thirddeck/center)
+"TQ" = (
+/obj/floor_decal/industrial/outline/grey,
+/obj/structure/largecrate,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/port)
+"TR" = (
+/obj/wallframe_spawn/reinforced/polarized/no_grille{
+ id = "chapel_windows"
+ },
+/turf/simulated/floor/plating,
+/area/chapel/main)
+"TS" = (
+/obj/floor_decal/corner/red{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/habcheck)
+"TV" = (
+/obj/floor_decal/industrial/hatch/yellow,
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/storage/tools)
+"TW" = (
+/obj/structure/table/marble,
+/obj/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/machinery/camera/network/third_deck{
+ c_tag = "Mess Hall - Galley";
+ dir = 4
+ },
+/obj/machinery/cooker/cereal,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/galley)
+"TX" = (
+/obj/machinery/portable_atmospherics/hydroponics,
+/obj/floor_decal/corner/green/mono,
+/obj/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled/monotile,
+/area/hydroponics)
+"TY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/camera/network/third_deck{
+ c_tag = "Chapel - Chaplain's Office";
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/office)
+"TZ" = (
+/obj/structure/closet/athletic_mixed,
+/turf/simulated/floor/tiled/freezer,
+/area/crew_quarters/head)
+"Ub" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/closet/medical_wall/filled{
+ pixel_y = -32
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/sleep/cryo)
+"Uc" = (
+/obj/structure/bed/chair/comfy/black{
+ dir = 1
+ },
+/obj/floor_decal/spline/fancy/wood,
+/turf/simulated/floor/wood/walnut,
+/area/crew_quarters/recreation)
+"Ud" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ dir = 6;
+ icon_state = "intact"
+ },
+/turf/simulated/floor/reinforced/oxygen,
+/area/thruster/d3starboard)
+"Uf" = (
+/obj/machinery/atmospherics/unary/outlet_injector{
+ injecting = 1;
+ use_power = 1
+ },
+/turf/simulated/floor/airless,
+/area/thruster/d3port)
+"Ug" = (
+/obj/machinery/smartfridge/drinks{
+ dir = 4;
+ icon_state = "fridge_dark"
+ },
+/obj/machinery/door/blast/shutters{
+ dir = 4;
+ id_tag = "bar";
+ name = "Bar Shutters"
+ },
+/turf/simulated/floor/lino,
+/area/crew_quarters/bar)
+"Uh" = (
+/obj/structure/fountain/mundane,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/wood/walnut,
+/area/crew_quarters/observation)
+"Ui" = (
+/obj/machinery/meter/turf,
+/turf/simulated/floor/airless,
+/area/command/disperser)
+"Um" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/closet/shipping_wall/filled{
+ pixel_y = 32
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/floor_decal/corner/green{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"Un" = (
+/obj/machinery/status_display,
+/turf/simulated/wall/prepainted,
+/area/crew_quarters/office)
+"Uo" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/floor_decal/corner/paleblue{
+ dir = 10
+ },
+/obj/floor_decal/industrial/warning/corner,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/fore)
+"Up" = (
+/turf/simulated/floor/tiled/dark,
+/area/engineering/hardstorage)
+"Uq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/crew_quarters/galleybackroom)
+"Ur" = (
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/foreport)
+"Us" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/floor_decal/industrial/warning/fulltile,
+/obj/structure/disposalpipe/junction{
+ dir = 4;
+ icon_state = "pipe-j1"
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/hallway/primary/thirddeck/center)
+"Ut" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 1
+ },
+/obj/floor_decal/industrial/warning,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/foreport)
+"Uu" = (
+/obj/structure/railing/mapped{
+ dir = 1;
+ icon_state = "railing0-1"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9;
+ pixel_y = 0
+ },
+/obj/floor_decal/industrial/warning{
+ dir = 4;
+ icon_state = "warning"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/port)
+"Uv" = (
+/obj/structure/railing/mapped{
+ dir = 1;
+ icon_state = "railing0-1"
+ },
+/obj/structure/railing/mapped{
+ dir = 4;
+ icon_state = "railing0-1"
+ },
+/turf/simulated/open,
+/area/maintenance/thirddeck/starboard)
+"Uw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/camera/network/third_deck{
+ c_tag = "Chapel - Memorial Room";
+ dir = 1
+ },
+/obj/floor_decal/corner/purple{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/memorial)
+"Ux" = (
+/obj/structure/table/rack,
+/obj/random/maintenance/solgov,
+/obj/random/maintenance/solgov,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/starboard)
+"Uy" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_x = 0;
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/forestarboard)
+"UA" = (
+/obj/wallframe_spawn/reinforced,
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ dir = 2;
+ icon_state = "shutter0";
+ id_tag = "hab_checkpoint_shutters";
+ name = "Hangar Deck Checkpoint Shutters";
+ opacity = 0
+ },
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/plating,
+/area/security/habcheck)
+"UC" = (
+/obj/floor_decal/spline/plain/red,
+/obj/structure/window/reinforced,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/gym)
+"UD" = (
+/obj/structure/grille,
+/obj/structure/wall_frame,
+/turf/simulated/floor/plating,
+/area/vacant/brig)
+"UE" = (
+/obj/machinery/portable_atmospherics/powered/scrubber,
+/obj/floor_decal/industrial/outline/grey,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/port)
+"UF" = (
+/obj/machinery/atmospherics/omni/mixer,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/foreport)
+"UG" = (
+/obj/structure/catwalk,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/aftstarboard)
+"UH" = (
+/obj/machinery/computer/modular/preset/civilian{
+ dir = 1;
+ icon_state = "console"
+ },
+/obj/structure/window/reinforced{
+ dir = 8;
+ health = 1e+006
+ },
+/obj/floor_decal/spline/fancy/wood{
+ dir = 1;
+ icon_state = "spline_fancy"
+ },
+/obj/machinery/light,
+/turf/simulated/floor/wood/walnut,
+/area/crew_quarters/recreation)
+"UI" = (
+/obj/structure/table/steel,
+/obj/random/tech_supply,
+/obj/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/foreport)
+"UJ" = (
+/obj/structure/bed/chair/comfy/black{
+ dir = 8
+ },
+/turf/simulated/floor/wood/walnut,
+/area/crew_quarters/recreation)
+"UK" = (
+/obj/floor_decal/corner/blue/diagonal{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/mess)
+"UL" = (
+/obj/floor_decal/techfloor{
+ dir = 6;
+ icon_state = "techfloor_edges"
+ },
+/obj/machinery/button/alternate/door/bolts{
+ id_tag = "civsafedoorport";
+ name = "safe room door-control";
+ pixel_x = -32;
+ pixel_y = -32
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/safe_room/thirddeck)
+"UM" = (
+/obj/floor_decal/corner/green/half{
+ dir = 1;
+ icon_state = "bordercolorhalf"
+ },
+/obj/machinery/button/blast_door{
+ id_tag = "d3fore_shutters";
+ name = "Garden Shutter Control";
+ pixel_x = -7;
+ pixel_y = 23
+ },
+/turf/simulated/floor/tiled/dark/monotile,
+/area/crew_quarters/observation)
+"UN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/catwalk_plated/dark,
+/turf/simulated/floor/plating,
+/area/command/disperser)
+"UO" = (
+/obj/structure/largecrate,
+/obj/random/maintenance/solgov,
+/obj/random/maintenance/solgov,
+/obj/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/foreport)
+"UQ" = (
+/obj/item/device/radio/intercom{
+ dir = 1;
+ pixel_y = -28
+ },
+/obj/machinery/light,
+/obj/floor_decal/corner/green{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/center)
+"UR" = (
+/obj/machinery/sparker{
+ id_tag = "engines";
+ pixel_x = -24
+ },
+/obj/machinery/atmospherics/unary/vent_pump/siphon/on/atmos{
+ dir = 4;
+ internal_pressure_bound = 35000;
+ internal_pressure_bound_default = 35000
+ },
+/obj/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/reinforced/airless,
+/area/thruster/d3starboard)
+"UU" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 8
+ },
+/obj/machinery/portable_atmospherics/canister/air,
+/obj/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/plating,
+/area/command/disperser)
+"UV" = (
+/obj/floor_decal/corner/green{
+ dir = 8;
+ icon_state = "corner_white"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/aft)
+"UX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/catwalk_plated,
+/turf/simulated/floor/plating,
+/area/crew_quarters/cryolocker)
+"UY" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/sleep/cryo)
+"UZ" = (
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/port)
+"Vb" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_y = -32
+ },
+/obj/floor_decal/corner/paleblue,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/fore)
+"Vc" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/gym)
+"Vd" = (
+/obj/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/engineering/hardstorage)
+"Ve" = (
+/obj/machinery/power/port_gen/pacman{
+ anchored = 0;
+ sheets = 25
+ },
+/obj/floor_decal/corner/yellow/half{
+ dir = 8;
+ icon_state = "bordercolorhalf"
+ },
+/obj/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark/monotile,
+/area/engineering/hardstorage)
+"Vf" = (
+/obj/structure/railing/mapped{
+ dir = 1;
+ icon_state = "railing0-1"
+ },
+/obj/structure/railing/mapped{
+ dir = 4;
+ icon_state = "railing0-1"
+ },
+/obj/machinery/atmospherics/pipe/zpipe/up/cyan{
+ dir = 8;
+ icon_state = "up"
+ },
+/obj/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/port)
+"Vg" = (
+/obj/structure/table/marble,
+/obj/machinery/door/blast/shutters{
+ dir = 4;
+ id_tag = "bar";
+ name = "Bar Shutters"
+ },
+/turf/simulated/floor/lino,
+/area/crew_quarters/bar)
+"Vi" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/glass/civilian{
+ name = "Galley"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/bar)
+"Vl" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/floor_decal/corner/paleblue{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/fore)
+"Vm" = (
+/obj/floor_decal/corner/green{
+ dir = 9
+ },
+/obj/floor_decal/corner/green{
+ dir = 5
+ },
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"Vn" = (
+/obj/floor_decal/corner/lime{
+ dir = 1
+ },
+/obj/machinery/button/blast_door{
+ desc = "A remote control-switch for shutters.";
+ id_tag = "d3aft_shutters";
+ name = "Window Shutters";
+ pixel_x = -26;
+ pixel_y = 26
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/aft)
+"Vo" = (
+/obj/wallframe_spawn/reinforced/hull,
+/obj/structure/sign/solgov,
+/obj/machinery/door/blast/regular/open{
+ dir = 4;
+ icon_state = "pdoor0";
+ id_tag = "bsa-window";
+ name = "Observation Blast Door"
+ },
+/turf/simulated/floor/plating,
+/area/command/disperser)
+"Vp" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/fuel{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/thruster/d3starboard)
+"Vr" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/wall/r_wall/hull,
+/area/maintenance/thirddeck/port)
+"Vt" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/item/device/radio/intercom/entertainment{
+ dir = 4;
+ pixel_x = -22
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark/monotile,
+/area/crew_quarters/observation)
+"Vv" = (
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/starboard)
+"Vw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/port)
+"Vx" = (
+/turf/simulated/wall/prepainted,
+/area/security/habcheck)
+"VA" = (
+/obj/machinery/atmospherics/pipe/simple/visible/fuel,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/hatch/maintenance,
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/thruster/d3port)
+"VB" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/office)
+"VC" = (
+/obj/machinery/newscaster{
+ pixel_y = 32
+ },
+/obj/floor_decal/corner/green/half{
+ dir = 1;
+ icon_state = "bordercolorhalf"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/center)
+"VD" = (
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/starboard)
+"VE" = (
+/obj/floor_decal/corner/green/mono,
+/obj/structure/extinguisher_cabinet{
+ pixel_y = -32
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/floor_decal/industrial/hatch/yellow,
+/obj/machinery/disposal,
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/thirddeck/aft)
+"VF" = (
+/turf/simulated/floor/tiled,
+/area/crew_quarters/gym)
+"VG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/airlock/hatch/maintenance,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/hallway/primary/thirddeck/aft)
+"VI" = (
+/obj/structure/ladder,
+/obj/floor_decal/corner/red/mono,
+/obj/floor_decal/industrial/hatch/yellow,
+/obj/catwalk_plated/dark,
+/obj/machinery/light,
+/obj/machinery/alarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 21
+ },
+/turf/simulated/floor/tiled/dark/monotile,
+/area/security/habcheck)
+"VJ" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/gym)
+"VL" = (
+/obj/floor_decal/techfloor{
+ dir = 10;
+ icon_state = "techfloor_edges"
+ },
+/obj/machinery/newscaster{
+ pixel_x = -32
+ },
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/safe_room/thirddeck)
+"VM" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/thirddeck/center)
+"VQ" = (
+/obj/structure/bed/chair/comfy/black{
+ dir = 8
+ },
+/obj/machinery/button/blast_door{
+ desc = "A remote control-switch for the Bluespace Artillery's core.";
+ id_tag = "bsa-core";
+ name = "Artillery Core Blast Doors";
+ pixel_x = -5;
+ pixel_y = 28
+ },
+/obj/machinery/button/blast_door{
+ desc = "A remote control-switch for the Bluespace Artillery observation windows.";
+ id_tag = "bsa-window";
+ name = "Observation Blast Doors";
+ pixel_x = 5;
+ pixel_y = 28
+ },
+/obj/floor_decal/corner/grey/border{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/command/disperser)
+"VR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/obj/structure/lattice,
+/turf/simulated/open,
+/area/maintenance/thirddeck/starboard)
+"VT" = (
+/obj/structure/disposalpipe/sortjunction/flipped{
+ dir = 4;
+ name = "Hydroponics";
+ sort_type = "Hydroponics"
+ },
+/obj/floor_decal/corner/blue/diagonal{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/mess)
+"VU" = (
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/fore)
+"VV" = (
+/obj/machinery/atmospherics/pipe/simple/visible/fuel{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/light_switch{
+ pixel_x = -24;
+ pixel_y = -24
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/thruster/d3port)
+"VW" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/floor_decal/industrial/warning/fulltile,
+/turf/simulated/floor/tiled/steel_grid,
+/area/hallway/primary/thirddeck/center)
+"VY" = (
+/obj/structure/stairs/west,
+/obj/floor_decal/corner/yellow/half{
+ dir = 8;
+ icon_state = "bordercolorhalf"
+ },
+/turf/simulated/floor/tiled/dark/monotile,
+/area/engineering/hardstorage)
+"VZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/starboard)
+"Wb" = (
+/turf/simulated/wall/prepainted,
+/area/crew_quarters/gym)
+"Wc" = (
+/obj/floor_decal/spline/fancy/wood/corner{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/blue,
+/area/crew_quarters/virtual_reality)
+"We" = (
+/obj/random_multi/single_item/poppy,
+/turf/simulated/floor/tiled,
+/area/vacant/brig)
+"Wh" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/thirddeck/aft)
+"Wi" = (
+/obj/machinery/power/terminal{
+ dir = 1;
+ icon_state = "term"
+ },
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/bluegrid,
+/area/tcommsat/chamber)
+"Wo" = (
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/manifold/visible/fuel{
+ dir = 4
+ },
+/obj/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/thruster/d3starboard)
+"Wp" = (
+/obj/structure/sign/warning/engineering_access,
+/turf/simulated/wall/prepainted,
+/area/engineering/hardstorage)
+"Wq" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/foreport)
+"Wr" = (
+/obj/structure/railing/mapped{
+ dir = 1;
+ icon_state = "railing0-1"
+ },
+/obj/machinery/atmospherics/valve/shutoff/fuel{
+ dir = 4
+ },
+/turf/simulated/open,
+/area/maintenance/thirddeck/aftport)
+"Ws" = (
+/obj/wallframe_spawn/reinforced_phoron,
+/turf/simulated/floor/reinforced,
+/area/thruster/d3port)
+"Wu" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/machinery/computer/air_control{
+ dir = 1;
+ frequency = 1441;
+ input_tag = "d3ph_in";
+ name = "Hydrogen Supply Control";
+ output_tag = "d3ph_out";
+ sensor_name = "Hydrogen Supply Tank";
+ sensor_tag = "d3ph_sensor"
+ },
+/obj/floor_decal/industrial/outline/orange,
+/turf/simulated/floor/tiled/techfloor,
+/area/thruster/d3port)
+"Wv" = (
+/obj/item/device/radio/intercom/entertainment{
+ dir = 4;
+ pixel_x = -22
+ },
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/wood/walnut,
+/area/crew_quarters/virtual_reality)
+"Ww" = (
+/turf/simulated/wall/r_wall/prepainted,
+/area/crew_quarters/observation)
+"Wx" = (
+/obj/floor_decal/corner/green{
+ dir = 5
+ },
+/obj/structure/closet/hydrant{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/aft)
+"Wy" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/fuel{
+ dir = 4
+ },
+/obj/machinery/air_sensor{
+ id_tag = "cChamber3p"
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/thruster/d3port)
+"Wz" = (
+/obj/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/turf/simulated/floor/wood/walnut,
+/area/crew_quarters/recreation)
+"WA" = (
+/obj/floor_decal/spline/fancy/black{
+ dir = 1;
+ icon_state = "spline_fancy"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/wood/maple,
+/area/chapel/main)
+"WB" = (
+/turf/simulated/floor/tiled/monotile,
+/area/crew_quarters/gym)
+"WC" = (
+/turf/simulated/floor/reinforced/hydrogen,
+/area/thruster/d3starboard)
+"WD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/floor_decal/corner/red/mono,
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ dir = 4;
+ icon_state = "shutter0";
+ id_tag = "hab_hallway_shutters";
+ name = "Habitation Deck Hallway Shutters";
+ opacity = 0
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/thirddeck/fore)
+"WE" = (
+/obj/floor_decal/corner/green{
+ dir = 5
+ },
+/obj/machinery/alarm{
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/aft)
+"WF" = (
+/obj/wallframe_spawn/reinforced_phoron,
+/turf/simulated/floor/tiled/techfloor,
+/area/thruster/d3starboard)
+"WG" = (
+/obj/floor_decal/corner/grey{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/universal,
+/turf/simulated/floor/tiled/dark,
+/area/command/disperser)
+"WH" = (
+/obj/floor_decal/corner/blue/diagonal{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/mess)
+"WL" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan,
+/turf/simulated/open,
+/area/maintenance/thirddeck/port)
+"WN" = (
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/starboard)
+"WP" = (
+/obj/structure/sign/warning/fire,
+/turf/simulated/wall/r_wall/prepainted,
+/area/engineering/hardstorage)
+"WQ" = (
+/obj/structure/table/steel,
+/obj/random/junk,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/forestarboard)
+"WT" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_x = 0;
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1"
+ },
+/obj/machinery/button/windowtint{
+ id = "chapel_windows";
+ pixel_x = -10;
+ pixel_y = 24
+ },
+/obj/machinery/light_switch{
+ pixel_x = 24;
+ pixel_y = 18
+ },
+/obj/machinery/button/holosign{
+ id_tag = "chapel";
+ pixel_x = -10;
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"WU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/port)
+"WW" = (
+/obj/structure/table/steel,
+/obj/item/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/pen/green,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/foreport)
+"WX" = (
+/obj/machinery/atmospherics/portables_connector,
+/obj/floor_decal/industrial/warning{
+ dir = 1;
+ icon_state = "warning"
+ },
+/obj/machinery/light/small{
+ dir = 4;
+ pixel_y = 0
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/foreport)
+"WY" = (
+/obj/structure/bed/chair/wood,
+/obj/floor_decal/corner/lime/mono,
+/obj/item/device/radio/intercom{
+ pixel_y = 23
+ },
+/obj/machinery/light/spot{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 6;
+ icon_state = "intact"
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/thirddeck/aft)
+"WZ" = (
+/obj/structure/disposalpipe/down{
+ dir = 8
+ },
+/obj/structure/lattice,
+/obj/structure/railing/mapped,
+/turf/simulated/open,
+/area/maintenance/thirddeck/starboard)
+"Xa" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 1;
+ icon_state = "officechair_preview"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/office)
+"Xb" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/unary/vent_pump/tank{
+ dir = 1;
+ external_pressure_bound = 0;
+ external_pressure_bound_default = 0;
+ icon_state = "map_vent_in";
+ id_tag = "d3sh_out";
+ initialize_directions = 1;
+ internal_pressure_bound = 2000;
+ internal_pressure_bound_default = 2000;
+ pressure_checks = 2;
+ pressure_checks_default = 2;
+ pump_direction = 0;
+ use_power = 1
+ },
+/turf/simulated/floor/reinforced/hydrogen,
+/area/thruster/d3starboard)
+"Xc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -25;
+ pixel_y = 0
+ },
+/turf/simulated/floor/tiled/dark,
+/area/teleporter/thirddeck)
+"Xd" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/command/disperser)
+"Xe" = (
+/obj/machinery/atmospherics/pipe/simple/visible/fuel{
+ dir = 4
+ },
+/obj/machinery/atmospherics/binary/pump/on{
+ dir = 2;
+ target_pressure = 15000
+ },
+/obj/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/floor_decal/industrial/outline/orange,
+/turf/simulated/floor/tiled/techfloor,
+/area/thruster/d3starboard)
+"Xf" = (
+/obj/machinery/alarm/server{
+ dir = 4;
+ pixel_x = -22;
+ pixel_y = 0;
+ req_access = list(list("ACCESS_ENGINE_EQUIP","ACCESS_ATMOS"))
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tcommsat/chamber)
+"Xg" = (
+/obj/floor_decal/spline/fancy/wood{
+ dir = 1;
+ icon_state = "spline_fancy"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/wood/walnut,
+/area/crew_quarters/recreation)
+"Xi" = (
+/obj/floor_decal/industrial/outline/grey,
+/obj/machinery/camera/network/command{
+ c_tag = "Telecommunications - Server Room Port";
+ dir = 1
+ },
+/obj/machinery/ntnet_relay,
+/turf/simulated/floor/bluegrid,
+/area/tcommsat/chamber)
+"Xj" = (
+/obj/floor_decal/industrial/outline/grey,
+/obj/machinery/floodlight,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/port)
+"Xk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/forestarboard)
+"Xm" = (
+/obj/machinery/chem_master/condimaster{
+ name = "CondiMaster Neo";
+ pixel_x = -5
+ },
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"Xn" = (
+/obj/floor_decal/corner/green{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/center)
+"Xp" = (
+/obj/machinery/floodlight,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/aftstarboard)
+"Xq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/dark/monotile,
+/area/crew_quarters/observation)
+"Xr" = (
+/obj/machinery/pointdefense{
+ id_tag = null;
+ initial_id_tag = "torch_primary_pd"
+ },
+/obj/machinery/power/terminal,
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/space)
+"Xs" = (
+/obj/floor_decal/corner/blue/diagonal{
+ dir = 4
+ },
+/obj/structure/table/standard{
+ name = "plastic table frame"
+ },
+/obj/item/board,
+/obj/item/device/radio/intercom/entertainment{
+ dir = 8;
+ pixel_x = 22
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/mess)
+"Xt" = (
+/obj/machinery/meter,
+/obj/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/visible/fuel{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/thruster/d3port)
+"Xu" = (
+/obj/structure/railing/mapped,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/aftstarboard)
+"Xv" = (
+/obj/catwalk_plated,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/hallway/primary/thirddeck/aft)
+"Xy" = (
+/obj/floor_decal/industrial/warning,
+/obj/machinery/access_button{
+ command = "cycle_exterior";
+ frequency = 1379;
+ master_tag = "bsa_airlock";
+ pixel_x = -20;
+ pixel_y = -20
+ },
+/turf/simulated/floor/airless,
+/area/command/disperser)
+"Xz" = (
+/obj/structure/closet/crate/solar,
+/obj/floor_decal/corner/yellow/half{
+ dir = 8;
+ icon_state = "bordercolorhalf"
+ },
+/obj/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark/monotile,
+/area/engineering/hardstorage)
+"XB" = (
+/obj/structure/table/woodentable/mahogany,
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -25;
+ pixel_y = 0
+ },
+/obj/item/tableflag,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/memorial)
+"XC" = (
+/obj/floor_decal/techfloor{
+ dir = 6;
+ icon_state = "techfloor_edges"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/engineering/hardstorage)
+"XD" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_x = 0;
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/floor_decal/corner/yellow/half{
+ dir = 1;
+ icon_state = "bordercolorhalf"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/engineering/hardstorage)
+"XE" = (
+/obj/structure/ore_box,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/starboard)
+"XF" = (
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/power/apc{
+ dir = 2;
+ name = "south bump";
+ pixel_y = -24
+ },
+/turf/simulated/floor/lino,
+/area/crew_quarters/office)
+"XH" = (
+/obj/floor_decal/corner_techfloor_grid{
+ dir = 4;
+ icon_state = "corner_techfloor_grid"
+ },
+/obj/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/teleporter/thirddeck)
+"XJ" = (
+/obj/machinery/camera/network/security{
+ c_tag = "Checkpoint - Deck Three";
+ dir = 1
+ },
+/obj/floor_decal/corner/red{
+ dir = 10
+ },
+/obj/machinery/hologram/holopad,
+/obj/floor_decal/industrial/outline/yellow,
+/obj/machinery/recharger/wallcharger{
+ dir = 1;
+ icon_state = "wrecharger0";
+ pixel_y = -22
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/habcheck)
+"XK" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/gym)
+"XM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/dark/monotile,
+/area/engineering/hardstorage)
+"XN" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1;
+ level = 2
+ },
+/turf/simulated/floor/tiled/dark,
+/area/command/disperser)
+"XO" = (
+/obj/floor_decal/corner/blue/diagonal{
+ dir = 4
+ },
+/obj/structure/bed/chair{
+ dir = 8;
+ icon_state = "chair_preview"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/mess)
+"XP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/catwalk_plated,
+/obj/structure/disposalpipe/junction{
+ dir = 4;
+ icon_state = "pipe-j1"
+ },
+/turf/simulated/floor/plating,
+/area/hallway/primary/thirddeck/aft)
+"XR" = (
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cryolocker)
+"XS" = (
+/obj/random/torchcloset,
+/obj/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/foreport)
+"XT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/table/standard,
+/obj/item/reagent_containers/dropper,
+/obj/floor_decal/corner/green{
+ dir = 10;
+ icon_state = "corner_white"
+ },
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"XU" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/machinery/light_switch{
+ pixel_x = 6;
+ pixel_y = -24
+ },
+/obj/structure/table/woodentable/maple,
+/obj/item/sticky_pad,
+/obj/item/device/taperecorder,
+/turf/simulated/floor/carpet/purple,
+/area/chapel/office)
+"XX" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/floor_decal/corner/red/mono,
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ dir = 4;
+ icon_state = "shutter0";
+ id_tag = "hab_hallway_shutters";
+ name = "Habitation Deck Hallway Shutters";
+ opacity = 0
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/thirddeck/fore)
+"XY" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"XZ" = (
+/obj/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/forestarboard)
+"Ya" = (
+/obj/structure/bed,
+/obj/item/bedsheet/mime,
+/obj/random/junk,
+/turf/simulated/floor/carpet,
+/area/vacant/cabin)
+"Yb" = (
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/foreport)
+"Yc" = (
+/obj/structure/table/steel,
+/obj/random/maintenance/solgov,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/foreport)
+"Yd" = (
+/obj/machinery/constructable_frame/computerframe,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/foreport)
+"Ye" = (
+/obj/machinery/light/small,
+/obj/machinery/meter,
+/obj/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/fuel,
+/turf/simulated/floor/tiled/techfloor,
+/area/thruster/d3starboard)
+"Yj" = (
+/obj/structure/railing/mapped{
+ dir = 8;
+ icon_state = "railing0-1"
+ },
+/obj/structure/railing/mapped,
+/turf/simulated/open,
+/area/maintenance/thirddeck/port)
+"Yk" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 4;
+ icon_state = "map_connector"
+ },
+/obj/floor_decal/industrial/warning{
+ dir = 8;
+ icon_state = "warning"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/foreport)
+"Yl" = (
+/obj/structure/table/standard,
+/obj/machinery/chemical_dispenser/bar_coffee/full{
+ pixel_y = 3
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/bar)
+"Yn" = (
+/turf/simulated/wall/prepainted,
+/area/chapel/memorial)
+"Yo" = (
+/obj/floor_decal/spline/fancy/wood{
+ dir = 4
+ },
+/obj/item/device/radio/intercom/entertainment{
+ dir = 8;
+ pixel_x = 22
+ },
+/obj/machinery/camera/network/third_deck{
+ c_tag = "VR Suites - Back";
+ dir = 8
+ },
+/turf/simulated/floor/carpet/blue,
+/area/crew_quarters/virtual_reality)
+"Yr" = (
+/turf/simulated/floor/grass,
+/area/crew_quarters/observation)
+"Ys" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/aftstarboard)
+"Yt" = (
+/obj/effect/wallframe_spawn/no_grille,
+/obj/machinery/door/firedoor,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/recreation)
+"Yv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/engineering/hardstorage)
+"Yx" = (
+/obj/structure/table/standard,
+/obj/machinery/reagentgrinder/juicer{
+ pixel_y = 8
+ },
+/obj/item/reagent_containers/glass/beaker/large,
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/bar)
+"Yz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/floor_decal/spline/fancy/wood{
+ dir = 1;
+ icon_state = "spline_fancy"
+ },
+/turf/simulated/floor/carpet/blue,
+/area/crew_quarters/virtual_reality)
+"YA" = (
+/obj/structure/lattice,
+/turf/simulated/floor/reinforced/hydrogen,
+/area/thruster/d3port)
+"YB" = (
+/obj/structure/bed/chair/wood/walnut{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark/monotile,
+/area/crew_quarters/observation)
+"YC" = (
+/obj/machinery/space_heater,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/foreport)
+"YD" = (
+/obj/floor_decal/corner/blue/diagonal{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/table/standard{
+ name = "plastic table frame"
+ },
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = 22;
+ pixel_y = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/mess)
+"YF" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass/civilian{
+ name = "Galley"
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/hydroponics/storage)
+"YG" = (
+/obj/structure/fitness/weightlifter,
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 25;
+ pixel_y = 0
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/gym)
+"YH" = (
+/obj/structure/railing/mapped{
+ dir = 1;
+ icon_state = "railing0-1"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 6;
+ icon_state = "intact"
+ },
+/obj/floor_decal/industrial/warning,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/port)
+"YI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/vr_pod{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/blue,
+/area/crew_quarters/virtual_reality)
+"YJ" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/floor_decal/corner/red,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/fore)
+"YK" = (
+/turf/simulated/floor/tiled/freezer,
+/area/crew_quarters/head)
+"YL" = (
+/obj/machinery/hologram/holopad/longrange,
+/turf/simulated/floor/tiled/monotile,
+/area/command/disperser)
+"YM" = (
+/obj/floor_decal/industrial/warning{
+ dir = 8;
+ icon_state = "warning"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/forestarboard)
+"YO" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/recreation)
+"YP" = (
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ dir = 4;
+ icon_state = "shutter0";
+ id_tag = "hab_hallway_shutters";
+ name = "Habitation Deck Hallway Shutters";
+ opacity = 0
+ },
+/obj/floor_decal/corner/red/mono,
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/thirddeck/center)
+"YQ" = (
+/obj/structure/ladder,
+/obj/floor_decal/corner/brown{
+ dir = 6
+ },
+/obj/catwalk_plated,
+/turf/simulated/floor/tiled/steel_grid,
+/area/hallway/primary/thirddeck/aft)
+"YR" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/space)
+"YS" = (
+/obj/structure/table/woodentable,
+/obj/floor_decal/corner/lime{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 10;
+ icon_state = "intact"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/aft)
+"YT" = (
+/obj/machinery/atmospherics/binary/passive_gate/on{
+ dir = 2;
+ regulate_mode = 1;
+ target_pressure = 35000;
+ use_power = 1
+ },
+/obj/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/techfloor,
+/area/thruster/d3starboard)
+"YU" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/floor_decal/corner/red{
+ dir = 6;
+ icon_state = "corner_white"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/fore)
+"YV" = (
+/obj/item/stool,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/aftstarboard)
+"YW" = (
+/obj/floor_decal/industrial/warning/fulltile,
+/turf/simulated/floor/tiled/steel_grid,
+/area/hallway/primary/thirddeck/center)
+"YX" = (
+/obj/structure/sign/warning/hot_exhaust{
+ dir = 8;
+ icon_state = "fire"
+ },
+/turf/simulated/wall/r_wall/hull,
+/area/maintenance/thirddeck/aftport)
+"YY" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/floor_decal/corner/green{
+ dir = 10;
+ icon_state = "corner_white"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/center)
+"YZ" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Auxiliary Tool Storage Maintenance"
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/storage/tools)
+"Zb" = (
+/obj/effect/wallframe_spawn/no_grille,
+/turf/simulated/floor/plating,
+/area/crew_quarters/gym)
+"Zc" = (
+/obj/machinery/atmospherics/binary/pump/on{
+ dir = 4;
+ target_pressure = 15000
+ },
+/obj/floor_decal/industrial/outline/orange,
+/turf/simulated/floor/tiled/techfloor,
+/area/thruster/d3starboard)
+"Zd" = (
+/obj/machinery/atmospherics/pipe/simple/visible/blue{
+ dir = 5
+ },
+/obj/machinery/meter,
+/obj/wallframe_spawn/reinforced_phoron,
+/turf/simulated/floor/reinforced,
+/area/thruster/d3port)
+"Ze" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/maintenance,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/thirddeck/foreport)
+"Zg" = (
+/obj/floor_decal/industrial/outline/grey,
+/obj/random/torchcloset,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/thirddeck/aftstarboard)
+"Zi" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled,
+/area/storage/tools)
+"Zk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/floor_decal/spline/fancy/wood,
+/obj/machinery/vr_pod{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/blue,
+/area/crew_quarters/virtual_reality)
+"Zl" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/catwalk,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/port)
+"Zn" = (
+/obj/floor_decal/corner/green/half,
+/obj/machinery/vending/fitness{
+ dir = 1;
+ icon_state = "fitness"
+ },
+/turf/simulated/floor/tiled/dark/monotile,
+/area/crew_quarters/observation)
+"Zo" = (
+/obj/structure/sign/directions/engineering{
+ dir = 1;
+ pixel_y = 3;
+ pixel_z = 0
+ },
+/obj/structure/sign/directions/supply{
+ dir = 2;
+ pixel_y = -4;
+ pixel_z = 0
+ },
+/turf/simulated/wall/prepainted,
+/area/hallway/primary/thirddeck/fore)
+"Zp" = (
+/obj/floor_decal/techfloor{
+ dir = 4;
+ icon_state = "techfloor_edges"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/safe_room/thirddeck)
+"Zr" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/catwalk,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/starboard)
+"Zt" = (
+/obj/machinery/computer/modular/preset/civilian{
+ dir = 1;
+ icon_state = "console"
+ },
+/obj/structure/window/reinforced{
+ dir = 8;
+ health = 1e+006
+ },
+/obj/floor_decal/spline/fancy/wood{
+ dir = 1;
+ icon_state = "spline_fancy"
+ },
+/turf/simulated/floor/wood/walnut,
+/area/crew_quarters/recreation)
+"Zv" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 4;
+ icon_state = "pipe-j1"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/catwalk_plated,
+/turf/simulated/floor/plating,
+/area/hallway/primary/thirddeck/aft)
+"Zx" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/crew_quarters/galleybackroom)
+"Zy" = (
+/obj/structure/closet/crate/internals,
+/obj/random/tank,
+/obj/random/tank,
+/obj/structure/railing/mapped{
+ dir = 4;
+ icon_state = "railing0-1"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/starboard)
+"Zz" = (
+/obj/structure/railing/mapped{
+ dir = 1;
+ icon_state = "railing0-1"
+ },
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/port)
+"ZA" = (
+/obj/structure/railing/mapped{
+ dir = 8;
+ icon_state = "railing0-1"
+ },
+/turf/simulated/open,
+/area/crew_quarters/galley)
+"ZB" = (
+/obj/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/galley)
+"ZD" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/floor_decal/corner/yellow/half{
+ dir = 1;
+ icon_state = "bordercolorhalf"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/engineering/hardstorage)
+"ZE" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/thirddeck/aft)
+"ZF" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 8
+ },
+/obj/floor_decal/industrial/warning/corner{
+ dir = 4;
+ icon_state = "warningcorner"
+ },
+/obj/floor_decal/industrial/hatch/orange,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/machinery/firealarm{
+ dir = 2;
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/thruster/d3port)
+"ZH" = (
+/obj/floor_decal/techfloor{
+ dir = 4;
+ icon_state = "techfloor_edges"
+ },
+/obj/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/engineering/hardstorage)
+"ZI" = (
+/obj/machinery/atmospherics/unary/vent_pump/siphon/on/atmos{
+ internal_pressure_bound = 35000;
+ internal_pressure_bound_default = 35000
+ },
+/obj/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/reinforced/airless,
+/area/thruster/d3port)
+"ZJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/foreport)
+"ZK" = (
+/obj/floor_decal/corner/blue/diagonal{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/obj/machinery/computer/modular/preset/civilian,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/mess)
+"ZL" = (
+/turf/simulated/floor/pool,
+/area/crew_quarters/observation)
+"ZN" = (
+/turf/simulated/wall/r_wall/hull,
+/area/tcommsat/chamber)
+"ZQ" = (
+/obj/machinery/newscaster{
+ pixel_x = 32
+ },
+/obj/floor_decal/corner/blue/diagonal{
+ dir = 4
+ },
+/obj/machinery/light/spot{
+ dir = 4
+ },
+/obj/structure/bed/chair,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/mess)
+"ZR" = (
+/obj/machinery/atmospherics/unary/outlet_injector{
+ dir = 1;
+ frequency = 1441;
+ id = "d3po2_in";
+ injecting = 1;
+ use_power = 1
+ },
+/turf/simulated/floor/reinforced/oxygen,
+/area/thruster/d3port)
+"ZT" = (
+/obj/machinery/atmospherics/unary/outlet_injector{
+ dir = 1;
+ frequency = 1447;
+ id = "fuelmode";
+ injecting = 1;
+ use_power = 1;
+ volume_rate = 4000
+ },
+/obj/floor_decal/industrial/outline/red,
+/turf/simulated/floor/reinforced/airless,
+/area/thruster/d3starboard)
+"ZU" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/turf/simulated/floor/grass,
+/area/crew_quarters/observation)
+"ZV" = (
+/obj/structure/railing/mapped,
+/turf/simulated/floor/plating,
+/area/maintenance/thirddeck/starboard)
+"ZW" = (
+/obj/structure/table/woodentable_reinforced/mahogany,
+/obj/item/spirit_board,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9;
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/wood/maple,
+/area/chapel/main)
+"ZX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/grass,
+/area/crew_quarters/observation)
+"ZY" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/monotile,
+/area/crew_quarters/gym)
+"ZZ" = (
+/obj/machinery/beehive,
+/turf/simulated/floor/grass,
+/area/crew_quarters/observation)
+
+(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
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+Ob
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+uO
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+qx
+qx
+qx
+qx
+vt
+qx
+qx
+qx
+vt
+qx
+qx
+qx
+qx
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+ZN
+ZN
+ZN
+ZN
+ZN
+ZN
+ZN
+ZN
+aa
+aa
+Di
+Di
+BQ
+Fn
+YB
+nw
+Xq
+Sh
+nB
+Vt
+BQ
+Fn
+YB
+Di
+Di
+aa
+aa
+BV
+BV
+BV
+BV
+BV
+BV
+BV
+BV
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+ZN
+ZN
+ZN
+ZN
+ZN
+ZN
+ZN
+ZN
+ZN
+aa
+aa
+Di
+lV
+Yr
+ZU
+mL
+FQ
+fJ
+Th
+fJ
+FQ
+Yr
+Yr
+Yr
+np
+Di
+aa
+aa
+BV
+BV
+BV
+BV
+BV
+BV
+BV
+BV
+BV
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+ZN
+ZN
+ZN
+ZN
+ZN
+ZN
+ZN
+ZN
+ZN
+ZN
+ZN
+ZN
+vt
+UM
+mL
+nJ
+nJ
+mN
+Yr
+Th
+Yr
+mL
+Yr
+mN
+Yr
+IX
+vt
+BV
+BV
+BV
+BV
+BV
+BV
+BV
+BV
+BV
+BV
+BV
+BV
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+ZN
+ZN
+ZN
+ZN
+ZN
+eh
+bQ
+ga
+bQ
+hQ
+ZN
+ZN
+ZN
+Ww
+lW
+mM
+ZZ
+nJ
+ZU
+Yr
+Th
+Yr
+Yr
+vy
+Yr
+Yr
+KZ
+yH
+BV
+BV
+BV
+zl
+BX
+BX
+BX
+BX
+BV
+BV
+BV
+BV
+BV
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+ZN
+ZN
+ZN
+ZN
+ZN
+Gh
+Wi
+eS
+gb
+gY
+jo
+Xi
+aM
+aM
+Ww
+lX
+mN
+nJ
+nJ
+mN
+fJ
+Th
+fJ
+Yr
+ZL
+ZL
+mN
+yG
+yH
+BV
+BV
+BW
+BX
+ot
+Ef
+Ef
+BX
+BV
+BV
+BV
+BV
+BV
+BV
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+ZN
+ZN
+ZN
+ZN
+bQ
+Xf
+NC
+ej
+eT
+gc
+gZ
+hS
+Nt
+jx
+ku
+Ww
+lY
+ZU
+mL
+mO
+mL
+fJ
+Uh
+fJ
+Yr
+Qf
+yu
+Yr
+PH
+yH
+zS
+zS
+zS
+NL
+zS
+zS
+zS
+BX
+BX
+BX
+BX
+BV
+BV
+BV
+BV
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+ZN
+ZN
+ZN
+ZN
+bR
+cx
+NC
+ek
+eU
+gd
+ha
+hT
+OM
+jy
+kv
+Ww
+lZ
+mO
+nJ
+nJ
+mM
+fJ
+Th
+fJ
+Yr
+ZL
+ZL
+Yr
+zz
+yH
+SX
+BX
+BX
+BX
+LA
+LA
+zS
+zS
+zS
+zS
+BX
+BV
+BV
+BV
+BV
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+ZN
+ZN
+ZN
+bi
+bS
+cy
+NC
+el
+eV
+gd
+hb
+hU
+OM
+jz
+kw
+Ww
+ma
+Yr
+ZZ
+nJ
+ZU
+Yr
+Th
+Yr
+ZU
+Yr
+mL
+Yr
+yI
+yH
+Yc
+BX
+BX
+LF
+JN
+BX
+zS
+GV
+RV
+YC
+Yb
+Yb
+BV
+BV
+BV
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+ZN
+ZN
+ZN
+bj
+bT
+cz
+dp
+em
+eW
+wg
+hc
+hV
+fk
+jA
+kx
+Ww
+ma
+mN
+nJ
+nJ
+mL
+Yr
+Th
+Yr
+Yr
+Yr
+Yr
+Yr
+Zn
+yH
+Kd
+BX
+BX
+Kd
+BX
+Yd
+NL
+Yb
+Ur
+Ur
+Ur
+Gu
+BV
+BV
+BV
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+EJ
+EJ
+EJ
+bk
+bk
+bk
+bk
+en
+eX
+gf
+en
+hW
+iJ
+jB
+ky
+Ww
+mc
+mR
+nL
+oJ
+pD
+qC
+rP
+tj
+uv
+vD
+ZX
+ZX
+zB
+yH
+JN
+BX
+BX
+BX
+LF
+Yd
+zS
+Mf
+Es
+zS
+Yb
+Ur
+BV
+BV
+BV
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+EJ
+EJ
+EJ
+bl
+bU
+cA
+dq
+en
+eY
+gg
+ND
+hX
+iK
+jC
+kz
+Ww
+Ww
+yH
+yH
+yH
+QQ
+wS
+rQ
+RP
+QQ
+yH
+yH
+yH
+yH
+yH
+zS
+zS
+zS
+zS
+NL
+zS
+zS
+zS
+zS
+zS
+CM
+Ur
+BV
+BV
+BV
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+EJ
+EJ
+EJ
+bm
+bV
+cB
+ei
+en
+eZ
+gh
+en
+hY
+iL
+jD
+kA
+lm
+ep
+mS
+nP
+oL
+pF
+Vl
+rR
+Tq
+pF
+vF
+ts
+xI
+mj
+Yb
+Ur
+Ur
+Ur
+Ur
+Ur
+hG
+zS
+Gs
+UO
+zS
+CM
+Ur
+BV
+BV
+BV
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+EJ
+EJ
+EJ
+bn
+bW
+bW
+ge
+eo
+fa
+gi
+hd
+hZ
+iM
+jE
+kB
+uj
+md
+mT
+nQ
+oM
+pG
+tl
+rS
+tl
+yy
+vG
+wI
+xJ
+tR
+Yb
+Pc
+Yk
+Pz
+qY
+Yb
+hG
+Ze
+Yb
+Ur
+Ur
+Ur
+Ur
+BV
+BV
+BV
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+EJ
+EJ
+EJ
+bo
+bX
+cC
+dt
+en
+fb
+gj
+he
+ia
+iN
+jF
+kC
+lo
+ep
+mU
+nR
+CF
+CF
+pM
+Yt
+pM
+CF
+CF
+wJ
+pq
+mj
+Yb
+WX
+UF
+Ut
+WW
+Om
+Te
+zS
+UI
+Yb
+Yb
+Yb
+Ur
+BV
+BV
+BV
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+EJ
+EJ
+EJ
+aN
+aN
+aN
+aN
+ep
+ep
+ep
+ep
+ep
+ep
+ep
+ep
+ep
+ep
+mV
+nS
+CF
+pH
+qG
+rT
+qG
+uz
+CF
+Cb
+Vb
+yN
+yN
+yN
+yN
+yN
+yN
+zS
+zS
+zS
+zS
+eH
+zS
+GS
+Ur
+BV
+BV
+BV
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aO
+aO
+aO
+bp
+bs
+QS
+bZ
+eq
+bu
+bu
+bu
+ib
+bp
+jG
+xr
+lp
+cG
+mj
+nT
+CF
+DE
+qu
+sL
+iE
+Zt
+CF
+wL
+xM
+yP
+zL
+gq
+Xc
+Cg
+yN
+fT
+Ur
+Ur
+Ur
+Yb
+zS
+GT
+Ur
+BV
+BV
+BV
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aO
+aO
+aO
+bq
+bs
+bs
+Mu
+Mu
+Mu
+Mu
+hf
+Mu
+Mu
+Mu
+Mu
+Mu
+ff
+bs
+nU
+CF
+JM
+YO
+rU
+iE
+UH
+CF
+wM
+xN
+yN
+OC
+XH
+Bj
+Cf
+yN
+fT
+Ur
+gQ
+kX
+Yb
+zS
+zS
+Gv
+BV
+BV
+BV
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aO
+aO
+aO
+br
+bs
+cD
+dv
+dv
+dv
+dv
+dv
+dv
+dv
+dv
+dv
+dv
+cG
+Uy
+nU
+CF
+MP
+qu
+qu
+iE
+Zt
+CF
+wN
+IQ
+yN
+zH
+At
+Bi
+Cc
+yN
+gu
+Ur
+gT
+lb
+Yb
+Tp
+Ur
+Ur
+BV
+BV
+BV
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aO
+aO
+aO
+gB
+bs
+xr
+dv
+er
+fc
+gk
+hg
+hg
+iO
+jH
+kD
+dv
+me
+mW
+nV
+CF
+pL
+qu
+qu
+iE
+Zt
+CF
+wO
+Uo
+yN
+zI
+At
+MG
+Cc
+yN
+gM
+Ur
+hv
+lf
+Yb
+zS
+GU
+Hl
+BV
+BV
+BV
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aO
+aO
+aO
+EI
+bY
+cF
+dv
+er
+fd
+gl
+gl
+gl
+iP
+jI
+kE
+lq
+mf
+CF
+CF
+CF
+My
+qu
+qu
+qu
+uC
+CF
+wP
+xP
+yO
+zJ
+Au
+Bk
+Ce
+yN
+Ft
+Ur
+ja
+lh
+Yb
+zS
+zS
+zS
+BV
+BV
+BV
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aO
+aO
+aO
+SC
+SC
+SC
+dv
+er
+fd
+gm
+gm
+gm
+gm
+jJ
+kF
+lr
+mg
+CF
+uH
+uH
+pJ
+qI
+qI
+qH
+uB
+CF
+wQ
+xQ
+yN
+yN
+yN
+yN
+yN
+yN
+Ur
+Ur
+Ur
+Ur
+Yb
+Yb
+zS
+XS
+BV
+BV
+BV
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aO
+aO
+aO
+bu
+bu
+bu
+dv
+er
+fd
+gn
+hh
+hh
+iQ
+jI
+kG
+lq
+mh
+CF
+nY
+oO
+Uc
+qu
+qu
+EU
+Xg
+CF
+wR
+xR
+ez
+Ur
+Ur
+Ur
+Ur
+Ur
+Ur
+Bm
+Bm
+Bm
+Bm
+Yb
+BX
+Hm
+BV
+BV
+BV
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aO
+aO
+aO
+aO
+bu
+bu
+dv
+er
+fe
+go
+hi
+ic
+iR
+jK
+kH
+dv
+cK
+CF
+UJ
+zC
+yh
+Wz
+Wz
+uG
+wy
+CF
+WD
+XX
+Bm
+Bm
+Bm
+Bm
+Bm
+Bm
+Bm
+Bm
+EN
+EN
+Bm
+Yb
+jr
+BV
+BV
+BV
+BV
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aU
+aO
+aO
+aO
+aO
+ff
+dv
+dv
+dv
+dv
+dv
+dv
+dv
+dv
+dv
+dv
+cK
+CF
+CF
+CF
+CF
+CF
+CF
+QR
+CF
+CF
+wR
+xR
+Bm
+jN
+jR
+lK
+PE
+Hv
+VL
+Bm
+EO
+Fv
+Bm
+Yb
+BV
+BV
+BV
+BV
+aU
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aU
+aU
+aO
+aO
+aO
+bu
+dw
+bu
+bu
+bu
+bu
+id
+cF
+cE
+cG
+ls
+cK
+Zo
+oa
+oT
+pO
+SE
+sc
+tp
+VU
+ob
+qL
+xT
+Bm
+NY
+xV
+NY
+tG
+DI
+Ps
+Bm
+EP
+Bm
+Bm
+Oz
+BV
+BV
+BV
+aU
+aU
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aU
+aU
+aO
+aO
+aO
+cG
+cG
+cG
+cG
+TJ
+bu
+id
+cI
+dx
+kI
+dx
+mi
+MD
+VU
+hK
+pO
+SE
+sc
+tp
+VU
+QJ
+sN
+ip
+Bn
+RA
+xV
+NY
+kP
+lD
+lF
+Ep
+EQ
+lN
+Bm
+Yb
+BV
+BV
+BV
+aU
+aU
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aU
+aU
+aO
+aO
+aO
+cH
+xr
+xr
+fg
+IL
+IN
+IP
+cK
+cG
+cG
+cG
+mj
+mY
+oc
+oU
+pP
+mj
+se
+tp
+VU
+VU
+fC
+iI
+jh
+jP
+jS
+ks
+lv
+lE
+DK
+Zp
+Zp
+UL
+lL
+Yb
+BV
+BV
+BV
+aU
+aU
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aU
+aU
+aO
+aO
+aO
+cI
+dx
+dx
+fh
+IM
+IO
+ie
+iS
+jL
+Xk
+kJ
+mk
+PV
+od
+oV
+mZ
+mZ
+sf
+MB
+uI
+tl
+gF
+LC
+Bm
+Bm
+Bm
+Bm
+Bm
+CX
+Bm
+CX
+Bm
+CX
+Bm
+li
+BV
+BV
+BV
+aU
+aU
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aU
+aU
+aO
+aO
+aO
+cJ
+cG
+cG
+fi
+cG
+cG
+if
+iT
+jM
+lt
+bs
+mj
+na
+oe
+oW
+Iq
+NE
+sg
+YJ
+oy
+YU
+rb
+xX
+mj
+zR
+jU
+Bm
+Bm
+CY
+Bm
+CY
+Bm
+CY
+Bm
+Yb
+BV
+BV
+BV
+aU
+aU
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aU
+aU
+aO
+aO
+aO
+cK
+cG
+es
+fj
+gp
+qh
+MY
+YM
+XZ
+wD
+wD
+wD
+wD
+wD
+wD
+wD
+tt
+sh
+tt
+uK
+xU
+dE
+up
+Vx
+LB
+Wq
+Qz
+Bm
+Bm
+Bm
+Bm
+Bm
+Bm
+Bm
+Yb
+BV
+BV
+BV
+aU
+aU
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aU
+aU
+aO
+aO
+aO
+cK
+cG
+dy
+dy
+dy
+dy
+dy
+GE
+dy
+wD
+lu
+lu
+lu
+lu
+lu
+pS
+qP
+VM
+tP
+LV
+Qx
+Kc
+KS
+Vx
+Px
+AB
+Bp
+NV
+pK
+vM
+vM
+vM
+vM
+vM
+vM
+Gw
+BV
+BV
+aU
+aU
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aU
+aU
+aO
+aO
+aO
+cK
+cG
+dy
+AX
+Ry
+qn
+wC
+Uq
+PI
+wD
+lu
+lu
+lu
+lu
+lu
+pT
+Xn
+sj
+tv
+UA
+Qv
+jQ
+nI
+Vx
+tU
+an
+Ma
+ZJ
+uM
+uM
+uM
+uM
+uM
+uM
+uM
+NJ
+BV
+BV
+aU
+aU
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aU
+aU
+aO
+aO
+Fy
+cK
+WQ
+dy
+iU
+gs
+Ol
+gs
+Uq
+ih
+wD
+lu
+lu
+lu
+lu
+lu
+pT
+qQ
+sk
+tw
+xb
+QE
+jQ
+XJ
+Vx
+Ou
+zS
+Br
+Yb
+uM
+vN
+wW
+xY
+wW
+xY
+uM
+LW
+BV
+BV
+aU
+aU
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aU
+aO
+aO
+aO
+Mp
+mi
+bp
+dy
+et
+SA
+hm
+Zx
+ST
+eu
+wD
+lu
+lu
+lu
+lu
+lu
+pT
+Xn
+sj
+tx
+Vx
+Fz
+jQ
+TS
+Ga
+Bq
+uM
+uM
+Cm
+uM
+vO
+wW
+vO
+wW
+vO
+uM
+Bq
+BV
+BV
+aU
+aU
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aO
+aO
+aO
+aO
+cK
+bs
+Fy
+dy
+dk
+gs
+hn
+ij
+iW
+dy
+wD
+lu
+lu
+lu
+lu
+lu
+wD
+NA
+Us
+Nn
+uN
+Sm
+Ns
+VI
+Vx
+Bq
+uM
+Bs
+Cn
+Cn
+vP
+wX
+vP
+yR
+vP
+Cm
+Bq
+BV
+BV
+BV
+aU
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+Mb
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aP
+aP
+aP
+aP
+cL
+ca
+ca
+dy
+dy
+Mv
+dy
+IR
+dy
+dy
+wD
+wD
+wD
+wD
+wD
+wD
+pU
+YP
+sl
+pn
+Vx
+Vx
+Vx
+Vx
+Vx
+Bq
+uM
+Bt
+Co
+wW
+vO
+wW
+vO
+wW
+vO
+uM
+Bq
+GW
+BV
+BV
+BV
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aP
+aP
+aP
+Oe
+cb
+cM
+dA
+MC
+rm
+TW
+ho
+ik
+iX
+kL
+OX
+SP
+ml
+cU
+eQ
+ft
+kT
+YW
+VW
+OI
+uL
+vM
+vM
+vM
+vM
+LY
+uM
+Bu
+Cp
+wW
+vQ
+wW
+vQ
+wW
+zT
+uM
+Bq
+PB
+BV
+BV
+BV
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aP
+aP
+aP
+bw
+cc
+kc
+dA
+mF
+fp
+fp
+fp
+il
+ZB
+Vi
+bP
+lw
+mm
+nc
+og
+oY
+kL
+Xn
+sj
+wV
+uM
+uM
+uM
+uM
+uM
+uM
+uM
+Cq
+uM
+uM
+Fd
+Fd
+Fd
+FS
+FS
+FS
+Gx
+FS
+zG
+zG
+zG
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aP
+aP
+aP
+bx
+cc
+hl
+ca
+fq
+fp
+Od
+ww
+im
+iY
+kL
+lx
+mn
+Yx
+nd
+oh
+oZ
+pV
+Xn
+pr
+dP
+Fd
+vR
+wY
+xZ
+yS
+zU
+AD
+Cr
+Bv
+CZ
+DN
+Et
+EV
+Fd
+Sj
+sM
+Gy
+Ho
+zG
+zG
+zG
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aP
+aP
+aP
+by
+cc
+cN
+YF
+ig
+fp
+du
+Fw
+ii
+ev
+kL
+kN
+mn
+oi
+ne
+Yl
+pa
+pV
+qQ
+sk
+tD
+Fd
+Gt
+vS
+ya
+yT
+vS
+vS
+Cs
+OP
+Da
+DO
+vS
+vS
+FC
+XR
+UX
+lR
+Hp
+zG
+zG
+zG
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aP
+aP
+aP
+aj
+cd
+cO
+Qe
+ew
+fp
+fp
+fy
+Tg
+Fx
+bB
+kO
+mo
+nf
+nf
+nf
+pb
+pW
+qP
+IY
+tE
+Fd
+vT
+vT
+yb
+yU
+vT
+vT
+vT
+vT
+Db
+DP
+vT
+vT
+Fd
+FV
+GA
+GZ
+FW
+zG
+zG
+zG
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aP
+aP
+aW
+Sq
+bA
+cP
+bA
+Rq
+fv
+fp
+hr
+FG
+ev
+Ug
+Vg
+Vg
+Vg
+Vg
+Vg
+pc
+kL
+xE
+IZ
+Jc
+Fd
+vU
+vU
+yb
+yU
+vU
+vU
+vU
+vU
+Db
+DP
+vU
+EW
+Fd
+FS
+GB
+FS
+FS
+zG
+zG
+zG
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aI
+aW
+aW
+Vm
+ce
+cQ
+dG
+ey
+fv
+fp
+fw
+Tg
+Qu
+gv
+cT
+cT
+cT
+dY
+cT
+pd
+pX
+qS
+sn
+Jd
+uQ
+vV
+vV
+yc
+yV
+vV
+vV
+vV
+vV
+Dc
+DQ
+vV
+EX
+Fd
+DL
+GD
+Ge
+Hf
+Hf
+aU
+aU
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+Xr
+mv
+be
+Tm
+Op
+cf
+cR
+dH
+ey
+FY
+gw
+hs
+ir
+As
+jV
+kQ
+PO
+Sv
+nh
+WH
+pe
+pY
+QM
+so
+YY
+uR
+vW
+vW
+yd
+yW
+vW
+vW
+vW
+vW
+Dd
+DR
+UY
+UY
+FD
+Ex
+wq
+Fc
+Vr
+Vr
+ui
+KR
+KB
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+CS
+be
+bC
+lA
+Xm
+wn
+xn
+ey
+ZA
+ZA
+ht
+is
+TH
+jW
+AA
+AA
+AA
+ni
+RN
+jc
+pZ
+Xn
+sp
+Mz
+uS
+vS
+vS
+ye
+yX
+vS
+vS
+vS
+vS
+De
+za
+Fd
+LX
+Fd
+Fd
+Lk
+EL
+Hf
+Hf
+aU
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+Nb
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+CS
+be
+TX
+Td
+TX
+wn
+Kn
+ev
+Lb
+CO
+cs
+ev
+ev
+jX
+lz
+mp
+lz
+ka
+RN
+pf
+fB
+qU
+sj
+zo
+uT
+vT
+vT
+yf
+yY
+vT
+vT
+vT
+vT
+Df
+za
+NF
+Hc
+Hc
+Fd
+Lk
+EL
+Hf
+Hf
+aU
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+CS
+be
+Oy
+nO
+Mx
+wn
+Mn
+eC
+kb
+gy
+SS
+iu
+hu
+UK
+lz
+lz
+lz
+Ko
+RN
+pg
+fB
+le
+VM
+tH
+Fd
+vU
+vU
+yf
+yY
+vU
+vU
+vU
+vU
+Df
+Ub
+Fd
+Fd
+Fd
+Fd
+Lk
+EL
+Hf
+Hf
+aU
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+CS
+be
+TX
+zg
+TX
+wn
+nZ
+Sw
+Tb
+VT
+rM
+qb
+ly
+Tx
+XO
+XO
+XO
+jn
+RN
+jj
+Nw
+qQ
+sk
+tI
+Fd
+vV
+vV
+yg
+yZ
+vV
+vV
+vV
+vV
+Dg
+za
+Ew
+Fd
+Nj
+Gf
+Lk
+EL
+Hf
+Hf
+aU
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+LP
+pE
+Um
+vZ
+Mx
+wn
+Pn
+bA
+AC
+Tb
+hw
+iv
+gz
+jY
+jd
+jd
+jd
+nj
+Lx
+jc
+Nw
+Xn
+sj
+tJ
+Fd
+Cj
+yk
+fm
+PJ
+zV
+AE
+Bw
+Ct
+Dh
+PJ
+Lh
+Fd
+Oj
+Xj
+Lk
+EL
+Hf
+Hf
+aU
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+CS
+be
+TX
+TX
+TX
+wn
+XT
+bA
+ZK
+Aq
+rM
+rL
+AA
+dF
+jc
+lB
+mq
+nk
+jc
+pi
+fB
+qV
+sj
+tC
+Fd
+Fd
+Fd
+Fd
+fS
+Fd
+Fd
+Fd
+Fd
+Fd
+DS
+Fd
+Fd
+Ez
+Ez
+Lk
+EL
+Hf
+Hf
+aU
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+CS
+be
+Oy
+Mx
+Mx
+wn
+Qn
+bA
+fB
+fB
+gA
+fB
+jf
+YD
+jc
+ZQ
+Xs
+nk
+jc
+OB
+fB
+qR
+sr
+qR
+uU
+vY
+eE
+YK
+gK
+uU
+BH
+iB
+js
+uU
+WU
+Ex
+Tw
+qN
+qN
+gt
+Uu
+Hf
+Hf
+aU
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+CS
+be
+TX
+TX
+TX
+wn
+Rn
+bA
+Po
+gC
+hy
+fB
+fB
+fB
+ct
+fB
+fB
+fB
+fB
+fB
+fB
+tF
+sj
+tL
+uU
+uU
+uU
+Tt
+fV
+Fq
+gO
+iD
+ju
+uU
+UE
+UZ
+Hd
+Pj
+Yj
+jk
+JL
+Hf
+Hf
+aU
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+CS
+be
+Oy
+GY
+ch
+cX
+Sn
+bA
+fE
+gD
+hz
+WN
+kY
+fB
+ld
+fB
+Sx
+nm
+fU
+XE
+wD
+Xn
+sj
+Dt
+uU
+vY
+eE
+YK
+fW
+uU
+RE
+AG
+By
+uU
+do
+UZ
+YH
+WL
+hJ
+TB
+SI
+Hf
+Hf
+aU
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+Xr
+YR
+be
+bD
+jT
+ci
+cY
+dN
+bA
+fF
+pw
+Ot
+os
+VD
+fB
+ld
+fB
+QT
+dd
+aY
+RF
+wD
+MS
+sj
+UQ
+uU
+uU
+fz
+YK
+gr
+uU
+hL
+hL
+hL
+hL
+hL
+UZ
+Vf
+Ez
+Ez
+DD
+KW
+Vr
+Vr
+ui
+KR
+KB
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aI
+aW
+aW
+bA
+bA
+cZ
+bA
+bA
+fG
+cl
+cl
+ZV
+Vv
+fB
+fB
+fB
+cl
+yQ
+aY
+CH
+wD
+qP
+RQ
+cV
+uU
+fo
+YK
+YK
+gK
+TZ
+hL
+iF
+jO
+km
+hL
+UZ
+kq
+Ez
+xk
+CE
+Ge
+Hf
+Hf
+aU
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+ad
+ad
+ad
+ad
+aa
+aa
+aa
+aa
+aI
+aQ
+aQ
+aQ
+cj
+rz
+dO
+cl
+NH
+Ux
+cl
+aY
+vd
+RB
+RB
+RB
+RB
+dI
+kY
+cl
+wD
+Xn
+sj
+dB
+uU
+fo
+YK
+YK
+gK
+LL
+hP
+iV
+ke
+kt
+hL
+UZ
+TQ
+Ez
+Ck
+CE
+Ge
+Hf
+Hf
+aU
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+ag
+at
+aw
+ad
+aa
+aa
+aa
+aa
+aa
+aI
+aQ
+aQ
+MJ
+db
+Zr
+cm
+fH
+tu
+cl
+Dz
+rK
+ze
+ze
+ze
+ze
+Ss
+VZ
+RB
+TO
+rc
+cS
+dC
+dK
+YK
+YK
+MX
+gL
+hj
+iy
+iZ
+kf
+kM
+hL
+zZ
+Ez
+Ez
+Ez
+OZ
+Ez
+Hf
+Hf
+aI
+aa
+aa
+aa
+aa
+aa
+Qq
+Qq
+Im
+Qq
+Qq
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+ad
+nb
+ag
+ag
+ad
+ad
+aa
+aa
+aa
+aa
+aI
+aQ
+aQ
+Pd
+Gz
+EF
+cl
+dD
+cl
+cl
+OE
+aY
+KC
+KC
+KC
+KC
+aY
+Eq
+Eq
+wD
+aR
+sk
+xf
+uU
+eB
+YK
+in
+Ix
+in
+hP
+jl
+kg
+kU
+hL
+Vw
+wf
+wf
+FH
+Zl
+Ts
+Hf
+Hf
+aI
+aa
+aa
+aa
+aa
+aa
+Qq
+Ic
+In
+ix
+Qq
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+ad
+ag
+ao
+ak
+av
+ag
+ad
+ad
+aa
+aa
+aI
+aQ
+aQ
+aQ
+WZ
+VR
+oH
+cl
+cl
+Wb
+Wb
+Wb
+Wb
+Wb
+Wb
+Wb
+Wb
+Wb
+Wb
+Wb
+Wb
+VC
+RQ
+dC
+uU
+eD
+YK
+fD
+fD
+hp
+hL
+jp
+kh
+km
+hL
+CE
+Ez
+Ff
+Ez
+HD
+Ts
+Hf
+Hf
+Hf
+aI
+aa
+aa
+Qq
+Qq
+Qq
+oz
+Io
+hM
+Qq
+Qq
+Qq
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+QC
+ae
+ae
+ag
+ae
+ae
+aB
+ad
+aa
+aI
+aQ
+aQ
+aQ
+aQ
+ck
+VR
+Uv
+cl
+dD
+Wb
+Rf
+Rf
+Ap
+tT
+eL
+Qd
+Nd
+RW
+Oc
+Jg
+Wb
+sW
+sv
+re
+uU
+uU
+fl
+uU
+uU
+uU
+hL
+hL
+hL
+hL
+hL
+CE
+Ez
+Fe
+Ez
+Qy
+Ts
+Hf
+Hf
+Hf
+Hf
+aI
+aa
+Qq
+HT
+HZ
+Id
+Ip
+Xy
+kr
+vf
+Qq
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+af
+ag
+ag
+ae
+ae
+ag
+QC
+ad
+aa
+aI
+aQ
+aQ
+aQ
+bE
+QY
+dc
+dQ
+eF
+fK
+Wb
+Rf
+Sf
+UC
+WB
+jb
+VF
+VF
+VF
+VF
+WB
+Zb
+cw
+su
+Ly
+VG
+wf
+wf
+wf
+wf
+wf
+wf
+wf
+wf
+Dk
+wf
+EA
+Ez
+Ez
+Ez
+Hy
+Hh
+Hx
+Hf
+Hf
+Hf
+aI
+aa
+Qq
+HH
+Ia
+Pl
+Ui
+uA
+Iy
+ME
+Qq
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+QC
+ae
+ae
+ag
+av
+az
+av
+ad
+ad
+ad
+ad
+aQ
+bh
+MI
+cl
+bE
+cl
+cl
+da
+Wb
+Nx
+Rf
+PG
+xF
+SU
+VF
+hx
+Vc
+hx
+WB
+Zb
+rf
+XP
+ov
+wl
+Ez
+Ts
+Ts
+BS
+Ez
+LK
+OO
+Dv
+Ez
+Ez
+DT
+Dn
+Dn
+Dn
+Dn
+Dn
+HD
+Ts
+Hf
+Qq
+Qq
+Qq
+Qq
+HU
+Vo
+Ia
+Ia
+iz
+Vo
+IA
+Qq
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+ag
+ak
+ap
+au
+ax
+ag
+aC
+ad
+aG
+aJ
+ad
+aX
+aY
+bF
+cl
+aY
+dR
+cl
+da
+Wb
+Rf
+Sf
+QV
+Pa
+XK
+Fs
+VJ
+pp
+VJ
+ZY
+sI
+Qs
+sw
+RC
+VE
+Ez
+xg
+sQ
+Zz
+AN
+AN
+AN
+AN
+Ez
+Ny
+Hn
+ub
+FI
+Gi
+Gj
+ub
+HD
+Ts
+HE
+HI
+HL
+HP
+HI
+fA
+Ek
+pR
+Ir
+OQ
+dz
+IB
+Qq
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+ag
+ae
+aq
+ao
+We
+ID
+ag
+az
+ag
+ag
+aE
+IE
+aY
+PP
+cl
+dd
+IE
+cl
+fL
+Wb
+Rf
+Rf
+NN
+WB
+hx
+Ro
+hx
+oC
+YG
+NB
+Wb
+rh
+sx
+tS
+wl
+wl
+wl
+wl
+wl
+AN
+zE
+Bz
+TV
+AN
+RT
+CE
+ub
+Gj
+GI
+Hi
+ub
+sS
+tz
+tz
+HJ
+HM
+HM
+HJ
+UN
+HQ
+Ie
+VQ
+YL
+zF
+IB
+Qq
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+QC
+ae
+ag
+av
+ag
+ag
+eA
+aE
+ae
+aK
+aS
+aZ
+aZ
+bG
+cl
+de
+dd
+cl
+da
+Wb
+Wb
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+eI
+ri
+sy
+QF
+OW
+IV
+Pr
+bf
+bf
+bg
+AI
+BA
+nu
+YZ
+Ts
+CE
+ub
+Fj
+GI
+Hj
+ub
+vk
+or
+or
+HK
+HN
+FU
+HS
+HV
+ty
+gS
+WG
+bt
+zh
+Be
+Qq
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+QC
+al
+ae
+av
+ay
+aA
+ag
+aF
+aH
+aL
+ad
+ba
+aY
+PP
+cl
+aX
+dS
+cl
+da
+dD
+bv
+Wp
+bz
+Xz
+Ve
+VY
+VY
+gR
+SL
+FT
+Wp
+bc
+Ja
+Je
+gU
+wj
+xS
+xS
+Nf
+zY
+Hu
+Zi
+Cv
+AN
+qi
+So
+ub
+FJ
+Gk
+GJ
+ub
+Ts
+Ts
+HG
+HI
+HO
+HR
+HI
+FE
+Ib
+If
+Is
+HB
+kS
+UU
+Qq
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+ah
+ag
+ae
+ag
+ag
+av
+av
+ad
+ad
+ad
+ad
+aQ
+Zy
+bH
+cl
+cl
+cl
+cl
+fM
+sZ
+sZ
+Lz
+xz
+fr
+lC
+Ae
+XM
+Yv
+Up
+MU
+fn
+rk
+Jb
+sW
+rp
+wk
+Lj
+sW
+jm
+PA
+AK
+BK
+Cw
+AN
+Ov
+JV
+ub
+ED
+II
+FN
+ub
+ko
+ny
+Hf
+Qq
+Qq
+Qq
+Qq
+HW
+DF
+HW
+It
+HW
+HW
+HW
+Qq
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+ai
+ae
+ar
+ae
+ag
+ae
+aD
+ad
+aa
+aI
+aQ
+aQ
+aQ
+bI
+cm
+df
+df
+df
+fN
+rH
+KI
+eI
+ZD
+sP
+ex
+cW
+Vd
+no
+on
+MU
+eI
+rl
+Jb
+sW
+rp
+sW
+sW
+sW
+mE
+MN
+AL
+BK
+Cx
+AN
+TN
+JV
+ub
+Fj
+Fj
+GK
+ub
+ug
+Hf
+Hf
+Hf
+aI
+aa
+Qq
+HX
+DM
+DU
+IK
+rG
+Pp
+QL
+Qq
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+ag
+ae
+ag
+ag
+ak
+ag
+aD
+ad
+aa
+aI
+aQ
+aQ
+aQ
+bJ
+cl
+dg
+dT
+nC
+nC
+nC
+nC
+eI
+XD
+PQ
+rC
+dr
+Up
+Ar
+oo
+pm
+eI
+cg
+sz
+re
+Em
+YQ
+xl
+yp
+YQ
+AN
+AM
+BL
+Cy
+AN
+tZ
+EB
+ub
+FK
+ED
+GL
+ub
+xm
+Hf
+Hf
+Hf
+aI
+aa
+Qq
+qq
+Ow
+Qj
+DJ
+XN
+Pp
+iw
+Qq
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+ad
+am
+ag
+ae
+UD
+am
+ad
+ad
+aa
+aI
+aQ
+aQ
+aQ
+bJ
+nC
+nC
+nC
+nC
+fO
+Eg
+hB
+eI
+QK
+jq
+hH
+ZH
+ZH
+ZH
+ZH
+Mh
+eI
+ra
+sB
+OY
+wl
+wl
+wl
+wl
+wl
+AN
+AN
+AN
+AN
+AN
+jt
+Dn
+Dn
+Dn
+Gl
+Dn
+Dn
+xm
+Hf
+Hf
+Hf
+aI
+aa
+Qq
+Qq
+Rl
+Pp
+Pp
+Pp
+Rl
+Qq
+Qq
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+ad
+ag
+at
+ag
+ad
+ad
+aa
+aa
+aI
+aT
+aT
+aT
+bK
+nC
+dh
+dU
+PF
+fP
+gG
+hC
+eI
+gP
+xv
+XC
+ds
+uh
+yD
+dM
+dM
+eI
+rk
+sC
+tW
+vh
+yq
+Og
+yq
+Yn
+Er
+XB
+iC
+Yn
+Ba
+CE
+Dn
+DV
+Fg
+EC
+Gm
+Dn
+Hz
+jZ
+jZ
+jZ
+aI
+aa
+aa
+Qq
+Qq
+Ih
+Pp
+Iw
+Qq
+Qq
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+as
+ag
+ag
+ad
+aa
+aa
+aa
+aI
+aT
+aT
+aT
+bL
+nC
+di
+dV
+NM
+fQ
+gH
+hD
+WP
+rA
+xW
+FR
+nA
+nX
+nX
+nX
+nX
+nX
+sW
+sv
+sW
+Un
+QH
+xo
+xp
+Yn
+vo
+AP
+AS
+Du
+Ba
+CE
+Dn
+DW
+Fh
+FL
+FL
+Hk
+Ba
+jZ
+jZ
+jZ
+aI
+aa
+aa
+aa
+Qq
+Ih
+Xd
+Iw
+Qq
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+ad
+ad
+ad
+ad
+aa
+aa
+aa
+aI
+aT
+aT
+mG
+bL
+cn
+dj
+dW
+NW
+NO
+gI
+hE
+nA
+lg
+ki
+OT
+nA
+mx
+nl
+ok
+pj
+qc
+Oq
+sE
+je
+vg
+wp
+xu
+XF
+Yn
+wK
+RR
+AQ
+Yn
+Ba
+CE
+Dn
+Dn
+Dn
+Gn
+Dn
+Dn
+Ba
+jZ
+jZ
+jZ
+aI
+aa
+aa
+aa
+Qq
+Qq
+Qq
+Qq
+Qq
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aI
+aT
+aT
+St
+LT
+nC
+Ms
+dX
+eG
+fR
+Tr
+gJ
+nA
+nA
+kj
+kZ
+nA
+my
+nt
+ol
+pk
+om
+lc
+Zv
+Ik
+py
+xO
+sH
+TL
+Yn
+SK
+LQ
+Uw
+Yn
+Ba
+CE
+ub
+Fi
+Fj
+ED
+ED
+ub
+Ba
+jZ
+jZ
+jZ
+aI
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aI
+aT
+aT
+mG
+bL
+nC
+nC
+nC
+nC
+nC
+qd
+qd
+qd
+rv
+kd
+kW
+qd
+pt
+nn
+om
+Fr
+pt
+rr
+sG
+je
+vg
+Tv
+CQ
+yt
+Yn
+wH
+mB
+DA
+Yn
+Nq
+CU
+ub
+Fj
+FM
+Go
+GN
+ub
+Ba
+jZ
+jZ
+jZ
+aI
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aI
+aT
+aT
+aT
+bL
+OA
+OA
+dn
+Zg
+SY
+qd
+hA
+Wv
+Mm
+Nv
+Wc
+PU
+PZ
+Of
+BI
+Cu
+TF
+Bg
+AR
+ua
+vh
+wr
+vi
+NI
+Yn
+yr
+Ke
+Iv
+Yn
+Do
+DZ
+ub
+Fk
+IH
+Gm
+GO
+ub
+Ba
+jZ
+jZ
+jZ
+aI
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aI
+aT
+aT
+aT
+bM
+co
+co
+dZ
+dn
+YV
+tk
+BI
+BI
+Mm
+Nv
+Nv
+Nv
+Nv
+Hb
+BI
+Rd
+qd
+PX
+Wh
+ji
+RG
+RG
+RG
+RG
+RG
+RG
+RG
+rE
+RG
+RG
+CU
+ub
+Ox
+FK
+Fj
+GP
+ub
+Ba
+jZ
+jZ
+jZ
+aI
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aI
+aT
+aT
+aT
+bN
+cp
+dl
+ea
+dl
+dl
+rY
+oP
+AH
+ti
+YI
+YI
+YI
+YI
+Tl
+LS
+ud
+qd
+wB
+sJ
+sW
+RG
+wt
+xs
+yv
+zr
+CL
+AV
+BO
+CI
+RG
+Lr
+ub
+ED
+Fj
+Gp
+ub
+ub
+Ba
+jZ
+jZ
+jZ
+aI
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aI
+aT
+aT
+aT
+bN
+OA
+dm
+eb
+eJ
+yL
+rY
+kn
+BI
+Qo
+zM
+zM
+zM
+zM
+Zk
+BI
+BI
+qd
+Wx
+sF
+Mi
+TR
+wu
+xt
+yw
+zs
+Ag
+AW
+BN
+CJ
+RG
+CU
+ub
+ED
+ub
+ub
+ub
+IJ
+Tk
+jZ
+jZ
+jZ
+aI
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aI
+aT
+aT
+aT
+qv
+cr
+dl
+ec
+eK
+nq
+rY
+KY
+BI
+Yz
+Nv
+Nv
+Nv
+Nv
+Iu
+BI
+BI
+Ng
+rt
+kR
+ue
+vn
+Eh
+Mj
+uq
+Mj
+XY
+WA
+ZW
+BF
+RG
+CU
+ub
+Ya
+ub
+Gq
+GQ
+EE
+EE
+jZ
+jZ
+jZ
+aI
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aI
+aT
+aT
+aT
+pz
+Dp
+dl
+ed
+ab
+hk
+rY
+KY
+BI
+Yz
+Nv
+Nv
+Nv
+Nv
+Iu
+BI
+BI
+Ti
+lc
+Xv
+UV
+TR
+MZ
+xs
+yv
+zu
+lQ
+AW
+BP
+CJ
+RG
+CU
+Dn
+Dn
+Dn
+EE
+EE
+EE
+EE
+jZ
+jZ
+jZ
+aI
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aI
+bd
+bd
+bd
+un
+IS
+dl
+dl
+eM
+dl
+rY
+rI
+BI
+qK
+Mr
+Mr
+Mr
+Mr
+ML
+BI
+BI
+qd
+ru
+Xv
+sW
+RG
+WT
+xt
+yw
+tN
+lQ
+yz
+LM
+SW
+RG
+JX
+JZ
+Kb
+Kb
+Ki
+Kb
+Kl
+zy
+pI
+pI
+pI
+aI
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aI
+bd
+bd
+eO
+QX
+Ea
+Jq
+OA
+eN
+cq
+qd
+KY
+AH
+BT
+zM
+zM
+zM
+zM
+ow
+LS
+nx
+qd
+WE
+Xv
+sW
+TE
+TE
+xx
+xx
+TE
+lQ
+Ag
+Ag
+Ag
+vm
+FZ
+Bc
+Bc
+Bc
+Bc
+EE
+Kk
+VA
+ps
+pI
+pI
+aI
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aI
+bd
+bd
+eP
+bd
+Hr
+Jr
+Js
+Ju
+cq
+qd
+xC
+BI
+Mm
+Nv
+Nv
+Nv
+Nv
+Dm
+BI
+Pb
+qe
+lJ
+AR
+GC
+TE
+wz
+OL
+XU
+TE
+Rm
+RG
+Ag
+Ag
+RG
+JY
+Bc
+Fm
+FO
+Bc
+Bd
+YX
+pI
+Ks
+pI
+pI
+aI
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aI
+bd
+bd
+fY
+bd
+aT
+vc
+Xu
+Jt
+fX
+qd
+KY
+BI
+Ji
+yl
+Rp
+yl
+Yo
+ro
+BI
+nN
+SN
+rw
+Xv
+je
+TE
+wA
+xy
+yB
+TY
+JR
+RG
+RG
+NZ
+RG
+JT
+Dq
+EE
+EE
+Gr
+EE
+jZ
+pI
+Ku
+pI
+pI
+aI
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+bd
+bd
+fY
+bd
+aT
+QU
+Dj
+Jz
+nz
+qd
+qd
+qd
+qd
+tk
+qd
+qd
+qd
+qd
+qd
+qd
+qd
+rx
+sR
+uk
+TE
+Pg
+xy
+yC
+BR
+Re
+RG
+Nz
+Fl
+RG
+Eb
+uV
+qM
+uV
+lM
+EE
+jZ
+pI
+Ku
+pI
+pI
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+bd
+bd
+fY
+bd
+aT
+dn
+ef
+SH
+fZ
+dn
+Fa
+ES
+UG
+Rs
+ve
+lT
+mK
+nG
+oA
+wl
+wl
+Tn
+Xv
+ul
+TE
+TE
+OG
+Nm
+Xa
+LI
+TE
+TE
+TE
+TE
+JT
+EE
+Fo
+hN
+zt
+EE
+jZ
+pI
+Ku
+pI
+pI
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+bd
+bd
+fY
+bd
+aT
+aT
+eg
+eR
+Jw
+Jw
+JC
+iG
+jv
+CT
+ve
+lU
+mK
+mK
+wl
+wl
+qr
+Vn
+op
+um
+vu
+TE
+TE
+TE
+hq
+VB
+Ej
+BU
+CN
+TE
+Ed
+EG
+Fp
+Nc
+Qm
+jZ
+jZ
+pI
+Ku
+pI
+pI
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aV
+bd
+fY
+bd
+aT
+aT
+aT
+aT
+Xp
+dn
+JB
+iH
+jw
+IW
+ve
+ve
+lj
+ve
+wl
+WY
+qs
+TC
+sU
+ZE
+YS
+oX
+TE
+TE
+TE
+TE
+TE
+TE
+TE
+TE
+Ra
+Wr
+Ne
+jZ
+jZ
+jZ
+EH
+pI
+Ku
+pI
+aV
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aV
+kp
+fY
+bd
+aT
+aT
+aT
+aT
+aT
+gX
+Ys
+JD
+JE
+JF
+JG
+Na
+Na
+Na
+JI
+JK
+fs
+zq
+JO
+Lw
+JP
+GF
+qZ
+JU
+JU
+JU
+JU
+JU
+SD
+JU
+Ee
+Rr
+gx
+jZ
+jZ
+jZ
+EH
+pI
+Ku
+tK
+aV
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aV
+kp
+fY
+bd
+cv
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+MM
+Su
+qt
+ux
+tA
+Kt
+PT
+Su
+MM
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+pI
+Ku
+tK
+aV
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+bd
+bd
+fY
+bd
+aT
+aT
+aT
+aT
+cv
+cv
+aT
+aT
+aT
+aT
+aT
+aT
+aI
+aI
+aI
+Su
+Su
+rB
+sX
+uo
+Su
+Su
+aI
+aI
+aI
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+EH
+EH
+jZ
+jZ
+jZ
+jZ
+pI
+Ku
+pI
+pI
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+bd
+bd
+PW
+bd
+kp
+bd
+kp
+aT
+cv
+aT
+aT
+aT
+aT
+aT
+aI
+aI
+aI
+aI
+Sp
+KR
+xi
+xi
+Tu
+xi
+xi
+KR
+mv
+aI
+aI
+aI
+aI
+jZ
+jZ
+jZ
+jZ
+EH
+EH
+jZ
+pI
+pI
+tK
+pI
+RH
+pI
+pI
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+bd
+LE
+gV
+JS
+PC
+Xb
+kp
+bd
+aT
+aT
+aT
+aT
+aT
+aa
+aa
+aa
+aa
+aa
+SO
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+SO
+aa
+aa
+aa
+aa
+aa
+jZ
+jZ
+jZ
+jZ
+jZ
+pI
+pI
+hI
+QZ
+kk
+VV
+Wu
+pI
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+bd
+bO
+Vp
+RM
+oB
+lI
+si
+bd
+aT
+aT
+aT
+aT
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+jZ
+jZ
+jZ
+jZ
+pI
+wm
+YA
+Ws
+qW
+Kv
+KA
+pI
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+bd
+qp
+gW
+KH
+kl
+Bl
+WC
+bd
+aT
+aT
+aT
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+jZ
+jZ
+jZ
+pI
+it
+Sy
+Zd
+Lq
+Kw
+iq
+pI
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+bd
+bd
+jg
+hO
+zx
+IU
+bd
+bd
+bd
+bb
+aT
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+jZ
+bb
+pI
+pI
+pI
+Km
+Kp
+Kx
+OK
+pI
+pI
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+bd
+TG
+lH
+Jh
+Zc
+PN
+bd
+KP
+bd
+bb
+aV
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aV
+To
+pI
+La
+pI
+ZF
+OS
+Jk
+RS
+ZR
+pI
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+bd
+Ud
+ql
+Xe
+KJ
+KL
+td
+ZT
+KP
+bd
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+rD
+aU
+La
+Oa
+Qi
+Ll
+Ls
+la
+Nu
+uf
+pI
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+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
+bd
+DX
+WF
+KF
+KK
+KM
+te
+KV
+UR
+KP
+bd
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+pI
+La
+LO
+Le
+Ri
+Lm
+Lt
+Lu
+Ws
+nE
+pI
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(141,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+bd
+LH
+WF
+Jm
+Aj
+KN
+tf
+PY
+AJ
+PL
+Sg
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+Li
+ZI
+Wy
+Sb
+Si
+Ln
+Kq
+Bb
+Ws
+vj
+pI
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(142,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+bd
+SJ
+WF
+Jh
+zf
+BY
+KP
+KP
+KP
+KP
+bd
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+pI
+La
+La
+La
+La
+Qk
+Jj
+Jk
+Ws
+MR
+pI
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(143,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+bd
+bd
+bd
+KG
+Al
+Jo
+KT
+OH
+YT
+Ye
+RI
+Mt
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+Uf
+Or
+Rv
+MW
+Mg
+Lc
+Lp
+Kr
+Jx
+pI
+pI
+pI
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(144,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+bd
+bd
+ee
+lk
+Wo
+Jp
+iA
+Qr
+iA
+Jy
+bd
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+pI
+Kg
+Kh
+BZ
+Kh
+Pq
+Xt
+Kz
+KE
+pI
+pI
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(145,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+bd
+bd
+cu
+cu
+bd
+cu
+cu
+bd
+cu
+cu
+bd
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+pI
+Kf
+Kf
+pI
+Kf
+Kf
+pI
+Kf
+Kf
+pI
+pI
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(146,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(147,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+LN
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(148,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(149,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(150,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(151,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(152,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(153,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(154,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(155,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(156,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(157,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(158,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(159,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(160,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(161,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(162,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(163,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(164,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+gE
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(165,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(166,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(167,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(168,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(169,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(170,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(171,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(172,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(173,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(174,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(175,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(176,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(177,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(178,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(179,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(180,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(181,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(182,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(183,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(184,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(185,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(186,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(187,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(188,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(189,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(190,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(191,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(192,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(193,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(194,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(195,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(196,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(197,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(198,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(199,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(200,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
diff --git a/maps/torch/torch3_deck3.dmm b/maps/torch/torch3_deck3.dmm
index 461e3be27ea16..75e179473ff81 100644
--- a/maps/torch/torch3_deck3.dmm
+++ b/maps/torch/torch3_deck3.dmm
@@ -704,6 +704,9 @@
/obj/item/device/megaphone,
/turf/simulated/floor/carpet/green,
/area/crew_quarters/chief_steward)
+"bU" = (
+/turf/simulated/floor/wood/walnut,
+/area/crew_quarters/virtual_reality)
"bY" = (
/turf/simulated/floor/tiled/freezer,
/area/crew_quarters/gym)
@@ -1793,6 +1796,16 @@
/obj/item/storage/box/lights/mixed,
/turf/simulated/floor/tiled/techfloor,
/area/maintenance/thirddeck/aftstarboard)
+"ek" = (
+/obj/floor_decal/spline/fancy/wood{
+ dir = 4
+ },
+/obj/structure/sign/warning/nosmoking_1{
+ dir = 4;
+ pixel_x = 16
+ },
+/turf/simulated/floor/carpet/blue,
+/area/crew_quarters/virtual_reality)
"el" = (
/turf/simulated/floor/tiled/steel_grid,
/area/janitor/storage)
@@ -2891,25 +2904,17 @@
/turf/simulated/floor/plating,
/area/vacant/mess)
"gH" = (
-/obj/landmark{
- name = "xeno_spawn";
- pixel_x = -1
- },
/turf/simulated/floor/plating,
/area/vacant/mess)
"gI" = (
-/obj/floor_decal/corner/red/diagonal,
-/obj/decal/cleanable/flour,
-/turf/simulated/floor/tiled/dark,
-/area/vacant/mess)
+/turf/simulated/wall/prepainted,
+/area/crew_quarters/virtual_reality_control)
"gJ" = (
-/obj/structure/closet/fridge,
/obj/random/single/cola,
/obj/random/single/cola,
/obj/random/single/cola,
/obj/random/single/cola,
/obj/random/single/cola,
-/obj/decal/cleanable/dirt,
/obj/floor_decal/corner/red/diagonal,
/turf/simulated/floor/tiled/dark,
/area/vacant/mess)
@@ -2946,6 +2951,15 @@
/obj/wallframe_spawn/no_grille,
/turf/simulated/floor/plating,
/area/crew_quarters/gym)
+"gN" = (
+/obj/floor_decal/spline/fancy/wood{
+ dir = 6
+ },
+/obj/machinery/light/spot{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/blue,
+/area/crew_quarters/virtual_reality)
"gO" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -3058,6 +3072,11 @@
/obj/structure/catwalk,
/turf/simulated/floor/tiled/techfloor,
/area/maintenance/thirddeck/aftstarboard)
+"gY" = (
+/obj/structure/disposalpipe/segment,
+/obj/wallframe_spawn/no_grille,
+/turf/simulated/floor/plating,
+/area/crew_quarters/virtual_reality)
"gZ" = (
/obj/decal/cleanable/dirt,
/obj/machinery/computer/modular/preset/civilian{
@@ -3328,10 +3347,9 @@
/turf/simulated/floor/plating,
/area/maintenance/thirddeck/starboard)
"hA" = (
-/turf/simulated/floor/reinforced{
- name = "Holodeck Projector Floor"
- },
-/area/holodeck/alphadeck)
+/obj/machinery/light/spot,
+/turf/simulated/floor/wood/walnut,
+/area/crew_quarters/virtual_reality)
"hB" = (
/obj/floor_decal/corner/red/diagonal,
/obj/structure/table/marble,
@@ -3352,7 +3370,6 @@
/area/vacant/mess)
"hE" = (
/obj/structure/table/marble,
-/obj/machinery/appliance/cooker/microwave,
/turf/simulated/floor/plating,
/area/vacant/mess)
"hG" = (
@@ -4255,6 +4272,16 @@
/obj/structure/railing/mapped,
/turf/simulated/floor/plating,
/area/maintenance/thirddeck/aftstarboard)
+"jA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/floor_decal/spline/fancy/wood,
+/turf/simulated/floor/carpet/blue,
+/area/crew_quarters/virtual_reality)
"jC" = (
/obj/random/junk,
/obj/decal/cleanable/dirt,
@@ -4540,7 +4567,6 @@
/turf/simulated/floor/plating,
/area/maintenance/thirddeck/starboard)
"kd" = (
-/obj/structure/table/standard,
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 8
},
@@ -4548,8 +4574,15 @@
dir = 4;
pixel_x = -21
},
-/turf/simulated/floor/tiled/dark,
-/area/holocontrol)
+/obj/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/obj/machinery/light/spot{
+ dir = 8
+ },
+/obj/structure/table/woodentable,
+/turf/simulated/floor/carpet/blue,
+/area/crew_quarters/virtual_reality)
"ke" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on/sauna{
dir = 1
@@ -4897,10 +4930,14 @@
dir = 8;
pixel_x = -24
},
-/obj/machinery/light/spot,
-/obj/structure/table/standard,
-/turf/simulated/floor/tiled/dark,
-/area/holocontrol)
+/obj/floor_decal/spline/fancy/wood{
+ dir = 10;
+ icon_state = "spline_fancy"
+ },
+/obj/machinery/recharger,
+/obj/structure/table/woodentable,
+/turf/simulated/floor/carpet/blue,
+/area/crew_quarters/virtual_reality)
"kX" = (
/obj/structure/railing/mapped{
icon_state = "railing0-1";
@@ -4971,6 +5008,7 @@
/obj/structure/closet/crate/internals/fuel,
/obj/floor_decal/industrial/outline/yellow,
/obj/machinery/firealarm{
+ dir = 2;
pixel_y = 24
},
/turf/simulated/floor/tiled/techfloor/grid,
@@ -5025,6 +5063,14 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/thruster/d3starboard)
+"lo" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/wood/walnut,
+/area/crew_quarters/virtual_reality)
"lp" = (
/obj/structure/table/rack,
/obj/random/maintenance/solgov,
@@ -5553,19 +5599,23 @@
dir = 8
},
/turf/simulated/floor/tiled/monotile,
-/area/holocontrol)
+/area/crew_quarters/virtual_reality_control)
"my" = (
/obj/structure/table/standard,
/obj/item/paper{
- name = "Holodeck Disclaimer";
desc = "";
- info = "Bruises sustained in the holodeck can be healed simply by sleeping."
+ info = "VR users cannot hear over the radio or loudspeakers. Please use the VR Control program to directly message occupants, or eject them from the pod. Thanks!";
+ name = "VR disclaimer"
},
/obj/machinery/alarm{
pixel_y = 24
},
+/obj/machinery/camera/network/third_deck{
+ c_tag = "Holodeck Control";
+ dir = 8
+ },
/turf/simulated/floor/tiled/monotile,
-/area/holocontrol)
+/area/crew_quarters/virtual_reality_control)
"mB" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/item/flame/candle/scented/incense{
@@ -5802,8 +5852,14 @@
dir = 8;
pixel_x = -24
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
/turf/simulated/floor/tiled,
-/area/holocontrol)
+/area/crew_quarters/virtual_reality_control)
"nm" = (
/obj/structure/table/steel,
/obj/random/maintenance/solgov,
@@ -5812,9 +5868,15 @@
/turf/simulated/floor/plating,
/area/maintenance/thirddeck/starboard)
"nn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/obj/wallframe_spawn/no_grille,
/turf/simulated/floor/plating,
-/area/holocontrol)
+/area/crew_quarters/virtual_reality_control)
"no" = (
/obj/floor_decal/industrial/warning/corner{
dir = 1
@@ -5842,13 +5904,17 @@
/area/crew_quarters/commissary)
"nt" = (
/obj/floor_decal/industrial/warning/corner,
-/obj/machinery/computer/HolodeckControl{
- dir = 8;
- linkedholodeck_area = /area/holodeck/alphadeck;
- programs_list_id = "TorchMainPrograms"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/computer/modular/preset/vr_control{
+ dir = 8
},
/turf/simulated/floor/tiled,
-/area/holocontrol)
+/area/crew_quarters/virtual_reality_control)
"nu" = (
/obj/structure/disposalpipe/segment{
icon_state = "pipe-c";
@@ -6191,19 +6257,20 @@
/area/crew_quarters/galley)
"ok" = (
/obj/machinery/power/apc{
- name = "west bump";
dir = 8;
+ name = "west bump";
pixel_x = -24
},
/obj/structure/cable/green{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled,
-/area/holocontrol)
+/area/crew_quarters/virtual_reality_control)
"ol" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 8
@@ -6212,11 +6279,11 @@
dir = 4
},
/turf/simulated/floor/tiled,
-/area/holocontrol)
+/area/crew_quarters/virtual_reality_control)
"om" = (
/obj/machinery/door/firedoor,
/turf/simulated/floor/tiled/steel_ridged,
-/area/holocontrol)
+/area/crew_quarters/virtual_reality_control)
"on" = (
/obj/structure/dispenser/oxygen,
/obj/floor_decal/industrial/outline/yellow,
@@ -6274,6 +6341,10 @@
/obj/item/stack/material/phoron/ten,
/turf/simulated/floor/tiled/techfloor,
/area/hallway/primary/thirddeck/fore)
+"ou" = (
+/obj/floor_decal/spline/fancy/wood,
+/turf/simulated/floor/carpet/blue,
+/area/crew_quarters/virtual_reality)
"ov" = (
/obj/floor_decal/corner/green{
dir = 10
@@ -6669,14 +6740,11 @@
/area/crew_quarters/mess)
"pj" = (
/obj/structure/cable/green{
- icon_state = "1-2";
d1 = 1;
- d2 = 2
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
/obj/machinery/light{
dir = 8
},
@@ -6684,8 +6752,16 @@
dir = 4;
pixel_x = -21
},
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
/turf/simulated/floor/tiled,
-/area/holocontrol)
+/area/crew_quarters/virtual_reality_control)
"pk" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 8
@@ -6693,8 +6769,13 @@
/obj/floor_decal/industrial/warning{
dir = 4
},
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/turf/simulated/floor/tiled,
-/area/holocontrol)
+/area/crew_quarters/virtual_reality_control)
"pl" = (
/obj/random/obstruction,
/turf/simulated/floor/plating,
@@ -7005,25 +7086,25 @@
/area/crew_quarters/mess)
"qc" = (
/obj/machinery/door/airlock/multi_tile/glass/civilian{
- name = "Holodeck"
+ name = "VR Control"
},
/obj/structure/cable/green{
- icon_state = "1-2";
d1 = 1;
- d2 = 2
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/firedoor,
/turf/simulated/floor/tiled/steel_ridged,
-/area/holocontrol)
+/area/crew_quarters/virtual_reality_control)
"qd" = (
-/turf/simulated/wall/prepainted,
-/area/holocontrol)
+/turf/simulated/wall/r_wall/prepainted,
+/area/crew_quarters/virtual_reality)
"qe" = (
/obj/machinery/status_display,
/turf/simulated/wall/prepainted,
-/area/holocontrol)
+/area/crew_quarters/virtual_reality)
"qg" = (
/turf/simulated/wall/r_wall/hull,
/area/hallway/primary/thirddeck/fore)
@@ -7047,6 +7128,13 @@
},
/turf/simulated/floor/plating,
/area/maintenance/thirddeck/port)
+"qk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/vr_pod{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/blue,
+/area/crew_quarters/virtual_reality)
"ql" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan,
/obj/machinery/meter,
@@ -7054,6 +7142,19 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/tiled/techfloor,
/area/thruster/d3starboard)
+"qm" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/floor_decal/spline/fancy/wood{
+ dir = 1;
+ icon_state = "spline_fancy"
+ },
+/obj/machinery/vr_pod{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/blue,
+/area/crew_quarters/virtual_reality)
"qn" = (
/obj/machinery/light{
dir = 8
@@ -7366,6 +7467,10 @@
},
/turf/simulated/floor/tiled/monotile,
/area/hallway/primary/thirddeck/center)
+"rj" = (
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/crew_quarters/virtual_reality)
"rk" = (
/obj/floor_decal/corner/yellow{
dir = 5
@@ -7433,14 +7538,20 @@
/turf/simulated/floor/tiled,
/area/hallway/primary/thirddeck/aft)
"rv" = (
-/obj/machinery/hologram/holopad,
-/obj/floor_decal/industrial/outline/yellow,
+/obj/machinery/camera/network/third_deck{
+ c_tag = "VR Suites - Front"
+ },
/obj/machinery/alarm{
dir = 4;
- pixel_x = -23
+ pixel_x = -23;
+ pixel_y = 0
},
-/turf/simulated/floor/tiled/dark,
-/area/holocontrol)
+/obj/floor_decal/spline/fancy/wood{
+ dir = 9
+ },
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/carpet/blue,
+/area/crew_quarters/virtual_reality)
"rw" = (
/obj/floor_decal/corner/green{
dir = 5
@@ -7448,6 +7559,7 @@
/obj/machinery/light{
dir = 1
},
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/hallway/primary/thirddeck/aft)
"rx" = (
@@ -7477,9 +7589,6 @@
/turf/simulated/floor/tiled/techfloor,
/area/maintenance/thirddeck/starboard)
"rA" = (
-/obj/structure/window/boron_reinforced{
- dir = 8
- },
/obj/structure/closet/crate,
/obj/item/stack/material/phoron{
amount = 50
@@ -7552,6 +7661,10 @@
/obj/item/reagent_containers/glass/bucket,
/turf/simulated/floor/tiled/techfloor,
/area/maintenance/thirddeck/starboard)
+"rI" = (
+/obj/wallframe_spawn/no_grille,
+/turf/simulated/floor/plating,
+/area/crew_quarters/virtual_reality)
"rK" = (
/obj/structure/railing/mapped{
icon_state = "railing0-1";
@@ -7657,6 +7770,26 @@
},
/turf/simulated/floor/carpet,
/area/crew_quarters/recreation)
+"rW" = (
+/obj/floor_decal/spline/fancy/wood{
+ dir = 1;
+ icon_state = "spline_fancy"
+ },
+/turf/simulated/floor/carpet/blue,
+/area/crew_quarters/virtual_reality)
+"rX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/floor_decal/spline/fancy/wood{
+ dir = 1;
+ icon_state = "spline_fancy"
+ },
+/obj/machinery/vr_pod{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/blue,
+/area/crew_quarters/virtual_reality)
"rZ" = (
/obj/structure/table/woodentable/walnut,
/obj/machinery/chemical_dispenser/bar_coffee/full{
@@ -7683,6 +7816,13 @@
/obj/structure/catwalk,
/turf/simulated/floor/plating,
/area/maintenance/thirddeck/forestarboard)
+"sb" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1;
+ level = 2
+ },
+/turf/simulated/floor/wood/walnut,
+/area/crew_quarters/virtual_reality)
"sc" = (
/obj/floor_decal/corner/green/half{
dir = 1
@@ -7901,6 +8041,16 @@
/obj/catwalk_plated,
/turf/simulated/floor/plating,
/area/hallway/primary/thirddeck/center)
+"st" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/floor_decal/spline/fancy/wood,
+/obj/machinery/vr_pod{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/blue,
+/area/crew_quarters/virtual_reality)
"su" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1
@@ -8249,6 +8399,19 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/maintenance/thirddeck/starboard)
+"ta" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/floor_decal/spline/fancy/wood{
+ dir = 1;
+ icon_state = "spline_fancy"
+ },
+/obj/machinery/vr_pod{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/blue,
+/area/crew_quarters/virtual_reality)
"tb" = (
/obj/random/obstruction,
/obj/random/trash,
@@ -8771,6 +8934,12 @@
},
/turf/simulated/floor/grass,
/area/crew_quarters/observation)
+"uw" = (
+/obj/machinery/vending/snack{
+ dir = 1
+ },
+/turf/simulated/floor/wood/walnut,
+/area/crew_quarters/virtual_reality)
"ux" = (
/obj/floor_decal/corner/lime{
dir = 4
@@ -9147,6 +9316,16 @@
/obj/machinery/atmospherics/pipe/manifold4w/visible/fuel,
/turf/simulated/floor/tiled/techfloor,
/area/thruster/d3starboard)
+"vC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/floor_decal/spline/fancy/wood{
+ dir = 1;
+ icon_state = "spline_fancy"
+ },
+/turf/simulated/floor/carpet/blue,
+/area/crew_quarters/virtual_reality)
"vD" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/green{
@@ -9368,6 +9547,14 @@
},
/turf/simulated/floor/tiled,
/area/hydroponics)
+"wo" = (
+/obj/item/device/radio/intercom/entertainment{
+ dir = 4;
+ pixel_x = -22
+ },
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/wood/walnut,
+/area/crew_quarters/virtual_reality)
"wp" = (
/turf/simulated/floor/lino,
/area/crew_quarters/office)
@@ -9801,6 +9988,16 @@
/obj/machinery/rotating_alarm/security_alarm,
/turf/simulated/floor/tiled/monotile,
/area/hallway/primary/thirddeck/center)
+"xD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/floor_decal/spline/fancy/wood,
+/obj/machinery/vr_pod{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/blue,
+/area/crew_quarters/virtual_reality)
"xE" = (
/obj/floor_decal/corner/green{
dir = 4
@@ -9997,7 +10194,9 @@
/area/security/habcheck)
"xW" = (
/obj/machinery/door/window/brigdoor{
- dir = 8
+ color = "PURPLE";
+ dir = 8;
+ icon_state = "leftsecure"
},
/obj/floor_decal/industrial/warning{
dir = 8
@@ -10127,6 +10326,24 @@
},
/turf/simulated/floor/wood/walnut,
/area/crew_quarters/recreation)
+"yj" = (
+/obj/catwalk_plated,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8";
+ d1 = 4;
+ d2 = 8
+ },
+/obj/structure/disposalpipe/diversion_junction{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/hallway/primary/thirddeck/aft)
"yk" = (
/obj/machinery/camera/network/third_deck{
dir = 8;
@@ -10203,6 +10420,9 @@
},
/turf/simulated/floor/wood/maple,
/area/chapel/main)
+"yA" = (
+/turf/simulated/wall/prepainted,
+/area/crew_quarters/virtual_reality)
"yB" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 10
@@ -10216,6 +10436,9 @@
/obj/item/pen,
/turf/simulated/floor/carpet/purple,
/area/chapel/office)
+"yD" = (
+/turf/simulated/wall/r_wall/prepainted,
+/area/crew_quarters/virtual_reality_control)
"yE" = (
/obj/structure/table/rack,
/turf/simulated/floor/plating,
@@ -10498,6 +10721,11 @@
/obj/structure/bed/chair/pew/mahogany,
/turf/simulated/floor/tiled/dark,
/area/chapel/main)
+"zw" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk,
+/turf/simulated/floor/wood/walnut,
+/area/crew_quarters/virtual_reality)
"zx" = (
/obj/machinery/power/apc/critical{
name = "south bump";
@@ -10719,6 +10947,16 @@
"Al" = (
/turf/simulated/floor/tiled/techfloor/grid,
/area/thruster/d3starboard)
+"Ao" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/floor_decal/spline/fancy/wood,
+/obj/machinery/vr_pod{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/blue,
+/area/crew_quarters/virtual_reality)
"Ap" = (
/obj/floor_decal/corner/green{
dir = 9
@@ -10964,6 +11202,12 @@
/obj/structure/curtain/medical,
/turf/simulated/floor/tiled/freezer,
/area/crew_quarters/galleybackroom)
+"AY" = (
+/obj/machinery/vr_pod{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/blue,
+/area/crew_quarters/virtual_reality)
"Ba" = (
/turf/simulated/floor/plating,
/area/maintenance/thirddeck/aftport)
@@ -11150,6 +11394,12 @@
},
/turf/simulated/floor/tiled,
/area/storage/tools)
+"BB" = (
+/obj/floor_decal/spline/fancy/wood/corner{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/blue,
+/area/crew_quarters/virtual_reality)
"BD" = (
/obj/floor_decal/corner/green/half{
dir = 1
@@ -11160,6 +11410,12 @@
},
/turf/simulated/floor/tiled/monotile,
/area/crew_quarters/commissary)
+"BE" = (
+/obj/machinery/vr_pod{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/blue,
+/area/crew_quarters/virtual_reality)
"BF" = (
/obj/floor_decal/spline/fancy/black,
/obj/item/device/radio/intercom/entertainment{
@@ -11609,6 +11865,10 @@
},
/turf/simulated/floor/lino,
/area/crew_quarters/office)
+"CR" = (
+/obj/structure/closet/firecloset,
+/turf/simulated/floor/wood/walnut,
+/area/crew_quarters/virtual_reality)
"CS" = (
/obj/structure/cable/green{
icon_state = "4-8";
@@ -12569,6 +12829,10 @@
},
/turf/simulated/floor/plating,
/area/maintenance/thirddeck/aftstarboard)
+"Fb" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/wood/walnut,
+/area/crew_quarters/virtual_reality)
"Fc" = (
/obj/structure/railing/mapped{
icon_state = "railing0-1";
@@ -12686,12 +12950,17 @@
/area/crew_quarters/head)
"Fr" = (
/obj/machinery/door/airlock/multi_tile/glass/civilian{
- name = "Holodeck";
- dir = 8
+ dir = 8;
+ name = "VR Suites"
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/machinery/door/firedoor,
/turf/simulated/floor/tiled/steel_ridged,
-/area/holocontrol)
+/area/crew_quarters/virtual_reality_control)
"Fs" = (
/turf/simulated/floor/tiled/monotile,
/area/crew_quarters/gym)
@@ -12862,9 +13131,6 @@
/turf/simulated/floor/grass,
/area/crew_quarters/observation)
"FR" = (
-/obj/structure/window/boron_reinforced{
- dir = 8
- },
/obj/floor_decal/industrial/warning{
dir = 8
},
@@ -13292,6 +13558,19 @@
/obj/floor_decal/industrial/outline/grey,
/turf/simulated/floor/tiled/techfloor,
/area/maintenance/thirddeck/foreport)
+"GX" = (
+/obj/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/obj/machinery/newscaster{
+ pixel_x = -32
+ },
+/obj/machinery/light_switch{
+ pixel_x = -24;
+ pixel_y = 24
+ },
+/turf/simulated/floor/carpet/blue,
+/area/crew_quarters/virtual_reality)
"GY" = (
/obj/structure/hygiene/drain,
/turf/simulated/floor/tiled,
@@ -14318,6 +14597,10 @@
/obj/structure/catwalk,
/turf/simulated/floor/plating,
/area/maintenance/thirddeck/aftstarboard)
+"Jv" = (
+/obj/structure/bed/chair/comfy/brown,
+/turf/simulated/floor/wood/walnut,
+/area/crew_quarters/virtual_reality)
"Jw" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -14372,6 +14655,9 @@
/obj/structure/catwalk,
/turf/simulated/floor/plating,
/area/maintenance/thirddeck/aftstarboard)
+"JA" = (
+/turf/simulated/floor/carpet/blue,
+/area/crew_quarters/virtual_reality)
"JB" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -14640,6 +14926,14 @@
},
/turf/simulated/floor/plating,
/area/maintenance/thirddeck/aftport)
+"JY" = (
+/obj/structure/bed/chair/comfy/brown,
+/obj/machinery/firealarm{
+ dir = 2;
+ pixel_y = 24
+ },
+/turf/simulated/floor/wood/walnut,
+/area/crew_quarters/virtual_reality)
"Kb" = (
/obj/machinery/atmospherics/pipe/simple/visible/fuel,
/obj/structure/cable/green{
@@ -15164,6 +15458,11 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/thruster/d3port)
+"Lo" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/maintenance,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/crew_quarters/virtual_reality)
"Lp" = (
/obj/floor_decal/industrial/warning/corner{
icon_state = "warningcorner";
@@ -15637,6 +15936,10 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled/dark,
/area/chapel/main)
+"Mk" = (
+/obj/structure/reagent_dispensers/water_cooler,
+/turf/simulated/floor/wood/walnut,
+/area/crew_quarters/virtual_reality)
"Ml" = (
/obj/structure/extinguisher_cabinet{
pixel_x = 32
@@ -15678,6 +15981,12 @@
/obj/structure/catwalk,
/turf/simulated/floor/plating,
/area/engineering/atmos/aux)
+"Mq" = (
+/obj/machinery/vending/cola{
+ dir = 1
+ },
+/turf/simulated/floor/wood/walnut,
+/area/crew_quarters/virtual_reality)
"Mr" = (
/obj/item/stack/cable_coil/single,
/turf/simulated/floor/plating,
@@ -15979,6 +16288,13 @@
/obj/machinery/portable_atmospherics/canister/empty/carbon_dioxide,
/turf/simulated/floor/tiled/techfloor,
/area/maintenance/thirddeck/port)
+"Nk" = (
+/obj/item/modular_computer/telescreen/preset/generic{
+ pixel_y = 32
+ },
+/obj/structure/bed/chair/comfy/brown,
+/turf/simulated/floor/wood/walnut,
+/area/crew_quarters/virtual_reality)
"Nl" = (
/obj/structure/table/rack,
/obj/random/maintenance/solgov,
@@ -16023,6 +16339,14 @@
/obj/floor_decal/industrial/outline/grey,
/turf/simulated/floor/tiled/techfloor,
/area/maintenance/thirddeck/aftport)
+"Nr" = (
+/obj/machinery/light/spot{
+ dir = 1
+ },
+/obj/structure/table/woodentable,
+/obj/item/newspaper,
+/turf/simulated/floor/wood/walnut,
+/area/crew_quarters/virtual_reality)
"Ns" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 1
@@ -16094,6 +16418,20 @@
"NB" = (
/turf/simulated/wall/r_wall/hull,
/area/crew_quarters/commissary)
+"NC" = (
+/obj/floor_decal/spline/fancy/wood{
+ dir = 4
+ },
+/obj/item/device/radio/intercom/entertainment{
+ dir = 8;
+ pixel_x = 22
+ },
+/obj/machinery/camera/network/third_deck{
+ c_tag = "VR Suites - Back";
+ dir = 8
+ },
+/turf/simulated/floor/carpet/blue,
+/area/crew_quarters/virtual_reality)
"NE" = (
/obj/floor_decal/corner/green{
dir = 4
@@ -16192,6 +16530,10 @@
/area/hallway/primary/thirddeck/fore)
"NO" = (
/obj/decal/cleanable/dirt,
+/obj/landmark{
+ name = "xeno_spawn";
+ pixel_x = -1
+ },
/turf/simulated/floor/plating,
/area/vacant/mess)
"NQ" = (
@@ -16610,7 +16952,8 @@
/obj/floor_decal/industrial/outline/yellow,
/obj/machinery/alarm{
dir = 8;
- pixel_x = 25
+ pixel_x = 25;
+ pixel_y = 0
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -16961,6 +17304,15 @@
},
/turf/simulated/floor/tiled/dark/monotile,
/area/engineering/hardstorage)
+"PR" = (
+/obj/floor_decal/spline/fancy/wood{
+ dir = 5
+ },
+/obj/machinery/light/spot{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/blue,
+/area/crew_quarters/virtual_reality)
"PT" = (
/obj/floor_decal/corner/lime/three_quarters{
dir = 4
@@ -17967,6 +18319,18 @@
},
/turf/simulated/floor/tiled/dark/monotile,
/area/engineering/hardstorage)
+"SM" = (
+/obj/machinery/power/apc{
+ dir = 2;
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/wood/walnut,
+/area/crew_quarters/virtual_reality)
"SO" = (
/obj/machinery/power/terminal{
dir = 8
@@ -18332,6 +18696,19 @@
},
/turf/simulated/floor/tiled/dark,
/area/security/habcheck)
+"TU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/floor_decal/spline/fancy/wood{
+ dir = 1;
+ icon_state = "spline_fancy"
+ },
+/obj/machinery/vr_pod{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/blue,
+/area/crew_quarters/virtual_reality)
"TV" = (
/obj/floor_decal/industrial/hatch/yellow,
/obj/machinery/disposal,
@@ -18927,6 +19304,19 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/thruster/d3starboard)
+"Vq" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/floor_decal/spline/fancy/wood,
+/obj/machinery/vr_pod{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/blue,
+/area/crew_quarters/virtual_reality)
"Vr" = (
/obj/structure/cable/green{
icon_state = "1-2";
@@ -19735,6 +20125,12 @@
},
/turf/simulated/floor/plating,
/area/hallway/primary/thirddeck/aft)
+"Xw" = (
+/obj/floor_decal/spline/fancy/wood{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/blue,
+/area/crew_quarters/virtual_reality)
"Xy" = (
/obj/floor_decal/industrial/warning,
/obj/machinery/access_button{
@@ -19836,6 +20232,19 @@
"XK" = (
/turf/simulated/wall/prepainted,
/area/crew_quarters/service_break_room)
+"XL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/floor_decal/spline/fancy/wood{
+ dir = 10;
+ icon_state = "spline_fancy"
+ },
+/turf/simulated/floor/carpet/blue,
+/area/crew_quarters/virtual_reality)
"XM" = (
/obj/structure/railing/mapped,
/turf/simulated/floor/tiled/dark/monotile,
@@ -19996,6 +20405,12 @@
/obj/machinery/atmospherics/pipe/simple/visible/fuel,
/turf/simulated/floor/tiled/techfloor,
/area/thruster/d3starboard)
+"Yg" = (
+/obj/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/blue,
+/area/crew_quarters/virtual_reality)
"Yi" = (
/obj/structure/reagent_dispensers/water_cooler{
dir = 1
@@ -20100,6 +20515,13 @@
},
/turf/simulated/floor/tiled/dark,
/area/engineering/hardstorage)
+"Yw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/floor_decal/spline/fancy/wood,
+/turf/simulated/floor/carpet/blue,
+/area/crew_quarters/virtual_reality)
"Yx" = (
/obj/structure/table/marble,
/turf/simulated/floor/tiled/dark,
@@ -20342,6 +20764,13 @@
},
/turf/simulated/floor/tiled,
/area/storage/tools)
+"Zk" = (
+/obj/machinery/door/airlock/multi_tile/glass/civilian{
+ name = "VR Suites"
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled/steel_ridged,
+/area/crew_quarters/virtual_reality)
"Zl" = (
/obj/structure/cable/green{
icon_state = "1-8";
@@ -43164,11 +43593,11 @@ rA
xW
FR
nA
-qd
-qd
-qd
-qd
-qd
+yD
+yD
+yD
+yD
+yD
sW
sv
sW
@@ -43359,7 +43788,7 @@ dj
dW
NW
NO
-gI
+Tr
hE
nA
lg
@@ -43763,18 +44192,18 @@ nC
nC
nC
nC
-qd
-qd
-qd
+yA
+yA
+yA
rv
kd
kW
-qd
-qd
+yA
+gI
nn
om
Fr
-qd
+gI
rr
sG
je
@@ -43965,18 +44394,18 @@ OA
dn
Zg
SY
-qd
-hA
-hA
-hA
-hA
-hA
-hA
-hA
-hA
-hA
-hA
-qd
+yA
+CR
+wo
+rW
+JA
+BB
+Yg
+GX
+XL
+bU
+lo
+rI
Bg
AR
ua
@@ -44167,18 +44596,18 @@ co
dZ
dn
YV
-qd
-hA
-hA
-hA
-hA
-hA
-hA
-hA
-hA
-hA
-hA
-qd
+Lo
+bU
+bU
+rW
+JA
+JA
+JA
+JA
+jA
+bU
+SM
+yA
PX
Wh
ji
@@ -44370,17 +44799,17 @@ ea
dl
dl
qd
+Mk
+Fb
+qm
+qk
+qk
+qk
+qk
+Vq
+sb
hA
-hA
-hA
-hA
-hA
-hA
-hA
-hA
-hA
-hA
-qd
+yA
wB
sJ
sW
@@ -44572,17 +45001,17 @@ eb
eJ
yL
qd
-hA
-hA
-hA
-hA
-hA
-hA
-hA
-hA
-hA
-hA
-qd
+Nr
+bU
+TU
+AY
+AY
+AY
+AY
+xD
+bU
+bU
+yA
Wx
sF
Mi
@@ -44774,17 +45203,17 @@ ec
eK
nq
qd
-hA
-hA
-hA
-hA
-hA
-hA
-hA
-hA
-hA
-hA
-qd
+Jv
+bU
+vC
+JA
+JA
+JA
+JA
+Yw
+bU
+bU
+Zk
rt
kR
ue
@@ -44976,17 +45405,17 @@ ed
ab
hk
qd
-hA
-hA
-hA
-hA
-hA
-hA
-hA
-hA
-hA
-hA
-qd
+Jv
+bU
+vC
+JA
+JA
+JA
+JA
+Yw
+bU
+bU
+rj
lc
Xv
UV
@@ -45178,17 +45607,17 @@ dl
eM
dl
qd
-hA
-hA
-hA
-hA
-hA
-hA
-hA
-hA
-hA
-hA
-qd
+JY
+bU
+ta
+BE
+BE
+BE
+BE
+st
+bU
+bU
+yA
ru
Xv
sW
@@ -45379,18 +45808,18 @@ Jq
OA
eN
cq
-qd
-hA
-hA
-hA
-hA
-hA
-hA
-hA
-hA
-hA
-hA
-qd
+yA
+Jv
+Fb
+rX
+AY
+AY
+AY
+AY
+Ao
+sb
+Mq
+yA
WE
Xv
sW
@@ -45581,17 +46010,17 @@ Jr
Js
Ju
cq
-qd
-hA
-hA
-hA
-hA
-hA
-hA
-hA
-hA
-hA
-hA
+yA
+Nk
+bU
+rW
+JA
+JA
+JA
+JA
+ou
+bU
+uw
qe
lJ
AR
@@ -45783,20 +46212,20 @@ vc
Xu
Jt
fX
-qd
-hA
-hA
-hA
-hA
-hA
-hA
-hA
-hA
-hA
-hA
-qd
+yA
+Jv
+bU
+PR
+Xw
+ek
+Xw
+NC
+gN
+bU
+zw
+gY
rw
-Xv
+yj
je
TE
wA
@@ -45985,18 +46414,18 @@ QU
Dj
Jz
nz
-qd
-qd
-qd
-qd
-qd
-qd
-qd
-qd
-qd
-qd
-qd
-qd
+yA
+yA
+yA
+yA
+Lo
+yA
+yA
+yA
+yA
+yA
+yA
+yA
rx
sF
uk
diff --git a/maps/torch/torch_areas.dm b/maps/torch/torch_areas.dm
index 57ec36e36ba5a..061b08abc51aa 100644
--- a/maps/torch/torch_areas.dm
+++ b/maps/torch/torch_areas.dm
@@ -1060,9 +1060,15 @@
name = "\improper Computer Lab"
icon_state = "conference"
-/area/holocontrol
- name = "\improper Holodeck Control"
- icon_state = "Holodeck"
+/area/crew_quarters/virtual_reality_control
+ name = "\improper VR Control"
+ icon_state = "vr_control"
+
+/area/crew_quarters/virtual_reality
+ name = "\improper VR Suites"
+ icon_state = "vr_suites"
+ sound_env = SMALL_SOFTFLOOR
+ area_flags = AREA_FLAG_RAD_SHIELDED | AREA_FLAG_ION_SHIELDED // don't want to fry people who are in VR!
// Borg Upload
@@ -1431,6 +1437,7 @@
name = "Auxiliary Tool Storage"
icon_state = "auxstorage"
+
// Holodecks
/area/holodeck
diff --git a/maps/torch/torch_define.dm b/maps/torch/torch_define.dm
index f5c40c695fd82..ce518d3f36743 100644
--- a/maps/torch/torch_define.dm
+++ b/maps/torch/torch_define.dm
@@ -7,8 +7,8 @@
admin_levels = list(7)
escape_levels = list(8)
- empty_levels = list(9)
- accessible_z_levels = list("1"=1,"2"=3,"3"=1,"4"=1,"5"=1,"6"=1,"9"=30)
+ vr_levels = list(9)
+ accessible_z_levels = list("1"=1,"2"=3,"3"=1,"4"=1,"5"=1,"6"=1)
overmap_size = 35
overmap_event_areas = 34
usable_email_tlds = list("torch.ec.scg", "torch.fleet.mil", "freemail.net", "torch.scg")
diff --git a/maps/torch/torch_security_state.dm b/maps/torch/torch_security_state.dm
index 3d8ede4fd2279..c39bc32689922 100644
--- a/maps/torch/torch_security_state.dm
+++ b/maps/torch/torch_security_state.dm
@@ -113,6 +113,7 @@
up_description = "A severe emergency has occurred. All staff are to report to their supervisor for orders. All crew should obey orders from relevant emergency personnel. Security personnel are permitted to search staff and facilities, and may have weapons unholstered at any time. Saferooms have been unbolted."
psionic_control_level = PSI_IMPLANT_DISABLED
+ kick_vr_users = TRUE
var/static/datum/announcement/priority/security/security_announcement_red = new(do_log = 0, do_newscast = 1, new_sound = sound('sound/misc/redalert1.ogg'))
@@ -138,6 +139,8 @@
overlay_alarm = "alarm_delta"
overlay_status_display = "status_display_delta"
alert_border = "alert_border_delta"
+
+ kick_vr_users = TRUE
var/static/datum/announcement/priority/security/security_announcement_delta = new(do_log = 0, do_newscast = 1, new_sound = sound('sound/effects/siren.ogg'))
diff --git a/maps/torch/z1_admin.dmm b/maps/torch/z1_admin.dmm
index 31c54837328f5..f3eb5de9f1505 100644
--- a/maps/torch/z1_admin.dmm
+++ b/maps/torch/z1_admin.dmm
@@ -2104,6 +2104,13 @@
"aqa" = (
/turf/unsimulated/beach/water,
/area/beach)
+"ara" = (
+/obj/floor_decal/corner/green{
+ dir = 6
+ },
+/obj/item/storage/firstaid/adv,
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_basketball)
"asP" = (
/turf/unsimulated/wall,
/area/centcom)
@@ -45361,7 +45368,7 @@ afq
afq
agY
ahy
-ahY
+ara
ahY
ahY
ajc
diff --git a/maps/torch/z3_virtualreality.dmm b/maps/torch/z3_virtualreality.dmm
new file mode 100644
index 0000000000000..4ea6c153fc129
--- /dev/null
+++ b/maps/torch/z3_virtualreality.dmm
@@ -0,0 +1,43917 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"ah" = (
+/obj/structure/flora/ausbushes/brflowers,
+/obj/floor_decal/spline/plain/grey{
+ dir = 8;
+ icon_state = "spline_plain"
+ },
+/turf/simulated/floor/holofloor/grass,
+/area/virtual_reality/cafe)
+"av" = (
+/obj/structure/closet/secure_closet/medical_wall{
+ name = "Pill Cabinet";
+ pixel_y = 32
+ },
+/obj/floor_decal/corner/beige/mono,
+/obj/machinery/reagentgrinder,
+/turf/simulated/floor/holofloor/tiled/white,
+/area/virtual_reality/infirmary)
+"bf" = (
+/obj/structure/sign{
+ desc = "It reads: \"Howdy neighbor! This giant box is where VR templates are cloned to. VR bodies spawn inside the cloned area to do VR things. Try and avoid messing with the inside, since things will just get deleted. If you're a VR mob and you see this, you escaped the simulation! Please report that to a coder or an admin, because that's a problem and you should never see this. Have a great day!\"";
+ icon_state = "goldenplaque";
+ name = "read me"
+ },
+/turf/unsimulated/wall{
+ desc = "This is as far as the simulated area goes out."
+ },
+/area/space)
+"bq" = (
+/obj/floor_decal/carpet{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/virtual_reality/courtroom)
+"bw" = (
+/obj/floor_decal/corner/green{
+ dir = 9
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/virtual_reality/basketball_court)
+"bC" = (
+/obj/floor_decal/carpet{
+ dir = 8
+ },
+/obj/floor_decal/carpet{
+ dir = 4
+ },
+/obj/floor_decal/carpet,
+/obj/floor_decal/carpet{
+ dir = 6
+ },
+/obj/floor_decal/carpet{
+ dir = 10
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/virtual_reality/theatre)
+"bF" = (
+/turf/simulated/wall/r_wall/hull,
+/area/virtual_reality/temple)
+"bJ" = (
+/obj/effect/vr_spawn,
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/virtual_reality/basketball_court)
+"bM" = (
+/obj/floor_decal/corner/green/three_quarters{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/virtual_reality/boxing_ring)
+"bN" = (
+/obj/floor_decal/floordetail/edgedrain,
+/obj/floor_decal/corner/paleblue{
+ dir = 5
+ },
+/obj/structure/closet/crate/freezer,
+/obj/item/device/mmi,
+/obj/item/reagent_containers/ivbag/nanoblood,
+/obj/item/reagent_containers/ivbag/blood/human/oneg,
+/obj/item/reagent_containers/ivbag/blood/human/oneg,
+/obj/item/reagent_containers/ivbag/blood/skrell/oneg,
+/obj/item/reagent_containers/ivbag/blood/unathi/oneg,
+/turf/simulated/floor/holofloor/tiled/white,
+/area/virtual_reality/infirmary)
+"bU" = (
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/effect/vr_spawn,
+/turf/simulated/floor/holofloor/grass,
+/area/virtual_reality/picnic_area)
+"bY" = (
+/obj/item/stool/padded,
+/obj/floor_decal/carpet{
+ dir = 4
+ },
+/obj/floor_decal/carpet,
+/obj/floor_decal/carpet{
+ dir = 6
+ },
+/obj/effect/vr_spawn,
+/turf/simulated/floor/holofloor/carpet,
+/area/virtual_reality/theatre)
+"cd" = (
+/obj/floor_decal/floordetail/edgedrain{
+ dir = 10
+ },
+/obj/floor_decal/corner/paleblue{
+ dir = 4
+ },
+/obj/structure/closet/crate/freezer,
+/obj/item/device/mmi,
+/obj/item/reagent_containers/ivbag/nanoblood,
+/obj/item/reagent_containers/ivbag/blood/human/oneg,
+/obj/item/reagent_containers/ivbag/blood/human/oneg,
+/obj/item/reagent_containers/ivbag/blood/skrell/oneg,
+/obj/item/reagent_containers/ivbag/blood/unathi/oneg,
+/turf/simulated/floor/holofloor/tiled/white,
+/area/virtual_reality/infirmary)
+"cK" = (
+/obj/floor_decal/corner/green{
+ dir = 6
+ },
+/obj/item/storage/firstaid/adv,
+/turf/simulated/floor/holofloor/tiled,
+/area/virtual_reality/basketball_court)
+"cN" = (
+/obj/floor_decal/stoneborder/corner{
+ dir = 1;
+ icon_state = "stoneborder_c"
+ },
+/turf/simulated/floor/holofloor/tiled/stone,
+/area/virtual_reality/temple)
+"cQ" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/obj/floor_decal/carpet{
+ dir = 8
+ },
+/obj/floor_decal/carpet,
+/obj/floor_decal/carpet{
+ dir = 10
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/virtual_reality/courtroom)
+"cS" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/obj/floor_decal/carpet{
+ dir = 8
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/virtual_reality/courtroom)
+"de" = (
+/obj/item/stool/padded,
+/obj/floor_decal/beach{
+ dir = 4;
+ icon_state = "beachborder"
+ },
+/obj/effect/vr_spawn,
+/turf/simulated/floor/holofloor/concrete,
+/area/virtual_reality/volleyball_court)
+"df" = (
+/obj/structure/flora/ausbushes/brflowers,
+/obj/effect/vr_spawn,
+/turf/simulated/floor/holofloor/grass,
+/area/virtual_reality/picnic_area)
+"dm" = (
+/obj/structure/table/rack,
+/obj/landmark/costume/chameleon,
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/virtual_reality/theatre)
+"dq" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/obj/floor_decal/carpet{
+ dir = 4
+ },
+/obj/floor_decal/carpet/corners{
+ dir = 9
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/virtual_reality/courtroom)
+"dr" = (
+/turf/simulated/wall/r_wall/hull,
+/area/virtual_reality/meeting_hall)
+"du" = (
+/obj/structure/table/standard,
+/obj/item/reagent_containers/spray/cleaner{
+ pixel_x = -5
+ },
+/obj/item/reagent_containers/spray/sterilizine,
+/obj/machinery/vending/wallmed1{
+ pixel_y = 32
+ },
+/obj/floor_decal/floordetail/edgedrain{
+ dir = 5
+ },
+/obj/floor_decal/corner/paleblue{
+ dir = 8
+ },
+/obj/item/reagent_containers/dropper/peridaxon,
+/turf/simulated/floor/holofloor/tiled/white,
+/area/virtual_reality/infirmary)
+"dz" = (
+/obj/structure/bed/chair/wood{
+ dir = 8;
+ holographic = 1;
+ icon_state = "wooden_chair_preview"
+ },
+/obj/effect/vr_spawn,
+/turf/simulated/floor/holofloor/concrete,
+/area/virtual_reality/plaza)
+"dL" = (
+/obj/machinery/door/window/holowindoor{
+ dir = 4;
+ name = "Red Team"
+ },
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/virtual_reality/thunderdome)
+"dT" = (
+/obj/structure/table/rack,
+/turf/simulated/floor/holofloor/wood{
+ icon_state = "wood_broken3"
+ },
+/area/virtual_reality/temple)
+"dZ" = (
+/obj/floor_decal/corner/beige/mono,
+/obj/machinery/chem_master,
+/turf/simulated/floor/holofloor/tiled/white,
+/area/virtual_reality/infirmary)
+"ei" = (
+/obj/machinery/atmospherics/portables_connector,
+/obj/machinery/portable_atmospherics/canister/oxygen/prechilled,
+/turf/simulated/floor/holofloor/tiled/white,
+/area/virtual_reality/infirmary)
+"ew" = (
+/turf/unsimulated/wall{
+ desc = "This is as far as the simulated area goes out."
+ },
+/area/virtual_reality/snowfield)
+"ey" = (
+/obj/structure/holohoop{
+ dir = 1
+ },
+/obj/floor_decal/corner/green{
+ dir = 10
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/virtual_reality/basketball_court)
+"eC" = (
+/turf/simulated/floor/holofloor/beach/sand{
+ dir = 4;
+ icon_state = "beach"
+ },
+/area/virtual_reality/beach)
+"eD" = (
+/turf/simulated/wall/r_wall/hull,
+/area/virtual_reality/volleyball_court)
+"eG" = (
+/obj/structure/table/woodentable,
+/obj/item/reagent_containers/glass/rag{
+ holographic = 1
+ },
+/turf/simulated/floor/holofloor/wood,
+/area/virtual_reality/cafe)
+"eM" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/obj/floor_decal/carpet{
+ dir = 4
+ },
+/obj/floor_decal/carpet,
+/obj/floor_decal/carpet{
+ dir = 6
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/virtual_reality/courtroom)
+"eO" = (
+/obj/floor_decal/corner/red{
+ dir = 5
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/virtual_reality/boxing_ring)
+"eW" = (
+/obj/floor_decal/floordetail/edgedrain{
+ dir = 6
+ },
+/obj/floor_decal/corner/paleblue{
+ dir = 1
+ },
+/obj/machinery/button/windowtint{
+ id = "or1_v2";
+ pixel_x = -6;
+ pixel_y = -24
+ },
+/obj/machinery/button/holosign{
+ id_tag = "or1_vr";
+ pixel_x = 6;
+ pixel_y = -24
+ },
+/turf/simulated/floor/holofloor/tiled/white,
+/area/virtual_reality/infirmary)
+"eX" = (
+/obj/structure/table/standard,
+/obj/item/reagent_containers/food/drinks/bottle/small/beer,
+/obj/item/reagent_containers/food/drinks/bottle/small/beer,
+/obj/item/reagent_containers/food/drinks/bottle/small/beer,
+/obj/item/reagent_containers/food/drinks/bottle/small/beer,
+/obj/item/reagent_containers/food/drinks/bottle/small/beer,
+/obj/item/reagent_containers/food/drinks/bottle/small/beer,
+/obj/item/reagent_containers/food/drinks/bottle/small/beer,
+/turf/simulated/floor/holofloor/beach/sand,
+/area/virtual_reality/beach)
+"eY" = (
+/obj/floor_decal/corner/paleblue{
+ dir = 5
+ },
+/obj/floor_decal/corner/paleblue{
+ dir = 10
+ },
+/obj/structure/table/standard,
+/obj/item/storage/box/bloodpacks,
+/obj/item/storage/box/glucose,
+/turf/simulated/floor/holofloor/tiled/white,
+/area/virtual_reality/infirmary)
+"fb" = (
+/obj/item/stool/padded,
+/turf/simulated/floor/holofloor/tiled,
+/area/virtual_reality/basketball_court)
+"fj" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/obj/floor_decal/carpet{
+ dir = 8
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/virtual_reality/courtroom)
+"fq" = (
+/obj/floor_decal/carpet{
+ dir = 4
+ },
+/obj/floor_decal/carpet{
+ dir = 1
+ },
+/obj/floor_decal/carpet{
+ dir = 5
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/virtual_reality/courtroom)
+"fs" = (
+/obj/floor_decal/corner/red{
+ dir = 5
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/virtual_reality/basketball_court)
+"fu" = (
+/obj/floor_decal/spline/plain{
+ dir = 8;
+ icon_state = "spline_plain"
+ },
+/obj/structure/holonet/end,
+/turf/simulated/floor/holofloor/beach/sand,
+/area/virtual_reality/volleyball_court)
+"fw" = (
+/obj/floor_decal/corner/green/three_quarters{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/virtual_reality/basketball_court)
+"fE" = (
+/obj/item/stool/padded,
+/obj/floor_decal/carpet{
+ dir = 8
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/virtual_reality/meeting_hall)
+"fF" = (
+/obj/structure/holonet,
+/turf/simulated/floor/holofloor/beach/sand,
+/area/virtual_reality/volleyball_court)
+"fJ" = (
+/turf/simulated/floor/holofloor/grass,
+/area/virtual_reality/picnic_area)
+"fO" = (
+/obj/structure/flora/grass/both,
+/turf/simulated/floor/holofloor/snow,
+/area/virtual_reality/snowfield)
+"gh" = (
+/obj/structure/flora/ausbushes/lavendergrass,
+/turf/simulated/floor/holofloor/grass,
+/area/virtual_reality/picnic_area)
+"gi" = (
+/turf/unsimulated/floor/plating,
+/area/virtual_reality/zone3)
+"gj" = (
+/obj/floor_decal/corner/red{
+ dir = 9
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/virtual_reality/boxing_ring)
+"go" = (
+/obj/structure/window/reinforced/holowindow/disappearing,
+/obj/floor_decal/corner/red{
+ dir = 10
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/virtual_reality/thunderdome)
+"gu" = (
+/obj/floor_decal/corner/red{
+ dir = 9
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/virtual_reality/basketball_court)
+"gy" = (
+/obj/structure/window/reinforced/holowindow,
+/obj/machinery/door/window/holowindoor{
+ dir = 1;
+ name = "Court Reporter's Box"
+ },
+/obj/structure/bed/chair,
+/turf/simulated/floor/holofloor/wood,
+/area/virtual_reality/courtroom)
+"gz" = (
+/obj/structure/flora/ausbushes/leafybush,
+/turf/simulated/floor/holofloor/grass,
+/area/virtual_reality/picnic_area)
+"gE" = (
+/obj/item/beach_ball,
+/turf/simulated/floor/holofloor/beach/sand,
+/area/virtual_reality/beach)
+"gH" = (
+/obj/floor_decal/sign/or1,
+/turf/simulated/floor/holofloor/tiled/white,
+/area/virtual_reality/infirmary)
+"gL" = (
+/obj/effect/vr_spawn,
+/turf/simulated/floor/holofloor/space,
+/area/virtual_reality/space)
+"gT" = (
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/virtual_reality/meeting_hall)
+"gV" = (
+/obj/structure/flora/ausbushes/lavendergrass,
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/structure/flora/ausbushes/ppflowers,
+/obj/structure/flora/ausbushes/brflowers,
+/obj/floor_decal/spline/fancy/wood{
+ dir = 9;
+ icon_state = "spline_fancy"
+ },
+/turf/simulated/floor/holofloor/grass,
+/area/virtual_reality/plaza)
+"gZ" = (
+/turf/simulated/floor/holofloor/tiled,
+/area/virtual_reality/boxing_ring)
+"hd" = (
+/turf/unsimulated/wall{
+ desc = "This is as far as the simulated area goes out."
+ },
+/area/virtual_reality/courtroom)
+"hh" = (
+/obj/floor_decal/corner/green{
+ dir = 10
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/virtual_reality/basketball_court)
+"hG" = (
+/obj/item/stool/padded,
+/obj/structure/window/reinforced/holowindow{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/virtual_reality/basketball_court)
+"hS" = (
+/obj/overlay/palmtree_l,
+/turf/simulated/floor/holofloor/beach/sand,
+/area/virtual_reality/beach)
+"ic" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/obj/floor_decal/carpet,
+/turf/simulated/floor/holofloor/carpet,
+/area/virtual_reality/courtroom)
+"ig" = (
+/turf/simulated/floor/holofloor/concrete,
+/area/virtual_reality/cafe)
+"im" = (
+/obj/structure/bed/chair,
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/virtual_reality/boxing_ring)
+"is" = (
+/obj/machinery/door/window/holowindoor{
+ dir = 1;
+ name = "Jury Box"
+ },
+/obj/floor_decal/carpet{
+ dir = 8
+ },
+/obj/floor_decal/carpet{
+ dir = 4
+ },
+/obj/floor_decal/carpet{
+ dir = 1
+ },
+/obj/floor_decal/carpet{
+ dir = 9
+ },
+/obj/floor_decal/carpet{
+ dir = 5
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/virtual_reality/courtroom)
+"iu" = (
+/turf/simulated/floor/holofloor/tiled/white,
+/area/virtual_reality/infirmary)
+"iM" = (
+/obj/random_multi/single_item/boombox,
+/turf/simulated/floor/holofloor/beach/sand,
+/area/virtual_reality/beach)
+"iQ" = (
+/obj/structure/bed/chair/wood{
+ dir = 8;
+ holographic = 1;
+ icon_state = "wooden_chair_preview"
+ },
+/obj/floor_decal/spline/fancy/wood{
+ dir = 5;
+ icon_state = "spline_fancy"
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/virtual_reality/cafe)
+"iU" = (
+/obj/floor_decal/carpet,
+/obj/floor_decal/carpet{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/virtual_reality/meeting_hall)
+"iW" = (
+/obj/machinery/door/window/holowindoor{
+ base_state = "right";
+ dir = 4;
+ icon_state = "right"
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/virtual_reality/courtroom)
+"ja" = (
+/turf/unsimulated/wall{
+ desc = "This is as far as the simulated area goes out."
+ },
+/area/virtual_reality/cafe)
+"jh" = (
+/obj/machinery/sleeper{
+ dir = 4
+ },
+/obj/floor_decal/corner/paleblue/mono,
+/turf/simulated/floor/holofloor/tiled/white,
+/area/virtual_reality/infirmary)
+"jl" = (
+/obj/structure/flora/ausbushes/sparsegrass,
+/turf/simulated/floor/holofloor/desert,
+/area/virtual_reality/desert)
+"js" = (
+/obj/structure/table/standard,
+/obj/item/reagent_containers/food/drinks/cans/cola,
+/obj/item/reagent_containers/food/drinks/cans/cola,
+/obj/item/reagent_containers/food/drinks/cans/cola,
+/obj/item/reagent_containers/food/drinks/cans/cola,
+/obj/item/reagent_containers/food/drinks/cans/cola,
+/obj/item/reagent_containers/food/drinks/cans/cola,
+/turf/simulated/floor/holofloor/beach/sand,
+/area/virtual_reality/beach)
+"jy" = (
+/obj/floor_decal/corner/red/three_quarters{
+ dir = 8
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/virtual_reality/boxing_ring)
+"jC" = (
+/obj/structure/bed/chair/wood{
+ holographic = 1
+ },
+/obj/effect/vr_spawn,
+/turf/simulated/floor/holofloor/tiled/stone,
+/area/virtual_reality/temple)
+"jL" = (
+/obj/structure/flora/ausbushes/brflowers,
+/turf/simulated/floor/holofloor/grass,
+/area/virtual_reality/picnic_area)
+"jV" = (
+/obj/floor_decal/corner/green/three_quarters{
+ dir = 8
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/virtual_reality/boxing_ring)
+"jW" = (
+/obj/structure/flora/grass/both,
+/obj/effect/vr_spawn,
+/turf/simulated/floor/holofloor/snow,
+/area/virtual_reality/snowfield)
+"jX" = (
+/obj/structure/flora/ausbushes/ppflowers,
+/turf/simulated/floor/holofloor/grass,
+/area/virtual_reality/picnic_area)
+"jY" = (
+/obj/floor_decal/spline/fancy/wood{
+ dir = 9;
+ icon_state = "spline_fancy"
+ },
+/turf/simulated/floor/holofloor/concrete,
+/area/virtual_reality/plaza)
+"kc" = (
+/obj/structure/table/woodentable,
+/obj/item/reagent_containers/food/drinks/teapot{
+ holographic = 1
+ },
+/turf/simulated/floor/holofloor/wood,
+/area/virtual_reality/cafe)
+"kd" = (
+/obj/item/stool/padded,
+/obj/floor_decal/carpet{
+ dir = 8
+ },
+/obj/effect/vr_spawn,
+/turf/simulated/floor/holofloor/carpet,
+/area/virtual_reality/meeting_hall)
+"kh" = (
+/turf/unsimulated/beach/sand{
+ density = 1;
+ opacity = 1
+ },
+/area/virtual_reality/beach)
+"ko" = (
+/obj/floor_decal/stoneborder{
+ dir = 1;
+ icon_state = "stoneborder"
+ },
+/turf/simulated/floor/holofloor/beach/water,
+/area/virtual_reality/temple)
+"kr" = (
+/obj/structure/flora/ausbushes/reedbush,
+/turf/simulated/floor/holofloor/grass,
+/area/virtual_reality/picnic_area)
+"ku" = (
+/obj/floor_decal/corner/red{
+ dir = 6
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/virtual_reality/thunderdome)
+"kB" = (
+/obj/item/stool/padded,
+/turf/simulated/floor/holofloor/tiled/stone,
+/area/virtual_reality/temple)
+"kG" = (
+/turf/simulated/floor/holofloor/wood,
+/area/virtual_reality/courtroom)
+"kO" = (
+/obj/structure/flora/ausbushes/lavendergrass,
+/obj/effect/vr_spawn,
+/turf/simulated/floor/holofloor/grass,
+/area/virtual_reality/picnic_area)
+"kT" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/obj/floor_decal/carpet{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/virtual_reality/courtroom)
+"kV" = (
+/obj/structure/table/standard,
+/obj/item/clothing/head/helmet/thunderdome,
+/obj/item/clothing/suit/armor/tdome/red,
+/obj/item/clothing/under/color/red,
+/obj/item/melee/energy/sword/red,
+/obj/floor_decal/corner/red{
+ dir = 5
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/virtual_reality/thunderdome)
+"kX" = (
+/obj/floor_decal/corner/paleblue{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/tiled/white,
+/area/virtual_reality/infirmary)
+"kY" = (
+/obj/item/stool/padded,
+/obj/floor_decal/carpet{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/virtual_reality/theatre)
+"kZ" = (
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/virtual_reality/thunderdome)
+"lb" = (
+/obj/structure/bed/chair/wood{
+ dir = 1;
+ holographic = 1
+ },
+/obj/floor_decal/spline/fancy/wood,
+/obj/effect/vr_spawn,
+/turf/simulated/floor/holofloor/concrete,
+/area/virtual_reality/plaza)
+"lA" = (
+/obj/effect/vr_spawn,
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/virtual_reality/boxing_ring)
+"lF" = (
+/obj/item/stool/padded,
+/obj/floor_decal/carpet{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/virtual_reality/meeting_hall)
+"lG" = (
+/obj/floor_decal/corner/red/three_quarters{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/virtual_reality/empty_court)
+"lI" = (
+/turf/unsimulated/wall{
+ desc = "This is as far as the simulated area goes out."
+ },
+/area/virtual_reality/boxing_ring)
+"lZ" = (
+/obj/structure/table/standard,
+/obj/item/storage/firstaid/adv,
+/obj/floor_decal/floordetail/edgedrain{
+ dir = 4
+ },
+/obj/floor_decal/corner/paleblue{
+ dir = 9
+ },
+/turf/simulated/floor/holofloor/tiled/white,
+/area/virtual_reality/infirmary)
+"mh" = (
+/turf/simulated/wall/r_wall/hull,
+/area/virtual_reality/cafe)
+"mv" = (
+/obj/floor_decal/corner/paleblue/mono,
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/obj/machinery/atmospherics/unary/cryo_cell,
+/turf/simulated/floor/holofloor/tiled/white,
+/area/virtual_reality/infirmary)
+"mx" = (
+/obj/floor_decal/beach{
+ dir = 1;
+ icon_state = "beachborder"
+ },
+/turf/simulated/floor/holofloor/concrete,
+/area/virtual_reality/volleyball_court)
+"my" = (
+/obj/floor_decal/corner/paleblue/three_quarters,
+/turf/simulated/floor/holofloor/tiled/white,
+/area/virtual_reality/infirmary)
+"mz" = (
+/obj/structure/flora/pottedplant{
+ icon_state = "plant-06"
+ },
+/turf/simulated/floor/holofloor/wood,
+/area/virtual_reality/meeting_hall)
+"mD" = (
+/obj/item/stool/padded,
+/obj/floor_decal/carpet{
+ dir = 4
+ },
+/obj/floor_decal/carpet{
+ dir = 1
+ },
+/obj/floor_decal/carpet{
+ dir = 5
+ },
+/obj/effect/vr_spawn,
+/turf/simulated/floor/holofloor/carpet,
+/area/virtual_reality/meeting_hall)
+"mI" = (
+/obj/structure/window/reinforced/holowindow{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/virtual_reality/boxing_ring)
+"mL" = (
+/obj/wallframe_spawn/reinforced/polarized/no_grille/regular{
+ id = "or1_vr"
+ },
+/turf/simulated/floor/holofloor/tiled/white,
+/area/virtual_reality/infirmary)
+"mS" = (
+/obj/floor_decal/carpet{
+ dir = 8
+ },
+/obj/floor_decal/carpet{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/virtual_reality/theatre)
+"ng" = (
+/obj/effect/vr_spawn,
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/virtual_reality/thunderdome)
+"nn" = (
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/virtual_reality/empty_court)
+"no" = (
+/obj/structure/window/reinforced/holowindow{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/virtual_reality/boxing_ring)
+"nx" = (
+/obj/floor_decal/corner/red/three_quarters,
+/turf/simulated/floor/holofloor/tiled,
+/area/virtual_reality/basketball_court)
+"ny" = (
+/turf/unsimulated/wall{
+ desc = "This is as far as the simulated area goes out."
+ },
+/area/virtual_reality/meeting_hall)
+"nz" = (
+/obj/floor_decal/spline/plain{
+ dir = 8;
+ icon_state = "spline_plain"
+ },
+/turf/simulated/floor/holofloor/beach/sand,
+/area/virtual_reality/volleyball_court)
+"nC" = (
+/obj/floor_decal/spline/plain{
+ dir = 4;
+ icon_state = "spline_plain"
+ },
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "desert2"
+ },
+/area/virtual_reality/volleyball_court)
+"nD" = (
+/obj/machinery/smartfridge/secure/medbay/ert/shuttle,
+/turf/simulated/floor/holofloor/tiled/white,
+/area/virtual_reality/infirmary)
+"nI" = (
+/obj/floor_decal/industrial/hatch/yellow,
+/obj/structure/disposalpipe/trunk,
+/obj/machinery/disposal,
+/obj/floor_decal/corner/beige{
+ dir = 10
+ },
+/obj/floor_decal/corner/beige{
+ dir = 5
+ },
+/turf/simulated/floor/holofloor/tiled/white,
+/area/virtual_reality/infirmary)
+"nO" = (
+/obj/structure/window/reinforced/holowindow{
+ dir = 8
+ },
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/virtual_reality/boxing_ring)
+"nV" = (
+/obj/floor_decal/corner/green{
+ dir = 6
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/virtual_reality/basketball_court)
+"nY" = (
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/virtual_reality/boxing_ring)
+"od" = (
+/obj/floor_decal/corner/red{
+ dir = 9
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/virtual_reality/thunderdome)
+"oj" = (
+/obj/structure/table/woodentable/mahogany,
+/obj/random/soap,
+/obj/decal/cleanable/dirt,
+/turf/simulated/floor/holofloor/concrete,
+/area/virtual_reality/shady_room)
+"ok" = (
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "desert1"
+ },
+/area/virtual_reality/beach)
+"op" = (
+/obj/floor_decal/spline/plain{
+ dir = 4;
+ icon_state = "spline_plain"
+ },
+/obj/structure/holonet/end{
+ dir = 8;
+ icon_state = "volleynet_end"
+ },
+/turf/simulated/floor/holofloor/beach/sand,
+/area/virtual_reality/volleyball_court)
+"ov" = (
+/obj/floor_decal/beach{
+ dir = 8;
+ icon_state = "beachborder"
+ },
+/obj/item/stool/padded,
+/obj/effect/vr_spawn,
+/turf/simulated/floor/holofloor/concrete,
+/area/virtual_reality/volleyball_court)
+"ow" = (
+/obj/floor_decal/corner/red/three_quarters{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/virtual_reality/basketball_court)
+"oA" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/virtual_reality/courtroom)
+"oD" = (
+/obj/floor_decal/corner/paleblue{
+ dir = 5
+ },
+/obj/effect/vr_spawn,
+/turf/simulated/floor/holofloor/tiled/white,
+/area/virtual_reality/infirmary)
+"oQ" = (
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "beach"
+ },
+/area/virtual_reality/beach)
+"oR" = (
+/obj/floor_decal/carpet{
+ dir = 8
+ },
+/obj/floor_decal/carpet{
+ dir = 1
+ },
+/obj/floor_decal/carpet{
+ dir = 9
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/virtual_reality/theatre)
+"pA" = (
+/obj/structure/flora/ausbushes/fullgrass,
+/turf/simulated/floor/holofloor/desert,
+/area/virtual_reality/desert)
+"pE" = (
+/turf/simulated/floor/holofloor/beach/sand{
+ dir = 1;
+ icon_state = "beachcorner"
+ },
+/area/virtual_reality/beach)
+"pH" = (
+/obj/item/stool/padded,
+/obj/floor_decal/carpet,
+/turf/simulated/floor/holofloor/carpet,
+/area/virtual_reality/meeting_hall)
+"pK" = (
+/turf/unsimulated/wall{
+ desc = "This is as far as the simulated area goes out."
+ },
+/area/virtual_reality/beach)
+"pL" = (
+/turf/simulated/floor/holofloor/concrete,
+/area/virtual_reality/shady_room)
+"pP" = (
+/obj/floor_decal/corner/paleblue{
+ dir = 5
+ },
+/obj/floor_decal/corner/paleblue{
+ dir = 10
+ },
+/obj/structure/table/standard,
+/obj/item/scalpel/ims,
+/obj/item/scalpel/ims,
+/turf/simulated/floor/holofloor/tiled/white,
+/area/virtual_reality/infirmary)
+"pX" = (
+/obj/floor_decal/corner/green/three_quarters,
+/turf/simulated/floor/holofloor/tiled,
+/area/virtual_reality/empty_court)
+"qb" = (
+/obj/structure/window/reinforced/holowindow{
+ dir = 8
+ },
+/obj/structure/table/woodentable,
+/turf/simulated/floor/holofloor/wood,
+/area/virtual_reality/courtroom)
+"qh" = (
+/obj/floor_decal/spline/plain{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor/beach/sand,
+/area/virtual_reality/volleyball_court)
+"qj" = (
+/obj/item/beach_ball/holovolleyball,
+/turf/simulated/floor/holofloor/beach/sand,
+/area/virtual_reality/volleyball_court)
+"ql" = (
+/obj/structure/window/reinforced/holowindow/disappearing,
+/obj/floor_decal/corner/red/three_quarters,
+/turf/simulated/floor/holofloor/tiled,
+/area/virtual_reality/thunderdome)
+"qp" = (
+/obj/floor_decal/corner/beige{
+ dir = 5
+ },
+/obj/floor_decal/corner/beige{
+ dir = 5
+ },
+/turf/simulated/floor/holofloor/tiled/white,
+/area/virtual_reality/infirmary)
+"qy" = (
+/turf/simulated/floor/holofloor/beach/sand{
+ dir = 6;
+ icon_state = "beach"
+ },
+/area/virtual_reality/beach)
+"qB" = (
+/turf/unsimulated/wall{
+ desc = "This is as far as the simulated area goes out."
+ },
+/area/virtual_reality/temple)
+"qL" = (
+/obj/structure/table/woodentable,
+/obj/floor_decal/carpet{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/virtual_reality/courtroom)
+"qN" = (
+/obj/structure/table/woodentable,
+/turf/simulated/floor/holofloor/tiled/stone,
+/area/virtual_reality/temple)
+"qS" = (
+/turf/simulated/floor/holofloor/concrete,
+/area/virtual_reality/plaza)
+"rc" = (
+/obj/item/beach_ball/holoball,
+/obj/floor_decal/corner/red{
+ dir = 10
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/virtual_reality/basketball_court)
+"rd" = (
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/virtual_reality/theatre)
+"re" = (
+/obj/floor_decal/corner/green/three_quarters{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/virtual_reality/empty_court)
+"rr" = (
+/obj/item/stool/padded,
+/obj/structure/window/reinforced/holowindow{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/virtual_reality/empty_court)
+"rw" = (
+/obj/floor_decal/carpet{
+ dir = 8
+ },
+/obj/floor_decal/carpet{
+ dir = 1
+ },
+/obj/floor_decal/carpet{
+ dir = 9
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/virtual_reality/courtroom)
+"rP" = (
+/obj/item/stool/padded,
+/turf/simulated/floor/holofloor/tiled,
+/area/virtual_reality/empty_court)
+"rU" = (
+/obj/structure/window/reinforced/holowindow,
+/obj/machinery/door/window/holowindoor{
+ base_state = "right";
+ dir = 1;
+ icon_state = "right";
+ name = "Witness Box"
+ },
+/obj/structure/bed/chair,
+/turf/simulated/floor/holofloor/wood,
+/area/virtual_reality/courtroom)
+"sd" = (
+/turf/simulated/wall/r_wall/hull,
+/area/virtual_reality/desert)
+"sf" = (
+/obj/effect/vr_spawn,
+/turf/simulated/floor/holofloor/grass,
+/area/virtual_reality/picnic_area)
+"sg" = (
+/obj/item/stool/padded,
+/turf/simulated/floor/holofloor/wood{
+ icon_state = "wood_broken3"
+ },
+/area/virtual_reality/temple)
+"sm" = (
+/obj/machinery/door/unpowered/simple/wood,
+/turf/simulated/floor/holofloor/wood,
+/area/virtual_reality/cafe)
+"sn" = (
+/turf/unsimulated/wall{
+ desc = "This is as far as the simulated area goes out."
+ },
+/area/virtual_reality/basketball_court)
+"sv" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/obj/floor_decal/carpet{
+ dir = 4
+ },
+/obj/floor_decal/carpet,
+/obj/floor_decal/carpet{
+ dir = 6
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/virtual_reality/courtroom)
+"sw" = (
+/obj/item/tape_roll,
+/turf/simulated/floor/holofloor/concrete,
+/area/virtual_reality/shady_room)
+"sx" = (
+/obj/overlay/palmtree_r,
+/obj/overlay/coconut,
+/turf/simulated/floor/holofloor/beach/sand,
+/area/virtual_reality/beach)
+"sA" = (
+/obj/floor_decal/spline/plain/blue{
+ dir = 4
+ },
+/obj/structure/roller_bed,
+/obj/item/device/radio/intercom/department/medbay{
+ dir = 4;
+ pixel_x = -24
+ },
+/turf/simulated/floor/holofloor/tiled/white,
+/area/virtual_reality/infirmary)
+"sB" = (
+/obj/structure/flora/grass/green,
+/obj/effect/vr_spawn,
+/turf/simulated/floor/holofloor/snow,
+/area/virtual_reality/snowfield)
+"sC" = (
+/obj/structure/bed/chair/wood{
+ dir = 8;
+ holographic = 1;
+ icon_state = "wooden_chair_preview"
+ },
+/obj/floor_decal/spline/fancy/wood{
+ dir = 4
+ },
+/obj/effect/vr_spawn,
+/turf/simulated/floor/holofloor/concrete,
+/area/virtual_reality/plaza)
+"sE" = (
+/obj/item/stool/padded,
+/obj/effect/vr_spawn,
+/turf/simulated/floor/holofloor/carpet,
+/area/virtual_reality/meeting_hall)
+"sG" = (
+/turf/unsimulated/wall{
+ desc = "This is as far as the simulated area goes out."
+ },
+/area/virtual_reality/plaza)
+"sH" = (
+/obj/overlay/palmtree_r,
+/turf/simulated/floor/holofloor/beach/sand,
+/area/virtual_reality/beach)
+"sM" = (
+/obj/floor_decal/corner/beige/mono,
+/obj/structure/table/rack{
+ dir = 8
+ },
+/obj/item/device/scanner/spectrometer,
+/obj/item/storage/box/freezer,
+/obj/item/storage/box/beakers/insulated,
+/obj/item/reagent_containers/dropper,
+/obj/item/storage/box/beakers,
+/obj/item/hand_labeler,
+/obj/item/stack/package_wrap/cargo_wrap,
+/obj/item/reagent_containers/spray/cleaner{
+ desc = "Someone has crossed out the 'Space' from Space Cleaner and written in Chemistry. Scrawled on the back is, 'Okay, whoever filled this with polytrinic acid, it was only funny the first time. It was hard enough replacing the CMO's first cat!'";
+ name = "Chemistry Cleaner"
+ },
+/obj/item/storage/box/autoinjectors,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/tiled/white,
+/area/virtual_reality/infirmary)
+"sO" = (
+/obj/floor_decal/corner/red{
+ dir = 9
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/virtual_reality/empty_court)
+"sW" = (
+/turf/simulated/wall/r_wall/hull,
+/area/virtual_reality/courtroom)
+"ta" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/bed/chair/wood/walnut,
+/obj/decal/cleanable/blood,
+/turf/simulated/floor/holofloor/concrete,
+/area/virtual_reality/shady_room)
+"td" = (
+/turf/simulated/floor/holofloor/concrete,
+/area/virtual_reality/volleyball_court)
+"ti" = (
+/obj/floor_decal/corner/red/three_quarters{
+ dir = 8
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/virtual_reality/basketball_court)
+"tv" = (
+/obj/floor_decal/spline/plain{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/virtual_reality/theatre)
+"tw" = (
+/obj/floor_decal/corner/paleblue{
+ dir = 10
+ },
+/obj/effect/vr_spawn,
+/turf/simulated/floor/holofloor/tiled/white,
+/area/virtual_reality/infirmary)
+"tF" = (
+/obj/structure/bed/chair/wood{
+ holographic = 1
+ },
+/obj/floor_decal/spline/fancy/wood{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/virtual_reality/cafe)
+"tU" = (
+/obj/structure/table/woodentable,
+/obj/item/flame/candle{
+ holographic = 1
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/virtual_reality/cafe)
+"tX" = (
+/obj/floor_decal/corner/beige{
+ dir = 5
+ },
+/turf/simulated/floor/holofloor/tiled/white,
+/area/virtual_reality/infirmary)
+"ub" = (
+/obj/structure/flora/ausbushes/lavendergrass,
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/structure/flora/ausbushes/ppflowers,
+/obj/structure/flora/ausbushes/brflowers,
+/obj/floor_decal/spline/fancy/wood{
+ dir = 5;
+ icon_state = "spline_fancy"
+ },
+/turf/simulated/floor/holofloor/grass,
+/area/virtual_reality/plaza)
+"un" = (
+/obj/structure/flora/pottedplant{
+ icon_state = "plant-22"
+ },
+/turf/simulated/floor/holofloor/wood,
+/area/virtual_reality/cafe)
+"up" = (
+/obj/floor_decal/sign/or2,
+/turf/simulated/floor/holofloor/tiled/white,
+/area/virtual_reality/infirmary)
+"uq" = (
+/obj/structure/flora/grass/green,
+/turf/simulated/floor/holofloor/snow,
+/area/virtual_reality/snowfield)
+"uH" = (
+/turf/simulated/floor/holofloor/tiled,
+/area/virtual_reality/empty_court)
+"uM" = (
+/obj/item/stool/padded,
+/obj/floor_decal/carpet{
+ dir = 4
+ },
+/obj/effect/vr_spawn,
+/turf/simulated/floor/holofloor/carpet,
+/area/virtual_reality/meeting_hall)
+"vg" = (
+/obj/floor_decal/beach{
+ dir = 4;
+ icon_state = "beachborder"
+ },
+/turf/simulated/floor/holofloor/concrete,
+/area/virtual_reality/volleyball_court)
+"vp" = (
+/obj/structure/window/reinforced/holowindow,
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/virtual_reality/boxing_ring)
+"vq" = (
+/obj/structure/table/standard,
+/obj/item/clothing/glasses/sunglasses,
+/obj/item/clothing/head/collectable/petehat{
+ pixel_y = 5
+ },
+/turf/simulated/floor/holofloor/beach/sand,
+/area/virtual_reality/beach)
+"vr" = (
+/obj/machinery/door/airlock/medical{
+ name = "Operating Room 1"
+ },
+/obj/machinery/holosign/surgery{
+ dir = 4;
+ id_tag = "or1_vr"
+ },
+/obj/floor_decal/industrial/hatch/blue,
+/turf/simulated/floor/holofloor/tiled/white,
+/area/virtual_reality/infirmary)
+"vz" = (
+/obj/floor_decal/corner/green{
+ dir = 6
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/virtual_reality/empty_court)
+"vM" = (
+/obj/floor_decal/corner/beige{
+ dir = 6
+ },
+/obj/floor_decal/corner/beige{
+ dir = 9
+ },
+/turf/simulated/floor/holofloor/tiled/white,
+/area/virtual_reality/infirmary)
+"vR" = (
+/obj/structure/flora/ausbushes/lavendergrass,
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/structure/flora/ausbushes/ppflowers,
+/obj/structure/flora/ausbushes/brflowers,
+/obj/floor_decal/spline/fancy/wood{
+ dir = 6
+ },
+/turf/simulated/floor/holofloor/grass,
+/area/virtual_reality/plaza)
+"vW" = (
+/obj/machinery/button/medical_dummy_creator{
+ pixel_y = -25
+ },
+/obj/floor_decal/industrial/outline/blue,
+/turf/simulated/floor/holofloor/tiled/white,
+/area/virtual_reality/infirmary)
+"vX" = (
+/obj/structure/bed/chair/wood{
+ dir = 1;
+ holographic = 1
+ },
+/obj/floor_decal/spline/fancy/wood{
+ dir = 6
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/virtual_reality/cafe)
+"wa" = (
+/obj/item/stool/padded,
+/obj/floor_decal/carpet,
+/obj/floor_decal/carpet{
+ dir = 4
+ },
+/obj/floor_decal/carpet{
+ dir = 6
+ },
+/obj/effect/vr_spawn,
+/turf/simulated/floor/holofloor/carpet,
+/area/virtual_reality/meeting_hall)
+"wh" = (
+/obj/structure/bed/chair/wood{
+ dir = 1;
+ holographic = 1
+ },
+/obj/effect/vr_spawn,
+/turf/simulated/floor/holofloor/tiled/stone,
+/area/virtual_reality/temple)
+"wm" = (
+/obj/floor_decal/corner/green{
+ dir = 5
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/virtual_reality/basketball_court)
+"wu" = (
+/obj/structure/flora/ausbushes/genericbush,
+/obj/floor_decal/spline/plain/grey{
+ dir = 9;
+ icon_state = "spline_plain"
+ },
+/turf/simulated/floor/holofloor/grass,
+/area/virtual_reality/cafe)
+"wF" = (
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "desert3"
+ },
+/area/virtual_reality/temple)
+"wG" = (
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "beachcorner"
+ },
+/area/virtual_reality/beach)
+"wP" = (
+/obj/decal/cleanable/dirt,
+/turf/simulated/floor/holofloor/desert,
+/area/virtual_reality/picnic_area)
+"wV" = (
+/obj/structure/flora/ausbushes/ppflowers,
+/obj/floor_decal/spline/plain/grey{
+ dir = 8;
+ icon_state = "spline_plain"
+ },
+/turf/simulated/floor/holofloor/grass,
+/area/virtual_reality/cafe)
+"wW" = (
+/obj/item/stool/padded,
+/obj/floor_decal/carpet{
+ dir = 8
+ },
+/obj/floor_decal/carpet,
+/obj/floor_decal/carpet{
+ dir = 10
+ },
+/obj/effect/vr_spawn,
+/turf/simulated/floor/holofloor/carpet,
+/area/virtual_reality/meeting_hall)
+"xs" = (
+/obj/floor_decal/beach{
+ dir = 8;
+ icon_state = "beachborder"
+ },
+/turf/simulated/floor/holofloor/concrete,
+/area/virtual_reality/volleyball_court)
+"xz" = (
+/obj/effect/vr_spawn,
+/turf/simulated/floor/holofloor/concrete,
+/area/virtual_reality/cafe)
+"xE" = (
+/obj/floor_decal/spline/plain{
+ dir = 10;
+ icon_state = "spline_plain"
+ },
+/turf/simulated/floor/holofloor/beach/sand,
+/area/virtual_reality/volleyball_court)
+"xI" = (
+/obj/floor_decal/corner/green{
+ dir = 6
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/virtual_reality/boxing_ring)
+"xU" = (
+/obj/floor_decal/carpet{
+ dir = 8
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/virtual_reality/courtroom)
+"xW" = (
+/obj/item/stool/padded,
+/obj/floor_decal/carpet{
+ dir = 8
+ },
+/obj/effect/vr_spawn,
+/turf/simulated/floor/holofloor/carpet,
+/area/virtual_reality/theatre)
+"ye" = (
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "desert2"
+ },
+/area/virtual_reality/beach)
+"yh" = (
+/obj/floor_decal/floordetail/edgedrain,
+/obj/floor_decal/corner/paleblue{
+ dir = 5
+ },
+/obj/machinery/light,
+/turf/simulated/floor/holofloor/tiled/white,
+/area/virtual_reality/infirmary)
+"yk" = (
+/obj/floor_decal/carpet{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/virtual_reality/courtroom)
+"yo" = (
+/obj/floor_decal/spline/plain{
+ dir = 4;
+ icon_state = "spline_plain"
+ },
+/turf/simulated/floor/holofloor/beach/sand,
+/area/virtual_reality/volleyball_court)
+"yt" = (
+/obj/item/stool/padded,
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/virtual_reality/boxing_ring)
+"yA" = (
+/obj/floor_decal/beach/corner{
+ dir = 8;
+ icon_state = "beachbordercorner"
+ },
+/turf/simulated/floor/holofloor/concrete,
+/area/virtual_reality/volleyball_court)
+"yC" = (
+/obj/structure/window/reinforced/holowindow/disappearing{
+ dir = 1
+ },
+/obj/floor_decal/corner/green{
+ dir = 5
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/virtual_reality/thunderdome)
+"yG" = (
+/obj/floor_decal/corner/paleblue{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden,
+/turf/simulated/floor/holofloor/tiled/white,
+/area/virtual_reality/infirmary)
+"yH" = (
+/obj/item/stool/padded,
+/turf/simulated/floor/holofloor/carpet,
+/area/virtual_reality/meeting_hall)
+"yK" = (
+/turf/simulated/floor/holofloor/tiled,
+/area/virtual_reality/thunderdome)
+"yP" = (
+/obj/floor_decal/corner/green/three_quarters,
+/turf/simulated/floor/holofloor/tiled,
+/area/virtual_reality/basketball_court)
+"yZ" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/turf/simulated/floor/holofloor/grass,
+/area/virtual_reality/picnic_area)
+"za" = (
+/obj/structure/window/holowindow/full,
+/turf/simulated/floor/holofloor,
+/area/virtual_reality/cafe)
+"zb" = (
+/obj/item/stool/padded,
+/obj/floor_decal/carpet{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/carpet{
+ dir = 8
+ },
+/area/virtual_reality/meeting_hall)
+"zd" = (
+/turf/unsimulated/wall{
+ desc = "This is as far as the simulated area goes out."
+ },
+/area/virtual_reality/desert)
+"zg" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/structure/table/standard,
+/obj/floor_decal/corner/beige{
+ dir = 10
+ },
+/turf/simulated/floor/holofloor/tiled/white,
+/area/virtual_reality/infirmary)
+"zh" = (
+/obj/structure/flora/tree/dead,
+/turf/simulated/floor/holofloor/snow,
+/area/virtual_reality/snowfield)
+"zk" = (
+/obj/structure/table/standard,
+/obj/item/device/megaphone,
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/virtual_reality/boxing_ring)
+"zq" = (
+/obj/structure/flora/ausbushes/palebush,
+/turf/simulated/floor/holofloor/grass,
+/area/virtual_reality/picnic_area)
+"zu" = (
+/obj/floor_decal/floordetail/edgedrain{
+ dir = 8
+ },
+/obj/floor_decal/corner/paleblue{
+ dir = 6
+ },
+/obj/structure/hygiene/sink{
+ dir = 8;
+ pixel_x = -12;
+ pixel_y = 2
+ },
+/turf/simulated/floor/holofloor/tiled/white,
+/area/virtual_reality/infirmary)
+"zw" = (
+/obj/floor_decal/carpet{
+ dir = 5
+ },
+/obj/floor_decal/carpet{
+ dir = 6
+ },
+/obj/floor_decal/carpet{
+ dir = 9
+ },
+/obj/floor_decal/carpet{
+ dir = 10
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/virtual_reality/meeting_hall)
+"zB" = (
+/obj/floor_decal/stoneborder,
+/turf/simulated/floor/holofloor/beach/water,
+/area/virtual_reality/temple)
+"zL" = (
+/obj/structure/flora/ausbushes/genericbush,
+/turf/simulated/floor/holofloor/grass,
+/area/virtual_reality/picnic_area)
+"zN" = (
+/obj/floor_decal/corner/paleblue{
+ dir = 5
+ },
+/turf/simulated/floor/holofloor/tiled/white,
+/area/virtual_reality/infirmary)
+"zX" = (
+/obj/floor_decal/corner/paleblue{
+ dir = 5
+ },
+/obj/floor_decal/corner/paleblue{
+ dir = 10
+ },
+/obj/structure/table/standard,
+/obj/item/reagent_containers/hypospray,
+/obj/item/reagent_containers/hypospray,
+/obj/item/reagent_containers/hypospray,
+/turf/simulated/floor/holofloor/tiled/white,
+/area/virtual_reality/infirmary)
+"zZ" = (
+/obj/effect/vr_spawn,
+/turf/simulated/floor/holofloor/snow,
+/area/virtual_reality/snowfield)
+"Ae" = (
+/obj/structure/flora/ausbushes/lavendergrass,
+/obj/structure/flora/ausbushes/brflowers,
+/turf/simulated/floor/holofloor/grass,
+/area/virtual_reality/plaza)
+"Aq" = (
+/obj/floor_decal/corner/pink/mono,
+/obj/machinery/body_scanconsole{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor/tiled/white,
+/area/virtual_reality/infirmary)
+"Au" = (
+/obj/overlay/palmtree_r,
+/turf/simulated/floor/holofloor/beach/sand,
+/area/virtual_reality/temple)
+"Az" = (
+/obj/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/turf/simulated/floor/holofloor/concrete,
+/area/virtual_reality/plaza)
+"AB" = (
+/obj/floor_decal/corner/beige{
+ dir = 10
+ },
+/obj/floor_decal/corner/beige{
+ dir = 10
+ },
+/obj/floor_decal/corner/beige{
+ dir = 5
+ },
+/obj/structure/hygiene/sink{
+ icon_state = "sink_alt";
+ pixel_y = 26;
+ desc = "A laboratory sink used for washing one's hands and equipment."
+ },
+/turf/simulated/floor/holofloor/tiled/white,
+/area/virtual_reality/infirmary)
+"AF" = (
+/obj/item/stool/padded,
+/obj/floor_decal/carpet,
+/obj/effect/vr_spawn,
+/turf/simulated/floor/holofloor/carpet,
+/area/virtual_reality/meeting_hall)
+"AG" = (
+/obj/floor_decal/beach{
+ dir = 4;
+ icon_state = "beachborder"
+ },
+/obj/item/stool/padded,
+/obj/effect/vr_spawn,
+/turf/simulated/floor/holofloor/concrete,
+/area/virtual_reality/volleyball_court)
+"AR" = (
+/obj/structure/bed/chair,
+/obj/effect/vr_spawn,
+/turf/simulated/floor/holofloor/beach/sand,
+/area/virtual_reality/beach)
+"AS" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/obj/floor_decal/carpet{
+ dir = 8
+ },
+/obj/floor_decal/carpet,
+/obj/floor_decal/carpet{
+ dir = 10
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/virtual_reality/courtroom)
+"AX" = (
+/obj/structure/window/reinforced/holowindow/disappearing{
+ dir = 1
+ },
+/obj/floor_decal/corner/green/three_quarters{
+ dir = 8
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/virtual_reality/thunderdome)
+"Bj" = (
+/obj/structure/table/standard,
+/obj/item/reagent_containers/food/snacks/chips,
+/turf/simulated/floor/holofloor/beach/sand,
+/area/virtual_reality/beach)
+"Bs" = (
+/obj/floor_decal/spline/fancy/wood{
+ dir = 1;
+ icon_state = "spline_fancy"
+ },
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/virtual_reality/meeting_hall)
+"Bt" = (
+/turf/simulated/wall/sandstone,
+/area/virtual_reality/temple)
+"By" = (
+/obj/structure/table/woodentable,
+/obj/machinery/chemical_dispenser/bar_coffee/full{
+ dir = 8
+ },
+/turf/simulated/floor/holofloor/wood,
+/area/virtual_reality/cafe)
+"BN" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/floor_decal/spline/plain/grey{
+ dir = 8;
+ icon_state = "spline_plain"
+ },
+/turf/simulated/floor/holofloor/grass,
+/area/virtual_reality/cafe)
+"BP" = (
+/obj/item/stool/padded,
+/obj/floor_decal/carpet,
+/turf/simulated/floor/holofloor/carpet,
+/area/virtual_reality/theatre)
+"BU" = (
+/obj/structure/curtain,
+/turf/simulated/floor/holofloor/wood{
+ icon_state = "wood_broken4"
+ },
+/area/virtual_reality/temple)
+"Ce" = (
+/turf/simulated/floor/holofloor/wood,
+/area/virtual_reality/meeting_hall)
+"Cf" = (
+/obj/structure/window/reinforced/holowindow/disappearing{
+ dir = 1
+ },
+/obj/floor_decal/corner/green/three_quarters{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/virtual_reality/thunderdome)
+"Ci" = (
+/turf/simulated/wall/r_wall/hull,
+/area/virtual_reality/snowfield)
+"Cn" = (
+/obj/machinery/bodyscanner{
+ dir = 1
+ },
+/obj/floor_decal/corner/pink/mono,
+/turf/simulated/floor/holofloor/tiled/white,
+/area/virtual_reality/infirmary)
+"Cy" = (
+/obj/floor_decal/corner/red{
+ dir = 6
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/virtual_reality/empty_court)
+"CB" = (
+/turf/simulated/wall/r_wall/hull,
+/area/virtual_reality/picnic_area)
+"CC" = (
+/obj/floor_decal/corner/red/three_quarters{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/virtual_reality/basketball_court)
+"CE" = (
+/obj/structure/table/woodentable,
+/obj/floor_decal/spline/fancy/wood{
+ dir = 4
+ },
+/obj/item/flame/candle{
+ holographic = 1
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/virtual_reality/cafe)
+"CG" = (
+/obj/structure/flora/tree/pine,
+/turf/simulated/floor/holofloor/snow,
+/area/virtual_reality/snowfield)
+"CJ" = (
+/obj/floor_decal/carpet{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/virtual_reality/theatre)
+"CM" = (
+/turf/simulated/floor/holofloor/snow,
+/area/virtual_reality/snowfield)
+"CN" = (
+/obj/item/stool/padded,
+/obj/floor_decal/carpet{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/virtual_reality/meeting_hall)
+"Dc" = (
+/obj/floor_decal/corner/paleblue/mono,
+/obj/machinery/sleeper{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/tiled/white,
+/area/virtual_reality/infirmary)
+"Dd" = (
+/obj/structure/curtain{
+ color = "#68ccab"
+ },
+/turf/simulated/floor/holofloor/wood{
+ icon_state = "wood_broken6"
+ },
+/area/virtual_reality/temple)
+"De" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/obj/floor_decal/carpet{
+ dir = 8
+ },
+/obj/floor_decal/carpet{
+ dir = 1
+ },
+/obj/floor_decal/carpet{
+ dir = 9
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/virtual_reality/courtroom)
+"Di" = (
+/obj/structure/bed/chair/wood{
+ dir = 1;
+ holographic = 1
+ },
+/obj/floor_decal/spline/fancy/wood{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/virtual_reality/cafe)
+"Dj" = (
+/obj/floor_decal/corner/paleblue{
+ dir = 5
+ },
+/obj/floor_decal/corner/paleblue{
+ dir = 10
+ },
+/obj/item/reagent_containers/ivbag/nanoblood,
+/obj/item/reagent_containers/ivbag/nanoblood,
+/obj/item/reagent_containers/ivbag/blood/human/oneg,
+/obj/item/reagent_containers/ivbag/blood/human/oneg,
+/obj/item/reagent_containers/ivbag/blood/human/oneg,
+/obj/item/reagent_containers/ivbag/blood/human/oneg,
+/obj/item/reagent_containers/ivbag/blood/skrell/oneg,
+/obj/item/reagent_containers/ivbag/blood/skrell/oneg,
+/obj/item/reagent_containers/ivbag/blood/unathi/oneg,
+/obj/item/reagent_containers/ivbag/blood/unathi/oneg,
+/obj/structure/closet/secure_closet/medical_wall{
+ name = "IV Blood Cabinet";
+ pixel_y = 32
+ },
+/turf/simulated/floor/holofloor/tiled/white,
+/area/virtual_reality/infirmary)
+"Dy" = (
+/obj/floor_decal/corner/paleblue,
+/turf/simulated/floor/holofloor/tiled/white,
+/area/virtual_reality/infirmary)
+"DB" = (
+/turf/unsimulated/wall{
+ desc = "This is as far as the simulated area goes out."
+ },
+/area/virtual_reality/empty_court)
+"DG" = (
+/obj/floor_decal/spline/fancy/wood{
+ dir = 1;
+ icon_state = "spline_fancy"
+ },
+/turf/simulated/floor/holofloor/concrete,
+/area/virtual_reality/plaza)
+"DI" = (
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "desert4"
+ },
+/area/virtual_reality/volleyball_court)
+"DN" = (
+/obj/machinery/door/window/holowindoor{
+ base_state = "right";
+ dir = 4;
+ icon_state = "right";
+ name = "Green Team"
+ },
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/virtual_reality/basketball_court)
+"DS" = (
+/obj/floor_decal/spline/plain{
+ dir = 9;
+ icon_state = "spline_plain"
+ },
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "desert2"
+ },
+/area/virtual_reality/volleyball_court)
+"DW" = (
+/obj/structure/flora/ausbushes/fullgrass,
+/turf/simulated/floor/holofloor/grass,
+/area/virtual_reality/picnic_area)
+"DX" = (
+/obj/structure/table/woodentable,
+/obj/item/device/synthesized_instrument/violin{
+ holographic = 1
+ },
+/turf/simulated/floor/holofloor/wood,
+/area/virtual_reality/cafe)
+"DZ" = (
+/obj/floor_decal/corner/red/three_quarters{
+ dir = 8
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/virtual_reality/empty_court)
+"Eb" = (
+/obj/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/obj/structure/table/woodentable,
+/turf/simulated/floor/holofloor/carpet,
+/area/virtual_reality/cafe)
+"Ed" = (
+/obj/floor_decal/corner/green{
+ dir = 9
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/virtual_reality/thunderdome)
+"Em" = (
+/obj/structure/table/woodentable,
+/obj/structure/window/reinforced/holowindow,
+/turf/simulated/floor/holofloor/wood,
+/area/virtual_reality/courtroom)
+"Eu" = (
+/obj/floor_decal/spline/fancy/wood{
+ dir = 5;
+ icon_state = "spline_fancy"
+ },
+/turf/simulated/floor/holofloor/concrete,
+/area/virtual_reality/plaza)
+"EM" = (
+/obj/floor_decal/corner/paleblue{
+ dir = 10
+ },
+/obj/machinery/button/alternate/door{
+ id_tag = "ETC_hall";
+ name = "Treatment Center Exit";
+ pixel_x = 7;
+ pixel_y = 24
+ },
+/obj/effect/vr_spawn,
+/turf/simulated/floor/holofloor/tiled/white,
+/area/virtual_reality/infirmary)
+"EN" = (
+/turf/unsimulated/wall{
+ desc = "This is as far as the simulated area goes out."
+ },
+/area/virtual_reality/shady_room)
+"EU" = (
+/obj/floor_decal/corner/beige/mono,
+/turf/simulated/floor/holofloor/tiled/white,
+/area/virtual_reality/infirmary)
+"Fe" = (
+/obj/effect/vr_spawn,
+/turf/simulated/floor/holofloor/desert,
+/area/virtual_reality/desert)
+"Fg" = (
+/obj/decal/cleanable/blood,
+/obj/decal/cleanable/dirt,
+/turf/simulated/floor/holofloor/concrete,
+/area/virtual_reality/shady_room)
+"Fv" = (
+/obj/floor_decal/carpet{
+ dir = 4
+ },
+/obj/floor_decal/carpet,
+/obj/floor_decal/carpet{
+ dir = 1
+ },
+/obj/floor_decal/carpet{
+ dir = 5
+ },
+/obj/floor_decal/carpet{
+ dir = 6
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/virtual_reality/meeting_hall)
+"FH" = (
+/turf/simulated/wall/r_wall/hull,
+/area/virtual_reality/empty_court)
+"FI" = (
+/turf/simulated/wall/r_wall/hull,
+/area/virtual_reality/theatre)
+"FM" = (
+/obj/item/modular_computer/telescreen/preset/medical{
+ pixel_y = -32
+ },
+/obj/structure/table/standard,
+/obj/floor_decal/corner/paleblue{
+ dir = 5
+ },
+/obj/floor_decal/corner/paleblue{
+ dir = 10
+ },
+/obj/item/auto_cpr,
+/obj/item/auto_cpr,
+/obj/item/defibrillator/loaded,
+/obj/item/bodybag/rescue/loaded,
+/obj/item/bodybag/rescue/loaded,
+/turf/simulated/floor/holofloor/tiled/white,
+/area/virtual_reality/infirmary)
+"FU" = (
+/obj/structure/bed/chair/wood{
+ dir = 4;
+ holographic = 1;
+ icon_state = "wooden_chair_preview"
+ },
+/obj/floor_decal/spline/fancy/wood{
+ dir = 9;
+ icon_state = "spline_fancy"
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/virtual_reality/cafe)
+"FV" = (
+/turf/simulated/floor/holofloor/beach/sand{
+ dir = 8;
+ icon_state = "beach"
+ },
+/area/virtual_reality/beach)
+"FZ" = (
+/turf/unsimulated/wall{
+ desc = "This is as far as the simulated area goes out."
+ },
+/area/space)
+"Gd" = (
+/obj/machinery/door/window/holowindoor{
+ dir = 1;
+ name = "Green Corner"
+ },
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/virtual_reality/boxing_ring)
+"Gh" = (
+/obj/structure/flora/ausbushes/lavendergrass,
+/turf/simulated/floor/holofloor/grass,
+/area/virtual_reality/plaza)
+"Gl" = (
+/obj/floor_decal/corner/paleblue{
+ dir = 10
+ },
+/turf/simulated/floor/holofloor/tiled/white,
+/area/virtual_reality/infirmary)
+"Gt" = (
+/obj/floor_decal/corner/beige/mono,
+/obj/structure/closet/secure_closet/chemical,
+/obj/item/storage/box/pillbottles,
+/obj/item/book/manual/chemistry_recipes,
+/obj/item/device/radio/headset/headset_med,
+/obj/item/clothing/glasses/science,
+/turf/simulated/floor/holofloor/tiled/white,
+/area/virtual_reality/infirmary)
+"Gx" = (
+/obj/structure/table/rack,
+/turf/simulated/floor/holofloor/wood{
+ icon_state = "wood_broken1"
+ },
+/area/virtual_reality/temple)
+"GT" = (
+/obj/structure/table/standard,
+/obj/machinery/readybutton{
+ pixel_y = 0
+ },
+/obj/floor_decal/corner/green/three_quarters{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/virtual_reality/thunderdome)
+"GV" = (
+/obj/machinery/vending/medical/torch{
+ dir = 1
+ },
+/obj/floor_decal/corner/paleblue/mono,
+/turf/simulated/floor/holofloor/tiled/white,
+/area/virtual_reality/infirmary)
+"Ha" = (
+/turf/simulated/floor/holofloor/beach/sand{
+ dir = 10;
+ icon_state = "beach"
+ },
+/area/virtual_reality/beach)
+"Hr" = (
+/obj/floor_decal/stoneborder/corner,
+/turf/simulated/floor/holofloor/beach/water,
+/area/virtual_reality/temple)
+"HD" = (
+/obj/structure/table/woodentable,
+/obj/structure/window/reinforced/holowindow,
+/obj/structure/window/reinforced/holowindow{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/wood,
+/area/virtual_reality/courtroom)
+"HK" = (
+/obj/floor_decal/corner/green{
+ dir = 10
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/virtual_reality/boxing_ring)
+"Ic" = (
+/obj/floor_decal/spline/plain/blue{
+ dir = 9
+ },
+/obj/structure/roller_bed,
+/turf/simulated/floor/holofloor/tiled/white,
+/area/virtual_reality/infirmary)
+"Id" = (
+/turf/unsimulated/wall{
+ desc = "This is as far as the simulated area goes out."
+ },
+/area/virtual_reality/thunderdome)
+"Ig" = (
+/turf/unsimulated/floor/plating,
+/area/virtual_reality/zone1)
+"Ih" = (
+/obj/structure/table/woodentable/mahogany,
+/obj/machinery/light/small,
+/obj/item/material/knife/folding/combat/balisong,
+/obj/item/melee/classic_baton,
+/obj/decal/cleanable/dirt,
+/turf/simulated/floor/holofloor/concrete,
+/area/virtual_reality/shady_room)
+"Im" = (
+/obj/structure/flora/pottedplant{
+ icon_state = "plant-06"
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/virtual_reality/theatre)
+"In" = (
+/obj/structure/table/standard,
+/obj/floor_decal/corner/red/three_quarters{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/virtual_reality/thunderdome)
+"Iq" = (
+/obj/item/stool/padded,
+/obj/effect/vr_spawn,
+/turf/simulated/floor/holofloor/carpet,
+/area/virtual_reality/theatre)
+"It" = (
+/turf/simulated/floor/holofloor/beach/water,
+/area/virtual_reality/temple)
+"Ix" = (
+/turf/simulated/wall/wood,
+/area/virtual_reality/cafe)
+"Iz" = (
+/obj/floor_decal/corner/paleblue/three_quarters{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor/tiled/white,
+/area/virtual_reality/infirmary)
+"IE" = (
+/obj/floor_decal/corner/paleblue/three_quarters{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 5
+ },
+/turf/simulated/floor/holofloor/tiled/white,
+/area/virtual_reality/infirmary)
+"IF" = (
+/obj/floor_decal/stoneborder/corner{
+ dir = 8;
+ icon_state = "stoneborder_c"
+ },
+/turf/simulated/floor/holofloor/beach/water,
+/area/virtual_reality/temple)
+"IL" = (
+/obj/structure/roller_bed,
+/obj/floor_decal/spline/plain/blue{
+ dir = 5
+ },
+/turf/simulated/floor/holofloor/tiled/white,
+/area/virtual_reality/infirmary)
+"IT" = (
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "desert2"
+ },
+/area/virtual_reality/volleyball_court)
+"IZ" = (
+/obj/floor_decal/spline/fancy/wood/corner{
+ dir = 8
+ },
+/turf/simulated/floor/holofloor/concrete,
+/area/virtual_reality/plaza)
+"Ja" = (
+/obj/structure/bed/chair/wood{
+ holographic = 1
+ },
+/obj/floor_decal/spline/fancy/wood{
+ dir = 1;
+ icon_state = "spline_fancy"
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/virtual_reality/cafe)
+"Jb" = (
+/turf/simulated/floor/holofloor/carpet,
+/area/virtual_reality/courtroom)
+"Jc" = (
+/obj/wallframe_spawn/reinforced/polarized/no_grille/regular{
+ id = "or2_vr"
+ },
+/turf/simulated/floor/holofloor/tiled/white,
+/area/virtual_reality/infirmary)
+"Jk" = (
+/obj/structure/fountain{
+ alpha = 204;
+ pixel_x = 0
+ },
+/turf/simulated/floor/holofloor/beach/water,
+/area/virtual_reality/temple)
+"Jr" = (
+/obj/structure/table/woodentable,
+/obj/floor_decal/carpet{
+ dir = 8
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/virtual_reality/courtroom)
+"Jz" = (
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "desert3"
+ },
+/area/virtual_reality/beach)
+"JD" = (
+/obj/floor_decal/beach/corner,
+/turf/simulated/floor/holofloor/concrete,
+/area/virtual_reality/volleyball_court)
+"JE" = (
+/obj/floor_decal/corner/paleblue{
+ dir = 5
+ },
+/obj/floor_decal/corner/paleblue{
+ dir = 10
+ },
+/obj/structure/iv_stand,
+/obj/machinery/rotating_alarm/security_alarm,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 5
+ },
+/turf/simulated/floor/holofloor/tiled/white,
+/area/virtual_reality/infirmary)
+"JK" = (
+/obj/floor_decal/spline/plain,
+/turf/simulated/floor/holofloor/beach/sand,
+/area/virtual_reality/volleyball_court)
+"JL" = (
+/obj/structure/table/standard,
+/obj/floor_decal/corner/beige/mono,
+/obj/machinery/reagent_temperature,
+/turf/simulated/floor/holofloor/tiled/white,
+/area/virtual_reality/infirmary)
+"JP" = (
+/obj/floor_decal/corner/paleblue{
+ dir = 5
+ },
+/obj/floor_decal/corner/paleblue{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/tiled/white,
+/area/virtual_reality/infirmary)
+"Kb" = (
+/obj/structure/flora/tree/dead,
+/obj/effect/vr_spawn,
+/turf/simulated/floor/holofloor/snow,
+/area/virtual_reality/snowfield)
+"Kk" = (
+/turf/simulated/floor/holofloor/beach/sand{
+ dir = 9;
+ icon_state = "beach"
+ },
+/area/virtual_reality/beach)
+"Kq" = (
+/obj/structure/bed/chair/wood{
+ holographic = 1
+ },
+/obj/floor_decal/spline/fancy/wood{
+ dir = 1;
+ icon_state = "spline_fancy"
+ },
+/obj/effect/vr_spawn,
+/turf/simulated/floor/holofloor/concrete,
+/area/virtual_reality/plaza)
+"Ks" = (
+/turf/simulated/floor/holofloor/beach/sand,
+/area/virtual_reality/volleyball_court)
+"KB" = (
+/obj/structure/table/rack,
+/obj/item/clothing/shoes/sandal,
+/obj/item/clothing/shoes/sandal,
+/obj/item/clothing/shoes/sandal,
+/obj/item/clothing/shoes/sandal,
+/obj/item/clothing/shoes/sandal,
+/obj/item/clothing/shoes/sandal,
+/obj/item/clothing/shoes/sandal,
+/obj/item/clothing/shoes/sandal,
+/obj/item/clothing/shoes/sandal,
+/obj/item/clothing/shoes/sandal,
+/obj/item/clothing/shoes/sandal,
+/obj/item/clothing/shoes/sandal,
+/turf/simulated/floor/holofloor/beach/sand,
+/area/virtual_reality/beach)
+"KE" = (
+/turf/simulated/wall/r_wall/hull,
+/area/virtual_reality/thunderdome)
+"KK" = (
+/turf/unsimulated/floor/plating,
+/area/virtual_reality/zone2)
+"KV" = (
+/obj/machinery/optable,
+/obj/floor_decal/floordetail/edgedrain{
+ dir = 1
+ },
+/obj/floor_decal/corner/paleblue{
+ dir = 10
+ },
+/obj/machinery/oxygen_pump{
+ pixel_x = -32;
+ pixel_y = 32
+ },
+/obj/machinery/body_scan_display{
+ pixel_y = 24
+ },
+/turf/simulated/floor/holofloor/tiled/white,
+/area/virtual_reality/infirmary)
+"KY" = (
+/obj/floor_decal/corner/red{
+ dir = 6
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/virtual_reality/basketball_court)
+"La" = (
+/obj/floor_decal/floordetail/edgedrain{
+ dir = 4
+ },
+/obj/floor_decal/corner/paleblue{
+ dir = 9
+ },
+/obj/floor_decal/sign/or1,
+/turf/simulated/floor/holofloor/tiled/white,
+/area/virtual_reality/infirmary)
+"Ld" = (
+/obj/item/stool/padded,
+/obj/effect/vr_spawn,
+/turf/simulated/floor/holofloor/tiled/stone,
+/area/virtual_reality/temple)
+"Le" = (
+/obj/floor_decal/corner/paleblue/three_quarters{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/tiled/white,
+/area/virtual_reality/infirmary)
+"Lj" = (
+/obj/structure/window/reinforced/holowindow{
+ dir = 1
+ },
+/obj/structure/window/reinforced/holowindow{
+ dir = 8
+ },
+/obj/structure/table/woodentable,
+/turf/simulated/floor/holofloor/wood,
+/area/virtual_reality/courtroom)
+"Ls" = (
+/obj/structure/holohoop,
+/obj/floor_decal/corner/red{
+ dir = 5
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/virtual_reality/basketball_court)
+"LW" = (
+/obj/floor_decal/stoneborder{
+ dir = 8;
+ icon_state = "stoneborder"
+ },
+/obj/effect/vr_spawn,
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "desert2"
+ },
+/area/virtual_reality/temple)
+"Mc" = (
+/obj/effect/vr_spawn,
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/virtual_reality/empty_court)
+"Md" = (
+/obj/item/stool/padded,
+/obj/floor_decal/carpet{
+ dir = 1
+ },
+/obj/effect/vr_spawn,
+/turf/simulated/floor/holofloor/carpet,
+/area/virtual_reality/meeting_hall)
+"Mg" = (
+/obj/floor_decal/corner/paleblue{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 9
+ },
+/obj/structure/closet/hydrant{
+ pixel_x = 32
+ },
+/turf/simulated/floor/holofloor/tiled/white,
+/area/virtual_reality/infirmary)
+"Mh" = (
+/obj/floor_decal/corner/red/three_quarters{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/virtual_reality/boxing_ring)
+"Ml" = (
+/turf/simulated/floor/holofloor/lino,
+/area/virtual_reality/meeting_hall)
+"Mm" = (
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/virtual_reality/basketball_court)
+"Mo" = (
+/obj/structure/closet/wardrobe/chemistry_white,
+/obj/floor_decal/corner/beige/mono,
+/turf/simulated/floor/holofloor/tiled/white,
+/area/virtual_reality/infirmary)
+"My" = (
+/obj/machinery/door/window/holowindoor{
+ base_state = "right";
+ dir = 4;
+ icon_state = "right";
+ name = "Green Team"
+ },
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/virtual_reality/empty_court)
+"MB" = (
+/turf/simulated/floor/holofloor/tiled,
+/area/virtual_reality/basketball_court)
+"ME" = (
+/obj/structure/table/woodentable,
+/turf/simulated/floor/holofloor/carpet,
+/area/virtual_reality/courtroom)
+"MO" = (
+/obj/item/stool/padded,
+/turf/simulated/floor/holofloor/tiled,
+/area/virtual_reality/thunderdome)
+"MR" = (
+/obj/floor_decal/corner/green{
+ dir = 6
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/virtual_reality/thunderdome)
+"MZ" = (
+/obj/floor_decal/spline/plain/blue{
+ dir = 5
+ },
+/obj/machinery/light/spot{
+ dir = 8
+ },
+/obj/machinery/camera/network/medbay{
+ c_tag = "Medical - Treament Center";
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/tiled/white,
+/area/virtual_reality/infirmary)
+"Na" = (
+/obj/floor_decal/stoneborder{
+ dir = 8;
+ icon_state = "stoneborder"
+ },
+/obj/effect/vr_spawn,
+/turf/simulated/floor/holofloor/beach/sand,
+/area/virtual_reality/temple)
+"No" = (
+/obj/floor_decal/spline/plain,
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "desert1"
+ },
+/area/virtual_reality/volleyball_court)
+"Nr" = (
+/turf/unsimulated/wall{
+ desc = "This is as far as the simulated area goes out."
+ },
+/area/virtual_reality/volleyball_court)
+"NB" = (
+/obj/item/stool/padded,
+/obj/floor_decal/carpet{
+ dir = 8
+ },
+/obj/floor_decal/carpet{
+ dir = 1
+ },
+/obj/floor_decal/carpet{
+ dir = 9
+ },
+/obj/effect/vr_spawn,
+/turf/simulated/floor/holofloor/carpet,
+/area/virtual_reality/meeting_hall)
+"ND" = (
+/turf/unsimulated/wall{
+ desc = "This is as far as the simulated area goes out."
+ },
+/area/virtual_reality/infirmary)
+"NF" = (
+/obj/structure/table/standard,
+/obj/item/clothing/head/helmet/thunderdome,
+/obj/item/clothing/suit/armor/tdome/green,
+/obj/item/clothing/under/color/green,
+/obj/item/melee/energy/sword/green,
+/obj/floor_decal/corner/green{
+ dir = 10
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/virtual_reality/thunderdome)
+"NJ" = (
+/obj/overlay/coconut,
+/turf/simulated/floor/holofloor/beach/sand,
+/area/virtual_reality/beach)
+"NQ" = (
+/obj/machinery/door/window/holowindoor{
+ base_state = "right";
+ dir = 2;
+ icon_state = "right";
+ name = "Red Corner"
+ },
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/virtual_reality/boxing_ring)
+"Oa" = (
+/obj/floor_decal/carpet{
+ dir = 4
+ },
+/obj/floor_decal/carpet{
+ dir = 1
+ },
+/obj/floor_decal/carpet{
+ dir = 5
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/virtual_reality/theatre)
+"Og" = (
+/obj/floor_decal/stoneborder{
+ dir = 4;
+ icon_state = "stoneborder"
+ },
+/turf/simulated/floor/holofloor/beach/water,
+/area/virtual_reality/temple)
+"Oj" = (
+/obj/item/stool/padded,
+/obj/floor_decal/carpet{
+ dir = 8
+ },
+/obj/floor_decal/carpet,
+/obj/floor_decal/carpet{
+ dir = 10
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/virtual_reality/theatre)
+"Ol" = (
+/obj/structure/window/reinforced/holowindow{
+ dir = 1
+ },
+/obj/structure/table/woodentable,
+/turf/simulated/floor/holofloor/wood,
+/area/virtual_reality/courtroom)
+"Oo" = (
+/obj/structure/flora/grass/brown,
+/turf/simulated/floor/holofloor/snow,
+/area/virtual_reality/snowfield)
+"Os" = (
+/turf/unsimulated/wall{
+ desc = "This is as far as the simulated area goes out."
+ },
+/area/virtual_reality/theatre)
+"Ou" = (
+/obj/floor_decal/spline/fancy/wood/corner{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/concrete,
+/area/virtual_reality/plaza)
+"Ow" = (
+/obj/structure/table/standard,
+/obj/floor_decal/corner/green/three_quarters,
+/turf/simulated/floor/holofloor/tiled,
+/area/virtual_reality/thunderdome)
+"OD" = (
+/obj/floor_decal/stoneborder/corner{
+ dir = 4;
+ icon_state = "stoneborder_c"
+ },
+/turf/simulated/floor/holofloor/tiled/stone,
+/area/virtual_reality/temple)
+"OH" = (
+/obj/structure/sign/directions/infm{
+ pixel_y = 32
+ },
+/turf/unsimulated/wall{
+ desc = "This is as far as the simulated area goes out."
+ },
+/area/virtual_reality/infirmary)
+"OQ" = (
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "desert4"
+ },
+/area/virtual_reality/beach)
+"OS" = (
+/obj/floor_decal/spline/fancy/wood/corner,
+/turf/simulated/floor/holofloor/concrete,
+/area/virtual_reality/plaza)
+"Pc" = (
+/obj/structure/table/woodentable,
+/obj/floor_decal/spline/fancy/wood{
+ dir = 1;
+ icon_state = "spline_fancy"
+ },
+/obj/item/flame/candle{
+ holographic = 1
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/virtual_reality/cafe)
+"Pd" = (
+/obj/machinery/atmospherics/unary/freezer,
+/turf/simulated/floor/holofloor/tiled/white,
+/area/virtual_reality/infirmary)
+"Pe" = (
+/obj/floor_decal/corner/paleblue/three_quarters{
+ dir = 8
+ },
+/turf/simulated/floor/holofloor/tiled/white,
+/area/virtual_reality/infirmary)
+"Pm" = (
+/obj/floor_decal/spline/fancy/wood{
+ dir = 4
+ },
+/obj/structure/table/woodentable,
+/turf/simulated/floor/holofloor/carpet,
+/area/virtual_reality/cafe)
+"Pr" = (
+/obj/floor_decal/corner/green{
+ dir = 9
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/virtual_reality/empty_court)
+"Py" = (
+/obj/floor_decal/spline/plain/blue{
+ dir = 6
+ },
+/turf/simulated/floor/holofloor/tiled/white,
+/area/virtual_reality/infirmary)
+"PG" = (
+/turf/unsimulated/wall{
+ desc = "This is as far as the simulated area goes out."
+ },
+/area/virtual_reality/picnic_area)
+"PI" = (
+/obj/item/stool/padded,
+/obj/structure/window/reinforced/holowindow{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/virtual_reality/thunderdome)
+"PJ" = (
+/turf/simulated/wall/r_wall/prepainted,
+/area/virtual_reality/shady_room)
+"PK" = (
+/turf/simulated/floor/holofloor/space,
+/area/virtual_reality/space)
+"PM" = (
+/obj/structure/curtain{
+ color = "#cd6889"
+ },
+/turf/simulated/floor/holofloor/wood{
+ icon_state = "wood_broken3"
+ },
+/area/virtual_reality/temple)
+"PS" = (
+/obj/machinery/door/window/holowindoor{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/virtual_reality/courtroom)
+"PV" = (
+/obj/structure/table/standard,
+/obj/item/clothing/gloves/boxing/hologlove,
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/virtual_reality/boxing_ring)
+"PX" = (
+/obj/machinery/door/window/holowindoor{
+ base_state = "right";
+ dir = 4;
+ icon_state = "right";
+ name = "Green Team"
+ },
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/virtual_reality/thunderdome)
+"PY" = (
+/obj/floor_decal/floordetail/edgedrain{
+ dir = 4
+ },
+/obj/floor_decal/corner/paleblue{
+ dir = 9
+ },
+/turf/simulated/floor/holofloor/tiled/white,
+/area/virtual_reality/infirmary)
+"Qc" = (
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "desert3"
+ },
+/area/virtual_reality/volleyball_court)
+"Qk" = (
+/obj/structure/bed/chair/wood{
+ dir = 1;
+ holographic = 1
+ },
+/obj/floor_decal/spline/fancy/wood,
+/turf/simulated/floor/holofloor/carpet,
+/area/virtual_reality/cafe)
+"Qq" = (
+/obj/item/stool/padded,
+/turf/simulated/floor/holofloor/carpet,
+/area/virtual_reality/theatre)
+"Qx" = (
+/obj/floor_decal/floordetail/edgedrain,
+/obj/floor_decal/corner/paleblue{
+ dir = 5
+ },
+/obj/structure/closet/crate/secure/biohazard/alt,
+/turf/simulated/floor/holofloor/tiled/white,
+/area/virtual_reality/infirmary)
+"Qy" = (
+/obj/structure/table/rack,
+/turf/simulated/floor/holofloor/wood{
+ icon_state = "wood_broken2"
+ },
+/area/virtual_reality/temple)
+"Qz" = (
+/obj/floor_decal/spline/plain{
+ dir = 6;
+ icon_state = "spline_plain"
+ },
+/turf/simulated/floor/holofloor/beach/sand,
+/area/virtual_reality/volleyball_court)
+"QA" = (
+/obj/structure/table/woodentable,
+/turf/simulated/floor/holofloor/concrete,
+/area/virtual_reality/plaza)
+"QC" = (
+/obj/structure/flora/ausbushes/sunnybush,
+/turf/simulated/floor/holofloor/grass,
+/area/virtual_reality/picnic_area)
+"QD" = (
+/obj/machinery/door/airlock/glass/medical{
+ name = "Chemistry"
+ },
+/turf/simulated/floor/holofloor/tiled/white,
+/area/virtual_reality/infirmary)
+"QH" = (
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/structure/sign/warning/nosmoking_1{
+ pixel_y = 24
+ },
+/obj/floor_decal/corner/beige/mono,
+/obj/machinery/chemical_dispenser/full,
+/turf/simulated/floor/holofloor/tiled/white,
+/area/virtual_reality/infirmary)
+"QO" = (
+/obj/floor_decal/floordetail/edgedrain{
+ dir = 10
+ },
+/obj/floor_decal/corner/paleblue{
+ dir = 4
+ },
+/obj/machinery/organ_printer/robot/mapped,
+/turf/simulated/floor/holofloor/tiled/white,
+/area/virtual_reality/infirmary)
+"QQ" = (
+/obj/floor_decal/corner/paleblue{
+ dir = 5
+ },
+/obj/floor_decal/corner/paleblue{
+ dir = 10
+ },
+/obj/item/auto_cpr,
+/obj/item/bodybag/rescue/loaded,
+/obj/item/reagent_containers/glass/beaker/cryoxadone{
+ pixel_x = 7;
+ pixel_y = 1
+ },
+/obj/item/reagent_containers/glass/beaker/cryoxadone{
+ pixel_x = 7;
+ pixel_y = 1
+ },
+/obj/structure/table/standard,
+/obj/machinery/body_scan_display{
+ pixel_y = 24
+ },
+/turf/simulated/floor/holofloor/tiled/white,
+/area/virtual_reality/infirmary)
+"QX" = (
+/obj/structure/bed/chair,
+/turf/simulated/floor/holofloor/wood,
+/area/virtual_reality/courtroom)
+"QZ" = (
+/obj/machinery/button/medical_dummy_disintigrator{
+ pixel_y = -25
+ },
+/obj/floor_decal/industrial/outline/red,
+/turf/simulated/floor/holofloor/tiled/white,
+/area/virtual_reality/infirmary)
+"Rp" = (
+/obj/structure/table/standard,
+/obj/item/toy/ringbell,
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/virtual_reality/boxing_ring)
+"Rv" = (
+/obj/structure/flora/ausbushes/genericbush,
+/obj/floor_decal/spline/plain/grey{
+ dir = 10;
+ icon_state = "spline_plain"
+ },
+/turf/simulated/floor/holofloor/grass,
+/area/virtual_reality/cafe)
+"RC" = (
+/obj/structure/table/standard,
+/obj/item/clothing/gloves/boxing/hologlove{
+ icon_state = "boxinggreen";
+ item_state = "boxinggreen"
+ },
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/virtual_reality/boxing_ring)
+"RF" = (
+/turf/simulated/floor/holofloor/beach/sand{
+ dir = 5;
+ icon_state = "beach"
+ },
+/area/virtual_reality/beach)
+"RU" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/floor_decal/corner/beige{
+ dir = 5
+ },
+/obj/floor_decal/corner/beige{
+ dir = 10
+ },
+/obj/structure/table/standard,
+/obj/item/reagent_containers/glass/beaker/insulated/large,
+/obj/item/reagent_containers/glass/beaker/large,
+/obj/item/reagent_containers/glass/beaker/large,
+/obj/item/reagent_containers/dropper,
+/obj/item/stack/material/phoron{
+ amount = 6
+ },
+/turf/simulated/floor/holofloor/tiled/white,
+/area/virtual_reality/infirmary)
+"RV" = (
+/obj/floor_decal/corner/red,
+/obj/floor_decal/corner/green{
+ dir = 1
+ },
+/obj/floor_decal/corner/black{
+ dir = 8;
+ icon_state = "corner_white"
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/virtual_reality/boxing_ring)
+"RW" = (
+/obj/item/stool/padded,
+/turf/simulated/floor/holofloor/wood{
+ icon_state = "wood_broken6"
+ },
+/area/virtual_reality/temple)
+"RY" = (
+/obj/floor_decal/corner/red{
+ dir = 5
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/virtual_reality/empty_court)
+"Sd" = (
+/obj/machinery/door/blast/regular,
+/turf/simulated/floor/holofloor/concrete,
+/area/virtual_reality/shady_room)
+"Sh" = (
+/obj/structure/table/woodentable,
+/turf/simulated/floor/holofloor/wood,
+/area/virtual_reality/courtroom)
+"Sp" = (
+/obj/structure/table/woodentable,
+/obj/item/trash/tray{
+ holographic = 1
+ },
+/turf/simulated/floor/holofloor/wood,
+/area/virtual_reality/cafe)
+"Sr" = (
+/obj/structure/closet/athletic_mixed,
+/turf/simulated/floor/holofloor/beach/sand,
+/area/virtual_reality/beach)
+"Ss" = (
+/obj/floor_decal/carpet{
+ dir = 5
+ },
+/obj/floor_decal/carpet{
+ dir = 6
+ },
+/obj/floor_decal/carpet{
+ dir = 10
+ },
+/obj/floor_decal/carpet{
+ dir = 9
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/virtual_reality/theatre)
+"Sv" = (
+/obj/structure/table/woodentable,
+/obj/floor_decal/spline/fancy/wood,
+/turf/simulated/floor/holofloor/wood,
+/area/virtual_reality/meeting_hall)
+"Sw" = (
+/obj/structure/table/woodentable,
+/turf/simulated/floor/holofloor/wood,
+/area/virtual_reality/cafe)
+"SA" = (
+/obj/floor_decal/carpet{
+ dir = 8
+ },
+/obj/floor_decal/carpet{
+ dir = 4
+ },
+/obj/floor_decal/carpet{
+ dir = 1
+ },
+/obj/floor_decal/carpet{
+ dir = 5
+ },
+/obj/floor_decal/carpet{
+ dir = 9
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/virtual_reality/theatre)
+"SB" = (
+/obj/item/stool/padded,
+/obj/floor_decal/carpet{
+ dir = 8
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/virtual_reality/theatre)
+"SF" = (
+/obj/machinery/atmospherics/unary/cryo_cell,
+/obj/floor_decal/corner/paleblue/mono,
+/turf/simulated/floor/holofloor/tiled/white,
+/area/virtual_reality/infirmary)
+"SM" = (
+/turf/simulated/floor/holofloor/wood,
+/area/virtual_reality/cafe)
+"SR" = (
+/obj/item/inflatable_duck,
+/turf/simulated/floor/holofloor/beach/sand,
+/area/virtual_reality/beach)
+"SU" = (
+/obj/decal/cleanable/dirt,
+/turf/simulated/floor/holofloor/concrete,
+/area/virtual_reality/shady_room)
+"SV" = (
+/obj/decal/cleanable/dirt,
+/obj/effect/vr_spawn,
+/turf/simulated/floor/holofloor/desert,
+/area/virtual_reality/picnic_area)
+"SY" = (
+/obj/effect/vr_spawn,
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "desert4"
+ },
+/area/virtual_reality/beach)
+"Te" = (
+/turf/simulated/floor/holofloor/beach/sand,
+/area/virtual_reality/temple)
+"Tg" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/obj/floor_decal/carpet{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/virtual_reality/courtroom)
+"Tq" = (
+/obj/decal/cleanable/blood,
+/turf/simulated/floor/holofloor/concrete,
+/area/virtual_reality/shady_room)
+"Tr" = (
+/turf/simulated/wall/r_wall/hull,
+/area/virtual_reality/space)
+"TU" = (
+/obj/item/clothing/head/collectable/paper,
+/turf/simulated/floor/holofloor/beach/sand,
+/area/virtual_reality/beach)
+"TW" = (
+/obj/floor_decal/corner/paleblue{
+ dir = 9
+ },
+/turf/simulated/floor/holofloor/tiled/white,
+/area/virtual_reality/infirmary)
+"Ub" = (
+/obj/effect/vr_spawn,
+/turf/simulated/floor/holofloor/beach/sand,
+/area/virtual_reality/beach)
+"Ul" = (
+/obj/item/stool/padded,
+/obj/floor_decal/beach{
+ dir = 8;
+ icon_state = "beachborder"
+ },
+/obj/effect/vr_spawn,
+/turf/simulated/floor/holofloor/concrete,
+/area/virtual_reality/volleyball_court)
+"UE" = (
+/obj/structure/bed/chair/wood{
+ dir = 4
+ },
+/obj/effect/vr_spawn,
+/turf/simulated/floor/holofloor/concrete,
+/area/virtual_reality/plaza)
+"UQ" = (
+/obj/floor_decal/corner/green/three_quarters{
+ dir = 8
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/virtual_reality/basketball_court)
+"UR" = (
+/turf/simulated/wall/r_wall/hull,
+/area/virtual_reality/basketball_court)
+"UV" = (
+/obj/structure/table/standard,
+/obj/item/storage/firstaid/surgery,
+/obj/floor_decal/floordetail/edgedrain{
+ dir = 1
+ },
+/obj/floor_decal/corner/paleblue{
+ dir = 10
+ },
+/turf/simulated/floor/holofloor/tiled/white,
+/area/virtual_reality/infirmary)
+"UW" = (
+/obj/machinery/door/window/holowindoor{
+ dir = 4;
+ name = "Red Team"
+ },
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/virtual_reality/empty_court)
+"UX" = (
+/turf/simulated/floor/holofloor/desert,
+/area/virtual_reality/desert)
+"UZ" = (
+/obj/floor_decal/spline/plain{
+ dir = 5;
+ icon_state = "spline_plain"
+ },
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "desert4"
+ },
+/area/virtual_reality/volleyball_court)
+"Vv" = (
+/obj/machinery/door/airlock/medical{
+ name = "Operating Room 2"
+ },
+/obj/machinery/holosign/surgery{
+ dir = 4;
+ id_tag = "or2_v2"
+ },
+/obj/floor_decal/industrial/hatch/blue,
+/turf/simulated/floor/holofloor/tiled/white,
+/area/virtual_reality/infirmary)
+"Vz" = (
+/obj/structure/table/standard,
+/obj/machinery/readybutton{
+ pixel_y = 0
+ },
+/obj/floor_decal/corner/red/three_quarters{
+ dir = 8
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/virtual_reality/thunderdome)
+"VE" = (
+/obj/machinery/door/window/holowindoor{
+ dir = 4;
+ name = "Red Team"
+ },
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/virtual_reality/basketball_court)
+"VG" = (
+/turf/unsimulated/wall{
+ desc = "This is as far as the simulated area goes out."
+ },
+/area/virtual_reality/space)
+"VL" = (
+/obj/floor_decal/spline/fancy/wood,
+/turf/simulated/floor/holofloor/concrete,
+/area/virtual_reality/plaza)
+"VM" = (
+/obj/machinery/vitals_monitor,
+/obj/floor_decal/floordetail/edgedrain{
+ dir = 9
+ },
+/obj/floor_decal/corner/paleblue,
+/turf/simulated/floor/holofloor/tiled/white,
+/area/virtual_reality/infirmary)
+"VN" = (
+/obj/effect/vr_spawn,
+/turf/simulated/floor/holofloor/concrete,
+/area/virtual_reality/shady_room)
+"VO" = (
+/obj/structure/flora/ausbushes/lavendergrass,
+/obj/structure/flora/ausbushes/ywflowers,
+/turf/simulated/floor/holofloor/grass,
+/area/virtual_reality/plaza)
+"VQ" = (
+/obj/structure/flora/ausbushes/lavendergrass,
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/structure/flora/ausbushes/brflowers,
+/turf/simulated/floor/holofloor/grass,
+/area/virtual_reality/plaza)
+"VY" = (
+/obj/structure/bed/chair/wood{
+ holographic = 1
+ },
+/obj/floor_decal/spline/fancy/wood{
+ dir = 5;
+ icon_state = "spline_fancy"
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/virtual_reality/cafe)
+"Wc" = (
+/obj/floor_decal/spline/fancy/wood{
+ dir = 10;
+ icon_state = "spline_fancy"
+ },
+/turf/simulated/floor/holofloor/concrete,
+/area/virtual_reality/plaza)
+"Wg" = (
+/obj/structure/window/reinforced/holowindow{
+ dir = 4
+ },
+/obj/structure/flora/pottedplant{
+ icon_state = "plant-10"
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/virtual_reality/courtroom)
+"Wj" = (
+/obj/item/storage/box/syringes{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/random/soap,
+/obj/random/firstaid,
+/obj/random/medical,
+/obj/random/medical,
+/obj/random/medical,
+/obj/random/medical,
+/obj/random/medical,
+/obj/random/medical,
+/obj/random/medical/lite,
+/obj/random/medical/lite,
+/obj/random/medical/lite,
+/obj/random/medical/lite,
+/obj/floor_decal/corner/paleblue{
+ dir = 10
+ },
+/obj/floor_decal/corner/paleblue{
+ dir = 5
+ },
+/obj/item/defibrillator/loaded,
+/obj/structure/closet/secure_closet/medical_wall{
+ name = "Medical Equipment Cabinet";
+ pixel_y = 32
+ },
+/obj/item/reagent_containers/syringe/antiviral,
+/obj/item/reagent_containers/syringe/antiviral,
+/obj/item/reagent_containers/syringe/antiviral,
+/obj/item/reagent_containers/glass/bottle/inaprovaline,
+/obj/item/reagent_containers/glass/bottle/inaprovaline,
+/obj/item/reagent_containers/glass/bottle/dylovene,
+/obj/item/reagent_containers/glass/bottle/dylovene,
+/obj/item/reagent_containers/glass/bottle/dylovene,
+/obj/item/reagent_containers/glass/bottle/inaprovaline,
+/turf/simulated/floor/holofloor/tiled/white,
+/area/virtual_reality/infirmary)
+"Wm" = (
+/obj/item/stool/padded,
+/obj/floor_decal/carpet{
+ dir = 4
+ },
+/obj/effect/vr_spawn,
+/turf/simulated/floor/holofloor/carpet,
+/area/virtual_reality/theatre)
+"Wr" = (
+/obj/floor_decal/spline/fancy/wood{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/concrete,
+/area/virtual_reality/plaza)
+"Ws" = (
+/turf/space,
+/area/space)
+"Ww" = (
+/obj/structure/bed/chair/wood{
+ dir = 4
+ },
+/obj/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/obj/effect/vr_spawn,
+/turf/simulated/floor/holofloor/concrete,
+/area/virtual_reality/plaza)
+"Wy" = (
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "desert_dug"
+ },
+/area/virtual_reality/beach)
+"WF" = (
+/obj/floor_decal/floordetail/edgedrain{
+ dir = 6
+ },
+/obj/floor_decal/corner/paleblue{
+ dir = 1
+ },
+/obj/floor_decal/sign/or2,
+/obj/machinery/button/holosign{
+ id_tag = "or2_v2";
+ pixel_x = 6;
+ pixel_y = -24
+ },
+/obj/machinery/button/windowtint{
+ id = "or2_vr";
+ pixel_x = -6;
+ pixel_y = -24
+ },
+/turf/simulated/floor/holofloor/tiled/white,
+/area/virtual_reality/infirmary)
+"WH" = (
+/obj/item/stool/padded,
+/turf/simulated/floor/holofloor/wood{
+ icon_state = "wood_broken4"
+ },
+/area/virtual_reality/temple)
+"WM" = (
+/obj/structure/table/woodentable,
+/obj/structure/window/reinforced/holowindow,
+/obj/structure/window/reinforced/holowindow{
+ dir = 8
+ },
+/turf/simulated/floor/holofloor/wood,
+/area/virtual_reality/courtroom)
+"WP" = (
+/obj/structure/bed/chair/wood{
+ dir = 1;
+ holographic = 1
+ },
+/obj/floor_decal/spline/fancy/wood{
+ dir = 10;
+ icon_state = "spline_fancy"
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/virtual_reality/cafe)
+"WU" = (
+/turf/simulated/floor/holofloor/beach/sand,
+/area/virtual_reality/beach)
+"Xb" = (
+/obj/machinery/door/unpowered/simple/sandstone,
+/turf/simulated/floor/holofloor/tiled/stone,
+/area/virtual_reality/temple)
+"Xd" = (
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "desert2"
+ },
+/area/virtual_reality/temple)
+"Xm" = (
+/obj/structure/iv_stand,
+/obj/floor_decal/floordetail/edgedrain{
+ dir = 8
+ },
+/obj/floor_decal/corner/paleblue{
+ dir = 6
+ },
+/turf/simulated/floor/holofloor/tiled/white,
+/area/virtual_reality/infirmary)
+"Xp" = (
+/obj/effect/vr_spawn,
+/turf/simulated/floor/holofloor/tiled,
+/area/virtual_reality/courtroom)
+"Xu" = (
+/obj/floor_decal/corner/red,
+/obj/floor_decal/corner/green{
+ dir = 1
+ },
+/obj/floor_decal/corner/black{
+ dir = 4;
+ icon_state = "corner_white"
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/virtual_reality/boxing_ring)
+"Xv" = (
+/obj/structure/window/reinforced/holowindow/disappearing,
+/obj/floor_decal/corner/red/three_quarters{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/virtual_reality/thunderdome)
+"Xx" = (
+/obj/floor_decal/spline/fancy/wood,
+/turf/simulated/floor/holofloor/wood,
+/area/virtual_reality/meeting_hall)
+"Xy" = (
+/obj/item/stool/padded,
+/obj/floor_decal/carpet,
+/obj/effect/vr_spawn,
+/turf/simulated/floor/holofloor/carpet,
+/area/virtual_reality/theatre)
+"XF" = (
+/obj/floor_decal/corner/green/three_quarters{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/virtual_reality/basketball_court)
+"XS" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/effect/vr_spawn,
+/turf/simulated/floor/holofloor/grass,
+/area/virtual_reality/picnic_area)
+"XZ" = (
+/turf/simulated/wall/r_wall/hull,
+/area/virtual_reality/boxing_ring)
+"Yb" = (
+/obj/floor_decal/corner/paleblue{
+ dir = 6
+ },
+/turf/simulated/floor/holofloor/tiled/white,
+/area/virtual_reality/infirmary)
+"Ye" = (
+/turf/simulated/floor/holofloor/beach/water,
+/area/virtual_reality/beach)
+"Yg" = (
+/obj/floor_decal/carpet{
+ dir = 8
+ },
+/obj/floor_decal/carpet,
+/obj/floor_decal/carpet{
+ dir = 1
+ },
+/obj/floor_decal/carpet{
+ dir = 9
+ },
+/obj/floor_decal/carpet{
+ dir = 10
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/virtual_reality/meeting_hall)
+"Yj" = (
+/obj/floor_decal/corner/beige{
+ dir = 10
+ },
+/obj/floor_decal/corner/beige{
+ dir = 5
+ },
+/obj/structure/bed/chair/comfy/blue,
+/turf/simulated/floor/holofloor/tiled/white,
+/area/virtual_reality/infirmary)
+"Yl" = (
+/turf/simulated/floor/holofloor/beach/sand{
+ icon_state = "desert1"
+ },
+/area/virtual_reality/volleyball_court)
+"Yn" = (
+/turf/simulated/floor/holofloor/beach/sand{
+ dir = 1;
+ icon_state = "beach"
+ },
+/area/virtual_reality/beach)
+"Yo" = (
+/obj/floor_decal/corner/red{
+ dir = 10
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/virtual_reality/basketball_court)
+"Yr" = (
+/obj/structure/bed/chair/wood{
+ holographic = 1
+ },
+/obj/floor_decal/spline/fancy/wood{
+ dir = 9;
+ icon_state = "spline_fancy"
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/virtual_reality/cafe)
+"Yz" = (
+/obj/floor_decal/spline/fancy/wood{
+ dir = 6
+ },
+/turf/simulated/floor/holofloor/concrete,
+/area/virtual_reality/plaza)
+"YE" = (
+/obj/floor_decal/corner/beige{
+ dir = 6
+ },
+/obj/structure/bed/chair/padded/blue,
+/obj/floor_decal/corner/beige{
+ dir = 9
+ },
+/turf/simulated/floor/holofloor/tiled/white,
+/area/virtual_reality/infirmary)
+"YF" = (
+/turf/simulated/wall/r_wall/hull,
+/area/virtual_reality/plaza)
+"YV" = (
+/obj/structure/window/reinforced/holowindow{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/virtual_reality/courtroom)
+"YZ" = (
+/obj/floor_decal/corner/green{
+ dir = 10
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/virtual_reality/empty_court)
+"Zk" = (
+/turf/simulated/floor/holofloor/tiled,
+/area/virtual_reality/theatre)
+"Zn" = (
+/obj/structure/flora/ausbushes/lavendergrass,
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/structure/flora/ausbushes/ppflowers,
+/obj/structure/flora/ausbushes/brflowers,
+/obj/floor_decal/spline/fancy/wood{
+ dir = 10;
+ icon_state = "spline_fancy"
+ },
+/turf/simulated/floor/holofloor/grass,
+/area/virtual_reality/plaza)
+"Zq" = (
+/turf/simulated/floor/holofloor/tiled/stone,
+/area/virtual_reality/temple)
+"ZK" = (
+/obj/structure/table/standard,
+/obj/floor_decal/corner/beige/mono,
+/obj/item/reagent_containers/chem_disp_cartridge/carbon,
+/obj/item/reagent_containers/chem_disp_cartridge/acetone,
+/turf/simulated/floor/holofloor/tiled/white,
+/area/virtual_reality/infirmary)
+"ZO" = (
+/obj/floor_decal/spline/fancy/wood{
+ dir = 1;
+ icon_state = "spline_fancy"
+ },
+/turf/simulated/floor/holofloor/lino,
+/area/virtual_reality/meeting_hall)
+"ZS" = (
+/obj/effect/vr_spawn,
+/turf/simulated/floor/holofloor/beach/sand,
+/area/virtual_reality/temple)
+"ZX" = (
+/obj/structure/table/woodentable,
+/obj/item/reagent_containers/food/drinks/glass2/coffeecup{
+ holographic = 1
+ },
+/turf/simulated/floor/holofloor/wood,
+/area/virtual_reality/cafe)
+
+(1,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+bf
+"}
+(2,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+FZ
+"}
+(3,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+FZ
+"}
+(4,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+FZ
+"}
+(5,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+FZ
+"}
+(6,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+FZ
+"}
+(7,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+FZ
+"}
+(8,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+FZ
+"}
+(9,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+FZ
+"}
+(10,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+FZ
+"}
+(11,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+FZ
+"}
+(12,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+FZ
+"}
+(13,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+FZ
+"}
+(14,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+FZ
+"}
+(15,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+FZ
+"}
+(16,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+FZ
+"}
+(17,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+FZ
+"}
+(18,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+FZ
+"}
+(19,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+FZ
+"}
+(20,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+FZ
+"}
+(21,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+FZ
+"}
+(22,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+FZ
+"}
+(23,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+FZ
+"}
+(24,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+FZ
+"}
+(25,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+FZ
+"}
+(26,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+FZ
+"}
+(27,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+FZ
+"}
+(28,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+FZ
+"}
+(29,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+FZ
+"}
+(30,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+FZ
+"}
+(31,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+FZ
+"}
+(32,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+pK
+pK
+pK
+pK
+pK
+pK
+pK
+pK
+pK
+pK
+pK
+pK
+pK
+pK
+pK
+pK
+pK
+pK
+pK
+pK
+pK
+pK
+pK
+pK
+pK
+pK
+pK
+pK
+pK
+pK
+Ws
+ND
+ND
+ND
+ND
+ND
+ND
+ND
+ND
+ND
+ND
+ND
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+FZ
+"}
+(33,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+pK
+kh
+kh
+kh
+kh
+kh
+kh
+kh
+kh
+kh
+kh
+kh
+kh
+kh
+kh
+kh
+kh
+kh
+kh
+kh
+kh
+kh
+kh
+kh
+kh
+kh
+kh
+kh
+kh
+pK
+Ws
+ND
+VM
+Xm
+zu
+cd
+ND
+VM
+Xm
+zu
+QO
+ND
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+FZ
+"}
+(34,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+pK
+kh
+WU
+WU
+WU
+WU
+WU
+WU
+WU
+WU
+WU
+WU
+WU
+WU
+WU
+WU
+WU
+oQ
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+kh
+pK
+Ws
+ND
+KV
+iu
+iu
+Qx
+ND
+KV
+iu
+iu
+Qx
+ND
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+FZ
+"}
+(35,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+pK
+kh
+WU
+WU
+hS
+WU
+WU
+WU
+WU
+Jz
+WU
+WU
+WU
+ok
+WU
+Jz
+WU
+oQ
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+kh
+pK
+Ws
+ND
+UV
+iu
+iu
+yh
+ND
+UV
+iu
+iu
+bN
+ND
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+FZ
+"}
+(36,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+pK
+kh
+WU
+Jz
+WU
+WU
+WU
+WU
+WU
+WU
+WU
+WU
+WU
+WU
+WU
+WU
+wG
+qy
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+kh
+pK
+Ws
+ND
+du
+lZ
+PY
+WF
+ND
+du
+lZ
+La
+eW
+ND
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+FZ
+"}
+(37,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+pK
+kh
+WU
+WU
+WU
+WU
+WU
+WU
+WU
+WU
+WU
+WU
+NJ
+sH
+NJ
+WU
+oQ
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+kh
+pK
+Ws
+ND
+ND
+Jc
+Jc
+Vv
+ND
+ND
+mL
+vr
+mL
+ND
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+FZ
+"}
+(38,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+pK
+kh
+WU
+WU
+WU
+WU
+WU
+WU
+WU
+WU
+Wy
+WU
+WU
+SR
+WU
+TU
+oQ
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+kh
+pK
+Ws
+ND
+ND
+eY
+zN
+up
+MZ
+sA
+Py
+gH
+iu
+ND
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+FZ
+"}
+(39,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+pK
+kh
+WU
+WU
+ok
+WU
+WU
+sH
+WU
+Ub
+SY
+WU
+WU
+WU
+WU
+WU
+oQ
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+kh
+pK
+Ws
+Ws
+ND
+Dj
+zN
+iu
+iu
+iu
+Dy
+Yb
+QZ
+ND
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+FZ
+"}
+(40,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+pK
+kh
+WU
+WU
+WU
+WU
+ok
+NJ
+Ub
+eX
+Bj
+Ub
+WU
+WU
+WU
+WU
+oQ
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+kh
+pK
+Ws
+Ws
+ND
+Wj
+zN
+iu
+Cn
+Aq
+Gl
+Pe
+vW
+ND
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+FZ
+"}
+(41,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+pK
+kh
+WU
+WU
+Sr
+WU
+WU
+WU
+Ub
+vq
+js
+Ub
+WU
+WU
+WU
+WU
+oQ
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+kh
+pK
+Ws
+ND
+ei
+JE
+Iz
+Yb
+Yb
+Yb
+Le
+zN
+Ic
+ND
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+FZ
+"}
+(42,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+pK
+kh
+WU
+WU
+Sr
+WU
+WU
+WU
+WU
+Ub
+Ub
+WU
+WU
+WU
+AR
+WU
+oQ
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+kh
+pK
+Ws
+ND
+Pd
+JP
+IE
+TW
+TW
+TW
+my
+zN
+IL
+ND
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+FZ
+"}
+(43,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+pK
+kh
+WU
+WU
+Sr
+ok
+WU
+WU
+WU
+WU
+WU
+WU
+WU
+WU
+WU
+WU
+oQ
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+kh
+pK
+Ws
+Ws
+ND
+SF
+yG
+iu
+jh
+Dc
+Gl
+zN
+FM
+ND
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+FZ
+"}
+(44,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+pK
+kh
+WU
+WU
+KB
+Jz
+WU
+WU
+WU
+ok
+WU
+WU
+WU
+WU
+AR
+WU
+oQ
+Ye
+Ye
+Ye
+Ye
+Kk
+FV
+Ha
+Ye
+Ye
+Ye
+Ye
+kh
+pK
+Ws
+Ws
+ND
+QQ
+kX
+iu
+iu
+iu
+tw
+oD
+pP
+ND
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+FZ
+"}
+(45,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+pK
+kh
+WU
+WU
+WU
+WU
+WU
+WU
+WU
+WU
+sH
+WU
+WU
+WU
+WU
+WU
+oQ
+Ye
+Ye
+Ye
+Ye
+Yn
+ye
+oQ
+Ye
+Ye
+Ye
+Ye
+kh
+pK
+Ws
+Ws
+ND
+mv
+Mg
+iu
+iu
+iu
+tw
+oD
+zX
+ND
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+FZ
+"}
+(46,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+pK
+kh
+WU
+WU
+WU
+WU
+WU
+WU
+WU
+WU
+WU
+ok
+WU
+WU
+AR
+WU
+oQ
+Ye
+Ye
+Ye
+Ye
+Yn
+WU
+oQ
+Ye
+Ye
+Ye
+Ye
+kh
+pK
+Ws
+Ws
+ND
+ND
+ND
+QD
+nD
+ND
+EM
+oD
+GV
+ND
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+FZ
+"}
+(47,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+pK
+kh
+WU
+WU
+WU
+WU
+WU
+WU
+WU
+WU
+gE
+WU
+WU
+WU
+WU
+WU
+oQ
+Ye
+Ye
+Ye
+Ye
+Yn
+WU
+oQ
+Ye
+Ye
+Ye
+Ye
+kh
+pK
+Ws
+Ws
+ND
+QH
+dZ
+tX
+zg
+ND
+OH
+ND
+ND
+ND
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+FZ
+"}
+(48,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+pK
+kh
+WU
+WU
+WU
+NJ
+hS
+WU
+WU
+WU
+WU
+WU
+WU
+WU
+WU
+WU
+oQ
+Ye
+Ye
+Ye
+Ye
+Yn
+Jz
+oQ
+Ye
+Ye
+Ye
+Ye
+kh
+pK
+Ws
+Ws
+ND
+RU
+Yj
+tX
+nI
+ND
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+FZ
+"}
+(49,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+pK
+kh
+WU
+WU
+WU
+WU
+WU
+WU
+WU
+WU
+WU
+iM
+OQ
+WU
+WU
+WU
+oQ
+Ye
+Ye
+Ye
+Ye
+RF
+eC
+qy
+Ye
+Ye
+Ye
+Ye
+kh
+pK
+Ws
+Ws
+ND
+av
+JL
+qp
+zg
+ND
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+FZ
+"}
+(50,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+pK
+kh
+WU
+WU
+WU
+WU
+WU
+WU
+WU
+WU
+WU
+WU
+WU
+WU
+WU
+WU
+pE
+Ha
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+kh
+pK
+Ws
+Ws
+ND
+ND
+ZK
+vM
+YE
+ND
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+FZ
+"}
+(51,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+pK
+kh
+WU
+WU
+WU
+WU
+WU
+WU
+WU
+WU
+WU
+WU
+hS
+NJ
+ok
+WU
+Jz
+oQ
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+kh
+pK
+Ws
+Ws
+Ws
+ND
+AB
+EU
+Gt
+ND
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+FZ
+"}
+(52,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+pK
+kh
+WU
+WU
+WU
+WU
+WU
+ok
+WU
+WU
+WU
+WU
+WU
+WU
+WU
+WU
+WU
+oQ
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+kh
+pK
+Ws
+Ws
+Ws
+ND
+Mo
+sM
+ND
+ND
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+FZ
+"}
+(53,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+pK
+kh
+WU
+WU
+sx
+WU
+WU
+WU
+WU
+WU
+WU
+WU
+WU
+WU
+WU
+WU
+WU
+oQ
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+kh
+pK
+Ws
+Ws
+Ws
+ND
+ND
+ND
+ND
+ND
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+FZ
+"}
+(54,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+pK
+kh
+WU
+WU
+WU
+WU
+WU
+WU
+WU
+WU
+WU
+WU
+WU
+WU
+WU
+WU
+WU
+oQ
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+Ye
+kh
+pK
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+FZ
+"}
+(55,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+pK
+kh
+kh
+kh
+kh
+kh
+kh
+kh
+kh
+kh
+kh
+kh
+kh
+kh
+kh
+kh
+kh
+kh
+kh
+kh
+kh
+kh
+kh
+kh
+kh
+kh
+kh
+kh
+kh
+pK
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+FZ
+"}
+(56,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+pK
+pK
+pK
+pK
+pK
+pK
+pK
+pK
+pK
+pK
+pK
+pK
+pK
+pK
+pK
+pK
+pK
+pK
+pK
+pK
+pK
+pK
+pK
+pK
+pK
+pK
+pK
+pK
+pK
+pK
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+FZ
+"}
+(57,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+FZ
+"}
+(58,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+Ig
+FZ
+"}
+(59,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+"}
+(60,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+bf
+"}
+(61,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+FZ
+"}
+(62,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+FZ
+"}
+(63,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+FZ
+"}
+(64,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+FZ
+"}
+(65,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+FZ
+"}
+(66,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+FZ
+"}
+(67,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+EN
+EN
+EN
+EN
+EN
+EN
+EN
+EN
+EN
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+FZ
+"}
+(68,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+EN
+PJ
+PJ
+PJ
+PJ
+PJ
+PJ
+PJ
+EN
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+FZ
+"}
+(69,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+EN
+PJ
+SU
+SU
+Tq
+SU
+Ih
+PJ
+EN
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+FZ
+"}
+(70,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+EN
+PJ
+pL
+SU
+VN
+pL
+oj
+PJ
+EN
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+FZ
+"}
+(71,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+EN
+PJ
+ta
+VN
+SU
+VN
+SU
+Sd
+EN
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+FZ
+"}
+(72,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+EN
+PJ
+SU
+pL
+VN
+sw
+pL
+PJ
+EN
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+FZ
+"}
+(73,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+EN
+PJ
+SU
+SU
+pL
+SU
+Fg
+PJ
+EN
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+FZ
+"}
+(74,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+EN
+PJ
+PJ
+PJ
+PJ
+PJ
+PJ
+PJ
+EN
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+FZ
+"}
+(75,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+EN
+EN
+EN
+EN
+EN
+EN
+EN
+EN
+EN
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+FZ
+"}
+(76,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+FZ
+"}
+(77,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+FZ
+"}
+(78,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+FZ
+"}
+(79,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+FZ
+"}
+(80,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+FZ
+"}
+(81,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+FZ
+"}
+(82,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+FZ
+"}
+(83,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+FZ
+"}
+(84,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+FZ
+"}
+(85,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+FZ
+"}
+(86,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+sG
+sG
+sG
+sG
+sG
+sG
+sG
+sG
+sG
+sG
+sG
+sG
+sG
+sG
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Os
+Os
+Os
+Os
+Os
+Os
+Os
+Os
+Os
+Os
+Os
+Os
+Os
+Os
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+ja
+ja
+ja
+ja
+ja
+ja
+ja
+ja
+ja
+ja
+ja
+ja
+ja
+ja
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+sn
+sn
+sn
+sn
+sn
+sn
+sn
+sn
+sn
+sn
+sn
+sn
+sn
+sn
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+FZ
+"}
+(87,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+sG
+YF
+YF
+YF
+YF
+YF
+YF
+YF
+YF
+YF
+YF
+YF
+YF
+sG
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Os
+FI
+FI
+FI
+FI
+FI
+FI
+FI
+FI
+FI
+FI
+FI
+FI
+Os
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+ja
+mh
+mh
+mh
+mh
+mh
+mh
+mh
+mh
+mh
+mh
+mh
+mh
+ja
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+sn
+UR
+UR
+UR
+UR
+UR
+UR
+UR
+UR
+UR
+UR
+UR
+UR
+sn
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+FZ
+"}
+(88,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+sG
+YF
+Gh
+VQ
+VO
+VQ
+Gh
+VQ
+VO
+VO
+DG
+qS
+YF
+sG
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Os
+FI
+dm
+rd
+rd
+tv
+Zk
+Zk
+Zk
+Zk
+Zk
+Im
+FI
+Os
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+ja
+mh
+xz
+xz
+xz
+xz
+xz
+xz
+xz
+xz
+xz
+xz
+mh
+ja
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+sn
+UR
+bJ
+bJ
+bJ
+bJ
+bJ
+bJ
+bJ
+bJ
+bJ
+bJ
+UR
+sn
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+FZ
+"}
+(89,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+sG
+YF
+VO
+jY
+Ww
+Az
+Az
+Ww
+Wc
+Gh
+DG
+qS
+YF
+sG
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Os
+FI
+dm
+rd
+rd
+tv
+Zk
+Zk
+Zk
+Zk
+Zk
+Zk
+FI
+Os
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+ja
+mh
+wV
+ah
+wV
+Rv
+ig
+ig
+wu
+BN
+wV
+wV
+mh
+ja
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+sn
+UR
+fb
+fb
+Mm
+fb
+fb
+fb
+fb
+Mm
+fb
+fb
+UR
+sn
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+FZ
+"}
+(90,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+sG
+YF
+VO
+Kq
+QA
+qS
+qS
+QA
+lb
+VO
+DG
+qS
+YF
+sG
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Os
+FI
+dm
+rd
+rd
+tv
+oR
+xW
+SB
+xW
+Oj
+Zk
+FI
+Os
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+ja
+mh
+za
+za
+za
+Ix
+sm
+sm
+Ix
+za
+za
+za
+mh
+ja
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+sn
+UR
+hG
+hG
+VE
+hG
+hG
+hG
+hG
+DN
+hG
+hG
+UR
+sn
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+FZ
+"}
+(91,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+sG
+YF
+VQ
+DG
+dz
+qS
+qS
+qS
+VL
+Ae
+DG
+qS
+YF
+sG
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Os
+FI
+dm
+rd
+rd
+tv
+CJ
+Qq
+Iq
+Qq
+Xy
+Zk
+FI
+Os
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+ja
+mh
+tF
+CE
+vX
+un
+SM
+SM
+un
+VY
+CE
+Di
+mh
+ja
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+sn
+UR
+ti
+gu
+gu
+gu
+nx
+UQ
+bw
+bw
+bw
+yP
+UR
+sn
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+FZ
+"}
+(92,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+sG
+YF
+Gh
+DG
+qS
+gV
+Zn
+qS
+IZ
+Az
+Ou
+qS
+YF
+sG
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Os
+FI
+dm
+rd
+rd
+tv
+CJ
+Iq
+Qq
+Iq
+BP
+Zk
+FI
+Os
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+ja
+mh
+SM
+SM
+SM
+SM
+SM
+SM
+SM
+SM
+SM
+SM
+mh
+ja
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+sn
+UR
+fs
+MB
+MB
+MB
+Yo
+wm
+MB
+MB
+MB
+hh
+UR
+sn
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+FZ
+"}
+(93,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+sG
+YF
+VQ
+DG
+qS
+ub
+vR
+qS
+OS
+Wr
+Wr
+Wr
+YF
+sG
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Os
+FI
+dm
+rd
+rd
+tv
+CJ
+Qq
+Iq
+Qq
+Xy
+Zk
+FI
+Os
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+ja
+mh
+SM
+Sw
+DX
+SM
+SM
+SM
+SM
+SM
+SM
+FU
+mh
+ja
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+sn
+UR
+ti
+gu
+fs
+MB
+Yo
+wm
+MB
+hh
+bw
+yP
+UR
+sn
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+FZ
+"}
+(94,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+sG
+YF
+VO
+DG
+UE
+qS
+qS
+qS
+VL
+VQ
+VO
+Gh
+YF
+sG
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Os
+FI
+dm
+rd
+rd
+tv
+CJ
+Iq
+Qq
+Iq
+BP
+Zk
+FI
+Os
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+ja
+mh
+SM
+SM
+ZX
+SM
+Yr
+Eb
+Eb
+WP
+SM
+Pc
+mh
+ja
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+sn
+UR
+Ls
+MB
+fs
+MB
+rc
+wm
+MB
+hh
+MB
+ey
+UR
+sn
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+FZ
+"}
+(95,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+sG
+YF
+VO
+Kq
+QA
+qS
+qS
+QA
+lb
+VO
+VQ
+VO
+YF
+sG
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Os
+FI
+dm
+rd
+rd
+tv
+Oa
+kY
+Wm
+kY
+bY
+Zk
+FI
+Os
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+ja
+mh
+SM
+SM
+Sp
+SM
+Ja
+tU
+tU
+Qk
+SM
+Pc
+mh
+ja
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+sn
+UR
+CC
+KY
+fs
+MB
+Yo
+wm
+MB
+hh
+nV
+fw
+UR
+sn
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+FZ
+"}
+(96,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+sG
+YF
+VO
+Eu
+sC
+Wr
+Wr
+sC
+Yz
+VQ
+Gh
+VQ
+YF
+sG
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Os
+FI
+dm
+rd
+rd
+tv
+Zk
+Zk
+Zk
+Zk
+Zk
+Zk
+FI
+Os
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+ja
+mh
+SM
+SM
+ZX
+SM
+VY
+Pm
+Pm
+vX
+SM
+iQ
+mh
+ja
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+sn
+UR
+fs
+MB
+MB
+MB
+Yo
+wm
+MB
+MB
+MB
+hh
+UR
+sn
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+FZ
+"}
+(97,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+sG
+YF
+VQ
+Ae
+VO
+VO
+VQ
+Gh
+VO
+VO
+VQ
+VO
+YF
+sG
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Os
+FI
+dm
+rd
+rd
+SA
+mS
+mS
+mS
+mS
+bC
+Ss
+FI
+Os
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+ja
+mh
+By
+eG
+kc
+SM
+SM
+SM
+SM
+SM
+SM
+SM
+mh
+ja
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+sn
+UR
+CC
+KY
+KY
+KY
+ow
+XF
+cK
+nV
+nV
+fw
+UR
+sn
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+FZ
+"}
+(98,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+sG
+YF
+YF
+YF
+YF
+YF
+YF
+YF
+YF
+YF
+YF
+YF
+YF
+sG
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Os
+FI
+FI
+FI
+FI
+FI
+FI
+FI
+FI
+FI
+FI
+FI
+FI
+Os
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+ja
+mh
+mh
+mh
+mh
+mh
+mh
+mh
+mh
+mh
+mh
+mh
+mh
+ja
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+sn
+UR
+UR
+UR
+UR
+UR
+UR
+UR
+UR
+UR
+UR
+UR
+UR
+sn
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+FZ
+"}
+(99,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+sG
+sG
+sG
+sG
+sG
+sG
+sG
+sG
+sG
+sG
+sG
+sG
+sG
+sG
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Os
+Os
+Os
+Os
+Os
+Os
+Os
+Os
+Os
+Os
+Os
+Os
+Os
+Os
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+ja
+ja
+ja
+ja
+ja
+ja
+ja
+ja
+ja
+ja
+ja
+ja
+ja
+ja
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+sn
+sn
+sn
+sn
+sn
+sn
+sn
+sn
+sn
+sn
+sn
+sn
+sn
+sn
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+FZ
+"}
+(100,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+FZ
+"}
+(101,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+FZ
+"}
+(102,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+FZ
+"}
+(103,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+FZ
+"}
+(104,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+FZ
+"}
+(105,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+FZ
+"}
+(106,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+FZ
+"}
+(107,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+FZ
+"}
+(108,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+FZ
+"}
+(109,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+FZ
+"}
+(110,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+FZ
+"}
+(111,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+FZ
+"}
+(112,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Nr
+Nr
+Nr
+Nr
+Nr
+Nr
+Nr
+Nr
+Nr
+Nr
+Nr
+Nr
+Nr
+Nr
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+hd
+hd
+hd
+hd
+hd
+hd
+hd
+hd
+hd
+hd
+hd
+hd
+hd
+hd
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Id
+Id
+Id
+Id
+Id
+Id
+Id
+Id
+Id
+Id
+Id
+Id
+Id
+Id
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+FZ
+"}
+(113,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Nr
+eD
+eD
+eD
+eD
+eD
+eD
+eD
+eD
+eD
+eD
+eD
+eD
+Nr
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+hd
+sW
+sW
+sW
+sW
+sW
+sW
+sW
+sW
+sW
+sW
+sW
+sW
+hd
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+VG
+Tr
+Tr
+Tr
+Tr
+Tr
+Tr
+Tr
+Tr
+Tr
+Tr
+Tr
+Tr
+VG
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Id
+KE
+KE
+KE
+KE
+KE
+KE
+KE
+KE
+KE
+KE
+KE
+KE
+Id
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+FZ
+"}
+(114,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Nr
+eD
+td
+td
+td
+td
+td
+td
+td
+td
+td
+td
+eD
+Nr
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+hd
+sW
+Xp
+Xp
+Xp
+Xp
+Xp
+Xp
+Xp
+Xp
+Xp
+Xp
+sW
+hd
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+VG
+Tr
+PK
+PK
+PK
+PK
+PK
+PK
+gL
+gL
+gL
+gL
+Tr
+VG
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Id
+KE
+ng
+ng
+ng
+ng
+ng
+ng
+ng
+ng
+ng
+ng
+KE
+Id
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+FZ
+"}
+(115,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Nr
+eD
+JD
+ov
+Ul
+Ul
+Ul
+xs
+ov
+ov
+ov
+ov
+eD
+Nr
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+hd
+sW
+Wg
+PS
+YV
+YV
+YV
+YV
+YV
+iW
+YV
+Wg
+sW
+hd
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+VG
+Tr
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+gL
+gL
+gL
+Tr
+VG
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Id
+KE
+MO
+MO
+kZ
+MO
+MO
+MO
+MO
+kZ
+MO
+MO
+KE
+Id
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+FZ
+"}
+(116,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Nr
+eD
+mx
+DS
+nz
+nz
+nz
+fu
+nz
+nz
+nz
+xE
+eD
+Nr
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+hd
+sW
+Sh
+kG
+kG
+gy
+rw
+Jr
+cS
+xU
+cS
+cQ
+sW
+hd
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+VG
+Tr
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+gL
+gL
+Tr
+VG
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Id
+KE
+PI
+PI
+dL
+PI
+PI
+PI
+PI
+PX
+PI
+PI
+KE
+Id
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+FZ
+"}
+(117,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Nr
+eD
+mx
+qh
+Ks
+Ks
+Yl
+fF
+IT
+Ks
+DI
+No
+eD
+Nr
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+hd
+sW
+Sh
+kG
+Sh
+WM
+yk
+ME
+oA
+Jb
+oA
+ic
+sW
+hd
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+VG
+Tr
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+gL
+Tr
+VG
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Id
+KE
+Vz
+od
+od
+od
+ql
+AX
+Ed
+Ed
+Ed
+Ow
+KE
+Id
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+KK
+FZ
+"}
+(118,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Nr
+eD
+mx
+qh
+Qc
+Ks
+Ks
+fF
+Ks
+Ks
+Ks
+JK
+eD
+Nr
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+hd
+sW
+Sh
+kG
+QX
+Em
+yk
+Jb
+Jb
+Jb
+oA
+ic
+sW
+hd
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+VG
+Tr
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+Tr
+VG
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Id
+KE
+kV
+yK
+yK
+yK
+go
+yC
+yK
+yK
+yK
+NF
+KE
+Id
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+"}
+(119,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Nr
+eD
+mx
+qh
+Ks
+Ks
+Ks
+fF
+Ks
+Ks
+Ks
+JK
+eD
+Nr
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+hd
+sW
+Sh
+kG
+Sh
+HD
+yk
+ME
+oA
+Jb
+oA
+ic
+sW
+hd
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+VG
+Tr
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+Tr
+VG
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Id
+KE
+kV
+yK
+yK
+yK
+go
+yC
+yK
+yK
+yK
+NF
+KE
+Id
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+bf
+"}
+(120,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Nr
+eD
+mx
+qh
+Ks
+Ks
+Ks
+fF
+Ks
+qj
+Qc
+JK
+eD
+Nr
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+hd
+sW
+Sh
+kG
+kG
+rU
+fq
+qL
+kT
+bq
+kT
+sv
+sW
+hd
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+VG
+Tr
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+Tr
+VG
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Id
+KE
+kV
+yK
+yK
+yK
+go
+yC
+yK
+yK
+yK
+NF
+KE
+Id
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+FZ
+"}
+(121,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Nr
+eD
+mx
+UZ
+yo
+nC
+yo
+op
+yo
+yo
+yo
+Qz
+eD
+Nr
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+hd
+sW
+Sh
+kG
+Lj
+qb
+qb
+qb
+qb
+qb
+qb
+qb
+sW
+hd
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+VG
+Tr
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+Tr
+VG
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Id
+KE
+kV
+yK
+yK
+yK
+go
+yC
+yK
+yK
+yK
+NF
+KE
+Id
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+FZ
+"}
+(122,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Nr
+eD
+yA
+AG
+de
+de
+de
+vg
+de
+de
+de
+AG
+eD
+Nr
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+hd
+sW
+Sh
+kG
+Ol
+De
+fj
+fj
+fj
+fj
+AS
+Sh
+sW
+hd
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+VG
+Tr
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+Tr
+VG
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Id
+KE
+kV
+yK
+yK
+yK
+go
+yC
+yK
+yK
+yK
+NF
+KE
+Id
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+FZ
+"}
+(123,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Nr
+eD
+td
+td
+td
+td
+td
+td
+td
+td
+td
+td
+eD
+Nr
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+hd
+sW
+Sh
+kG
+is
+dq
+Tg
+Tg
+Tg
+Tg
+eM
+Sh
+sW
+hd
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+VG
+Tr
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+PK
+Tr
+VG
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Id
+KE
+In
+ku
+ku
+ku
+Xv
+Cf
+MR
+MR
+MR
+GT
+KE
+Id
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+FZ
+"}
+(124,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Nr
+eD
+eD
+eD
+eD
+eD
+eD
+eD
+eD
+eD
+eD
+eD
+eD
+Nr
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+hd
+sW
+sW
+sW
+sW
+sW
+sW
+sW
+sW
+sW
+sW
+sW
+sW
+hd
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+VG
+Tr
+Tr
+Tr
+Tr
+Tr
+Tr
+Tr
+Tr
+Tr
+Tr
+Tr
+Tr
+VG
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Id
+KE
+KE
+KE
+KE
+KE
+KE
+KE
+KE
+KE
+KE
+KE
+KE
+Id
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+FZ
+"}
+(125,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Nr
+Nr
+Nr
+Nr
+Nr
+Nr
+Nr
+Nr
+Nr
+Nr
+Nr
+Nr
+Nr
+Nr
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+hd
+hd
+hd
+hd
+hd
+hd
+hd
+hd
+hd
+hd
+hd
+hd
+hd
+hd
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+VG
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Id
+Id
+Id
+Id
+Id
+Id
+Id
+Id
+Id
+Id
+Id
+Id
+Id
+Id
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+FZ
+"}
+(126,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+FZ
+"}
+(127,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+FZ
+"}
+(128,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+FZ
+"}
+(129,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+FZ
+"}
+(130,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+FZ
+"}
+(131,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+FZ
+"}
+(132,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+FZ
+"}
+(133,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+FZ
+"}
+(134,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+FZ
+"}
+(135,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+FZ
+"}
+(136,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+zd
+zd
+zd
+zd
+zd
+zd
+zd
+zd
+zd
+zd
+zd
+zd
+zd
+zd
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+DB
+DB
+DB
+DB
+DB
+DB
+DB
+DB
+DB
+DB
+DB
+DB
+DB
+DB
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+ew
+ew
+ew
+ew
+ew
+ew
+ew
+ew
+ew
+ew
+ew
+ew
+ew
+ew
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+FZ
+"}
+(137,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+zd
+sd
+sd
+sd
+sd
+sd
+sd
+sd
+sd
+sd
+sd
+sd
+sd
+zd
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+DB
+FH
+FH
+FH
+FH
+FH
+FH
+FH
+FH
+FH
+FH
+FH
+FH
+DB
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+ew
+Ci
+Ci
+Ci
+Ci
+Ci
+Ci
+Ci
+Ci
+Ci
+Ci
+Ci
+Ci
+ew
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+lI
+XZ
+XZ
+XZ
+XZ
+XZ
+XZ
+XZ
+XZ
+XZ
+XZ
+XZ
+XZ
+lI
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+FZ
+"}
+(138,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+zd
+sd
+UX
+UX
+UX
+UX
+UX
+UX
+UX
+UX
+UX
+jl
+sd
+zd
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+DB
+FH
+Mc
+Mc
+Mc
+Mc
+Mc
+Mc
+Mc
+Mc
+Mc
+Mc
+FH
+DB
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+ew
+Ci
+CM
+CM
+CM
+CM
+CM
+CM
+CM
+Oo
+CM
+CM
+Ci
+ew
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+lI
+XZ
+PV
+nY
+nY
+nY
+nY
+nY
+nY
+nY
+nY
+lA
+XZ
+lI
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+FZ
+"}
+(139,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+zd
+sd
+UX
+Fe
+pA
+UX
+UX
+UX
+UX
+UX
+UX
+UX
+sd
+zd
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+DB
+FH
+rP
+rP
+nn
+rP
+rP
+rP
+rP
+nn
+rP
+rP
+FH
+DB
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+ew
+Ci
+CM
+jW
+CM
+CM
+CM
+CM
+CM
+CM
+uq
+CM
+Ci
+ew
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+lI
+XZ
+PV
+nY
+nY
+yt
+yt
+yt
+yt
+nY
+nY
+lA
+XZ
+lI
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+FZ
+"}
+(140,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+zd
+sd
+UX
+UX
+UX
+UX
+jl
+UX
+UX
+pA
+Fe
+UX
+sd
+zd
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+DB
+FH
+rr
+rr
+UW
+rr
+rr
+rr
+rr
+My
+rr
+rr
+FH
+DB
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+ew
+Ci
+CM
+CM
+CM
+zh
+CM
+CM
+CM
+CM
+zZ
+CM
+Ci
+ew
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+lI
+XZ
+nY
+nY
+nY
+mI
+mI
+mI
+mI
+nY
+nY
+lA
+XZ
+lI
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+FZ
+"}
+(141,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+zd
+sd
+jl
+Fe
+UX
+UX
+UX
+UX
+UX
+UX
+UX
+UX
+sd
+zd
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+DB
+FH
+DZ
+sO
+sO
+sO
+sO
+Pr
+Pr
+Pr
+Pr
+pX
+FH
+DB
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+ew
+Ci
+CM
+zZ
+CM
+CM
+uq
+CM
+CM
+CM
+zh
+CM
+Ci
+ew
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+lI
+XZ
+nY
+nY
+NQ
+jy
+gj
+gj
+gZ
+no
+yt
+lA
+XZ
+lI
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+FZ
+"}
+(142,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+zd
+sd
+UX
+UX
+UX
+UX
+UX
+UX
+UX
+UX
+Fe
+pA
+sd
+zd
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+DB
+FH
+RY
+uH
+uH
+uH
+uH
+uH
+uH
+uH
+uH
+YZ
+FH
+DB
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+ew
+Ci
+CM
+CM
+CM
+CG
+CM
+CM
+fO
+CM
+zZ
+Oo
+Ci
+ew
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+lI
+XZ
+nY
+yt
+vp
+eO
+jV
+RV
+HK
+no
+yt
+lA
+XZ
+lI
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+FZ
+"}
+(143,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+zd
+sd
+UX
+Fe
+UX
+jl
+UX
+UX
+pA
+UX
+UX
+UX
+sd
+zd
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+DB
+FH
+RY
+uH
+uH
+uH
+uH
+uH
+uH
+uH
+uH
+YZ
+FH
+DB
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+ew
+Ci
+CM
+zZ
+CM
+CM
+CM
+CM
+CM
+Oo
+CM
+CM
+Ci
+ew
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+lI
+XZ
+nY
+yt
+vp
+eO
+Xu
+Mh
+HK
+no
+yt
+lA
+XZ
+lI
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+FZ
+"}
+(144,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+zd
+sd
+UX
+UX
+UX
+UX
+jl
+UX
+UX
+UX
+Fe
+UX
+sd
+zd
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+DB
+FH
+RY
+uH
+uH
+uH
+uH
+uH
+uH
+uH
+uH
+YZ
+FH
+DB
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+ew
+Ci
+CM
+fO
+CM
+CM
+CM
+CM
+zh
+CM
+sB
+CM
+Ci
+ew
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+lI
+XZ
+nY
+yt
+vp
+gZ
+xI
+xI
+bM
+Gd
+nY
+lA
+XZ
+lI
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+FZ
+"}
+(145,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+zd
+sd
+UX
+Fe
+UX
+UX
+UX
+UX
+UX
+UX
+UX
+UX
+sd
+zd
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+DB
+FH
+RY
+uH
+uH
+uH
+uH
+uH
+uH
+uH
+uH
+YZ
+FH
+DB
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+ew
+Ci
+CM
+zZ
+CM
+CM
+CM
+CM
+CM
+CM
+CM
+CM
+Ci
+ew
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+lI
+XZ
+nY
+nY
+nY
+nO
+nO
+nO
+nO
+nY
+nY
+lA
+XZ
+lI
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+FZ
+"}
+(146,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+zd
+sd
+UX
+pA
+UX
+UX
+UX
+UX
+UX
+UX
+Fe
+UX
+sd
+zd
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+DB
+FH
+RY
+uH
+uH
+uH
+uH
+uH
+uH
+uH
+uH
+YZ
+FH
+DB
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+ew
+Ci
+CM
+CM
+CG
+CM
+uq
+CM
+CM
+CM
+Kb
+CM
+Ci
+ew
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+lI
+XZ
+im
+Rp
+nY
+yt
+yt
+yt
+yt
+nY
+nY
+RC
+XZ
+lI
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+FZ
+"}
+(147,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+zd
+sd
+UX
+UX
+UX
+UX
+UX
+UX
+jl
+UX
+UX
+pA
+sd
+zd
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+DB
+FH
+lG
+Cy
+Cy
+Cy
+Cy
+vz
+vz
+vz
+vz
+re
+FH
+DB
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+ew
+Ci
+CM
+CM
+CM
+CM
+CM
+CM
+fO
+CM
+CM
+Oo
+Ci
+ew
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+lI
+XZ
+nY
+zk
+nY
+nY
+nY
+nY
+nY
+nY
+nY
+RC
+XZ
+lI
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+FZ
+"}
+(148,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+zd
+sd
+sd
+sd
+sd
+sd
+sd
+sd
+sd
+sd
+sd
+sd
+sd
+zd
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+DB
+FH
+FH
+FH
+FH
+FH
+FH
+FH
+FH
+FH
+FH
+FH
+FH
+DB
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+ew
+Ci
+Ci
+Ci
+Ci
+Ci
+Ci
+Ci
+Ci
+Ci
+Ci
+Ci
+Ci
+ew
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+lI
+XZ
+XZ
+XZ
+XZ
+XZ
+XZ
+XZ
+XZ
+XZ
+XZ
+XZ
+XZ
+lI
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+FZ
+"}
+(149,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+zd
+zd
+zd
+zd
+zd
+zd
+zd
+zd
+zd
+zd
+zd
+zd
+zd
+zd
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+DB
+DB
+DB
+DB
+DB
+DB
+DB
+DB
+DB
+DB
+DB
+DB
+DB
+DB
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+ew
+ew
+ew
+ew
+ew
+ew
+ew
+ew
+ew
+ew
+ew
+ew
+ew
+ew
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+lI
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+FZ
+"}
+(150,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+FZ
+"}
+(151,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+FZ
+"}
+(152,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+FZ
+"}
+(153,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+FZ
+"}
+(154,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+FZ
+"}
+(155,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+FZ
+"}
+(156,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+FZ
+"}
+(157,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+FZ
+"}
+(158,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+FZ
+"}
+(159,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+FZ
+"}
+(160,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+PG
+PG
+PG
+PG
+PG
+PG
+PG
+PG
+PG
+PG
+PG
+PG
+PG
+PG
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+qB
+qB
+qB
+qB
+qB
+qB
+qB
+qB
+qB
+qB
+qB
+qB
+qB
+qB
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+ny
+ny
+ny
+ny
+ny
+ny
+ny
+ny
+ny
+ny
+ny
+ny
+ny
+ny
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+FZ
+"}
+(161,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+PG
+CB
+CB
+CB
+CB
+CB
+CB
+CB
+CB
+CB
+CB
+CB
+CB
+PG
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+qB
+bF
+bF
+bF
+bF
+bF
+bF
+bF
+bF
+bF
+bF
+bF
+bF
+qB
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+ny
+dr
+dr
+dr
+dr
+dr
+dr
+dr
+dr
+dr
+dr
+dr
+dr
+ny
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+FZ
+"}
+(162,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+PG
+CB
+yZ
+jL
+DW
+zq
+fJ
+fJ
+jL
+yZ
+wP
+wP
+CB
+PG
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+qB
+bF
+Te
+wF
+Te
+Te
+Xd
+Te
+Te
+LW
+Na
+ZS
+bF
+qB
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+ny
+dr
+Ce
+Ce
+Xx
+ZO
+zw
+zw
+Ml
+Ml
+Ml
+Ml
+dr
+ny
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+FZ
+"}
+(163,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+PG
+CB
+jL
+jL
+DW
+jL
+yZ
+jL
+jX
+fJ
+bU
+wP
+CB
+PG
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+qB
+bF
+Bt
+Bt
+Bt
+Bt
+Bt
+Bt
+Au
+cN
+OD
+Au
+bF
+qB
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+ny
+dr
+Ce
+Ce
+Xx
+ZO
+NB
+fE
+kd
+fE
+wW
+Ml
+dr
+ny
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+FZ
+"}
+(164,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+PG
+CB
+fJ
+kO
+gh
+yZ
+jL
+jL
+fJ
+yZ
+yZ
+wP
+CB
+PG
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+qB
+bF
+dT
+Bt
+jC
+qN
+wh
+Bt
+Bt
+Xb
+Xb
+Bt
+bF
+qB
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+ny
+dr
+Ce
+Yg
+Sv
+ZO
+CN
+sE
+yH
+sE
+pH
+Ml
+dr
+ny
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+FZ
+"}
+(165,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+PG
+CB
+jX
+gh
+jL
+DW
+fJ
+fJ
+zL
+wP
+SV
+jL
+CB
+PG
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+qB
+bF
+sg
+Dd
+Zq
+Zq
+Zq
+Zq
+Zq
+Zq
+Zq
+Zq
+bF
+qB
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+ny
+dr
+Ce
+iU
+Sv
+ZO
+Md
+yH
+sE
+yH
+AF
+Ml
+dr
+ny
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+FZ
+"}
+(166,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+PG
+CB
+fJ
+df
+fJ
+jX
+wP
+wP
+wP
+fJ
+yZ
+fJ
+CB
+PG
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+qB
+bF
+Bt
+Bt
+Zq
+Zq
+Ld
+Zq
+Ld
+Zq
+Zq
+Ld
+bF
+qB
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+ny
+dr
+Ce
+iU
+Sv
+ZO
+CN
+sE
+yH
+sE
+pH
+Ml
+dr
+ny
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+FZ
+"}
+(167,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+PG
+CB
+jL
+yZ
+yZ
+wP
+fJ
+yZ
+yZ
+fJ
+df
+fJ
+CB
+PG
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+qB
+bF
+Qy
+Bt
+Zq
+Hr
+Og
+Og
+Og
+Og
+Og
+IF
+bF
+qB
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+ny
+dr
+Ce
+iU
+Sv
+ZO
+Md
+yH
+sE
+yH
+AF
+Ml
+dr
+ny
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+FZ
+"}
+(168,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+PG
+CB
+yZ
+df
+wP
+wP
+fJ
+jX
+kr
+jL
+fJ
+yZ
+CB
+PG
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+qB
+bF
+WH
+BU
+Zq
+zB
+It
+It
+It
+It
+It
+ko
+bF
+qB
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+ny
+dr
+Ce
+Fv
+Sv
+ZO
+CN
+sE
+yH
+sE
+pH
+Ml
+dr
+ny
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+FZ
+"}
+(169,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+PG
+CB
+fJ
+QC
+wP
+wP
+jL
+fJ
+yZ
+fJ
+XS
+fJ
+CB
+PG
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+qB
+bF
+Bt
+Bt
+Zq
+zB
+It
+It
+Jk
+It
+It
+ko
+bF
+qB
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+ny
+dr
+Ce
+Ce
+Xx
+ZO
+mD
+lF
+uM
+zb
+wa
+Ml
+dr
+ny
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+FZ
+"}
+(170,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+PG
+CB
+jX
+sf
+yZ
+jL
+wP
+wP
+fJ
+jL
+DW
+DW
+CB
+PG
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+qB
+bF
+Gx
+Bt
+kB
+zB
+It
+It
+It
+It
+It
+ko
+bF
+qB
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+ny
+dr
+Ce
+Ce
+Xx
+ZO
+Ml
+Ml
+Ml
+Ml
+Ml
+Ml
+dr
+ny
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+FZ
+"}
+(171,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+PG
+CB
+fJ
+jL
+fJ
+jX
+fJ
+gz
+fJ
+DW
+DW
+DW
+CB
+PG
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+qB
+bF
+RW
+PM
+Zq
+zB
+It
+It
+It
+It
+It
+ko
+bF
+qB
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+ny
+dr
+mz
+Ce
+Xx
+Bs
+gT
+gT
+gT
+gT
+gT
+gT
+dr
+ny
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+FZ
+"}
+(172,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+PG
+CB
+CB
+CB
+CB
+CB
+CB
+CB
+CB
+CB
+CB
+CB
+CB
+PG
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+qB
+bF
+bF
+bF
+bF
+bF
+bF
+bF
+bF
+bF
+bF
+bF
+bF
+qB
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+ny
+dr
+dr
+dr
+dr
+dr
+dr
+dr
+dr
+dr
+dr
+dr
+dr
+ny
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+FZ
+"}
+(173,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+PG
+PG
+PG
+PG
+PG
+PG
+PG
+PG
+PG
+PG
+PG
+PG
+PG
+PG
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+qB
+qB
+qB
+qB
+qB
+qB
+qB
+qB
+qB
+qB
+qB
+qB
+qB
+qB
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+ny
+ny
+ny
+ny
+ny
+ny
+ny
+ny
+ny
+ny
+ny
+ny
+ny
+ny
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+FZ
+"}
+(174,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+FZ
+"}
+(175,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+FZ
+"}
+(176,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+gi
+FZ
+"}
+(177,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+FZ
+"}
+(178,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+"}
+(179,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+"}
+(180,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+"}
+(181,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+"}
+(182,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+"}
+(183,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+"}
+(184,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+"}
+(185,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+"}
+(186,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+"}
+(187,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+"}
+(188,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+"}
+(189,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+"}
+(190,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+"}
+(191,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+"}
+(192,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+"}
+(193,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+"}
+(194,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+"}
+(195,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+"}
+(196,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+"}
+(197,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+"}
+(198,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+"}
+(199,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+"}
+(200,1,1) = {"
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+Ws
+"}
diff --git a/nano/templates/vr_control.tmpl b/nano/templates/vr_control.tmpl
new file mode 100644
index 0000000000000..aa9d6b52483a0
--- /dev/null
+++ b/nano/templates/vr_control.tmpl
@@ -0,0 +1,43 @@
+{{for data.active_templates}}
+ {{:value.name}}
+ {{if value.zone == value.selected}}
+ {{:helper.link(value.template, null, {'select_zone': value.name}, 'disabled')}}
+ {{else}}
+ {{:helper.link(value.template, null, {'select_zone': value.name}, null)}}
+ {{/if}}
+{{empty}}
+ No VR template loaded.
+{{/for}}
+Connected occupants
+
+{{for data.occupants}}
+
+ | {{:helper.link("Message", null, {'msg_occupant': value.mob_ref})}}
+ | {{:value.name}}
+{{empty}}
+ |
+ | None.
+{{/for}}
+ |
+{{:helper.link("Message all occupants", 'signal-diag', {'msg_all_occupants' : 1})}}
+Available areas
+
+{{for data.templates}}
+
+ | {{:helper.link("Activate", null, {'load_template': value.name}, data.on_cooldown ? 'disabled' : null)}}
+ | {{:value.name}}
+{{empty}}
+ |
+ | None.
+{{/for}}
+ |
+{{if data.emag_templates}}
+ Nonstandard areas
+
+ {{for data.emag_templates}}
+
+ | {{:helper.link("Activate", null, {'load_template': value.name}, data.on_cooldown ? 'disabled' : null)}}
+ | {{:value.name}}
+ {{/for}}
+ |
+{{/if}}